diff --git a/.gitmodules b/.gitmodules index efa1f71..1b29252 100644 --- a/.gitmodules +++ b/.gitmodules @@ -4,6 +4,3 @@ [submodule "third-party/argparse"] path = third-party/argparse url = https://github.com/cofyc/argparse -[submodule "third-party/mongoose"] - path = third-party/mongoose - url = https://github.com/cesanta/mongoose/ diff --git a/CMakeLists.txt b/CMakeLists.txt index 5cce9c1..86c129c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -28,12 +28,9 @@ add_executable( # argparse third-party/argparse/argparse.h third-party/argparse/argparse.c - third-party/mongoose/mongoose.h third-party/mongoose/mongoose.c src/cli.c src/cli.h -) - -target_compile_definitions(sist2 PUBLIC MG_ENABLE_SSL=1) + src/stats.c src/stats.h) target_link_directories(sist2 PRIVATE BEFORE ${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/lib/) set(CMAKE_FIND_LIBRARY_SUFFIXES .a .lib) @@ -41,9 +38,10 @@ set(CMAKE_FIND_LIBRARY_SUFFIXES .a .lib) find_package(lmdb CONFIG REQUIRED) find_package(cJSON CONFIG REQUIRED) find_package(unofficial-glib CONFIG REQUIRED) +find_package(unofficial-mongoose CONFIG REQUIRED) find_library(UUID_LIB NAMES uuid) -find_package(OpenSSL REQUIRED) +#find_package(OpenSSL REQUIRED) target_include_directories( @@ -74,6 +72,7 @@ if (SIST_DEBUG) sist2 PRIVATE -fsanitize=address +# -static ) set_target_properties( sist2 @@ -104,7 +103,8 @@ target_link_libraries( cjson argparse unofficial::glib::glib - OpenSSL::SSL OpenSSL::Crypto + unofficial::mongoose::mongoose +# OpenSSL::SSL OpenSSL::Crypto ${UUID_LIB} pthread diff --git a/README.md b/README.md index 652f190..9feeae2 100644 --- a/README.md +++ b/README.md @@ -21,12 +21,16 @@ sist2 (Simple incremental search tool) * Automatic tagging from file attributes via [user scripts](scripting/README.md) * Recursive scan inside archive files \*\* * OCR support with tesseract \*\*\* +* Stats page & disk utilisation visualization \* See [format support](#format-support) \*\* See [Archive files](#archive-files) \*\*\* See [OCR](#ocr) +![stats](docs/stats.png) + + ## Getting Started 1. Have an Elasticsearch (>= 6.X.X) instance running diff --git a/docs/USAGE.md b/docs/USAGE.md index df8b74d..3715583 100644 --- a/docs/USAGE.md +++ b/docs/USAGE.md @@ -94,6 +94,13 @@ Made by simon987 . Released under GPL-3.0 * `-e "(^/usr/)|(^/var/)|(^/media/DRIVE-A/tmp/)|(^/media/DRIVE-B/Trash/)"` Exclude the `/usr`, `/var`, `/media/DRIVE-A/tmp`, `/media/DRIVE-B/Trash` directories * `--fast` Only index file names and mime type +* `--treemap-threshold` Directories smaller than (`treemap-threshold` * ``) + will not be considered for the disk utilisation visualization; their size will be added to + the parent directory. If the parent directory is still smaller than the threshold, it will also be "merged upwards" + and so on. + + In effect, smaller `treemap-threshold` values will yield a more detailed + (but also a more cluttered and harder to read) visualization. ### Scan examples @@ -122,6 +129,11 @@ documents.idx/ ├── _index_139965425223424 ├── _index_139965433616128 ├── _index_139965442008832 +├── _index_139965442008832 +├── treemap.csv +├── agg_mime.csv +├── agg_date.csv +├── add_size.csv └── thumbs ├── data.mdb └── lock.mdb @@ -137,6 +149,8 @@ database containing the thumbnails. The `descriptor.json` file contains general information about the index. The following fields are safe to modify manually: `root`, `name`, [rewrite_url](#rewrite_url) and `timestamp`. +The `.csv` are pre-computed aggregations necessary for the stats page. + *Advanced usage* diff --git a/docs/stats.png b/docs/stats.png new file mode 100644 index 0000000..cd39486 Binary files /dev/null and b/docs/stats.png differ diff --git a/scripts/before_build.sh b/scripts/before_build.sh index 0134301..c9aa84e 100755 --- a/scripts/before_build.sh +++ b/scripts/before_build.sh @@ -4,7 +4,7 @@ rm -rf index.sist2/ rm src/static/js/bundle.js 2> /dev/null cat `ls src/static/js/*.min.js` > src/static/js/bundle.js -cat src/static/js/{util,dom,search}.js >> src/static/js/bundle.js +cat src/static/js/{util,dom}.js >> src/static/js/bundle.js rm src/static/css/bundle*.css 2> /dev/null cat src/static/css/*.min.css > src/static/css/bundle.css diff --git a/scripts/serve_static.py b/scripts/serve_static.py index c5ece87..3cf4b55 100644 --- a/scripts/serve_static.py +++ b/scripts/serve_static.py @@ -2,9 +2,11 @@ files = [ "src/static/css/bundle.css", "src/static/css/bundle_dark.css", "src/static/js/bundle.js", + "src/static/js/search.js", "src/static/img/sprite-skin-flat.png", "src/static/img/sprite-skin-flat-dark.png", "src/static/search.html", + "src/static/stats.html", ] diff --git a/src/cli.c b/src/cli.c index b86ded4..aa738fc 100644 --- a/src/cli.c +++ b/src/cli.c @@ -12,6 +12,7 @@ #define DEFAULT_BATCH_SIZE 100 #define DEFAULT_LISTEN_ADDRESS "localhost:4090" +#define DEFAULT_TREEMAP_THRESHOLD 0.0005 const char* TESS_DATAPATHS[] = { "/usr/share/tessdata/", @@ -180,6 +181,12 @@ int scan_args_validate(scan_args_t *args, int argc, const char **argv) { ScanCtx.exclude = NULL; } + if (args->treemap_threshold_str == 0) { + args->treemap_threshold = DEFAULT_TREEMAP_THRESHOLD; + } else { + args->treemap_threshold = atof(args->treemap_threshold_str); + } + LOG_DEBUGF("cli.c", "arg quality=%f", args->quality) LOG_DEBUGF("cli.c", "arg size=%d", args->size) LOG_DEBUGF("cli.c", "arg content_size=%d", args->content_size) @@ -195,6 +202,7 @@ int scan_args_validate(scan_args_t *args, int argc, const char **argv) { LOG_DEBUGF("cli.c", "arg tesseract_path=%s", args->tesseract_path) LOG_DEBUGF("cli.c", "arg exclude=%s", args->exclude_regex) LOG_DEBUGF("cli.c", "arg fast=%d", args->fast) + LOG_DEBUGF("cli.c", "arg treemap_threshold=%f", args->treemap_threshold) return 0; } diff --git a/src/cli.h b/src/cli.h index f7c9fb5..d0c81a5 100644 --- a/src/cli.h +++ b/src/cli.h @@ -22,6 +22,8 @@ typedef struct scan_args { const char *tesseract_path; char *exclude_regex; int fast; + const char* treemap_threshold_str; + double treemap_threshold; } scan_args_t; scan_args_t *scan_args_create(); diff --git a/src/index/web.c b/src/index/web.c index a776586..8eaa16a 100644 --- a/src/index/web.c +++ b/src/index/web.c @@ -2,6 +2,9 @@ #include "src/sist.h" #include "src/ctx.h" +#include +#include + void free_response(response_t *resp) { if (resp->body != NULL) { @@ -74,19 +77,7 @@ subreq_ctx_t *http_req(const char *url, const char *extra_headers, const char *p char address[8196]; snprintf(address, sizeof(address), "tcp://%.*s:%u", (int) host.len, host.p, port); - struct mg_connect_opts opts; - memset(&opts, 0, sizeof(opts)); - opts.ssl_key = "./a.key"; - opts.ssl_cert = "./cert.crt"; - opts.ssl_ca_cert = "*"; - opts.ssl_server_name = "dev2.simon987.net:443"; - const char* tmp[256]; - opts.error_string = tmp; - - struct mg_connection *nc = mg_connect_opt(&ctx->mgr, address, http_req_ev, opts); - printf("%d\n", nc->err); - - + struct mg_connection *nc = mg_connect(&ctx->mgr, address, http_req_ev); nc->user_data = &ctx->ev_data; mg_set_protocol_http_websocket(nc); diff --git a/src/index/web.h b/src/index/web.h index 4045090..be525ac 100644 --- a/src/index/web.h +++ b/src/index/web.h @@ -2,7 +2,7 @@ #define SIST2_WEB_H #include "src/sist.h" -#include "third-party/mongoose/mongoose.h" +#include typedef struct response { char *body; diff --git a/src/main.c b/src/main.c index c9c0d5b..c6b330c 100644 --- a/src/main.c +++ b/src/main.c @@ -15,6 +15,8 @@ #include "parsing/mime.h" #include "parsing/parse.h" +#include "stats.h" + #define DESCRIPTION "Lightning-fast file system indexer and search tool." #define EPILOG "Made by simon987 . Released under GPL-3.0" @@ -207,6 +209,8 @@ void sist2_scan(scan_args_t *args) { tpool_wait(ScanCtx.pool); tpool_destroy(ScanCtx.pool); + generate_stats(&ScanCtx.index, args->treemap_threshold, ScanCtx.index.path); + if (args->incremental != NULL) { char dst_path[PATH_MAX]; snprintf(store_path, PATH_MAX, "%sthumbs", args->incremental); @@ -352,6 +356,8 @@ int main(int argc, const char *argv[]) { "which are installed on your machine)"), OPT_STRING('e', "exclude", &scan_args->exclude_regex, "Files that match this regex will not be scanned"), OPT_BOOLEAN(0, "fast", &scan_args->fast, "Only index file names & mime type"), + OPT_STRING(0, "treemap-threshold", &scan_args->treemap_threshold_str, "Relative size threshold for treemap " + "(see USAGE.md). DEFAULT: 0.0005"), OPT_GROUP("Index options"), OPT_STRING(0, "es-url", &common_es_url, "Elasticsearch url with port. DEFAULT=http://localhost:9200"), diff --git a/src/static/css/dark.css b/src/static/css/dark.css index 516b2d6..c81565c 100644 --- a/src/static/css/dark.css +++ b/src/static/css/dark.css @@ -121,7 +121,7 @@ body { background: #546b7a; } -.navbar a:hover { +a:hover,.btn:hover { color: #fff; } @@ -480,3 +480,34 @@ svg { cursor: pointer; } +.stats-card { + text-align: center; + margin-top: 1em; + padding: 1em; + + box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .08) !important; + border-radius: 0; + border: none; + + background: #212121; +} + +.graph { + display: inline-block; + width: 40%; +} + +.full-screen { + position: absolute; + left: 0; + width: 100%; +} + +.stats-btn { + float: right; + margin-bottom: 10px; +} + +#graphs-card svg text { + fill: #eee; +} diff --git a/src/static/css/light.css b/src/static/css/light.css index 2d28eca..aff3f75 100644 --- a/src/static/css/light.css +++ b/src/static/css/light.css @@ -347,3 +347,30 @@ mark { cursor: pointer; } +.stats-card { + text-align: center; + margin-top: 1em; + padding: 1em; + + box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .08) !important; + border-radius: 0; + border: none; + + background: #fff; +} + +.graph { + display: inline-block; + width: 40%; +} + +.full-screen { + position: absolute; + left: 0; + width: 100%; +} + +.stats-btn { + float: right; + margin-bottom: 10px; +} diff --git a/src/static/js/d3.v5.min.js b/src/static/js/d3.v5.min.js new file mode 100644 index 0000000..344d26c --- /dev/null +++ b/src/static/js/d3.v5.min.js @@ -0,0 +1,2 @@ +// https://d3js.org v5.16.0 Copyright 2020 Mike Bostock +!function(t,n){"object"==typeof exports&&"undefined"!=typeof module?n(exports):"function"==typeof define&&define.amd?define(["exports"],n):n((t=t||self).d3=t.d3||{})}(this,function(t){"use strict";function n(t,n){return tn?1:t>=n?0:NaN}function e(t){var e;return 1===t.length&&(e=t,t=function(t,r){return n(e(t),r)}),{left:function(n,e,r,i){for(null==r&&(r=0),null==i&&(i=n.length);r>>1;t(n[o],e)<0?r=o+1:i=o}return r},right:function(n,e,r,i){for(null==r&&(r=0),null==i&&(i=n.length);r>>1;t(n[o],e)>0?i=o:r=o+1}return r}}}var r=e(n),i=r.right,o=r.left;function a(t,n){return[t,n]}function u(t){return null===t?NaN:+t}function c(t,n){var e,r,i=t.length,o=0,a=-1,c=0,f=0;if(null==n)for(;++a1)return f/(o-1)}function f(t,n){var e=c(t,n);return e?Math.sqrt(e):e}function s(t,n){var e,r,i,o=t.length,a=-1;if(null==n){for(;++a=e)for(r=i=e;++ae&&(r=e),i=e)for(r=i=e;++ae&&(r=e),i0)return[t];if((r=n0)for(t=Math.ceil(t/a),n=Math.floor(n/a),o=new Array(i=Math.ceil(n-t+1));++u=0?(o>=y?10:o>=_?5:o>=b?2:1)*Math.pow(10,i):-Math.pow(10,-i)/(o>=y?10:o>=_?5:o>=b?2:1)}function w(t,n,e){var r=Math.abs(n-t)/Math.max(0,e),i=Math.pow(10,Math.floor(Math.log(r)/Math.LN10)),o=r/i;return o>=y?i*=10:o>=_?i*=5:o>=b&&(i*=2),n=1)return+e(t[r-1],r-1,t);var r,i=(r-1)*n,o=Math.floor(i),a=+e(t[o],o,t);return a+(+e(t[o+1],o+1,t)-a)*(i-o)}}function T(t,n){var e,r,i=t.length,o=-1;if(null==n){for(;++o=e)for(r=e;++or&&(r=e)}else for(;++o=e)for(r=e;++or&&(r=e);return r}function A(t){for(var n,e,r,i=t.length,o=-1,a=0;++o=0;)for(n=(r=t[i]).length;--n>=0;)e[--a]=r[n];return e}function S(t,n){var e,r,i=t.length,o=-1;if(null==n){for(;++o=e)for(r=e;++oe&&(r=e)}else for(;++o=e)for(r=e;++oe&&(r=e);return r}function k(t){if(!(i=t.length))return[];for(var n=-1,e=S(t,E),r=new Array(e);++n=0&&(e=t.slice(r+1),t=t.slice(0,r)),t&&!n.hasOwnProperty(t))throw new Error("unknown type: "+t);return{type:t,name:e}})}function X(t,n){for(var e,r=0,i=t.length;r0)for(var e,r,i=new Array(e),o=0;o=0&&"xmlns"!==(n=t.slice(0,e))&&(t=t.slice(e+1)),$.hasOwnProperty(n)?{space:$[n],local:t}:t}function Z(t){var n=W(t);return(n.local?function(t){return function(){return this.ownerDocument.createElementNS(t.space,t.local)}}:function(t){return function(){var n=this.ownerDocument,e=this.namespaceURI;return e===G&&n.documentElement.namespaceURI===G?n.createElement(t):n.createElementNS(e,t)}})(n)}function Q(){}function K(t){return null==t?Q:function(){return this.querySelector(t)}}function J(){return[]}function tt(t){return null==t?J:function(){return this.querySelectorAll(t)}}function nt(t){return function(){return this.matches(t)}}function et(t){return new Array(t.length)}function rt(t,n){this.ownerDocument=t.ownerDocument,this.namespaceURI=t.namespaceURI,this._next=null,this._parent=t,this.__data__=n}rt.prototype={constructor:rt,appendChild:function(t){return this._parent.insertBefore(t,this._next)},insertBefore:function(t,n){return this._parent.insertBefore(t,n)},querySelector:function(t){return this._parent.querySelector(t)},querySelectorAll:function(t){return this._parent.querySelectorAll(t)}};var it="$";function ot(t,n,e,r,i,o){for(var a,u=0,c=n.length,f=o.length;un?1:t>=n?0:NaN}function ct(t){return t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView}function ft(t,n){return t.style.getPropertyValue(n)||ct(t).getComputedStyle(t,null).getPropertyValue(n)}function st(t){return t.trim().split(/^|\s+/)}function lt(t){return t.classList||new ht(t)}function ht(t){this._node=t,this._names=st(t.getAttribute("class")||"")}function dt(t,n){for(var e=lt(t),r=-1,i=n.length;++r=0&&(this._names.splice(n,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(t){return this._names.indexOf(t)>=0}};var Mt={};(t.event=null,"undefined"!=typeof document)&&("onmouseenter"in document.documentElement||(Mt={mouseenter:"mouseover",mouseleave:"mouseout"}));function Nt(t,n,e){return t=Tt(t,n,e),function(n){var e=n.relatedTarget;e&&(e===this||8&e.compareDocumentPosition(this))||t.call(this,n)}}function Tt(n,e,r){return function(i){var o=t.event;t.event=i;try{n.call(this,this.__data__,e,r)}finally{t.event=o}}}function At(t){return function(){var n=this.__on;if(n){for(var e,r=0,i=-1,o=n.length;r=m&&(m=b+1);!(_=g[m])&&++m=0;)(r=i[o])&&(a&&4^r.compareDocumentPosition(a)&&a.parentNode.insertBefore(r,a),a=r);return this},sort:function(t){function n(n,e){return n&&e?t(n.__data__,e.__data__):!n-!e}t||(t=ut);for(var e=this._groups,r=e.length,i=new Array(r),o=0;o1?this.each((null==n?function(t){return function(){this.style.removeProperty(t)}}:"function"==typeof n?function(t,n,e){return function(){var r=n.apply(this,arguments);null==r?this.style.removeProperty(t):this.style.setProperty(t,r,e)}}:function(t,n,e){return function(){this.style.setProperty(t,n,e)}})(t,n,null==e?"":e)):ft(this.node(),t)},property:function(t,n){return arguments.length>1?this.each((null==n?function(t){return function(){delete this[t]}}:"function"==typeof n?function(t,n){return function(){var e=n.apply(this,arguments);null==e?delete this[t]:this[t]=e}}:function(t,n){return function(){this[t]=n}})(t,n)):this.node()[t]},classed:function(t,n){var e=st(t+"");if(arguments.length<2){for(var r=lt(this.node()),i=-1,o=e.length;++i=0&&(n=t.slice(e+1),t=t.slice(0,e)),{type:t,name:n}})}(t+""),a=o.length;if(!(arguments.length<2)){for(u=n?St:At,null==e&&(e=!1),r=0;r>8&15|n>>4&240,n>>4&15|240&n,(15&n)<<4|15&n,1):8===e?gn(n>>24&255,n>>16&255,n>>8&255,(255&n)/255):4===e?gn(n>>12&15|n>>8&240,n>>8&15|n>>4&240,n>>4&15|240&n,((15&n)<<4|15&n)/255):null):(n=on.exec(t))?new bn(n[1],n[2],n[3],1):(n=an.exec(t))?new bn(255*n[1]/100,255*n[2]/100,255*n[3]/100,1):(n=un.exec(t))?gn(n[1],n[2],n[3],n[4]):(n=cn.exec(t))?gn(255*n[1]/100,255*n[2]/100,255*n[3]/100,n[4]):(n=fn.exec(t))?Mn(n[1],n[2]/100,n[3]/100,1):(n=sn.exec(t))?Mn(n[1],n[2]/100,n[3]/100,n[4]):ln.hasOwnProperty(t)?vn(ln[t]):"transparent"===t?new bn(NaN,NaN,NaN,0):null}function vn(t){return new bn(t>>16&255,t>>8&255,255&t,1)}function gn(t,n,e,r){return r<=0&&(t=n=e=NaN),new bn(t,n,e,r)}function yn(t){return t instanceof Jt||(t=pn(t)),t?new bn((t=t.rgb()).r,t.g,t.b,t.opacity):new bn}function _n(t,n,e,r){return 1===arguments.length?yn(t):new bn(t,n,e,null==r?1:r)}function bn(t,n,e,r){this.r=+t,this.g=+n,this.b=+e,this.opacity=+r}function mn(){return"#"+wn(this.r)+wn(this.g)+wn(this.b)}function xn(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"rgb(":"rgba(")+Math.max(0,Math.min(255,Math.round(this.r)||0))+", "+Math.max(0,Math.min(255,Math.round(this.g)||0))+", "+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===t?")":", "+t+")")}function wn(t){return((t=Math.max(0,Math.min(255,Math.round(t)||0)))<16?"0":"")+t.toString(16)}function Mn(t,n,e,r){return r<=0?t=n=e=NaN:e<=0||e>=1?t=n=NaN:n<=0&&(t=NaN),new An(t,n,e,r)}function Nn(t){if(t instanceof An)return new An(t.h,t.s,t.l,t.opacity);if(t instanceof Jt||(t=pn(t)),!t)return new An;if(t instanceof An)return t;var n=(t=t.rgb()).r/255,e=t.g/255,r=t.b/255,i=Math.min(n,e,r),o=Math.max(n,e,r),a=NaN,u=o-i,c=(o+i)/2;return u?(a=n===o?(e-r)/u+6*(e0&&c<1?0:a,new An(a,u,c,t.opacity)}function Tn(t,n,e,r){return 1===arguments.length?Nn(t):new An(t,n,e,null==r?1:r)}function An(t,n,e,r){this.h=+t,this.s=+n,this.l=+e,this.opacity=+r}function Sn(t,n,e){return 255*(t<60?n+(e-n)*t/60:t<180?e:t<240?n+(e-n)*(240-t)/60:n)}Qt(Jt,pn,{copy:function(t){return Object.assign(new this.constructor,this,t)},displayable:function(){return this.rgb().displayable()},hex:hn,formatHex:hn,formatHsl:function(){return Nn(this).formatHsl()},formatRgb:dn,toString:dn}),Qt(bn,_n,Kt(Jt,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new bn(this.r*t,this.g*t,this.b*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new bn(this.r*t,this.g*t,this.b*t,this.opacity)},rgb:function(){return this},displayable:function(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:mn,formatHex:mn,formatRgb:xn,toString:xn})),Qt(An,Tn,Kt(Jt,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new An(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new An(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=this.h%360+360*(this.h<0),n=isNaN(t)||isNaN(this.s)?0:this.s,e=this.l,r=e+(e<.5?e:1-e)*n,i=2*e-r;return new bn(Sn(t>=240?t-240:t+120,i,r),Sn(t,i,r),Sn(t<120?t+240:t-120,i,r),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl:function(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"hsl(":"hsla(")+(this.h||0)+", "+100*(this.s||0)+"%, "+100*(this.l||0)+"%"+(1===t?")":", "+t+")")}}));var kn=Math.PI/180,En=180/Math.PI,Cn=.96422,Pn=1,zn=.82521,Rn=4/29,Dn=6/29,qn=3*Dn*Dn,Ln=Dn*Dn*Dn;function Un(t){if(t instanceof Bn)return new Bn(t.l,t.a,t.b,t.opacity);if(t instanceof Vn)return Gn(t);t instanceof bn||(t=yn(t));var n,e,r=Hn(t.r),i=Hn(t.g),o=Hn(t.b),a=Fn((.2225045*r+.7168786*i+.0606169*o)/Pn);return r===i&&i===o?n=e=a:(n=Fn((.4360747*r+.3850649*i+.1430804*o)/Cn),e=Fn((.0139322*r+.0971045*i+.7141733*o)/zn)),new Bn(116*a-16,500*(n-a),200*(a-e),t.opacity)}function On(t,n,e,r){return 1===arguments.length?Un(t):new Bn(t,n,e,null==r?1:r)}function Bn(t,n,e,r){this.l=+t,this.a=+n,this.b=+e,this.opacity=+r}function Fn(t){return t>Ln?Math.pow(t,1/3):t/qn+Rn}function Yn(t){return t>Dn?t*t*t:qn*(t-Rn)}function In(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function Hn(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function jn(t){if(t instanceof Vn)return new Vn(t.h,t.c,t.l,t.opacity);if(t instanceof Bn||(t=Un(t)),0===t.a&&0===t.b)return new Vn(NaN,0=1?(e=1,n-1):Math.floor(e*n),i=t[r],o=t[r+1],a=r>0?t[r-1]:2*i-o,u=r180||e<-180?e-360*Math.round(e/360):e):ue(isNaN(t)?n:t)}function se(t){return 1==(t=+t)?le:function(n,e){return e-n?function(t,n,e){return t=Math.pow(t,e),n=Math.pow(n,e)-t,e=1/e,function(r){return Math.pow(t+r*n,e)}}(n,e,t):ue(isNaN(n)?e:n)}}function le(t,n){var e=n-t;return e?ce(t,e):ue(isNaN(t)?n:t)}Qt(re,ee,Kt(Jt,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new re(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new re(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=isNaN(this.h)?0:(this.h+120)*kn,n=+this.l,e=isNaN(this.s)?0:this.s*n*(1-n),r=Math.cos(t),i=Math.sin(t);return new bn(255*(n+e*($n*r+Wn*i)),255*(n+e*(Zn*r+Qn*i)),255*(n+e*(Kn*r)),this.opacity)}}));var he=function t(n){var e=se(n);function r(t,n){var r=e((t=_n(t)).r,(n=_n(n)).r),i=e(t.g,n.g),o=e(t.b,n.b),a=le(t.opacity,n.opacity);return function(n){return t.r=r(n),t.g=i(n),t.b=o(n),t.opacity=a(n),t+""}}return r.gamma=t,r}(1);function de(t){return function(n){var e,r,i=n.length,o=new Array(i),a=new Array(i),u=new Array(i);for(e=0;eo&&(i=n.slice(o,i),u[a]?u[a]+=i:u[++a]=i),(e=e[0])===(r=r[0])?u[a]?u[a]+=r:u[++a]=r:(u[++a]=null,c.push({i:a,x:me(e,r)})),o=Me.lastIndex;return o180?n+=360:n-t>180&&(t+=360),o.push({i:e.push(i(e)+"rotate(",null,r)-2,x:me(t,n)})):n&&e.push(i(e)+"rotate("+n+r)}(o.rotate,a.rotate,u,c),function(t,n,e,o){t!==n?o.push({i:e.push(i(e)+"skewX(",null,r)-2,x:me(t,n)}):n&&e.push(i(e)+"skewX("+n+r)}(o.skewX,a.skewX,u,c),function(t,n,e,r,o,a){if(t!==e||n!==r){var u=o.push(i(o)+"scale(",null,",",null,")");a.push({i:u-4,x:me(t,e)},{i:u-2,x:me(n,r)})}else 1===e&&1===r||o.push(i(o)+"scale("+e+","+r+")")}(o.scaleX,o.scaleY,a.scaleX,a.scaleY,u,c),o=a=null,function(t){for(var n,e=-1,r=c.length;++e=0&&n._call.call(null,t),n=n._next;--tr}function pr(){or=(ir=ur.now())+ar,tr=nr=0;try{dr()}finally{tr=0,function(){var t,n,e=Ke,r=1/0;for(;e;)e._call?(r>e._time&&(r=e._time),t=e,e=e._next):(n=e._next,e._next=null,e=t?t._next=n:Ke=n);Je=t,gr(r)}(),or=0}}function vr(){var t=ur.now(),n=t-ir;n>rr&&(ar-=n,ir=t)}function gr(t){tr||(nr&&(nr=clearTimeout(nr)),t-or>24?(t<1/0&&(nr=setTimeout(pr,t-ur.now()-ar)),er&&(er=clearInterval(er))):(er||(ir=ur.now(),er=setInterval(vr,rr)),tr=1,cr(pr)))}function yr(t,n,e){var r=new lr;return n=null==n?0:+n,r.restart(function(e){r.stop(),t(e+n)},n,e),r}lr.prototype=hr.prototype={constructor:lr,restart:function(t,n,e){if("function"!=typeof t)throw new TypeError("callback is not a function");e=(null==e?fr():+e)+(null==n?0:+n),this._next||Je===this||(Je?Je._next=this:Ke=this,Je=this),this._call=t,this._time=e,gr()},stop:function(){this._call&&(this._call=null,this._time=1/0,gr())}};var _r=I("start","end","cancel","interrupt"),br=[],mr=0,xr=1,wr=2,Mr=3,Nr=4,Tr=5,Ar=6;function Sr(t,n,e,r,i,o){var a=t.__transition;if(a){if(e in a)return}else t.__transition={};!function(t,n,e){var r,i=t.__transition;function o(c){var f,s,l,h;if(e.state!==xr)return u();for(f in i)if((h=i[f]).name===e.name){if(h.state===Mr)return yr(o);h.state===Nr?(h.state=Ar,h.timer.stop(),h.on.call("interrupt",t,t.__data__,h.index,h.group),delete i[f]):+fmr)throw new Error("too late; already scheduled");return e}function Er(t,n){var e=Cr(t,n);if(e.state>Mr)throw new Error("too late; already running");return e}function Cr(t,n){var e=t.__transition;if(!e||!(e=e[n]))throw new Error("transition not found");return e}function Pr(t,n){var e,r,i,o=t.__transition,a=!0;if(o){for(i in n=null==n?null:n+"",o)(e=o[i]).name===n?(r=e.state>wr&&e.state=0&&(t=t.slice(0,n)),!t||"start"===t})}(n)?kr:Er;return function(){var a=o(this,t),u=a.on;u!==r&&(i=(r=u).copy()).on(n,e),a.on=i}}(e,t,n))},attr:function(t,n){var e=W(t),r="transform"===e?Le:Rr;return this.attrTween(t,"function"==typeof n?(e.local?function(t,n,e){var r,i,o;return function(){var a,u,c=e(this);if(null!=c)return(a=this.getAttributeNS(t.space,t.local))===(u=c+"")?null:a===r&&u===i?o:(i=u,o=n(r=a,c));this.removeAttributeNS(t.space,t.local)}}:function(t,n,e){var r,i,o;return function(){var a,u,c=e(this);if(null!=c)return(a=this.getAttribute(t))===(u=c+"")?null:a===r&&u===i?o:(i=u,o=n(r=a,c));this.removeAttribute(t)}})(e,r,zr(this,"attr."+t,n)):null==n?(e.local?function(t){return function(){this.removeAttributeNS(t.space,t.local)}}:function(t){return function(){this.removeAttribute(t)}})(e):(e.local?function(t,n,e){var r,i,o=e+"";return function(){var a=this.getAttributeNS(t.space,t.local);return a===o?null:a===r?i:i=n(r=a,e)}}:function(t,n,e){var r,i,o=e+"";return function(){var a=this.getAttribute(t);return a===o?null:a===r?i:i=n(r=a,e)}})(e,r,n))},attrTween:function(t,n){var e="attr."+t;if(arguments.length<2)return(e=this.tween(e))&&e._value;if(null==n)return this.tween(e,null);if("function"!=typeof n)throw new Error;var r=W(t);return this.tween(e,(r.local?function(t,n){var e,r;function i(){var i=n.apply(this,arguments);return i!==r&&(e=(r=i)&&function(t,n){return function(e){this.setAttributeNS(t.space,t.local,n.call(this,e))}}(t,i)),e}return i._value=n,i}:function(t,n){var e,r;function i(){var i=n.apply(this,arguments);return i!==r&&(e=(r=i)&&function(t,n){return function(e){this.setAttribute(t,n.call(this,e))}}(t,i)),e}return i._value=n,i})(r,n))},style:function(t,n,e){var r="transform"==(t+="")?qe:Rr;return null==n?this.styleTween(t,function(t,n){var e,r,i;return function(){var o=ft(this,t),a=(this.style.removeProperty(t),ft(this,t));return o===a?null:o===e&&a===r?i:i=n(e=o,r=a)}}(t,r)).on("end.style."+t,qr(t)):"function"==typeof n?this.styleTween(t,function(t,n,e){var r,i,o;return function(){var a=ft(this,t),u=e(this),c=u+"";return null==u&&(this.style.removeProperty(t),c=u=ft(this,t)),a===c?null:a===r&&c===i?o:(i=c,o=n(r=a,u))}}(t,r,zr(this,"style."+t,n))).each(function(t,n){var e,r,i,o,a="style."+n,u="end."+a;return function(){var c=Er(this,t),f=c.on,s=null==c.value[a]?o||(o=qr(n)):void 0;f===e&&i===s||(r=(e=f).copy()).on(u,i=s),c.on=r}}(this._id,t)):this.styleTween(t,function(t,n,e){var r,i,o=e+"";return function(){var a=ft(this,t);return a===o?null:a===r?i:i=n(r=a,e)}}(t,r,n),e).on("end.style."+t,null)},styleTween:function(t,n,e){var r="style."+(t+="");if(arguments.length<2)return(r=this.tween(r))&&r._value;if(null==n)return this.tween(r,null);if("function"!=typeof n)throw new Error;return this.tween(r,function(t,n,e){var r,i;function o(){var o=n.apply(this,arguments);return o!==i&&(r=(i=o)&&function(t,n,e){return function(r){this.style.setProperty(t,n.call(this,r),e)}}(t,o,e)),r}return o._value=n,o}(t,n,null==e?"":e))},text:function(t){return this.tween("text","function"==typeof t?function(t){return function(){var n=t(this);this.textContent=null==n?"":n}}(zr(this,"text",t)):function(t){return function(){this.textContent=t}}(null==t?"":t+""))},textTween:function(t){var n="text";if(arguments.length<1)return(n=this.tween(n))&&n._value;if(null==t)return this.tween(n,null);if("function"!=typeof t)throw new Error;return this.tween(n,function(t){var n,e;function r(){var r=t.apply(this,arguments);return r!==e&&(n=(e=r)&&function(t){return function(n){this.textContent=t.call(this,n)}}(r)),n}return r._value=t,r}(t))},remove:function(){return this.on("end.remove",function(t){return function(){var n=this.parentNode;for(var e in this.__transition)if(+e!==t)return;n&&n.removeChild(this)}}(this._id))},tween:function(t,n){var e=this._id;if(t+="",arguments.length<2){for(var r,i=Cr(this.node(),e).tween,o=0,a=i.length;o0&&(r=o-P),M<0?d=p-z:M>0&&(u=c-z),x=Mi,B.attr("cursor",Pi.selection),I());break;default:return}xi()},!0).on("keyup.brush",function(){switch(t.event.keyCode){case 16:R&&(g=y=R=!1,I());break;case 18:x===Ti&&(w<0?f=h:w>0&&(r=o),M<0?d=p:M>0&&(u=c),x=Ni,I());break;case 32:x===Mi&&(t.event.altKey?(w&&(f=h-P*w,r=o+P*w),M&&(d=p-z*M,u=c+z*M),x=Ti):(w<0?f=h:w>0&&(r=o),M<0?d=p:M>0&&(u=c),x=Ni),B.attr("cursor",Pi[m]),I());break;default:return}xi()},!0),Ht(t.event.view)}mi(),Pr(b),s.call(b),U.start()}function Y(){var t=D(b);!R||g||y||(Math.abs(t[0]-L[0])>Math.abs(t[1]-L[1])?y=!0:g=!0),L=t,v=!0,xi(),I()}function I(){var t;switch(P=L[0]-q[0],z=L[1]-q[1],x){case Mi:case wi:w&&(P=Math.max(S-r,Math.min(E-f,P)),o=r+P,h=f+P),M&&(z=Math.max(k-u,Math.min(C-d,z)),c=u+z,p=d+z);break;case Ni:w<0?(P=Math.max(S-r,Math.min(E-r,P)),o=r+P,h=f):w>0&&(P=Math.max(S-f,Math.min(E-f,P)),o=r,h=f+P),M<0?(z=Math.max(k-u,Math.min(C-u,z)),c=u+z,p=d):M>0&&(z=Math.max(k-d,Math.min(C-d,z)),c=u,p=d+z);break;case Ti:w&&(o=Math.max(S,Math.min(E,r-P*w)),h=Math.max(S,Math.min(E,f+P*w))),M&&(c=Math.max(k,Math.min(C,u-z*M)),p=Math.max(k,Math.min(C,d+z*M)))}h1e-6)if(Math.abs(s*u-c*f)>1e-6&&i){var h=e-o,d=r-a,p=u*u+c*c,v=h*h+d*d,g=Math.sqrt(p),y=Math.sqrt(l),_=i*Math.tan((Qi-Math.acos((p+l-v)/(2*g*y)))/2),b=_/y,m=_/g;Math.abs(b-1)>1e-6&&(this._+="L"+(t+b*f)+","+(n+b*s)),this._+="A"+i+","+i+",0,0,"+ +(s*h>f*d)+","+(this._x1=t+m*u)+","+(this._y1=n+m*c)}else this._+="L"+(this._x1=t)+","+(this._y1=n);else;},arc:function(t,n,e,r,i,o){t=+t,n=+n,o=!!o;var a=(e=+e)*Math.cos(r),u=e*Math.sin(r),c=t+a,f=n+u,s=1^o,l=o?r-i:i-r;if(e<0)throw new Error("negative radius: "+e);null===this._x1?this._+="M"+c+","+f:(Math.abs(this._x1-c)>1e-6||Math.abs(this._y1-f)>1e-6)&&(this._+="L"+c+","+f),e&&(l<0&&(l=l%Ki+Ki),l>Ji?this._+="A"+e+","+e+",0,1,"+s+","+(t-a)+","+(n-u)+"A"+e+","+e+",0,1,"+s+","+(this._x1=c)+","+(this._y1=f):l>1e-6&&(this._+="A"+e+","+e+",0,"+ +(l>=Qi)+","+s+","+(this._x1=t+e*Math.cos(i))+","+(this._y1=n+e*Math.sin(i))))},rect:function(t,n,e,r){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+n)+"h"+ +e+"v"+ +r+"h"+-e+"Z"},toString:function(){return this._}};function uo(){}function co(t,n){var e=new uo;if(t instanceof uo)t.each(function(t,n){e.set(n,t)});else if(Array.isArray(t)){var r,i=-1,o=t.length;if(null==n)for(;++ir!=d>r&&e<(h-f)*(r-s)/(d-s)+f&&(i=-i)}return i}function wo(t,n,e){var r,i,o,a;return function(t,n,e){return(n[0]-t[0])*(e[1]-t[1])==(e[0]-t[0])*(n[1]-t[1])}(t,n,e)&&(i=t[r=+(t[0]===n[0])],o=e[r],a=n[r],i<=o&&o<=a||a<=o&&o<=i)}function Mo(){}var No=[[],[[[1,1.5],[.5,1]]],[[[1.5,1],[1,1.5]]],[[[1.5,1],[.5,1]]],[[[1,.5],[1.5,1]]],[[[1,1.5],[.5,1]],[[1,.5],[1.5,1]]],[[[1,.5],[1,1.5]]],[[[1,.5],[.5,1]]],[[[.5,1],[1,.5]]],[[[1,1.5],[1,.5]]],[[[.5,1],[1,.5]],[[1.5,1],[1,1.5]]],[[[1.5,1],[1,.5]]],[[[.5,1],[1.5,1]]],[[[1,1.5],[1.5,1]]],[[[.5,1],[1,1.5]]],[]];function To(){var t=1,n=1,e=M,r=u;function i(t){var n=e(t);if(Array.isArray(n))n=n.slice().sort(_o);else{var r=s(t),i=r[0],a=r[1];n=w(i,a,n),n=g(Math.floor(i/n)*n,Math.floor(a/n)*n,n)}return n.map(function(n){return o(t,n)})}function o(e,i){var o=[],u=[];return function(e,r,i){var o,u,c,f,s,l,h=new Array,d=new Array;o=u=-1,f=e[0]>=r,No[f<<1].forEach(p);for(;++o=r,No[c|f<<1].forEach(p);No[f<<0].forEach(p);for(;++u=r,s=e[u*t]>=r,No[f<<1|s<<2].forEach(p);++o=r,l=s,s=e[u*t+o+1]>=r,No[c|f<<1|s<<2|l<<3].forEach(p);No[f|s<<3].forEach(p)}o=-1,s=e[u*t]>=r,No[s<<2].forEach(p);for(;++o=r,No[s<<2|l<<3].forEach(p);function p(t){var n,e,r=[t[0][0]+o,t[0][1]+u],c=[t[1][0]+o,t[1][1]+u],f=a(r),s=a(c);(n=d[f])?(e=h[s])?(delete d[n.end],delete h[e.start],n===e?(n.ring.push(c),i(n.ring)):h[n.start]=d[e.end]={start:n.start,end:e.end,ring:n.ring.concat(e.ring)}):(delete d[n.end],n.ring.push(c),d[n.end=s]=n):(n=h[s])?(e=d[f])?(delete h[n.start],delete d[e.end],n===e?(n.ring.push(c),i(n.ring)):h[e.start]=d[n.end]={start:e.start,end:n.end,ring:e.ring.concat(n.ring)}):(delete h[n.start],n.ring.unshift(r),h[n.start=f]=n):h[f]=d[s]={start:f,end:s,ring:[r,c]}}No[s<<3].forEach(p)}(e,i,function(t){r(t,e,i),function(t){for(var n=0,e=t.length,r=t[e-1][1]*t[0][0]-t[e-1][0]*t[0][1];++n0?o.push([t]):u.push(t)}),u.forEach(function(t){for(var n,e=0,r=o.length;e0&&a0&&u0&&o>0))throw new Error("invalid size");return t=r,n=o,i},i.thresholds=function(t){return arguments.length?(e="function"==typeof t?t:Array.isArray(t)?bo(yo.call(t)):bo(t),i):e},i.smooth=function(t){return arguments.length?(r=t?u:Mo,i):r===u},i}function Ao(t,n,e){for(var r=t.width,i=t.height,o=1+(e<<1),a=0;a=e&&(u>=o&&(c-=t.data[u-o+a*r]),n.data[u-e+a*r]=c/Math.min(u+1,r-1+o-u,o))}function So(t,n,e){for(var r=t.width,i=t.height,o=1+(e<<1),a=0;a=e&&(u>=o&&(c-=t.data[a+(u-o)*r]),n.data[a+(u-e)*r]=c/Math.min(u+1,i-1+o-u,o))}function ko(t){return t[0]}function Eo(t){return t[1]}function Co(){return 1}var Po={},zo={},Ro=34,Do=10,qo=13;function Lo(t){return new Function("d","return {"+t.map(function(t,n){return JSON.stringify(t)+": d["+n+'] || ""'}).join(",")+"}")}function Uo(t){var n=Object.create(null),e=[];return t.forEach(function(t){for(var r in t)r in n||e.push(n[r]=r)}),e}function Oo(t,n){var e=t+"",r=e.length;return r9999?"+"+Oo(t,6):Oo(t,4)}(t.getUTCFullYear())+"-"+Oo(t.getUTCMonth()+1,2)+"-"+Oo(t.getUTCDate(),2)+(i?"T"+Oo(n,2)+":"+Oo(e,2)+":"+Oo(r,2)+"."+Oo(i,3)+"Z":r?"T"+Oo(n,2)+":"+Oo(e,2)+":"+Oo(r,2)+"Z":e||n?"T"+Oo(n,2)+":"+Oo(e,2)+"Z":"")}function Fo(t){var n=new RegExp('["'+t+"\n\r]"),e=t.charCodeAt(0);function r(t,n){var r,i=[],o=t.length,a=0,u=0,c=o<=0,f=!1;function s(){if(c)return zo;if(f)return f=!1,Po;var n,r,i=a;if(t.charCodeAt(i)===Ro){for(;a++=o?c=!0:(r=t.charCodeAt(a++))===Do?f=!0:r===qo&&(f=!0,t.charCodeAt(a)===Do&&++a),t.slice(i+1,n-1).replace(/""/g,'"')}for(;a=(o=(v+y)/2))?v=o:y=o,(s=e>=(a=(g+_)/2))?g=a:_=a,i=d,!(d=d[l=s<<1|f]))return i[l]=p,t;if(u=+t._x.call(null,d.data),c=+t._y.call(null,d.data),n===u&&e===c)return p.next=d,i?i[l]=p:t._root=p,t;do{i=i?i[l]=new Array(4):t._root=new Array(4),(f=n>=(o=(v+y)/2))?v=o:y=o,(s=e>=(a=(g+_)/2))?g=a:_=a}while((l=s<<1|f)==(h=(c>=a)<<1|u>=o));return i[h]=d,i[l]=p,t}function ba(t,n,e,r,i){this.node=t,this.x0=n,this.y0=e,this.x1=r,this.y1=i}function ma(t){return t[0]}function xa(t){return t[1]}function wa(t,n,e){var r=new Ma(null==n?ma:n,null==e?xa:e,NaN,NaN,NaN,NaN);return null==t?r:r.addAll(t)}function Ma(t,n,e,r,i,o){this._x=t,this._y=n,this._x0=e,this._y0=r,this._x1=i,this._y1=o,this._root=void 0}function Na(t){for(var n={data:t.data},e=n;t=t.next;)e=e.next={data:t.data};return n}var Ta=wa.prototype=Ma.prototype;function Aa(t){return t.x+t.vx}function Sa(t){return t.y+t.vy}function ka(t){return t.index}function Ea(t,n){var e=t.get(n);if(!e)throw new Error("missing: "+n);return e}function Ca(t){return t.x}function Pa(t){return t.y}Ta.copy=function(){var t,n,e=new Ma(this._x,this._y,this._x0,this._y0,this._x1,this._y1),r=this._root;if(!r)return e;if(!r.length)return e._root=Na(r),e;for(t=[{source:r,target:e._root=new Array(4)}];r=t.pop();)for(var i=0;i<4;++i)(n=r.source[i])&&(n.length?t.push({source:n,target:r.target[i]=new Array(4)}):r.target[i]=Na(n));return e},Ta.add=function(t){var n=+this._x.call(null,t),e=+this._y.call(null,t);return _a(this.cover(n,e),n,e,t)},Ta.addAll=function(t){var n,e,r,i,o=t.length,a=new Array(o),u=new Array(o),c=1/0,f=1/0,s=-1/0,l=-1/0;for(e=0;es&&(s=r),il&&(l=i));if(c>s||f>l)return this;for(this.cover(c,f).cover(s,l),e=0;et||t>=i||r>n||n>=o;)switch(u=(nh||(o=c.y0)>d||(a=c.x1)=y)<<1|t>=g)&&(c=p[p.length-1],p[p.length-1]=p[p.length-1-f],p[p.length-1-f]=c)}else{var _=t-+this._x.call(null,v.data),b=n-+this._y.call(null,v.data),m=_*_+b*b;if(m=(u=(p+g)/2))?p=u:g=u,(s=a>=(c=(v+y)/2))?v=c:y=c,n=d,!(d=d[l=s<<1|f]))return this;if(!d.length)break;(n[l+1&3]||n[l+2&3]||n[l+3&3])&&(e=n,h=l)}for(;d.data!==t;)if(r=d,!(d=d.next))return this;return(i=d.next)&&delete d.next,r?(i?r.next=i:delete r.next,this):n?(i?n[l]=i:delete n[l],(d=n[0]||n[1]||n[2]||n[3])&&d===(n[3]||n[2]||n[1]||n[0])&&!d.length&&(e?e[h]=d:this._root=d),this):(this._root=i,this)},Ta.removeAll=function(t){for(var n=0,e=t.length;n1?r[0]+r.slice(2):r,+t.slice(e+1)]}function qa(t){return(t=Da(Math.abs(t)))?t[1]:NaN}var La,Ua=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function Oa(t){if(!(n=Ua.exec(t)))throw new Error("invalid format: "+t);var n;return new Ba({fill:n[1],align:n[2],sign:n[3],symbol:n[4],zero:n[5],width:n[6],comma:n[7],precision:n[8]&&n[8].slice(1),trim:n[9],type:n[10]})}function Ba(t){this.fill=void 0===t.fill?" ":t.fill+"",this.align=void 0===t.align?">":t.align+"",this.sign=void 0===t.sign?"-":t.sign+"",this.symbol=void 0===t.symbol?"":t.symbol+"",this.zero=!!t.zero,this.width=void 0===t.width?void 0:+t.width,this.comma=!!t.comma,this.precision=void 0===t.precision?void 0:+t.precision,this.trim=!!t.trim,this.type=void 0===t.type?"":t.type+""}function Fa(t,n){var e=Da(t,n);if(!e)return t+"";var r=e[0],i=e[1];return i<0?"0."+new Array(-i).join("0")+r:r.length>i+1?r.slice(0,i+1)+"."+r.slice(i+1):r+new Array(i-r.length+2).join("0")}Oa.prototype=Ba.prototype,Ba.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(void 0===this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(void 0===this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type};var Ya={"%":function(t,n){return(100*t).toFixed(n)},b:function(t){return Math.round(t).toString(2)},c:function(t){return t+""},d:function(t){return Math.round(t).toString(10)},e:function(t,n){return t.toExponential(n)},f:function(t,n){return t.toFixed(n)},g:function(t,n){return t.toPrecision(n)},o:function(t){return Math.round(t).toString(8)},p:function(t,n){return Fa(100*t,n)},r:Fa,s:function(t,n){var e=Da(t,n);if(!e)return t+"";var r=e[0],i=e[1],o=i-(La=3*Math.max(-8,Math.min(8,Math.floor(i/3))))+1,a=r.length;return o===a?r:o>a?r+new Array(o-a+1).join("0"):o>0?r.slice(0,o)+"."+r.slice(o):"0."+new Array(1-o).join("0")+Da(t,Math.max(0,n+o-1))[0]},X:function(t){return Math.round(t).toString(16).toUpperCase()},x:function(t){return Math.round(t).toString(16)}};function Ia(t){return t}var Ha,ja=Array.prototype.map,Xa=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];function Va(t){var n,e,r=void 0===t.grouping||void 0===t.thousands?Ia:(n=ja.call(t.grouping,Number),e=t.thousands+"",function(t,r){for(var i=t.length,o=[],a=0,u=n[0],c=0;i>0&&u>0&&(c+u+1>r&&(u=Math.max(1,r-c)),o.push(t.substring(i-=u,i+u)),!((c+=u+1)>r));)u=n[a=(a+1)%n.length];return o.reverse().join(e)}),i=void 0===t.currency?"":t.currency[0]+"",o=void 0===t.currency?"":t.currency[1]+"",a=void 0===t.decimal?".":t.decimal+"",u=void 0===t.numerals?Ia:function(t){return function(n){return n.replace(/[0-9]/g,function(n){return t[+n]})}}(ja.call(t.numerals,String)),c=void 0===t.percent?"%":t.percent+"",f=void 0===t.minus?"-":t.minus+"",s=void 0===t.nan?"NaN":t.nan+"";function l(t){var n=(t=Oa(t)).fill,e=t.align,l=t.sign,h=t.symbol,d=t.zero,p=t.width,v=t.comma,g=t.precision,y=t.trim,_=t.type;"n"===_?(v=!0,_="g"):Ya[_]||(void 0===g&&(g=12),y=!0,_="g"),(d||"0"===n&&"="===e)&&(d=!0,n="0",e="=");var b="$"===h?i:"#"===h&&/[boxX]/.test(_)?"0"+_.toLowerCase():"",m="$"===h?o:/[%p]/.test(_)?c:"",x=Ya[_],w=/[defgprs%]/.test(_);function M(t){var i,o,c,h=b,M=m;if("c"===_)M=x(t)+M,t="";else{var N=(t=+t)<0||1/t<0;if(t=isNaN(t)?s:x(Math.abs(t),g),y&&(t=function(t){t:for(var n,e=t.length,r=1,i=-1;r0&&(i=0)}return i>0?t.slice(0,i)+t.slice(n+1):t}(t)),N&&0==+t&&"+"!==l&&(N=!1),h=(N?"("===l?l:f:"-"===l||"("===l?"":l)+h,M=("s"===_?Xa[8+La/3]:"")+M+(N&&"("===l?")":""),w)for(i=-1,o=t.length;++i(c=t.charCodeAt(i))||c>57){M=(46===c?a+t.slice(i+1):t.slice(i))+M,t=t.slice(0,i);break}}v&&!d&&(t=r(t,1/0));var T=h.length+t.length+M.length,A=T>1)+h+t+M+A.slice(T);break;default:t=A+h+t+M}return u(t)}return g=void 0===g?6:/[gprs]/.test(_)?Math.max(1,Math.min(21,g)):Math.max(0,Math.min(20,g)),M.toString=function(){return t+""},M}return{format:l,formatPrefix:function(t,n){var e=l(((t=Oa(t)).type="f",t)),r=3*Math.max(-8,Math.min(8,Math.floor(qa(n)/3))),i=Math.pow(10,-r),o=Xa[8+r/3];return function(t){return e(i*t)+o}}}}function Ga(n){return Ha=Va(n),t.format=Ha.format,t.formatPrefix=Ha.formatPrefix,Ha}function $a(t){return Math.max(0,-qa(Math.abs(t)))}function Wa(t,n){return Math.max(0,3*Math.max(-8,Math.min(8,Math.floor(qa(n)/3)))-qa(Math.abs(t)))}function Za(t,n){return t=Math.abs(t),n=Math.abs(n)-t,Math.max(0,qa(n)-qa(t))+1}function Qa(){return new Ka}function Ka(){this.reset()}Ga({decimal:".",thousands:",",grouping:[3],currency:["$",""],minus:"-"}),Ka.prototype={constructor:Ka,reset:function(){this.s=this.t=0},add:function(t){tu(Ja,t,this.t),tu(this,Ja.s,this.s),this.s?this.t+=Ja.t:this.s=Ja.t},valueOf:function(){return this.s}};var Ja=new Ka;function tu(t,n,e){var r=t.s=n+e,i=r-n,o=r-i;t.t=n-o+(e-i)}var nu=1e-6,eu=1e-12,ru=Math.PI,iu=ru/2,ou=ru/4,au=2*ru,uu=180/ru,cu=ru/180,fu=Math.abs,su=Math.atan,lu=Math.atan2,hu=Math.cos,du=Math.ceil,pu=Math.exp,vu=Math.log,gu=Math.pow,yu=Math.sin,_u=Math.sign||function(t){return t>0?1:t<0?-1:0},bu=Math.sqrt,mu=Math.tan;function xu(t){return t>1?0:t<-1?ru:Math.acos(t)}function wu(t){return t>1?iu:t<-1?-iu:Math.asin(t)}function Mu(t){return(t=yu(t/2))*t}function Nu(){}function Tu(t,n){t&&Su.hasOwnProperty(t.type)&&Su[t.type](t,n)}var Au={Feature:function(t,n){Tu(t.geometry,n)},FeatureCollection:function(t,n){for(var e=t.features,r=-1,i=e.length;++r=0?1:-1,i=r*e,o=hu(n=(n*=cu)/2+ou),a=yu(n),u=qu*a,c=Du*o+u*hu(i),f=u*r*yu(i);Lu.add(lu(f,c)),Ru=t,Du=o,qu=a}function Hu(t){return[lu(t[1],t[0]),wu(t[2])]}function ju(t){var n=t[0],e=t[1],r=hu(e);return[r*hu(n),r*yu(n),yu(e)]}function Xu(t,n){return t[0]*n[0]+t[1]*n[1]+t[2]*n[2]}function Vu(t,n){return[t[1]*n[2]-t[2]*n[1],t[2]*n[0]-t[0]*n[2],t[0]*n[1]-t[1]*n[0]]}function Gu(t,n){t[0]+=n[0],t[1]+=n[1],t[2]+=n[2]}function $u(t,n){return[t[0]*n,t[1]*n,t[2]*n]}function Wu(t){var n=bu(t[0]*t[0]+t[1]*t[1]+t[2]*t[2]);t[0]/=n,t[1]/=n,t[2]/=n}var Zu,Qu,Ku,Ju,tc,nc,ec,rc,ic,oc,ac,uc,cc,fc,sc,lc,hc,dc,pc,vc,gc,yc,_c,bc,mc,xc,wc=Qa(),Mc={point:Nc,lineStart:Ac,lineEnd:Sc,polygonStart:function(){Mc.point=kc,Mc.lineStart=Ec,Mc.lineEnd=Cc,wc.reset(),Ou.polygonStart()},polygonEnd:function(){Ou.polygonEnd(),Mc.point=Nc,Mc.lineStart=Ac,Mc.lineEnd=Sc,Lu<0?(Zu=-(Ku=180),Qu=-(Ju=90)):wc>nu?Ju=90:wc<-nu&&(Qu=-90),oc[0]=Zu,oc[1]=Ku},sphere:function(){Zu=-(Ku=180),Qu=-(Ju=90)}};function Nc(t,n){ic.push(oc=[Zu=t,Ku=t]),nJu&&(Ju=n)}function Tc(t,n){var e=ju([t*cu,n*cu]);if(rc){var r=Vu(rc,e),i=Vu([r[1],-r[0],0],r);Wu(i),i=Hu(i);var o,a=t-tc,u=a>0?1:-1,c=i[0]*uu*u,f=fu(a)>180;f^(u*tcJu&&(Ju=o):f^(u*tc<(c=(c+360)%360-180)&&cJu&&(Ju=n)),f?tPc(Zu,Ku)&&(Ku=t):Pc(t,Ku)>Pc(Zu,Ku)&&(Zu=t):Ku>=Zu?(tKu&&(Ku=t)):t>tc?Pc(Zu,t)>Pc(Zu,Ku)&&(Ku=t):Pc(t,Ku)>Pc(Zu,Ku)&&(Zu=t)}else ic.push(oc=[Zu=t,Ku=t]);nJu&&(Ju=n),rc=e,tc=t}function Ac(){Mc.point=Tc}function Sc(){oc[0]=Zu,oc[1]=Ku,Mc.point=Nc,rc=null}function kc(t,n){if(rc){var e=t-tc;wc.add(fu(e)>180?e+(e>0?360:-360):e)}else nc=t,ec=n;Ou.point(t,n),Tc(t,n)}function Ec(){Ou.lineStart()}function Cc(){kc(nc,ec),Ou.lineEnd(),fu(wc)>nu&&(Zu=-(Ku=180)),oc[0]=Zu,oc[1]=Ku,rc=null}function Pc(t,n){return(n-=t)<0?n+360:n}function zc(t,n){return t[0]-n[0]}function Rc(t,n){return t[0]<=t[1]?t[0]<=n&&n<=t[1]:nru?t+Math.round(-t/au)*au:t,n]}function $c(t,n,e){return(t%=au)?n||e?Vc(Zc(t),Qc(n,e)):Zc(t):n||e?Qc(n,e):Gc}function Wc(t){return function(n,e){return[(n+=t)>ru?n-au:n<-ru?n+au:n,e]}}function Zc(t){var n=Wc(t);return n.invert=Wc(-t),n}function Qc(t,n){var e=hu(t),r=yu(t),i=hu(n),o=yu(n);function a(t,n){var a=hu(n),u=hu(t)*a,c=yu(t)*a,f=yu(n),s=f*e+u*r;return[lu(c*i-s*o,u*e-f*r),wu(s*i+c*o)]}return a.invert=function(t,n){var a=hu(n),u=hu(t)*a,c=yu(t)*a,f=yu(n),s=f*i-c*o;return[lu(c*i+f*o,u*e+s*r),wu(s*e-u*r)]},a}function Kc(t){function n(n){return(n=t(n[0]*cu,n[1]*cu))[0]*=uu,n[1]*=uu,n}return t=$c(t[0]*cu,t[1]*cu,t.length>2?t[2]*cu:0),n.invert=function(n){return(n=t.invert(n[0]*cu,n[1]*cu))[0]*=uu,n[1]*=uu,n},n}function Jc(t,n,e,r,i,o){if(e){var a=hu(n),u=yu(n),c=r*e;null==i?(i=n+r*au,o=n-c/2):(i=tf(a,i),o=tf(a,o),(r>0?io)&&(i+=r*au));for(var f,s=i;r>0?s>o:s1&&n.push(n.pop().concat(n.shift()))},result:function(){var e=n;return n=[],t=null,e}}}function ef(t,n){return fu(t[0]-n[0])=0;--o)i.point((s=f[o])[0],s[1]);else r(h.x,h.p.x,-1,i);h=h.p}f=(h=h.o).z,d=!d}while(!h.v);i.lineEnd()}}}function af(t){if(n=t.length){for(var n,e,r=0,i=t[0];++r=0?1:-1,T=N*M,A=T>ru,S=v*x;if(uf.add(lu(S*N*yu(T),g*w+S*hu(T))),a+=A?M+N*au:M,A^d>=e^b>=e){var k=Vu(ju(h),ju(_));Wu(k);var E=Vu(o,k);Wu(E);var C=(A^M>=0?-1:1)*wu(E[2]);(r>C||r===C&&(k[0]||k[1]))&&(u+=A^M>=0?1:-1)}}return(a<-nu||a0){for(l||(i.polygonStart(),l=!0),i.lineStart(),t=0;t1&&2&c&&h.push(h.pop().concat(h.shift())),a.push(h.filter(lf))}return h}}function lf(t){return t.length>1}function hf(t,n){return((t=t.x)[0]<0?t[1]-iu-nu:iu-t[1])-((n=n.x)[0]<0?n[1]-iu-nu:iu-n[1])}var df=sf(function(){return!0},function(t){var n,e=NaN,r=NaN,i=NaN;return{lineStart:function(){t.lineStart(),n=1},point:function(o,a){var u=o>0?ru:-ru,c=fu(o-e);fu(c-ru)0?iu:-iu),t.point(i,r),t.lineEnd(),t.lineStart(),t.point(u,r),t.point(o,r),n=0):i!==u&&c>=ru&&(fu(e-i)nu?su((yu(n)*(o=hu(r))*yu(e)-yu(r)*(i=hu(n))*yu(t))/(i*o*a)):(n+r)/2}(e,r,o,a),t.point(i,r),t.lineEnd(),t.lineStart(),t.point(u,r),n=0),t.point(e=o,r=a),i=u},lineEnd:function(){t.lineEnd(),e=r=NaN},clean:function(){return 2-n}}},function(t,n,e,r){var i;if(null==t)i=e*iu,r.point(-ru,i),r.point(0,i),r.point(ru,i),r.point(ru,0),r.point(ru,-i),r.point(0,-i),r.point(-ru,-i),r.point(-ru,0),r.point(-ru,i);else if(fu(t[0]-n[0])>nu){var o=t[0]0,i=fu(n)>nu;function o(t,e){return hu(t)*hu(e)>n}function a(t,e,r){var i=[1,0,0],o=Vu(ju(t),ju(e)),a=Xu(o,o),u=o[0],c=a-u*u;if(!c)return!r&&t;var f=n*a/c,s=-n*u/c,l=Vu(i,o),h=$u(i,f);Gu(h,$u(o,s));var d=l,p=Xu(h,d),v=Xu(d,d),g=p*p-v*(Xu(h,h)-1);if(!(g<0)){var y=bu(g),_=$u(d,(-p-y)/v);if(Gu(_,h),_=Hu(_),!r)return _;var b,m=t[0],x=e[0],w=t[1],M=e[1];x0^_[1]<(fu(_[0]-m)ru^(m<=_[0]&&_[0]<=x)){var A=$u(d,(-p+y)/v);return Gu(A,h),[_,Hu(A)]}}}function u(n,e){var i=r?t:ru-t,o=0;return n<-i?o|=1:n>i&&(o|=2),e<-i?o|=4:e>i&&(o|=8),o}return sf(o,function(t){var n,e,c,f,s;return{lineStart:function(){f=c=!1,s=1},point:function(l,h){var d,p=[l,h],v=o(l,h),g=r?v?0:u(l,h):v?u(l+(l<0?ru:-ru),h):0;if(!n&&(f=c=v)&&t.lineStart(),v!==c&&(!(d=a(n,p))||ef(n,d)||ef(p,d))&&(p[0]+=nu,p[1]+=nu,v=o(p[0],p[1])),v!==c)s=0,v?(t.lineStart(),d=a(p,n),t.point(d[0],d[1])):(d=a(n,p),t.point(d[0],d[1]),t.lineEnd()),n=d;else if(i&&n&&r^v){var y;g&e||!(y=a(p,n,!0))||(s=0,r?(t.lineStart(),t.point(y[0][0],y[0][1]),t.point(y[1][0],y[1][1]),t.lineEnd()):(t.point(y[1][0],y[1][1]),t.lineEnd(),t.lineStart(),t.point(y[0][0],y[0][1])))}!v||n&&ef(n,p)||t.point(p[0],p[1]),n=p,c=v,e=g},lineEnd:function(){c&&t.lineEnd(),n=null},clean:function(){return s|(f&&c)<<1}}},function(n,r,i,o){Jc(o,t,e,i,n,r)},r?[0,-t]:[-ru,t-ru])}var vf=1e9,gf=-vf;function yf(t,n,e,r){function i(i,o){return t<=i&&i<=e&&n<=o&&o<=r}function o(i,o,u,f){var s=0,l=0;if(null==i||(s=a(i,u))!==(l=a(o,u))||c(i,o)<0^u>0)do{f.point(0===s||3===s?t:e,s>1?r:n)}while((s=(s+u+4)%4)!==l);else f.point(o[0],o[1])}function a(r,i){return fu(r[0]-t)0?0:3:fu(r[0]-e)0?2:1:fu(r[1]-n)0?1:0:i>0?3:2}function u(t,n){return c(t.x,n.x)}function c(t,n){var e=a(t,1),r=a(n,1);return e!==r?e-r:0===e?n[1]-t[1]:1===e?t[0]-n[0]:2===e?t[1]-n[1]:n[0]-t[0]}return function(a){var c,f,s,l,h,d,p,v,g,y,_,b=a,m=nf(),x={point:w,lineStart:function(){x.point=M,f&&f.push(s=[]);y=!0,g=!1,p=v=NaN},lineEnd:function(){c&&(M(l,h),d&&g&&m.rejoin(),c.push(m.result()));x.point=w,g&&b.lineEnd()},polygonStart:function(){b=m,c=[],f=[],_=!0},polygonEnd:function(){var n=function(){for(var n=0,e=0,i=f.length;er&&(h-o)*(r-a)>(d-a)*(t-o)&&++n:d<=r&&(h-o)*(r-a)<(d-a)*(t-o)&&--n;return n}(),e=_&&n,i=(c=A(c)).length;(e||i)&&(a.polygonStart(),e&&(a.lineStart(),o(null,null,1,a),a.lineEnd()),i&&of(c,u,n,o,a),a.polygonEnd());b=a,c=f=s=null}};function w(t,n){i(t,n)&&b.point(t,n)}function M(o,a){var u=i(o,a);if(f&&s.push([o,a]),y)l=o,h=a,d=u,y=!1,u&&(b.lineStart(),b.point(o,a));else if(u&&g)b.point(o,a);else{var c=[p=Math.max(gf,Math.min(vf,p)),v=Math.max(gf,Math.min(vf,v))],m=[o=Math.max(gf,Math.min(vf,o)),a=Math.max(gf,Math.min(vf,a))];!function(t,n,e,r,i,o){var a,u=t[0],c=t[1],f=0,s=1,l=n[0]-u,h=n[1]-c;if(a=e-u,l||!(a>0)){if(a/=l,l<0){if(a0){if(a>s)return;a>f&&(f=a)}if(a=i-u,l||!(a<0)){if(a/=l,l<0){if(a>s)return;a>f&&(f=a)}else if(l>0){if(a0)){if(a/=h,h<0){if(a0){if(a>s)return;a>f&&(f=a)}if(a=o-c,h||!(a<0)){if(a/=h,h<0){if(a>s)return;a>f&&(f=a)}else if(h>0){if(a0&&(t[0]=u+f*l,t[1]=c+f*h),s<1&&(n[0]=u+s*l,n[1]=c+s*h),!0}}}}}(c,m,t,n,e,r)?u&&(b.lineStart(),b.point(o,a),_=!1):(g||(b.lineStart(),b.point(c[0],c[1])),b.point(m[0],m[1]),u||b.lineEnd(),_=!1)}p=o,v=a,g=u}return x}}var _f,bf,mf,xf=Qa(),wf={sphere:Nu,point:Nu,lineStart:function(){wf.point=Nf,wf.lineEnd=Mf},lineEnd:Nu,polygonStart:Nu,polygonEnd:Nu};function Mf(){wf.point=wf.lineEnd=Nu}function Nf(t,n){_f=t*=cu,bf=yu(n*=cu),mf=hu(n),wf.point=Tf}function Tf(t,n){t*=cu;var e=yu(n*=cu),r=hu(n),i=fu(t-_f),o=hu(i),a=r*yu(i),u=mf*e-bf*r*o,c=bf*e+mf*r*o;xf.add(lu(bu(a*a+u*u),c)),_f=t,bf=e,mf=r}function Af(t){return xf.reset(),Cu(t,wf),+xf}var Sf=[null,null],kf={type:"LineString",coordinates:Sf};function Ef(t,n){return Sf[0]=t,Sf[1]=n,Af(kf)}var Cf={Feature:function(t,n){return zf(t.geometry,n)},FeatureCollection:function(t,n){for(var e=t.features,r=-1,i=e.length;++r0&&(i=Ef(t[o],t[o-1]))>0&&e<=i&&r<=i&&(e+r-i)*(1-Math.pow((e-r)/i,2))nu}).map(c)).concat(g(du(o/d)*d,i,d).filter(function(t){return fu(t%v)>nu}).map(f))}return _.lines=function(){return b().map(function(t){return{type:"LineString",coordinates:t}})},_.outline=function(){return{type:"Polygon",coordinates:[s(r).concat(l(a).slice(1),s(e).reverse().slice(1),l(u).reverse().slice(1))]}},_.extent=function(t){return arguments.length?_.extentMajor(t).extentMinor(t):_.extentMinor()},_.extentMajor=function(t){return arguments.length?(r=+t[0][0],e=+t[1][0],u=+t[0][1],a=+t[1][1],r>e&&(t=r,r=e,e=t),u>a&&(t=u,u=a,a=t),_.precision(y)):[[r,u],[e,a]]},_.extentMinor=function(e){return arguments.length?(n=+e[0][0],t=+e[1][0],o=+e[0][1],i=+e[1][1],n>t&&(e=n,n=t,t=e),o>i&&(e=o,o=i,i=e),_.precision(y)):[[n,o],[t,i]]},_.step=function(t){return arguments.length?_.stepMajor(t).stepMinor(t):_.stepMinor()},_.stepMajor=function(t){return arguments.length?(p=+t[0],v=+t[1],_):[p,v]},_.stepMinor=function(t){return arguments.length?(h=+t[0],d=+t[1],_):[h,d]},_.precision=function(h){return arguments.length?(y=+h,c=Of(o,i,90),f=Bf(n,t,y),s=Of(u,a,90),l=Bf(r,e,y),_):y},_.extentMajor([[-180,-90+nu],[180,90-nu]]).extentMinor([[-180,-80-nu],[180,80+nu]])}function Yf(t){return t}var If,Hf,jf,Xf,Vf=Qa(),Gf=Qa(),$f={point:Nu,lineStart:Nu,lineEnd:Nu,polygonStart:function(){$f.lineStart=Wf,$f.lineEnd=Kf},polygonEnd:function(){$f.lineStart=$f.lineEnd=$f.point=Nu,Vf.add(fu(Gf)),Gf.reset()},result:function(){var t=Vf/2;return Vf.reset(),t}};function Wf(){$f.point=Zf}function Zf(t,n){$f.point=Qf,If=jf=t,Hf=Xf=n}function Qf(t,n){Gf.add(Xf*t-jf*n),jf=t,Xf=n}function Kf(){Qf(If,Hf)}var Jf=1/0,ts=Jf,ns=-Jf,es=ns,rs={point:function(t,n){tns&&(ns=t);nes&&(es=n)},lineStart:Nu,lineEnd:Nu,polygonStart:Nu,polygonEnd:Nu,result:function(){var t=[[Jf,ts],[ns,es]];return ns=es=-(ts=Jf=1/0),t}};var is,os,as,us,cs=0,fs=0,ss=0,ls=0,hs=0,ds=0,ps=0,vs=0,gs=0,ys={point:_s,lineStart:bs,lineEnd:ws,polygonStart:function(){ys.lineStart=Ms,ys.lineEnd=Ns},polygonEnd:function(){ys.point=_s,ys.lineStart=bs,ys.lineEnd=ws},result:function(){var t=gs?[ps/gs,vs/gs]:ds?[ls/ds,hs/ds]:ss?[cs/ss,fs/ss]:[NaN,NaN];return cs=fs=ss=ls=hs=ds=ps=vs=gs=0,t}};function _s(t,n){cs+=t,fs+=n,++ss}function bs(){ys.point=ms}function ms(t,n){ys.point=xs,_s(as=t,us=n)}function xs(t,n){var e=t-as,r=n-us,i=bu(e*e+r*r);ls+=i*(as+t)/2,hs+=i*(us+n)/2,ds+=i,_s(as=t,us=n)}function ws(){ys.point=_s}function Ms(){ys.point=Ts}function Ns(){As(is,os)}function Ts(t,n){ys.point=As,_s(is=as=t,os=us=n)}function As(t,n){var e=t-as,r=n-us,i=bu(e*e+r*r);ls+=i*(as+t)/2,hs+=i*(us+n)/2,ds+=i,ps+=(i=us*t-as*n)*(as+t),vs+=i*(us+n),gs+=3*i,_s(as=t,us=n)}function Ss(t){this._context=t}Ss.prototype={_radius:4.5,pointRadius:function(t){return this._radius=t,this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._context.closePath(),this._point=NaN},point:function(t,n){switch(this._point){case 0:this._context.moveTo(t,n),this._point=1;break;case 1:this._context.lineTo(t,n);break;default:this._context.moveTo(t+this._radius,n),this._context.arc(t,n,this._radius,0,au)}},result:Nu};var ks,Es,Cs,Ps,zs,Rs=Qa(),Ds={point:Nu,lineStart:function(){Ds.point=qs},lineEnd:function(){ks&&Ls(Es,Cs),Ds.point=Nu},polygonStart:function(){ks=!0},polygonEnd:function(){ks=null},result:function(){var t=+Rs;return Rs.reset(),t}};function qs(t,n){Ds.point=Ls,Es=Ps=t,Cs=zs=n}function Ls(t,n){Ps-=t,zs-=n,Rs.add(bu(Ps*Ps+zs*zs)),Ps=t,zs=n}function Us(){this._string=[]}function Os(t){return"m0,"+t+"a"+t+","+t+" 0 1,1 0,"+-2*t+"a"+t+","+t+" 0 1,1 0,"+2*t+"z"}function Bs(t){return function(n){var e=new Fs;for(var r in t)e[r]=t[r];return e.stream=n,e}}function Fs(){}function Ys(t,n,e){var r=t.clipExtent&&t.clipExtent();return t.scale(150).translate([0,0]),null!=r&&t.clipExtent(null),Cu(e,t.stream(rs)),n(rs.result()),null!=r&&t.clipExtent(r),t}function Is(t,n,e){return Ys(t,function(e){var r=n[1][0]-n[0][0],i=n[1][1]-n[0][1],o=Math.min(r/(e[1][0]-e[0][0]),i/(e[1][1]-e[0][1])),a=+n[0][0]+(r-o*(e[1][0]+e[0][0]))/2,u=+n[0][1]+(i-o*(e[1][1]+e[0][1]))/2;t.scale(150*o).translate([a,u])},e)}function Hs(t,n,e){return Is(t,[[0,0],n],e)}function js(t,n,e){return Ys(t,function(e){var r=+n,i=r/(e[1][0]-e[0][0]),o=(r-i*(e[1][0]+e[0][0]))/2,a=-i*e[0][1];t.scale(150*i).translate([o,a])},e)}function Xs(t,n,e){return Ys(t,function(e){var r=+n,i=r/(e[1][1]-e[0][1]),o=-i*e[0][0],a=(r-i*(e[1][1]+e[0][1]))/2;t.scale(150*i).translate([o,a])},e)}Us.prototype={_radius:4.5,_circle:Os(4.5),pointRadius:function(t){return(t=+t)!==this._radius&&(this._radius=t,this._circle=null),this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._string.push("Z"),this._point=NaN},point:function(t,n){switch(this._point){case 0:this._string.push("M",t,",",n),this._point=1;break;case 1:this._string.push("L",t,",",n);break;default:null==this._circle&&(this._circle=Os(this._radius)),this._string.push("M",t,",",n,this._circle)}},result:function(){if(this._string.length){var t=this._string.join("");return this._string=[],t}return null}},Fs.prototype={constructor:Fs,point:function(t,n){this.stream.point(t,n)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}};var Vs=16,Gs=hu(30*cu);function $s(t,n){return+n?function(t,n){function e(r,i,o,a,u,c,f,s,l,h,d,p,v,g){var y=f-r,_=s-i,b=y*y+_*_;if(b>4*n&&v--){var m=a+h,x=u+d,w=c+p,M=bu(m*m+x*x+w*w),N=wu(w/=M),T=fu(fu(w)-1)n||fu((y*E+_*C)/b-.5)>.3||a*h+u*d+c*p2?t[2]%360*cu:0,E()):[g*uu,y*uu,_*uu]},S.angle=function(t){return arguments.length?(b=t%360*cu,E()):b*uu},S.reflectX=function(t){return arguments.length?(m=t?-1:1,E()):m<0},S.reflectY=function(t){return arguments.length?(x=t?-1:1,E()):x<0},S.precision=function(t){return arguments.length?(a=$s(u,A=t*t),C()):bu(A)},S.fitExtent=function(t,n){return Is(S,t,n)},S.fitSize=function(t,n){return Hs(S,t,n)},S.fitWidth=function(t,n){return js(S,t,n)},S.fitHeight=function(t,n){return Xs(S,t,n)},function(){return n=t.apply(this,arguments),S.invert=n.invert&&k,E()}}function Js(t){var n=0,e=ru/3,r=Ks(t),i=r(n,e);return i.parallels=function(t){return arguments.length?r(n=t[0]*cu,e=t[1]*cu):[n*uu,e*uu]},i}function tl(t,n){var e=yu(t),r=(e+yu(n))/2;if(fu(r)0?n<-iu+nu&&(n=-iu+nu):n>iu-nu&&(n=iu-nu);var e=i/gu(fl(n),r);return[e*yu(r*t),i-e*hu(r*t)]}return o.invert=function(t,n){var e=i-n,o=_u(r)*bu(t*t+e*e),a=lu(t,fu(e))*_u(e);return e*r<0&&(a-=ru*_u(t)*_u(e)),[a/r,2*su(gu(i/o,1/r))-iu]},o}function ll(t,n){return[t,n]}function hl(t,n){var e=hu(t),r=t===n?yu(t):(e-hu(n))/(n-t),i=e/r+t;if(fu(r)=0;)n+=e[r].value;else n=1;t.value=n}function kl(t,n){var e,r,i,o,a,u=new zl(t),c=+t.value&&(u.value=t.value),f=[u];for(null==n&&(n=El);e=f.pop();)if(c&&(e.value=+e.data.value),(i=n(e.data))&&(a=i.length))for(e.children=new Array(a),o=a-1;o>=0;--o)f.push(r=e.children[o]=new zl(i[o])),r.parent=e,r.depth=e.depth+1;return u.eachBefore(Pl)}function El(t){return t.children}function Cl(t){t.data=t.data.data}function Pl(t){var n=0;do{t.height=n}while((t=t.parent)&&t.height<++n)}function zl(t){this.data=t,this.depth=this.height=0,this.parent=null}_l.invert=function(t,n){for(var e,r=n,i=r*r,o=i*i*i,a=0;a<12&&(o=(i=(r-=e=(r*(dl+pl*i+o*(vl+gl*i))-n)/(dl+3*pl*i+o*(7*vl+9*gl*i)))*r)*i*i,!(fu(e)nu&&--i>0);return[t/(.8707+(o=r*r)*(o*(o*o*o*(.003971-.001529*o)-.013791)-.131979)),r]},xl.invert=il(wu),wl.invert=il(function(t){return 2*su(t)}),Ml.invert=function(t,n){return[-n,2*su(pu(t))-iu]},zl.prototype=kl.prototype={constructor:zl,count:function(){return this.eachAfter(Sl)},each:function(t){var n,e,r,i,o=this,a=[o];do{for(n=a.reverse(),a=[];o=n.pop();)if(t(o),e=o.children)for(r=0,i=e.length;r=0;--e)i.push(n[e]);return this},sum:function(t){return this.eachAfter(function(n){for(var e=+t(n.data)||0,r=n.children,i=r&&r.length;--i>=0;)e+=r[i].value;n.value=e})},sort:function(t){return this.eachBefore(function(n){n.children&&n.children.sort(t)})},path:function(t){for(var n=this,e=function(t,n){if(t===n)return t;var e=t.ancestors(),r=n.ancestors(),i=null;for(t=e.pop(),n=r.pop();t===n;)i=t,t=e.pop(),n=r.pop();return i}(n,t),r=[n];n!==e;)n=n.parent,r.push(n);for(var i=r.length;t!==e;)r.splice(i,0,t),t=t.parent;return r},ancestors:function(){for(var t=this,n=[t];t=t.parent;)n.push(t);return n},descendants:function(){var t=[];return this.each(function(n){t.push(n)}),t},leaves:function(){var t=[];return this.eachBefore(function(n){n.children||t.push(n)}),t},links:function(){var t=this,n=[];return t.each(function(e){e!==t&&n.push({source:e.parent,target:e})}),n},copy:function(){return kl(this).eachBefore(Cl)}};var Rl=Array.prototype.slice;function Dl(t){for(var n,e,r=0,i=(t=function(t){for(var n,e,r=t.length;r;)e=Math.random()*r--|0,n=t[r],t[r]=t[e],t[e]=n;return t}(Rl.call(t))).length,o=[];r0&&e*e>r*r+i*i}function Ol(t,n){for(var e=0;e(a*=a)?(r=(f+a-i)/(2*f),o=Math.sqrt(Math.max(0,a/f-r*r)),e.x=t.x-r*u-o*c,e.y=t.y-r*c+o*u):(r=(f+i-a)/(2*f),o=Math.sqrt(Math.max(0,i/f-r*r)),e.x=n.x+r*u-o*c,e.y=n.y+r*c+o*u)):(e.x=n.x+e.r,e.y=n.y)}function Hl(t,n){var e=t.r+n.r-1e-6,r=n.x-t.x,i=n.y-t.y;return e>0&&e*e>r*r+i*i}function jl(t){var n=t._,e=t.next._,r=n.r+e.r,i=(n.x*e.r+e.x*n.r)/r,o=(n.y*e.r+e.y*n.r)/r;return i*i+o*o}function Xl(t){this._=t,this.next=null,this.previous=null}function Vl(t){if(!(i=t.length))return 0;var n,e,r,i,o,a,u,c,f,s,l;if((n=t[0]).x=0,n.y=0,!(i>1))return n.r;if(e=t[1],n.x=-e.r,e.x=n.r,e.y=0,!(i>2))return n.r+e.r;Il(e,n,r=t[2]),n=new Xl(n),e=new Xl(e),r=new Xl(r),n.next=r.previous=e,e.next=n.previous=r,r.next=e.previous=n;t:for(u=3;uh&&(h=u),g=s*s*v,(d=Math.max(h/g,g/l))>p){s-=u;break}p=d}y.push(a={value:s,dice:c1?n:1)},e}(vh);var _h=function t(n){function e(t,e,r,i,o){if((a=t._squarify)&&a.ratio===n)for(var a,u,c,f,s,l=-1,h=a.length,d=t.value;++l1?n:1)},e}(vh);function bh(t,n,e){return(n[0]-t[0])*(e[1]-t[1])-(n[1]-t[1])*(e[0]-t[0])}function mh(t,n){return t[0]-n[0]||t[1]-n[1]}function xh(t){for(var n=t.length,e=[0,1],r=2,i=2;i1&&bh(t[e[r-2]],t[e[r-1]],t[i])<=0;)--r;e[r++]=i}return e.slice(0,r)}function wh(){return Math.random()}var Mh=function t(n){function e(t,e){return t=null==t?0:+t,e=null==e?1:+e,1===arguments.length?(e=t,t=0):e-=t,function(){return n()*e+t}}return e.source=t,e}(wh),Nh=function t(n){function e(t,e){var r,i;return t=null==t?0:+t,e=null==e?1:+e,function(){var o;if(null!=r)o=r,r=null;else do{r=2*n()-1,o=2*n()-1,i=r*r+o*o}while(!i||i>1);return t+e*o*Math.sqrt(-2*Math.log(i)/i)}}return e.source=t,e}(wh),Th=function t(n){function e(){var t=Nh.source(n).apply(this,arguments);return function(){return Math.exp(t())}}return e.source=t,e}(wh),Ah=function t(n){function e(t){return function(){for(var e=0,r=0;rr&&(n=e,e=r,r=n),function(t){return Math.max(e,Math.min(r,t))}}function Ih(t,n,e){var r=t[0],i=t[1],o=n[0],a=n[1];return i2?Hh:Ih,i=o=null,l}function l(n){return isNaN(n=+n)?e:(i||(i=r(a.map(t),u,c)))(t(f(n)))}return l.invert=function(e){return f(n((o||(o=r(u,a.map(t),me)))(e)))},l.domain=function(t){return arguments.length?(a=zh.call(t,Uh),f===Bh||(f=Yh(a)),s()):a.slice()},l.range=function(t){return arguments.length?(u=Rh.call(t),s()):u.slice()},l.rangeRound=function(t){return u=Rh.call(t),c=Ae,s()},l.clamp=function(t){return arguments.length?(f=t?Yh(a):Bh,l):f!==Bh},l.interpolate=function(t){return arguments.length?(c=t,s()):c},l.unknown=function(t){return arguments.length?(e=t,l):e},function(e,r){return t=e,n=r,s()}}function Vh(t,n){return Xh()(t,n)}function Gh(n,e,r,i){var o,a=w(n,e,r);switch((i=Oa(null==i?",f":i)).type){case"s":var u=Math.max(Math.abs(n),Math.abs(e));return null!=i.precision||isNaN(o=Wa(a,u))||(i.precision=o),t.formatPrefix(i,u);case"":case"e":case"g":case"p":case"r":null!=i.precision||isNaN(o=Za(a,Math.max(Math.abs(n),Math.abs(e))))||(i.precision=o-("e"===i.type));break;case"f":case"%":null!=i.precision||isNaN(o=$a(a))||(i.precision=o-2*("%"===i.type))}return t.format(i)}function $h(t){var n=t.domain;return t.ticks=function(t){var e=n();return m(e[0],e[e.length-1],null==t?10:t)},t.tickFormat=function(t,e){var r=n();return Gh(r[0],r[r.length-1],null==t?10:t,e)},t.nice=function(e){null==e&&(e=10);var r,i=n(),o=0,a=i.length-1,u=i[o],c=i[a];return c0?r=x(u=Math.floor(u/r)*r,c=Math.ceil(c/r)*r,e):r<0&&(r=x(u=Math.ceil(u*r)/r,c=Math.floor(c*r)/r,e)),r>0?(i[o]=Math.floor(u/r)*r,i[a]=Math.ceil(c/r)*r,n(i)):r<0&&(i[o]=Math.ceil(u*r)/r,i[a]=Math.floor(c*r)/r,n(i)),t},t}function Wh(t,n){var e,r=0,i=(t=t.slice()).length-1,o=t[r],a=t[i];return a0){for(;hc)break;v.push(l)}}else for(;h=1;--s)if(!((l=f*s)c)break;v.push(l)}}else v=m(h,d,Math.min(d-h,p)).map(r);return n?v.reverse():v},i.tickFormat=function(n,o){if(null==o&&(o=10===a?".0e":","),"function"!=typeof o&&(o=t.format(o)),n===1/0)return o;null==n&&(n=10);var u=Math.max(1,a*n/i.ticks().length);return function(t){var n=t/r(Math.round(e(t)));return n*a0))return u;do{u.push(a=new Date(+e)),n(e,o),t(e)}while(a=n)for(;t(n),!e(n);)n.setTime(n-1)},function(t,r){if(t>=t)if(r<0)for(;++r<=0;)for(;n(t,-1),!e(t););else for(;--r>=0;)for(;n(t,1),!e(t););})},e&&(i.count=function(n,r){return ld.setTime(+n),hd.setTime(+r),t(ld),t(hd),Math.floor(e(ld,hd))},i.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?i.filter(r?function(n){return r(n)%t==0}:function(n){return i.count(0,n)%t==0}):i:null}),i}var pd=dd(function(){},function(t,n){t.setTime(+t+n)},function(t,n){return n-t});pd.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?dd(function(n){n.setTime(Math.floor(n/t)*t)},function(n,e){n.setTime(+n+e*t)},function(n,e){return(e-n)/t}):pd:null};var vd=pd.range,gd=6e4,yd=6048e5,_d=dd(function(t){t.setTime(t-t.getMilliseconds())},function(t,n){t.setTime(+t+1e3*n)},function(t,n){return(n-t)/1e3},function(t){return t.getUTCSeconds()}),bd=_d.range,md=dd(function(t){t.setTime(t-t.getMilliseconds()-1e3*t.getSeconds())},function(t,n){t.setTime(+t+n*gd)},function(t,n){return(n-t)/gd},function(t){return t.getMinutes()}),xd=md.range,wd=dd(function(t){t.setTime(t-t.getMilliseconds()-1e3*t.getSeconds()-t.getMinutes()*gd)},function(t,n){t.setTime(+t+36e5*n)},function(t,n){return(n-t)/36e5},function(t){return t.getHours()}),Md=wd.range,Nd=dd(function(t){t.setHours(0,0,0,0)},function(t,n){t.setDate(t.getDate()+n)},function(t,n){return(n-t-(n.getTimezoneOffset()-t.getTimezoneOffset())*gd)/864e5},function(t){return t.getDate()-1}),Td=Nd.range;function Ad(t){return dd(function(n){n.setDate(n.getDate()-(n.getDay()+7-t)%7),n.setHours(0,0,0,0)},function(t,n){t.setDate(t.getDate()+7*n)},function(t,n){return(n-t-(n.getTimezoneOffset()-t.getTimezoneOffset())*gd)/yd})}var Sd=Ad(0),kd=Ad(1),Ed=Ad(2),Cd=Ad(3),Pd=Ad(4),zd=Ad(5),Rd=Ad(6),Dd=Sd.range,qd=kd.range,Ld=Ed.range,Ud=Cd.range,Od=Pd.range,Bd=zd.range,Fd=Rd.range,Yd=dd(function(t){t.setDate(1),t.setHours(0,0,0,0)},function(t,n){t.setMonth(t.getMonth()+n)},function(t,n){return n.getMonth()-t.getMonth()+12*(n.getFullYear()-t.getFullYear())},function(t){return t.getMonth()}),Id=Yd.range,Hd=dd(function(t){t.setMonth(0,1),t.setHours(0,0,0,0)},function(t,n){t.setFullYear(t.getFullYear()+n)},function(t,n){return n.getFullYear()-t.getFullYear()},function(t){return t.getFullYear()});Hd.every=function(t){return isFinite(t=Math.floor(t))&&t>0?dd(function(n){n.setFullYear(Math.floor(n.getFullYear()/t)*t),n.setMonth(0,1),n.setHours(0,0,0,0)},function(n,e){n.setFullYear(n.getFullYear()+e*t)}):null};var jd=Hd.range,Xd=dd(function(t){t.setUTCSeconds(0,0)},function(t,n){t.setTime(+t+n*gd)},function(t,n){return(n-t)/gd},function(t){return t.getUTCMinutes()}),Vd=Xd.range,Gd=dd(function(t){t.setUTCMinutes(0,0,0)},function(t,n){t.setTime(+t+36e5*n)},function(t,n){return(n-t)/36e5},function(t){return t.getUTCHours()}),$d=Gd.range,Wd=dd(function(t){t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCDate(t.getUTCDate()+n)},function(t,n){return(n-t)/864e5},function(t){return t.getUTCDate()-1}),Zd=Wd.range;function Qd(t){return dd(function(n){n.setUTCDate(n.getUTCDate()-(n.getUTCDay()+7-t)%7),n.setUTCHours(0,0,0,0)},function(t,n){t.setUTCDate(t.getUTCDate()+7*n)},function(t,n){return(n-t)/yd})}var Kd=Qd(0),Jd=Qd(1),tp=Qd(2),np=Qd(3),ep=Qd(4),rp=Qd(5),ip=Qd(6),op=Kd.range,ap=Jd.range,up=tp.range,cp=np.range,fp=ep.range,sp=rp.range,lp=ip.range,hp=dd(function(t){t.setUTCDate(1),t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCMonth(t.getUTCMonth()+n)},function(t,n){return n.getUTCMonth()-t.getUTCMonth()+12*(n.getUTCFullYear()-t.getUTCFullYear())},function(t){return t.getUTCMonth()}),dp=hp.range,pp=dd(function(t){t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCFullYear(t.getUTCFullYear()+n)},function(t,n){return n.getUTCFullYear()-t.getUTCFullYear()},function(t){return t.getUTCFullYear()});pp.every=function(t){return isFinite(t=Math.floor(t))&&t>0?dd(function(n){n.setUTCFullYear(Math.floor(n.getUTCFullYear()/t)*t),n.setUTCMonth(0,1),n.setUTCHours(0,0,0,0)},function(n,e){n.setUTCFullYear(n.getUTCFullYear()+e*t)}):null};var vp=pp.range;function gp(t){if(0<=t.y&&t.y<100){var n=new Date(-1,t.m,t.d,t.H,t.M,t.S,t.L);return n.setFullYear(t.y),n}return new Date(t.y,t.m,t.d,t.H,t.M,t.S,t.L)}function yp(t){if(0<=t.y&&t.y<100){var n=new Date(Date.UTC(-1,t.m,t.d,t.H,t.M,t.S,t.L));return n.setUTCFullYear(t.y),n}return new Date(Date.UTC(t.y,t.m,t.d,t.H,t.M,t.S,t.L))}function _p(t,n,e){return{y:t,m:n,d:e,H:0,M:0,S:0,L:0}}function bp(t){var n=t.dateTime,e=t.date,r=t.time,i=t.periods,o=t.days,a=t.shortDays,u=t.months,c=t.shortMonths,f=Sp(i),s=kp(i),l=Sp(o),h=kp(o),d=Sp(a),p=kp(a),v=Sp(u),g=kp(u),y=Sp(c),_=kp(c),b={a:function(t){return a[t.getDay()]},A:function(t){return o[t.getDay()]},b:function(t){return c[t.getMonth()]},B:function(t){return u[t.getMonth()]},c:null,d:Wp,e:Wp,f:tv,H:Zp,I:Qp,j:Kp,L:Jp,m:nv,M:ev,p:function(t){return i[+(t.getHours()>=12)]},q:function(t){return 1+~~(t.getMonth()/3)},Q:Cv,s:Pv,S:rv,u:iv,U:ov,V:av,w:uv,W:cv,x:null,X:null,y:fv,Y:sv,Z:lv,"%":Ev},m={a:function(t){return a[t.getUTCDay()]},A:function(t){return o[t.getUTCDay()]},b:function(t){return c[t.getUTCMonth()]},B:function(t){return u[t.getUTCMonth()]},c:null,d:hv,e:hv,f:yv,H:dv,I:pv,j:vv,L:gv,m:_v,M:bv,p:function(t){return i[+(t.getUTCHours()>=12)]},q:function(t){return 1+~~(t.getUTCMonth()/3)},Q:Cv,s:Pv,S:mv,u:xv,U:wv,V:Mv,w:Nv,W:Tv,x:null,X:null,y:Av,Y:Sv,Z:kv,"%":Ev},x={a:function(t,n,e){var r=d.exec(n.slice(e));return r?(t.w=p[r[0].toLowerCase()],e+r[0].length):-1},A:function(t,n,e){var r=l.exec(n.slice(e));return r?(t.w=h[r[0].toLowerCase()],e+r[0].length):-1},b:function(t,n,e){var r=y.exec(n.slice(e));return r?(t.m=_[r[0].toLowerCase()],e+r[0].length):-1},B:function(t,n,e){var r=v.exec(n.slice(e));return r?(t.m=g[r[0].toLowerCase()],e+r[0].length):-1},c:function(t,e,r){return N(t,n,e,r)},d:Bp,e:Bp,f:Xp,H:Yp,I:Yp,j:Fp,L:jp,m:Op,M:Ip,p:function(t,n,e){var r=f.exec(n.slice(e));return r?(t.p=s[r[0].toLowerCase()],e+r[0].length):-1},q:Up,Q:Gp,s:$p,S:Hp,u:Cp,U:Pp,V:zp,w:Ep,W:Rp,x:function(t,n,r){return N(t,e,n,r)},X:function(t,n,e){return N(t,r,n,e)},y:qp,Y:Dp,Z:Lp,"%":Vp};function w(t,n){return function(e){var r,i,o,a=[],u=-1,c=0,f=t.length;for(e instanceof Date||(e=new Date(+e));++u53)return null;"w"in o||(o.w=1),"Z"in o?(i=(r=yp(_p(o.y,0,1))).getUTCDay(),r=i>4||0===i?Jd.ceil(r):Jd(r),r=Wd.offset(r,7*(o.V-1)),o.y=r.getUTCFullYear(),o.m=r.getUTCMonth(),o.d=r.getUTCDate()+(o.w+6)%7):(i=(r=gp(_p(o.y,0,1))).getDay(),r=i>4||0===i?kd.ceil(r):kd(r),r=Nd.offset(r,7*(o.V-1)),o.y=r.getFullYear(),o.m=r.getMonth(),o.d=r.getDate()+(o.w+6)%7)}else("W"in o||"U"in o)&&("w"in o||(o.w="u"in o?o.u%7:"W"in o?1:0),i="Z"in o?yp(_p(o.y,0,1)).getUTCDay():gp(_p(o.y,0,1)).getDay(),o.m=0,o.d="W"in o?(o.w+6)%7+7*o.W-(i+5)%7:o.w+7*o.U-(i+6)%7);return"Z"in o?(o.H+=o.Z/100|0,o.M+=o.Z%100,yp(o)):gp(o)}}function N(t,n,e,r){for(var i,o,a=0,u=n.length,c=e.length;a=c)return-1;if(37===(i=n.charCodeAt(a++))){if(i=n.charAt(a++),!(o=x[i in xp?n.charAt(a++):i])||(r=o(t,e,r))<0)return-1}else if(i!=e.charCodeAt(r++))return-1}return r}return b.x=w(e,b),b.X=w(r,b),b.c=w(n,b),m.x=w(e,m),m.X=w(r,m),m.c=w(n,m),{format:function(t){var n=w(t+="",b);return n.toString=function(){return t},n},parse:function(t){var n=M(t+="",!1);return n.toString=function(){return t},n},utcFormat:function(t){var n=w(t+="",m);return n.toString=function(){return t},n},utcParse:function(t){var n=M(t+="",!0);return n.toString=function(){return t},n}}}var mp,xp={"-":"",_:" ",0:"0"},wp=/^\s*\d+/,Mp=/^%/,Np=/[\\^$*+?|[\]().{}]/g;function Tp(t,n,e){var r=t<0?"-":"",i=(r?-t:t)+"",o=i.length;return r+(o68?1900:2e3),e+r[0].length):-1}function Lp(t,n,e){var r=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(n.slice(e,e+6));return r?(t.Z=r[1]?0:-(r[2]+(r[3]||"00")),e+r[0].length):-1}function Up(t,n,e){var r=wp.exec(n.slice(e,e+1));return r?(t.q=3*r[0]-3,e+r[0].length):-1}function Op(t,n,e){var r=wp.exec(n.slice(e,e+2));return r?(t.m=r[0]-1,e+r[0].length):-1}function Bp(t,n,e){var r=wp.exec(n.slice(e,e+2));return r?(t.d=+r[0],e+r[0].length):-1}function Fp(t,n,e){var r=wp.exec(n.slice(e,e+3));return r?(t.m=0,t.d=+r[0],e+r[0].length):-1}function Yp(t,n,e){var r=wp.exec(n.slice(e,e+2));return r?(t.H=+r[0],e+r[0].length):-1}function Ip(t,n,e){var r=wp.exec(n.slice(e,e+2));return r?(t.M=+r[0],e+r[0].length):-1}function Hp(t,n,e){var r=wp.exec(n.slice(e,e+2));return r?(t.S=+r[0],e+r[0].length):-1}function jp(t,n,e){var r=wp.exec(n.slice(e,e+3));return r?(t.L=+r[0],e+r[0].length):-1}function Xp(t,n,e){var r=wp.exec(n.slice(e,e+6));return r?(t.L=Math.floor(r[0]/1e3),e+r[0].length):-1}function Vp(t,n,e){var r=Mp.exec(n.slice(e,e+1));return r?e+r[0].length:-1}function Gp(t,n,e){var r=wp.exec(n.slice(e));return r?(t.Q=+r[0],e+r[0].length):-1}function $p(t,n,e){var r=wp.exec(n.slice(e));return r?(t.s=+r[0],e+r[0].length):-1}function Wp(t,n){return Tp(t.getDate(),n,2)}function Zp(t,n){return Tp(t.getHours(),n,2)}function Qp(t,n){return Tp(t.getHours()%12||12,n,2)}function Kp(t,n){return Tp(1+Nd.count(Hd(t),t),n,3)}function Jp(t,n){return Tp(t.getMilliseconds(),n,3)}function tv(t,n){return Jp(t,n)+"000"}function nv(t,n){return Tp(t.getMonth()+1,n,2)}function ev(t,n){return Tp(t.getMinutes(),n,2)}function rv(t,n){return Tp(t.getSeconds(),n,2)}function iv(t){var n=t.getDay();return 0===n?7:n}function ov(t,n){return Tp(Sd.count(Hd(t)-1,t),n,2)}function av(t,n){var e=t.getDay();return t=e>=4||0===e?Pd(t):Pd.ceil(t),Tp(Pd.count(Hd(t),t)+(4===Hd(t).getDay()),n,2)}function uv(t){return t.getDay()}function cv(t,n){return Tp(kd.count(Hd(t)-1,t),n,2)}function fv(t,n){return Tp(t.getFullYear()%100,n,2)}function sv(t,n){return Tp(t.getFullYear()%1e4,n,4)}function lv(t){var n=t.getTimezoneOffset();return(n>0?"-":(n*=-1,"+"))+Tp(n/60|0,"0",2)+Tp(n%60,"0",2)}function hv(t,n){return Tp(t.getUTCDate(),n,2)}function dv(t,n){return Tp(t.getUTCHours(),n,2)}function pv(t,n){return Tp(t.getUTCHours()%12||12,n,2)}function vv(t,n){return Tp(1+Wd.count(pp(t),t),n,3)}function gv(t,n){return Tp(t.getUTCMilliseconds(),n,3)}function yv(t,n){return gv(t,n)+"000"}function _v(t,n){return Tp(t.getUTCMonth()+1,n,2)}function bv(t,n){return Tp(t.getUTCMinutes(),n,2)}function mv(t,n){return Tp(t.getUTCSeconds(),n,2)}function xv(t){var n=t.getUTCDay();return 0===n?7:n}function wv(t,n){return Tp(Kd.count(pp(t)-1,t),n,2)}function Mv(t,n){var e=t.getUTCDay();return t=e>=4||0===e?ep(t):ep.ceil(t),Tp(ep.count(pp(t),t)+(4===pp(t).getUTCDay()),n,2)}function Nv(t){return t.getUTCDay()}function Tv(t,n){return Tp(Jd.count(pp(t)-1,t),n,2)}function Av(t,n){return Tp(t.getUTCFullYear()%100,n,2)}function Sv(t,n){return Tp(t.getUTCFullYear()%1e4,n,4)}function kv(){return"+0000"}function Ev(){return"%"}function Cv(t){return+t}function Pv(t){return Math.floor(+t/1e3)}function zv(n){return mp=bp(n),t.timeFormat=mp.format,t.timeParse=mp.parse,t.utcFormat=mp.utcFormat,t.utcParse=mp.utcParse,mp}zv({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});var Rv=Date.prototype.toISOString?function(t){return t.toISOString()}:t.utcFormat("%Y-%m-%dT%H:%M:%S.%LZ");var Dv=+new Date("2000-01-01T00:00:00.000Z")?function(t){var n=new Date(t);return isNaN(n)?null:n}:t.utcParse("%Y-%m-%dT%H:%M:%S.%LZ"),qv=1e3,Lv=60*qv,Uv=60*Lv,Ov=24*Uv,Bv=7*Ov,Fv=30*Ov,Yv=365*Ov;function Iv(t){return new Date(t)}function Hv(t){return t instanceof Date?+t:+new Date(+t)}function jv(t,n,r,i,o,a,u,c,f){var s=Vh(Bh,Bh),l=s.invert,h=s.domain,d=f(".%L"),p=f(":%S"),v=f("%I:%M"),g=f("%I %p"),y=f("%a %d"),_=f("%b %d"),b=f("%B"),m=f("%Y"),x=[[u,1,qv],[u,5,5*qv],[u,15,15*qv],[u,30,30*qv],[a,1,Lv],[a,5,5*Lv],[a,15,15*Lv],[a,30,30*Lv],[o,1,Uv],[o,3,3*Uv],[o,6,6*Uv],[o,12,12*Uv],[i,1,Ov],[i,2,2*Ov],[r,1,Bv],[n,1,Fv],[n,3,3*Fv],[t,1,Yv]];function M(e){return(u(e)=1?Cy:t<=-1?-Cy:Math.asin(t)}function Ry(t){return t.innerRadius}function Dy(t){return t.outerRadius}function qy(t){return t.startAngle}function Ly(t){return t.endAngle}function Uy(t){return t&&t.padAngle}function Oy(t,n,e,r,i,o,a){var u=t-e,c=n-r,f=(a?o:-o)/Sy(u*u+c*c),s=f*c,l=-f*u,h=t+s,d=n+l,p=e+s,v=r+l,g=(h+p)/2,y=(d+v)/2,_=p-h,b=v-d,m=_*_+b*b,x=i-o,w=h*v-p*d,M=(b<0?-1:1)*Sy(Ny(0,x*x*m-w*w)),N=(w*b-_*M)/m,T=(-w*_-b*M)/m,A=(w*b+_*M)/m,S=(-w*_+b*M)/m,k=N-g,E=T-y,C=A-g,P=S-y;return k*k+E*E>C*C+P*P&&(N=A,T=S),{cx:N,cy:T,x01:-s,y01:-l,x11:N*(i/x-1),y11:T*(i/x-1)}}function By(t){this._context=t}function Fy(t){return new By(t)}function Yy(t){return t[0]}function Iy(t){return t[1]}function Hy(){var t=Yy,n=Iy,e=my(!0),r=null,i=Fy,o=null;function a(a){var u,c,f,s=a.length,l=!1;for(null==r&&(o=i(f=no())),u=0;u<=s;++u)!(u=s;--l)u.point(g[l],y[l]);u.lineEnd(),u.areaEnd()}v&&(g[f]=+t(h,f,c),y[f]=+e(h,f,c),u.point(n?+n(h,f,c):g[f],r?+r(h,f,c):y[f]))}if(d)return u=null,d+""||null}function f(){return Hy().defined(i).curve(a).context(o)}return c.x=function(e){return arguments.length?(t="function"==typeof e?e:my(+e),n=null,c):t},c.x0=function(n){return arguments.length?(t="function"==typeof n?n:my(+n),c):t},c.x1=function(t){return arguments.length?(n=null==t?null:"function"==typeof t?t:my(+t),c):n},c.y=function(t){return arguments.length?(e="function"==typeof t?t:my(+t),r=null,c):e},c.y0=function(t){return arguments.length?(e="function"==typeof t?t:my(+t),c):e},c.y1=function(t){return arguments.length?(r=null==t?null:"function"==typeof t?t:my(+t),c):r},c.lineX0=c.lineY0=function(){return f().x(t).y(e)},c.lineY1=function(){return f().x(t).y(r)},c.lineX1=function(){return f().x(n).y(e)},c.defined=function(t){return arguments.length?(i="function"==typeof t?t:my(!!t),c):i},c.curve=function(t){return arguments.length?(a=t,null!=o&&(u=a(o)),c):a},c.context=function(t){return arguments.length?(null==t?o=u=null:u=a(o=t),c):o},c}function Xy(t,n){return nt?1:n>=t?0:NaN}function Vy(t){return t}By.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;default:this._context.lineTo(t,n)}}};var Gy=Wy(Fy);function $y(t){this._curve=t}function Wy(t){function n(n){return new $y(t(n))}return n._curve=t,n}function Zy(t){var n=t.curve;return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t.curve=function(t){return arguments.length?n(Wy(t)):n()._curve},t}function Qy(){return Zy(Hy().curve(Gy))}function Ky(){var t=jy().curve(Gy),n=t.curve,e=t.lineX0,r=t.lineX1,i=t.lineY0,o=t.lineY1;return t.angle=t.x,delete t.x,t.startAngle=t.x0,delete t.x0,t.endAngle=t.x1,delete t.x1,t.radius=t.y,delete t.y,t.innerRadius=t.y0,delete t.y0,t.outerRadius=t.y1,delete t.y1,t.lineStartAngle=function(){return Zy(e())},delete t.lineX0,t.lineEndAngle=function(){return Zy(r())},delete t.lineX1,t.lineInnerRadius=function(){return Zy(i())},delete t.lineY0,t.lineOuterRadius=function(){return Zy(o())},delete t.lineY1,t.curve=function(t){return arguments.length?n(Wy(t)):n()._curve},t}function Jy(t,n){return[(n=+n)*Math.cos(t-=Math.PI/2),n*Math.sin(t)]}$y.prototype={areaStart:function(){this._curve.areaStart()},areaEnd:function(){this._curve.areaEnd()},lineStart:function(){this._curve.lineStart()},lineEnd:function(){this._curve.lineEnd()},point:function(t,n){this._curve.point(n*Math.sin(t),n*-Math.cos(t))}};var t_=Array.prototype.slice;function n_(t){return t.source}function e_(t){return t.target}function r_(t){var n=n_,e=e_,r=Yy,i=Iy,o=null;function a(){var a,u=t_.call(arguments),c=n.apply(this,u),f=e.apply(this,u);if(o||(o=a=no()),t(o,+r.apply(this,(u[0]=c,u)),+i.apply(this,u),+r.apply(this,(u[0]=f,u)),+i.apply(this,u)),a)return o=null,a+""||null}return a.source=function(t){return arguments.length?(n=t,a):n},a.target=function(t){return arguments.length?(e=t,a):e},a.x=function(t){return arguments.length?(r="function"==typeof t?t:my(+t),a):r},a.y=function(t){return arguments.length?(i="function"==typeof t?t:my(+t),a):i},a.context=function(t){return arguments.length?(o=null==t?null:t,a):o},a}function i_(t,n,e,r,i){t.moveTo(n,e),t.bezierCurveTo(n=(n+r)/2,e,n,i,r,i)}function o_(t,n,e,r,i){t.moveTo(n,e),t.bezierCurveTo(n,e=(e+i)/2,r,e,r,i)}function a_(t,n,e,r,i){var o=Jy(n,e),a=Jy(n,e=(e+i)/2),u=Jy(r,e),c=Jy(r,i);t.moveTo(o[0],o[1]),t.bezierCurveTo(a[0],a[1],u[0],u[1],c[0],c[1])}var u_={draw:function(t,n){var e=Math.sqrt(n/Ey);t.moveTo(e,0),t.arc(0,0,e,0,Py)}},c_={draw:function(t,n){var e=Math.sqrt(n/5)/2;t.moveTo(-3*e,-e),t.lineTo(-e,-e),t.lineTo(-e,-3*e),t.lineTo(e,-3*e),t.lineTo(e,-e),t.lineTo(3*e,-e),t.lineTo(3*e,e),t.lineTo(e,e),t.lineTo(e,3*e),t.lineTo(-e,3*e),t.lineTo(-e,e),t.lineTo(-3*e,e),t.closePath()}},f_=Math.sqrt(1/3),s_=2*f_,l_={draw:function(t,n){var e=Math.sqrt(n/s_),r=e*f_;t.moveTo(0,-e),t.lineTo(r,0),t.lineTo(0,e),t.lineTo(-r,0),t.closePath()}},h_=Math.sin(Ey/10)/Math.sin(7*Ey/10),d_=Math.sin(Py/10)*h_,p_=-Math.cos(Py/10)*h_,v_={draw:function(t,n){var e=Math.sqrt(.8908130915292852*n),r=d_*e,i=p_*e;t.moveTo(0,-e),t.lineTo(r,i);for(var o=1;o<5;++o){var a=Py*o/5,u=Math.cos(a),c=Math.sin(a);t.lineTo(c*e,-u*e),t.lineTo(u*r-c*i,c*r+u*i)}t.closePath()}},g_={draw:function(t,n){var e=Math.sqrt(n),r=-e/2;t.rect(r,r,e,e)}},y_=Math.sqrt(3),__={draw:function(t,n){var e=-Math.sqrt(n/(3*y_));t.moveTo(0,2*e),t.lineTo(-y_*e,-e),t.lineTo(y_*e,-e),t.closePath()}},b_=Math.sqrt(3)/2,m_=1/Math.sqrt(12),x_=3*(m_/2+1),w_={draw:function(t,n){var e=Math.sqrt(n/x_),r=e/2,i=e*m_,o=r,a=e*m_+e,u=-o,c=a;t.moveTo(r,i),t.lineTo(o,a),t.lineTo(u,c),t.lineTo(-.5*r-b_*i,b_*r+-.5*i),t.lineTo(-.5*o-b_*a,b_*o+-.5*a),t.lineTo(-.5*u-b_*c,b_*u+-.5*c),t.lineTo(-.5*r+b_*i,-.5*i-b_*r),t.lineTo(-.5*o+b_*a,-.5*a-b_*o),t.lineTo(-.5*u+b_*c,-.5*c-b_*u),t.closePath()}},M_=[u_,c_,l_,g_,v_,__,w_];function N_(){}function T_(t,n,e){t._context.bezierCurveTo((2*t._x0+t._x1)/3,(2*t._y0+t._y1)/3,(t._x0+2*t._x1)/3,(t._y0+2*t._y1)/3,(t._x0+4*t._x1+n)/6,(t._y0+4*t._y1+e)/6)}function A_(t){this._context=t}function S_(t){this._context=t}function k_(t){this._context=t}function E_(t,n){this._basis=new A_(t),this._beta=n}A_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:T_(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:T_(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}},S_.prototype={areaStart:N_,areaEnd:N_,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x2,this._y2),this._context.closePath();break;case 2:this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break;case 3:this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4)}},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._x2=t,this._y2=n;break;case 1:this._point=2,this._x3=t,this._y3=n;break;case 2:this._point=3,this._x4=t,this._y4=n,this._context.moveTo((this._x0+4*this._x1+t)/6,(this._y0+4*this._y1+n)/6);break;default:T_(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}},k_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var e=(this._x0+4*this._x1+t)/6,r=(this._y0+4*this._y1+n)/6;this._line?this._context.lineTo(e,r):this._context.moveTo(e,r);break;case 3:this._point=4;default:T_(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}},E_.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var t=this._x,n=this._y,e=t.length-1;if(e>0)for(var r,i=t[0],o=n[0],a=t[e]-i,u=n[e]-o,c=-1;++c<=e;)r=c/e,this._basis.point(this._beta*t[c]+(1-this._beta)*(i+r*a),this._beta*n[c]+(1-this._beta)*(o+r*u));this._x=this._y=null,this._basis.lineEnd()},point:function(t,n){this._x.push(+t),this._y.push(+n)}};var C_=function t(n){function e(t){return 1===n?new A_(t):new E_(t,n)}return e.beta=function(n){return t(+n)},e}(.85);function P_(t,n,e){t._context.bezierCurveTo(t._x1+t._k*(t._x2-t._x0),t._y1+t._k*(t._y2-t._y0),t._x2+t._k*(t._x1-n),t._y2+t._k*(t._y1-e),t._x2,t._y2)}function z_(t,n){this._context=t,this._k=(1-n)/6}z_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:P_(this,this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2,this._x1=t,this._y1=n;break;case 2:this._point=3;default:P_(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var R_=function t(n){function e(t){return new z_(t,n)}return e.tension=function(n){return t(+n)},e}(0);function D_(t,n){this._context=t,this._k=(1-n)/6}D_.prototype={areaStart:N_,areaEnd:N_,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._x3=t,this._y3=n;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=n);break;case 2:this._point=3,this._x5=t,this._y5=n;break;default:P_(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var q_=function t(n){function e(t){return new D_(t,n)}return e.tension=function(n){return t(+n)},e}(0);function L_(t,n){this._context=t,this._k=(1-n)/6}L_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:P_(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var U_=function t(n){function e(t){return new L_(t,n)}return e.tension=function(n){return t(+n)},e}(0);function O_(t,n,e){var r=t._x1,i=t._y1,o=t._x2,a=t._y2;if(t._l01_a>ky){var u=2*t._l01_2a+3*t._l01_a*t._l12_a+t._l12_2a,c=3*t._l01_a*(t._l01_a+t._l12_a);r=(r*u-t._x0*t._l12_2a+t._x2*t._l01_2a)/c,i=(i*u-t._y0*t._l12_2a+t._y2*t._l01_2a)/c}if(t._l23_a>ky){var f=2*t._l23_2a+3*t._l23_a*t._l12_a+t._l12_2a,s=3*t._l23_a*(t._l23_a+t._l12_a);o=(o*f+t._x1*t._l23_2a-n*t._l12_2a)/s,a=(a*f+t._y1*t._l23_2a-e*t._l12_2a)/s}t._context.bezierCurveTo(r,i,o,a,t._x2,t._y2)}function B_(t,n){this._context=t,this._alpha=n}B_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;break;case 2:this._point=3;default:O_(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var F_=function t(n){function e(t){return n?new B_(t,n):new z_(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);function Y_(t,n){this._context=t,this._alpha=n}Y_.prototype={areaStart:N_,areaEnd:N_,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=t,this._y3=n;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=n);break;case 2:this._point=3,this._x5=t,this._y5=n;break;default:O_(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var I_=function t(n){function e(t){return n?new Y_(t,n):new D_(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);function H_(t,n){this._context=t,this._alpha=n}H_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:O_(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var j_=function t(n){function e(t){return n?new H_(t,n):new L_(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);function X_(t){this._context=t}function V_(t){return t<0?-1:1}function G_(t,n,e){var r=t._x1-t._x0,i=n-t._x1,o=(t._y1-t._y0)/(r||i<0&&-0),a=(e-t._y1)/(i||r<0&&-0),u=(o*i+a*r)/(r+i);return(V_(o)+V_(a))*Math.min(Math.abs(o),Math.abs(a),.5*Math.abs(u))||0}function $_(t,n){var e=t._x1-t._x0;return e?(3*(t._y1-t._y0)/e-n)/2:n}function W_(t,n,e){var r=t._x0,i=t._y0,o=t._x1,a=t._y1,u=(o-r)/3;t._context.bezierCurveTo(r+u,i+u*n,o-u,a-u*e,o,a)}function Z_(t){this._context=t}function Q_(t){this._context=new K_(t)}function K_(t){this._context=t}function J_(t){this._context=t}function tb(t){var n,e,r=t.length-1,i=new Array(r),o=new Array(r),a=new Array(r);for(i[0]=0,o[0]=2,a[0]=t[0]+2*t[1],n=1;n=0;--n)i[n]=(a[n]-i[n+1])/o[n];for(o[r-1]=(t[r]+i[r-1])/2,n=0;n1)for(var e,r,i,o=1,a=t[n[0]],u=a.length;o=0;)e[n]=n;return e}function ib(t,n){return t[n]}function ob(t){var n=t.map(ab);return rb(t).sort(function(t,e){return n[t]-n[e]})}function ab(t){for(var n,e=-1,r=0,i=t.length,o=-1/0;++eo&&(o=n,r=e);return r}function ub(t){var n=t.map(cb);return rb(t).sort(function(t,e){return n[t]-n[e]})}function cb(t){for(var n,e=0,r=-1,i=t.length;++r0)){if(o/=h,h<0){if(o0){if(o>l)return;o>s&&(s=o)}if(o=r-c,h||!(o<0)){if(o/=h,h<0){if(o>l)return;o>s&&(s=o)}else if(h>0){if(o0)){if(o/=d,d<0){if(o0){if(o>l)return;o>s&&(s=o)}if(o=i-f,d||!(o<0)){if(o/=d,d<0){if(o>l)return;o>s&&(s=o)}else if(d>0){if(o0||l<1)||(s>0&&(t[0]=[c+s*h,f+s*d]),l<1&&(t[1]=[c+l*h,f+l*d]),!0)}}}}}function xb(t,n,e,r,i){var o=t[1];if(o)return!0;var a,u,c=t[0],f=t.left,s=t.right,l=f[0],h=f[1],d=s[0],p=s[1],v=(l+d)/2,g=(h+p)/2;if(p===h){if(v=r)return;if(l>d){if(c){if(c[1]>=i)return}else c=[v,e];o=[v,i]}else{if(c){if(c[1]1)if(l>d){if(c){if(c[1]>=i)return}else c=[(e-u)/a,e];o=[(i-u)/a,i]}else{if(c){if(c[1]=r)return}else c=[n,a*n+u];o=[r,a*r+u]}else{if(c){if(c[0]=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,n),this._context.lineTo(t,n);else{var e=this._x*(1-this._t)+t*this._t;this._context.lineTo(e,this._y),this._context.lineTo(e,n)}}this._x=t,this._y=n}},hb.prototype={constructor:hb,insert:function(t,n){var e,r,i;if(t){if(n.P=t,n.N=t.N,t.N&&(t.N.P=n),t.N=n,t.R){for(t=t.R;t.L;)t=t.L;t.L=n}else t.R=n;e=t}else this._?(t=gb(this._),n.P=null,n.N=t,t.P=t.L=n,e=t):(n.P=n.N=null,this._=n,e=null);for(n.L=n.R=null,n.U=e,n.C=!0,t=n;e&&e.C;)e===(r=e.U).L?(i=r.R)&&i.C?(e.C=i.C=!1,r.C=!0,t=r):(t===e.R&&(pb(this,e),e=(t=e).U),e.C=!1,r.C=!0,vb(this,r)):(i=r.L)&&i.C?(e.C=i.C=!1,r.C=!0,t=r):(t===e.L&&(vb(this,e),e=(t=e).U),e.C=!1,r.C=!0,pb(this,r)),e=t.U;this._.C=!1},remove:function(t){t.N&&(t.N.P=t.P),t.P&&(t.P.N=t.N),t.N=t.P=null;var n,e,r,i=t.U,o=t.L,a=t.R;if(e=o?a?gb(a):o:a,i?i.L===t?i.L=e:i.R=e:this._=e,o&&a?(r=e.C,e.C=t.C,e.L=o,o.U=e,e!==a?(i=e.U,e.U=t.U,t=e.R,i.L=t,e.R=a,a.U=e):(e.U=i,i=e,t=e.R)):(r=t.C,t=e),t&&(t.U=i),!r)if(t&&t.C)t.C=!1;else{do{if(t===this._)break;if(t===i.L){if((n=i.R).C&&(n.C=!1,i.C=!0,pb(this,i),n=i.R),n.L&&n.L.C||n.R&&n.R.C){n.R&&n.R.C||(n.L.C=!1,n.C=!0,vb(this,n),n=i.R),n.C=i.C,i.C=n.R.C=!1,pb(this,i),t=this._;break}}else if((n=i.L).C&&(n.C=!1,i.C=!0,vb(this,i),n=i.L),n.L&&n.L.C||n.R&&n.R.C){n.L&&n.L.C||(n.R.C=!1,n.C=!0,pb(this,n),n=i.L),n.C=i.C,i.C=n.L.C=!1,vb(this,i),t=this._;break}n.C=!0,t=i,i=i.U}while(!t.C);t&&(t.C=!1)}}};var Tb,Ab=[];function Sb(){db(this),this.x=this.y=this.arc=this.site=this.cy=null}function kb(t){var n=t.P,e=t.N;if(n&&e){var r=n.site,i=t.site,o=e.site;if(r!==o){var a=i[0],u=i[1],c=r[0]-a,f=r[1]-u,s=o[0]-a,l=o[1]-u,h=2*(c*l-f*s);if(!(h>=-Hb)){var d=c*c+f*f,p=s*s+l*l,v=(l*d-f*p)/h,g=(c*p-s*d)/h,y=Ab.pop()||new Sb;y.arc=t,y.site=i,y.x=v+a,y.y=(y.cy=g+u)+Math.sqrt(v*v+g*g),t.circle=y;for(var _=null,b=Fb._;b;)if(y.yIb)u=u.L;else{if(!((i=o-Ub(u,a))>Ib)){r>-Ib?(n=u.P,e=u):i>-Ib?(n=u,e=u.N):n=e=u;break}if(!u.R){n=u;break}u=u.R}!function(t){Bb[t.index]={site:t,halfedges:[]}}(t);var c=zb(t);if(Ob.insert(n,c),n||e){if(n===e)return Eb(n),e=zb(n.site),Ob.insert(c,e),c.edge=e.edge=yb(n.site,c.site),kb(n),void kb(e);if(e){Eb(n),Eb(e);var f=n.site,s=f[0],l=f[1],h=t[0]-s,d=t[1]-l,p=e.site,v=p[0]-s,g=p[1]-l,y=2*(h*g-d*v),_=h*h+d*d,b=v*v+g*g,m=[(g*_-d*b)/y+s,(h*b-v*_)/y+l];bb(e.edge,f,p,m),c.edge=yb(f,t,null,m),e.edge=yb(t,p,null,m),kb(n),kb(e)}else c.edge=yb(n.site,c.site)}}function Lb(t,n){var e=t.site,r=e[0],i=e[1],o=i-n;if(!o)return r;var a=t.P;if(!a)return-1/0;var u=(e=a.site)[0],c=e[1],f=c-n;if(!f)return u;var s=u-r,l=1/o-1/f,h=s/f;return l?(-h+Math.sqrt(h*h-2*l*(s*s/(-2*f)-c+f/2+i-o/2)))/l+r:(r+u)/2}function Ub(t,n){var e=t.N;if(e)return Lb(e,n);var r=t.site;return r[1]===n?r[0]:1/0}var Ob,Bb,Fb,Yb,Ib=1e-6,Hb=1e-12;function jb(t,n,e){return(t[0]-e[0])*(n[1]-t[1])-(t[0]-n[0])*(e[1]-t[1])}function Xb(t,n){return n[1]-t[1]||n[0]-t[0]}function Vb(t,n){var e,r,i,o=t.sort(Xb).pop();for(Yb=[],Bb=new Array(t.length),Ob=new hb,Fb=new hb;;)if(i=Tb,o&&(!i||o[1]Ib||Math.abs(i[0][1]-i[1][1])>Ib)||delete Yb[o]}(a,u,c,f),function(t,n,e,r){var i,o,a,u,c,f,s,l,h,d,p,v,g=Bb.length,y=!0;for(i=0;iIb||Math.abs(v-h)>Ib)&&(c.splice(u,0,Yb.push(_b(a,d,Math.abs(p-t)Ib?[t,Math.abs(l-t)Ib?[Math.abs(h-r)Ib?[e,Math.abs(l-e)Ib?[Math.abs(h-n)=u)return null;var c=t-i.site[0],f=n-i.site[1],s=c*c+f*f;do{i=o.cells[r=a],a=null,i.halfedges.forEach(function(e){var r=o.edges[e],u=r.left;if(u!==i.site&&u||(u=r.right)){var c=t-u[0],f=n-u[1],l=c*c+f*f;lr?(r+i)/2:Math.min(0,r)||Math.max(0,i),a>o?(o+a)/2:Math.min(0,o)||Math.max(0,a))}Qb.prototype=Wb.prototype,t.FormatSpecifier=Ba,t.active=function(t,n){var e,r,i=t.__transition;if(i)for(r in n=null==n?null:n+"",i)if((e=i[r]).state>xr&&e.name===n)return new Ur([[t]],yi,n,+r);return null},t.arc=function(){var t=Ry,n=Dy,e=my(0),r=null,i=qy,o=Ly,a=Uy,u=null;function c(){var c,f,s=+t.apply(this,arguments),l=+n.apply(this,arguments),h=i.apply(this,arguments)-Cy,d=o.apply(this,arguments)-Cy,p=xy(d-h),v=d>h;if(u||(u=c=no()),lky)if(p>Py-ky)u.moveTo(l*My(h),l*Ay(h)),u.arc(0,0,l,h,d,!v),s>ky&&(u.moveTo(s*My(d),s*Ay(d)),u.arc(0,0,s,d,h,v));else{var g,y,_=h,b=d,m=h,x=d,w=p,M=p,N=a.apply(this,arguments)/2,T=N>ky&&(r?+r.apply(this,arguments):Sy(s*s+l*l)),A=Ty(xy(l-s)/2,+e.apply(this,arguments)),S=A,k=A;if(T>ky){var E=zy(T/s*Ay(N)),C=zy(T/l*Ay(N));(w-=2*E)>ky?(m+=E*=v?1:-1,x-=E):(w=0,m=x=(h+d)/2),(M-=2*C)>ky?(_+=C*=v?1:-1,b-=C):(M=0,_=b=(h+d)/2)}var P=l*My(_),z=l*Ay(_),R=s*My(x),D=s*Ay(x);if(A>ky){var q,L=l*My(b),U=l*Ay(b),O=s*My(m),B=s*Ay(m);if(p1?0:t<-1?Ey:Math.acos(t)}((F*I+Y*H)/(Sy(F*F+Y*Y)*Sy(I*I+H*H)))/2),X=Sy(q[0]*q[0]+q[1]*q[1]);S=Ty(A,(s-X)/(j-1)),k=Ty(A,(l-X)/(j+1))}}M>ky?k>ky?(g=Oy(O,B,P,z,l,k,v),y=Oy(L,U,R,D,l,k,v),u.moveTo(g.cx+g.x01,g.cy+g.y01),kky&&w>ky?S>ky?(g=Oy(R,D,L,U,s,-S,v),y=Oy(P,z,O,B,s,-S,v),u.lineTo(g.cx+g.x01,g.cy+g.y01),S>a,f=i+2*u>>a,s=bo(20);function l(r){var i=new Float32Array(c*f),l=new Float32Array(c*f);r.forEach(function(r,o,s){var l=+t(r,o,s)+u>>a,h=+n(r,o,s)+u>>a,d=+e(r,o,s);l>=0&&l=0&&h>a),So({width:c,height:f,data:l},{width:c,height:f,data:i},o>>a),Ao({width:c,height:f,data:i},{width:c,height:f,data:l},o>>a),So({width:c,height:f,data:l},{width:c,height:f,data:i},o>>a),Ao({width:c,height:f,data:i},{width:c,height:f,data:l},o>>a),So({width:c,height:f,data:l},{width:c,height:f,data:i},o>>a);var d=s(i);if(!Array.isArray(d)){var p=T(i);d=w(0,p,d),(d=g(0,Math.floor(p/d)*d,d)).shift()}return To().thresholds(d).size([c,f])(i).map(h)}function h(t){return t.value*=Math.pow(2,-2*a),t.coordinates.forEach(d),t}function d(t){t.forEach(p)}function p(t){t.forEach(v)}function v(t){t[0]=t[0]*Math.pow(2,a)-u,t[1]=t[1]*Math.pow(2,a)-u}function y(){return c=r+2*(u=3*o)>>a,f=i+2*u>>a,l}return l.x=function(n){return arguments.length?(t="function"==typeof n?n:bo(+n),l):t},l.y=function(t){return arguments.length?(n="function"==typeof t?t:bo(+t),l):n},l.weight=function(t){return arguments.length?(e="function"==typeof t?t:bo(+t),l):e},l.size=function(t){if(!arguments.length)return[r,i];var n=Math.ceil(t[0]),e=Math.ceil(t[1]);if(!(n>=0||n>=0))throw new Error("invalid size");return r=n,i=e,y()},l.cellSize=function(t){if(!arguments.length)return 1<=1))throw new Error("invalid cell size");return a=Math.floor(Math.log(t)/Math.LN2),y()},l.thresholds=function(t){return arguments.length?(s="function"==typeof t?t:Array.isArray(t)?bo(yo.call(t)):bo(t),l):s},l.bandwidth=function(t){if(!arguments.length)return Math.sqrt(o*(o+1));if(!((t=+t)>=0))throw new Error("invalid bandwidth");return o=Math.round((Math.sqrt(4*t*t+1)-1)/2),y()},l},t.contours=To,t.create=function(t){return Rt(Z(t).call(document.documentElement))},t.creator=Z,t.cross=function(t,n,e){var r,i,o,u,c=t.length,f=n.length,s=new Array(c*f);for(null==e&&(e=a),r=o=0;rt?1:n>=t?0:NaN},t.deviation=f,t.dispatch=I,t.drag=function(){var n,e,r,i,o=Gt,a=$t,u=Wt,c=Zt,f={},s=I("start","drag","end"),l=0,h=0;function d(t){t.on("mousedown.drag",p).filter(c).on("touchstart.drag",y).on("touchmove.drag",_).on("touchend.drag touchcancel.drag",b).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function p(){if(!i&&o.apply(this,arguments)){var u=m("mouse",a.apply(this,arguments),Bt,this,arguments);u&&(Rt(t.event.view).on("mousemove.drag",v,!0).on("mouseup.drag",g,!0),Ht(t.event.view),Yt(),r=!1,n=t.event.clientX,e=t.event.clientY,u("start"))}}function v(){if(It(),!r){var i=t.event.clientX-n,o=t.event.clientY-e;r=i*i+o*o>h}f.mouse("drag")}function g(){Rt(t.event.view).on("mousemove.drag mouseup.drag",null),jt(t.event.view,r),It(),f.mouse("end")}function y(){if(o.apply(this,arguments)){var n,e,r=t.event.changedTouches,i=a.apply(this,arguments),u=r.length;for(n=0;nc+d||if+d||ou.index){var p=c-a.x-a.vx,v=f-a.y-a.vy,g=p*p+v*v;gt.r&&(t.r=t[n].r)}function u(){if(n){var r,i,o=n.length;for(e=new Array(o),r=0;r=a)){(t.data!==n||t.next)&&(0===s&&(d+=(s=ya())*s),0===l&&(d+=(l=ya())*l),d1?(null==e?u.remove(t):u.set(t,d(e)),n):u.get(t)},find:function(n,e,r){var i,o,a,u,c,f=0,s=t.length;for(null==r?r=1/0:r*=r,f=0;f1?(f.on(t,e),n):f.on(t)}}},t.forceX=function(t){var n,e,r,i=ga(.1);function o(t){for(var i,o=0,a=n.length;o=.12&&i<.234&&r>=-.425&&r<-.214?u:i>=.166&&i<.234&&r>=-.214&&r<-.115?c:a).invert(t)},s.stream=function(e){return t&&n===e?t:(r=[a.stream(n=e),u.stream(e),c.stream(e)],i=r.length,t={point:function(t,n){for(var e=-1;++ePc(r[0],r[1])&&(r[1]=i[1]),Pc(i[0],r[1])>Pc(r[0],r[1])&&(r[0]=i[0])):o.push(r=i);for(a=-1/0,n=0,r=o[e=o.length-1];n<=e;r=i,++n)i=o[n],(u=Pc(r[1],i[0]))>a&&(a=u,Zu=i[0],Ku=r[1])}return ic=oc=null,Zu===1/0||Qu===1/0?[[NaN,NaN],[NaN,NaN]]:[[Zu,Qu],[Ku,Ju]]},t.geoCentroid=function(t){ac=uc=cc=fc=sc=lc=hc=dc=pc=vc=gc=0,Cu(t,Dc);var n=pc,e=vc,r=gc,i=n*n+e*e+r*r;return i2?t[2]+90:90]):[(t=e())[0],t[1],t[2]-90]},e([0,0,90]).scale(159.155)},t.geoTransverseMercatorRaw=Ml,t.gray=function(t,n){return new Bn(t,0,0,null==n?1:n)},t.hcl=Xn,t.hierarchy=kl,t.histogram=function(){var t=v,n=s,e=M;function r(r){var o,a,u=r.length,c=new Array(u);for(o=0;ol;)h.pop(),--d;var p,v=new Array(d+1);for(o=0;o<=d;++o)(p=v[o]=[]).x0=o>0?h[o-1]:s,p.x1=o1)&&(t-=Math.floor(t));var n=Math.abs(t-.5);return ly.h=360*t-100,ly.s=1.5-1.5*n,ly.l=.8-.9*n,ly+""},t.interpolateRdBu=yg,t.interpolateRdGy=bg,t.interpolateRdPu=Yg,t.interpolateRdYlBu=xg,t.interpolateRdYlGn=Mg,t.interpolateReds=oy,t.interpolateRgb=he,t.interpolateRgbBasis=pe,t.interpolateRgbBasisClosed=ve,t.interpolateRound=Ae,t.interpolateSinebow=function(t){var n;return t=(.5-t)*Math.PI,hy.r=255*(n=Math.sin(t))*n,hy.g=255*(n=Math.sin(t+dy))*n,hy.b=255*(n=Math.sin(t+py))*n,hy+""},t.interpolateSpectral=Tg,t.interpolateString=Ne,t.interpolateTransformCss=qe,t.interpolateTransformSvg=Le,t.interpolateTurbo=function(t){return t=Math.max(0,Math.min(1,t)),"rgb("+Math.max(0,Math.min(255,Math.round(34.61+t*(1172.33-t*(10793.56-t*(33300.12-t*(38394.49-14825.05*t)))))))+", "+Math.max(0,Math.min(255,Math.round(23.31+t*(557.33+t*(1225.33-t*(3574.96-t*(1073.77+707.56*t)))))))+", "+Math.max(0,Math.min(255,Math.round(27.2+t*(3211.1-t*(15327.97-t*(27814-t*(22569.18-6838.66*t)))))))+")"},t.interpolateViridis=gy,t.interpolateWarm=fy,t.interpolateYlGn=Xg,t.interpolateYlGnBu=Hg,t.interpolateYlOrBr=Gg,t.interpolateYlOrRd=Wg,t.interpolateZoom=Ie,t.interrupt=Pr,t.interval=function(t,n,e){var r=new lr,i=n;return null==n?(r.restart(t,n,e),r):(n=+n,e=null==e?fr():+e,r.restart(function o(a){a+=i,r.restart(o,i+=n,e),t(a)},n,e),r)},t.isoFormat=Rv,t.isoParse=Dv,t.json=function(t,n){return fetch(t,n).then(la)},t.keys=function(t){var n=[];for(var e in t)n.push(e);return n},t.lab=On,t.lch=function(t,n,e,r){return 1===arguments.length?jn(t):new Vn(e,n,t,null==r?1:r)},t.line=Hy,t.lineRadial=Qy,t.linkHorizontal=function(){return r_(i_)},t.linkRadial=function(){var t=r_(a_);return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t},t.linkVertical=function(){return r_(o_)},t.local=qt,t.map=co,t.matcher=nt,t.max=T,t.mean=function(t,n){var e,r=t.length,i=r,o=-1,a=0;if(null==n)for(;++o=r.length)return null!=t&&e.sort(t),null!=n?n(e):e;for(var c,f,s,l=-1,h=e.length,d=r[i++],p=co(),v=a();++lr.length)return e;var a,u=i[o-1];return null!=n&&o>=r.length?a=e.entries():(a=[],e.each(function(n,e){a.push({key:e,values:t(n,o)})})),null!=u?a.sort(function(t,n){return u(t.key,n.key)}):a}(o(t,0,lo,ho),0)},key:function(t){return r.push(t),e},sortKeys:function(t){return i[r.length-1]=t,e},sortValues:function(n){return t=n,e},rollup:function(t){return n=t,e}}},t.now=fr,t.pack=function(){var t=null,n=1,e=1,r=Wl;function i(i){return i.x=n/2,i.y=e/2,t?i.eachBefore(Kl(t)).eachAfter(Jl(r,.5)).eachBefore(th(1)):i.eachBefore(Kl(Ql)).eachAfter(Jl(Wl,1)).eachAfter(Jl(r,i.r/Math.min(n,e))).eachBefore(th(Math.min(n,e)/(2*i.r))),i}return i.radius=function(n){return arguments.length?(t=Gl(n),i):t},i.size=function(t){return arguments.length?(n=+t[0],e=+t[1],i):[n,e]},i.padding=function(t){return arguments.length?(r="function"==typeof t?t:Zl(+t),i):r},i},t.packEnclose=Dl,t.packSiblings=function(t){return Vl(t),t},t.pairs=function(t,n){null==n&&(n=a);for(var e=0,r=t.length-1,i=t[0],o=new Array(r<0?0:r);e0&&(d+=l);for(null!=n?p.sort(function(t,e){return n(v[t],v[e])}):null!=e&&p.sort(function(t,n){return e(a[t],a[n])}),u=0,f=d?(y-h*b)/d:0;u0?l*f:0)+b,v[c]={data:a[c],index:u,value:l,startAngle:g,endAngle:s,padAngle:_};return v}return a.value=function(n){return arguments.length?(t="function"==typeof n?n:my(+n),a):t},a.sortValues=function(t){return arguments.length?(n=t,e=null,a):n},a.sort=function(t){return arguments.length?(e=t,n=null,a):e},a.startAngle=function(t){return arguments.length?(r="function"==typeof t?t:my(+t),a):r},a.endAngle=function(t){return arguments.length?(i="function"==typeof t?t:my(+t),a):i},a.padAngle=function(t){return arguments.length?(o="function"==typeof t?t:my(+t),a):o},a},t.piecewise=function(t,n){for(var e=0,r=n.length-1,i=n[0],o=new Array(r<0?0:r);eu!=f>u&&a<(c-e)*(u-r)/(f-r)+e&&(s=!s),c=e,f=r;return s},t.polygonHull=function(t){if((e=t.length)<3)return null;var n,e,r=new Array(e),i=new Array(e);for(n=0;n=0;--n)f.push(t[r[o[n]][2]]);for(n=+u;n0?a[n-1]:r[0],n=o?[a[o-1],r]:[a[n-1],a[n]]},c.unknown=function(t){return arguments.length?(n=t,c):c},c.thresholds=function(){return a.slice()},c.copy=function(){return t().domain([e,r]).range(u).unknown(n)},Eh.apply($h(c),arguments)},t.scaleSequential=function t(){var n=$h(Xv()(Bh));return n.copy=function(){return Vv(n,t())},Ch.apply(n,arguments)},t.scaleSequentialLog=function t(){var n=ed(Xv()).domain([1,10]);return n.copy=function(){return Vv(n,t()).base(n.base())},Ch.apply(n,arguments)},t.scaleSequentialPow=Gv,t.scaleSequentialQuantile=function t(){var e=[],r=Bh;function o(t){if(!isNaN(t=+t))return r((i(e,t)-1)/(e.length-1))}return o.domain=function(t){if(!arguments.length)return e.slice();e=[];for(var r,i=0,a=t.length;i0)for(var e,r,i,o,a,u,c=0,f=t[n[0]].length;c0?(r[0]=o,r[1]=o+=i):i<0?(r[1]=a,r[0]=a+=i):(r[0]=0,r[1]=i)},t.stackOffsetExpand=function(t,n){if((r=t.length)>0){for(var e,r,i,o=0,a=t[0].length;o0){for(var e,r=0,i=t[n[0]],o=i.length;r0&&(r=(e=t[n[0]]).length)>0){for(var e,r,i,o=0,a=1;a0)throw new Error("cycle");return o}return e.id=function(n){return arguments.length?(t=$l(n),e):t},e.parentId=function(t){return arguments.length?(n=$l(t),e):n},e},t.style=ft,t.sum=function(t,n){var e,r=t.length,i=-1,o=0;if(null==n)for(;++i=0;--i)u.push(e=n.children[i]=new dh(r[i],i)),e.parent=n;return(a.parent=new dh(null,0)).children=[a],a}(i);if(c.eachAfter(o),c.parent.m=-c.z,c.eachBefore(a),r)i.eachBefore(u);else{var f=i,s=i,l=i;i.eachBefore(function(t){t.xs.x&&(s=t),t.depth>l.depth&&(l=t)});var h=f===s?1:t(f,s)/2,d=h-f.x,p=n/(s.x+h+d),v=e/(l.depth||1);i.eachBefore(function(t){t.x=(t.x+d)*p,t.y=t.depth*v})}return i}function o(n){var e=n.children,r=n.parent.children,i=n.i?r[n.i-1]:null;if(e){!function(t){for(var n,e=0,r=0,i=t.children,o=i.length;--o>=0;)(n=i[o]).z+=e,n.m+=e,e+=n.s+(r+=n.c)}(n);var o=(e[0].z+e[e.length-1].z)/2;i?(n.z=i.z+t(n._,i._),n.m=n.z-o):n.z=o}else i&&(n.z=i.z+t(n._,i._));n.parent.A=function(n,e,r){if(e){for(var i,o=n,a=n,u=e,c=o.parent.children[0],f=o.m,s=a.m,l=u.m,h=c.m;u=sh(u),o=fh(o),u&&o;)c=fh(c),(a=sh(a)).a=n,(i=u.z+l-o.z-f+t(u._,o._))>0&&(lh(hh(u,n,r),n,i),f+=i,s+=i),l+=u.m,f+=o.m,h+=c.m,s+=a.m;u&&!sh(a)&&(a.t=u,a.m+=l-s),o&&!fh(c)&&(c.t=o,c.m+=f-h,r=n)}return r}(n,i,n.parent.A||r[0])}function a(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function u(t){t.x*=n,t.y=t.depth*e}return i.separation=function(n){return arguments.length?(t=n,i):t},i.size=function(t){return arguments.length?(r=!1,n=+t[0],e=+t[1],i):r?null:[n,e]},i.nodeSize=function(t){return arguments.length?(r=!0,n=+t[0],e=+t[1],i):r?[n,e]:null},i},t.treemap=function(){var t=yh,n=!1,e=1,r=1,i=[0],o=Wl,a=Wl,u=Wl,c=Wl,f=Wl;function s(t){return t.x0=t.y0=0,t.x1=e,t.y1=r,t.eachBefore(l),i=[0],n&&t.eachBefore(nh),t}function l(n){var e=i[n.depth],r=n.x0+e,s=n.y0+e,l=n.x1-e,h=n.y1-e;l=e-1){var s=u[n];return s.x0=i,s.y0=o,s.x1=a,void(s.y1=c)}for(var l=f[n],h=r/2+l,d=n+1,p=e-1;d>>1;f[v]c-o){var _=(i*y+a*g)/r;t(n,d,g,i,o,_,c),t(d,e,y,_,o,a,c)}else{var b=(o*y+c*g)/r;t(n,d,g,i,o,a,b),t(d,e,y,i,b,a,c)}}(0,c,t.value,n,e,r,i)},t.treemapDice=eh,t.treemapResquarify=_h,t.treemapSlice=ph,t.treemapSliceDice=function(t,n,e,r,i){(1&t.depth?ph:eh)(t,n,e,r,i)},t.treemapSquarify=yh,t.tsv=sa,t.tsvFormat=Ko,t.tsvFormatBody=Jo,t.tsvFormatRow=na,t.tsvFormatRows=ta,t.tsvFormatValue=ea,t.tsvParse=Zo,t.tsvParseRows=Qo,t.utcDay=Wd,t.utcDays=Zd,t.utcFriday=rp,t.utcFridays=sp,t.utcHour=Gd,t.utcHours=$d,t.utcMillisecond=pd,t.utcMilliseconds=vd,t.utcMinute=Xd,t.utcMinutes=Vd,t.utcMonday=Jd,t.utcMondays=ap,t.utcMonth=hp,t.utcMonths=dp,t.utcSaturday=ip,t.utcSaturdays=lp,t.utcSecond=_d,t.utcSeconds=bd,t.utcSunday=Kd,t.utcSundays=op,t.utcThursday=ep,t.utcThursdays=fp,t.utcTuesday=tp,t.utcTuesdays=up,t.utcWednesday=np,t.utcWednesdays=cp,t.utcWeek=Kd,t.utcWeeks=op,t.utcYear=pp,t.utcYears=vp,t.values=function(t){var n=[];for(var e in t)n.push(t[e]);return n},t.variance=c,t.version="5.16.0",t.voronoi=function(){var t=sb,n=lb,e=null;function r(r){return new Vb(r.map(function(e,i){var o=[Math.round(t(e,i,r)/Ib)*Ib,Math.round(n(e,i,r)/Ib)*Ib];return o.index=i,o.data=e,o}),e)}return r.polygons=function(t){return r(t).polygons()},r.links=function(t){return r(t).links()},r.triangles=function(t){return r(t).triangles()},r.x=function(n){return arguments.length?(t="function"==typeof n?n:fb(+n),r):t},r.y=function(t){return arguments.length?(n="function"==typeof t?t:fb(+t),r):n},r.extent=function(t){return arguments.length?(e=null==t?null:[[+t[0][0],+t[0][1]],[+t[1][0],+t[1][1]]],r):e&&[[e[0][0],e[0][1]],[e[1][0],e[1][1]]]},r.size=function(t){return arguments.length?(e=null==t?null:[[0,0],[+t[0],+t[1]]],r):e&&[e[1][0]-e[0][0],e[1][1]-e[0][1]]},r},t.window=ct,t.xml=da,t.zip=function(){return k(arguments)},t.zoom=function(){var n,e,r=tm,i=nm,o=om,a=rm,u=im,c=[0,1/0],f=[[-1/0,-1/0],[1/0,1/0]],s=250,l=Ie,h=I("start","zoom","end"),d=500,p=150,v=0;function g(t){t.property("__zoom",em).on("wheel.zoom",M).on("mousedown.zoom",N).on("dblclick.zoom",T).filter(u).on("touchstart.zoom",A).on("touchmove.zoom",S).on("touchend.zoom touchcancel.zoom",k).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function y(t,n){return(n=Math.max(c[0],Math.min(c[1],n)))===t.k?t:new Wb(n,t.x,t.y)}function _(t,n,e){var r=n[0]-e[0]*t.k,i=n[1]-e[1]*t.k;return r===t.x&&i===t.y?t:new Wb(t.k,r,i)}function b(t){return[(+t[0][0]+ +t[1][0])/2,(+t[0][1]+ +t[1][1])/2]}function m(t,n,e){t.on("start.zoom",function(){x(this,arguments).start()}).on("interrupt.zoom end.zoom",function(){x(this,arguments).end()}).tween("zoom",function(){var t=this,r=arguments,o=x(t,r),a=i.apply(t,r),u=null==e?b(a):"function"==typeof e?e.apply(t,r):e,c=Math.max(a[1][0]-a[0][0],a[1][1]-a[0][1]),f=t.__zoom,s="function"==typeof n?n.apply(t,r):n,h=l(f.invert(u).concat(c/f.k),s.invert(u).concat(c/s.k));return function(t){if(1===t)t=s;else{var n=h(t),e=c/n[2];t=new Wb(e,u[0]-n[0]*e,u[1]-n[1]*e)}o.zoom(null,t)}})}function x(t,n,e){return!e&&t.__zooming||new w(t,n)}function w(t,n){this.that=t,this.args=n,this.active=0,this.extent=i.apply(t,n),this.taps=0}function M(){if(r.apply(this,arguments)){var t=x(this,arguments),n=this.__zoom,e=Math.max(c[0],Math.min(c[1],n.k*Math.pow(2,a.apply(this,arguments)))),i=Bt(this);if(t.wheel)t.mouse[0][0]===i[0]&&t.mouse[0][1]===i[1]||(t.mouse[1]=n.invert(t.mouse[0]=i)),clearTimeout(t.wheel);else{if(n.k===e)return;t.mouse=[i,n.invert(i)],Pr(this),t.start()}Jb(),t.wheel=setTimeout(function(){t.wheel=null,t.end()},p),t.zoom("mouse",o(_(y(n,e),t.mouse[0],t.mouse[1]),t.extent,f))}}function N(){if(!e&&r.apply(this,arguments)){var n=x(this,arguments,!0),i=Rt(t.event.view).on("mousemove.zoom",function(){if(Jb(),!n.moved){var e=t.event.clientX-u,r=t.event.clientY-c;n.moved=e*e+r*r>v}n.zoom("mouse",o(_(n.that.__zoom,n.mouse[0]=Bt(n.that),n.mouse[1]),n.extent,f))},!0).on("mouseup.zoom",function(){i.on("mousemove.zoom mouseup.zoom",null),jt(t.event.view,n.moved),Jb(),n.end()},!0),a=Bt(this),u=t.event.clientX,c=t.event.clientY;Ht(t.event.view),Kb(),n.mouse=[a,this.__zoom.invert(a)],Pr(this),n.start()}}function T(){if(r.apply(this,arguments)){var n=this.__zoom,e=Bt(this),a=n.invert(e),u=n.k*(t.event.shiftKey?.5:2),c=o(_(y(n,u),e,a),i.apply(this,arguments),f);Jb(),s>0?Rt(this).transition().duration(s).call(m,c,e):Rt(this).call(g.transform,c)}}function A(){if(r.apply(this,arguments)){var e,i,o,a,u=t.event.touches,c=u.length,f=x(this,arguments,t.event.changedTouches.length===c);for(Kb(),i=0;i'+a+""}).then(function(a){return''+a+""}).then(function(a){return"data:image/svg+xml;charset=utf-8,"+a})}function m(){function a(){var a="application/font-woff",b="image/jpeg";return{woff:a,woff2:a,ttf:"application/font-truetype",eot:"application/vnd.ms-fontobject",png:"image/png",jpg:b,jpeg:b,gif:"image/gif",tiff:"image/tiff",svg:"image/svg+xml"}}function b(a){var b=/\.([^\.\/]*?)$/g.exec(a);return b?b[1]:""}function c(c){var d=b(c).toLowerCase();return a()[d]||""}function d(a){return a.search(/^(data:)/)!==-1}function e(a){return new Promise(function(b){for(var c=window.atob(a.toDataURL().split(",")[1]),d=c.length,e=new Uint8Array(d),f=0;f !j.hasOwnProperty(k))) { - this.options = _defaults; - } else { - this.options = j; - } - } - - this._onUpdate(); - }; - - this.save = function () { - window.localStorage.setItem("options", JSON.stringify(this.options)); - this._onUpdate(); - } -} - - function showEsError() { $.toast({ heading: "Elasticsearch connection error", @@ -112,27 +72,7 @@ function showEsError() { }); } -jQuery["jsonPost"] = function (url, data) { - return jQuery.ajax({ - url: url, - type: "post", - data: JSON.stringify(data), - contentType: "application/json" - }).fail(err => { - showEsError(); - console.log(err); - }); -}; - window.onload = () => { - $("#theme").on("click", () => { - if (!document.cookie.includes("sist")) { - document.cookie = "sist=dark"; - } else { - document.cookie = "sist=; Max-Age=-99999999;"; - } - window.location.reload(); - }) CONF.load(); }; @@ -608,7 +548,7 @@ function getNextDepth(node) { } }, size: 0 - } + }; if (node.depth > 0) { q.query.bool.must = { @@ -687,32 +627,3 @@ function createPathTree(target) { pathTree.on("node.click", handlePathTreeClick(pathTree)); } -function updateSettings() { - CONF.options.display = $("#settingDisplay").val(); - CONF.options.fuzzy = $("#settingFuzzy").prop("checked"); - CONF.options.highlight = $("#settingHighlight").prop("checked"); - CONF.options.searchInPath = $("#settingSearchInPath").prop("checked"); - CONF.save(); - - searchDebounced(); - - $.toast({ - heading: "Settings updated", - text: "Settings saved to browser storage", - stack: 3, - bgColor: "#00a4bc", - textColor: "#fff", - position: 'bottom-right', - hideAfter: 3000, - loaderBg: "#08c7e8", - }); -} - -function loadSettings() { - CONF.load(); - - $("#settingDisplay").val(CONF.options.display); - $("#settingFuzzy").prop("checked", CONF.options.fuzzy); - $("#settingHighlight").prop("checked", CONF.options.highlight); - $("#settingSearchInPath").prop("checked", CONF.options.searchInPath); -} diff --git a/src/static/js/util.js b/src/static/js/util.js index 864ad4f..00514f7 100644 --- a/src/static/js/util.js +++ b/src/static/js/util.js @@ -86,3 +86,114 @@ function strUnescape(str) { } return result; } + +const CONF = new Settings(); + +const _defaults = { + display: "grid", + fuzzy: true, + highlight: true, + sort: "score", + searchInPath: false, + treemapType: "cascaded", + treemapTiling: "squarify", + treemapGroupingDepth: 3, + treemapColor: "PuBuGn", + treemapSize: "large", +}; + +function loadSettings() { + CONF.load(); + + $("#settingDisplay").val(CONF.options.display); + $("#settingFuzzy").prop("checked", CONF.options.fuzzy); + $("#settingHighlight").prop("checked", CONF.options.highlight); + $("#settingSearchInPath").prop("checked", CONF.options.searchInPath); + $("#settingTreemapTiling").val(CONF.options.treemapTiling); + $("#settingTreemapGroupingDepth").val(CONF.options.treemapGroupingDepth); + $("#settingTreemapColor").val(CONF.options.treemapColor); + $("#settingTreemapSize").val(CONF.options.treemapSize); + $("#settingTreemapType").val(CONF.options.treemapType); +} + +function Settings() { + this.options = {}; + + this._onUpdate = function () { + $("#fuzzyToggle").prop("checked", this.options.fuzzy); + }; + + this.load = function () { + const raw = window.localStorage.getItem("options"); + if (raw === null) { + this.options = _defaults; + } else { + const j = JSON.parse(raw); + if (!j || Object.keys(_defaults).some(k => !j.hasOwnProperty(k))) { + this.options = _defaults; + } else { + this.options = j; + } + } + + this._onUpdate(); + }; + + this.save = function () { + window.localStorage.setItem("options", JSON.stringify(this.options)); + this._onUpdate(); + } +} + +function updateSettings() { + CONF.options.display = $("#settingDisplay").val(); + CONF.options.fuzzy = $("#settingFuzzy").prop("checked"); + CONF.options.highlight = $("#settingHighlight").prop("checked"); + CONF.options.searchInPath = $("#settingSearchInPath").prop("checked"); + CONF.options.treemapTiling = $("#settingTreemapTiling").val(); + CONF.options.treemapGroupingDepth = $("#settingTreemapGroupingDepth").val(); + CONF.options.treemapColor = $("#settingTreemapColor").val(); + CONF.options.treemapSize = $("#settingTreemapSize").val(); + CONF.options.treemapType = $("#settingTreemapType").val(); + CONF.save(); + + if (typeof searchDebounced !== "undefined") { + searchDebounced(); + } + + if (typeof updateStats !== "undefined") { + updateStats(); + } + + $.toast({ + heading: "Settings updated", + text: "Settings saved to browser storage", + stack: 3, + bgColor: "#00a4bc", + textColor: "#fff", + position: 'bottom-right', + hideAfter: 3000, + loaderBg: "#08c7e8", + }); +} + +jQuery["jsonPost"] = function (url, data) { + return jQuery.ajax({ + url: url, + type: "post", + data: JSON.stringify(data), + contentType: "application/json" + }).fail(err => { + showEsError(); + console.log(err); + }); +}; + +function toggleTheme() { + if (!document.cookie.includes("sist")) { + document.cookie = "sist=dark;SameSite=Strict"; + } else { + document.cookie = "sist=; Max-Age=-99999999;"; + } + window.location.reload(); +} diff --git a/src/static/search.html b/src/static/search.html index 97feb81..d735290 100644 --- a/src/static/search.html +++ b/src/static/search.html @@ -13,8 +13,9 @@ sist2 2.3.0 Lightning-fast file system indexer and search tool - - Theme + Stats + +
@@ -197,8 +198,64 @@ +
+

Stats

+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+
- +
@@ -223,6 +280,7 @@
- + + diff --git a/src/static/stats.html b/src/static/stats.html new file mode 100644 index 0000000..0e22119 --- /dev/null +++ b/src/static/stats.html @@ -0,0 +1,789 @@ + + + + + sist2 - Stats + + + + + + + +
+
+
+ + + +
+
+ +
+ + + +
+ +
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+
+ + + + + + + diff --git a/src/stats.c b/src/stats.c new file mode 100644 index 0000000..4cdcb39 --- /dev/null +++ b/src/stats.c @@ -0,0 +1,329 @@ +#include "sist.h" +#include "io/serialize.h" +#include "ctx.h" + +#include + +static GHashTable *FlatTree; +static GHashTable *BufferTable; + +static GHashTable *AggMime; +static GHashTable *AggSize; +static GHashTable *AggDate; + +#define SIZE_BUCKET (long)(5 * 1024 * 1024) +#define DATE_BUCKET (long)(2629800) + +static long TotalSize = 0; +static long DocumentCount = 0; + +typedef struct { + long size; + long count; +} agg_t; + +void fill_tables(cJSON *document, UNUSED(const char uuid_str[UUID_STR_LEN])) { + + const char *json_path = cJSON_GetObjectItem(document, "path")->valuestring; + char *path = malloc(strlen(json_path) + 1); + strcpy(path, json_path); + + const char *json_mime = cJSON_GetObjectItem(document, "mime")->valuestring; + char *mime; + if (json_mime == NULL) { + mime = NULL; + } else { + mime = malloc(strlen(json_mime) + 1); + strcpy(mime, json_mime); + } + + long size = (long) cJSON_GetObjectItem(document, "size")->valuedouble; + int mtime = cJSON_GetObjectItem(document, "mtime")->valueint; + + // treemap + void *existing_path = g_hash_table_lookup(FlatTree, path); + if (existing_path == NULL) { + g_hash_table_insert(FlatTree, path, (gpointer) size); + } else { + g_hash_table_replace(FlatTree, path, (gpointer) ((long) existing_path + size)); + } + + // mime agg + if (mime != NULL) { + agg_t *orig_agg = g_hash_table_lookup(AggMime, mime); + if (orig_agg == NULL) { + agg_t *agg = malloc(sizeof(agg_t)); + agg->size = size; + agg->count = 1; + g_hash_table_insert(AggMime, mime, agg); + } else { + orig_agg->size += size; + orig_agg->count += 1; + free(mime); + } + } + + // size agg + long size_bucket = size - (size % SIZE_BUCKET); + agg_t *orig_agg = g_hash_table_lookup(AggSize, (gpointer) size_bucket); + if (orig_agg == NULL) { + agg_t *agg = malloc(sizeof(agg_t)); + agg->size = size; + agg->count = 1; + g_hash_table_insert(AggSize, (gpointer) size_bucket, agg); + } else { + orig_agg->count += 1; + orig_agg->size += size; + } + + // date agg + long date_bucket = mtime - (mtime % DATE_BUCKET); + orig_agg = g_hash_table_lookup(AggDate, (gpointer) date_bucket); + if (orig_agg == NULL) { + agg_t *agg = malloc(sizeof(agg_t)); + agg->size = size; + agg->count = 1; + g_hash_table_insert(AggDate, (gpointer) date_bucket, agg); + } else { + orig_agg->count += 1; + orig_agg->size += size; + } + + TotalSize += size; + DocumentCount += 1; +} + +void read_index_into_tables(index_t *index) { + DIR *dir = opendir(index->path); + struct dirent *de; + while ((de = readdir(dir)) != NULL) { + if (strncmp(de->d_name, "_index_", sizeof("_index_") - 1) == 0) { + char file_path[PATH_MAX]; + snprintf(file_path, PATH_MAX, "%s/%s", index->path, de->d_name); + read_index(file_path, index->desc.uuid, index->desc.type, fill_tables); + } + } + closedir(dir); +} + +static size_t rfind(const char *str, int c) { + for (int i = (int)strlen(str); i >= 0; i--) { + if (str[i] == c) { + return i; + } + } + return -1; +} + +int merge_up(double thresh) { + long min_size = (long) (thresh * (double) TotalSize); + + int count = 0; + GHashTableIter iter; + g_hash_table_iter_init(&iter, FlatTree); + + void *key; + void *value; + + while (g_hash_table_iter_next(&iter, &key, &value)) { + long size = (long) value; + + if (size < min_size) { + int stop = rfind(key, '/'); + if (stop == -1) { + stop = 0; + } + char *parent = malloc(stop + 1); + strncpy(parent, key, stop); + *(parent + stop) = '\0'; + + void *existing_parent = g_hash_table_lookup(FlatTree, parent); + if (existing_parent == NULL) { + void *existing_parent2_key; + void *existing_parent2_val; + int found = g_hash_table_lookup_extended(BufferTable, parent, &existing_parent2_key, + &existing_parent2_val); + if (!found) { + g_hash_table_insert(BufferTable, parent, value); + } else { + g_hash_table_replace(BufferTable, parent, (gpointer) ((long) existing_parent2_val + size)); + free(existing_parent2_key); + } + } else { + g_hash_table_replace(FlatTree, parent, (gpointer) ((long) existing_parent + size)); + } + + g_hash_table_iter_remove(&iter); + + count += 1; + } + } + + g_hash_table_iter_init(&iter, BufferTable); + while (g_hash_table_iter_next(&iter, &key, &value)) { + g_hash_table_insert(FlatTree, key, value); + g_hash_table_iter_remove(&iter); + } + + int size = g_hash_table_size(FlatTree); + + LOG_DEBUGF("stats.h", "Merge up iteration (%d merged, %d in tree)", count, size) + return count; +} + +/** + * Assumes out is at at least PATH_MAX *4 + */ +void csv_escape(char *dst, const char *str) { + + const char *ptr = str; + char *out = dst; + + if (rfind(str, ',') == -1 && rfind(str, '"') == -1) { + strcpy(dst, str); + return; + } + + while (*ptr++ != 0) { + char c = *ptr; + + if (c == '"') { + *out++ = '"'; + *out++ = '"'; + } else { + *out++ = c; + } + } +} + +int open_or_exit(const char *path) { + int fd = open(path, O_CREAT | O_WRONLY, S_IRUSR | S_IWUSR); + if (fd < 0) { + LOG_FATALF("stats.c", "Error while creating file: %s [%d]\n", strerror(errno), errno) + } + return fd; +} + +#define TREEMAP_CSV_HEADER "path,size" +#define MIME_AGG_CSV_HEADER "mime,size,count" +#define SIZE_AGG_CSV_HEADER "bucket,size,count" +#define DATE_AGG_CSV_HEADER "bucket,size,count" + +void write_treemap_csv(double thresh, const char *out_path) { + + void *key; + void *value; + + long min_size = (long) (thresh * (double) TotalSize); + + int fd = open_or_exit(out_path); + write(fd, TREEMAP_CSV_HEADER, sizeof(TREEMAP_CSV_HEADER) - 1); + + GHashTableIter iter; + g_hash_table_iter_init(&iter, FlatTree); + while (g_hash_table_iter_next(&iter, &key, &value)) { + long size = (long) value; + + if (size >= min_size) { + char path_buf[PATH_MAX * 4]; + char buf[PATH_MAX * 4 + 16]; + + csv_escape(path_buf, key); + size_t written = sprintf(buf, "\n%s,%ld", path_buf, (long) value); + write(fd, buf, written); + } + } + close(fd); +} + +void write_agg_csv_str(const char *out_path, const char *header, GHashTable *table) { + void *key; + void *value; + char buf[4096]; + + int fd = open_or_exit(out_path); + write(fd, header, strlen(header)); + + GHashTableIter iter; + g_hash_table_iter_init(&iter, table); + while (g_hash_table_iter_next(&iter, &key, &value)) { + agg_t *agg = value; + + size_t written = sprintf(buf, "\n%s,%ld,%ld", key, agg->size, agg->count); + write(fd, buf, written); + } + + close(fd); +} + +void write_agg_csv_long(const char *out_path, const char *header, GHashTable *table) { + void *key; + void *value; + char buf[4096]; + + int fd = open_or_exit(out_path); + write(fd, header, strlen(header)); + + GHashTableIter iter; + g_hash_table_iter_init(&iter, table); + while (g_hash_table_iter_next(&iter, &key, &value)) { + agg_t *agg = value; + size_t written = sprintf(buf, "\n%ld,%ld,%ld", (long)key, agg->size, agg->count); + write(fd, buf, written); + } + + close(fd); +} + +int generate_stats(index_t *index, const double threshold, const char *out_prefix) { + + FlatTree = g_hash_table_new_full(g_str_hash, g_str_equal, free, NULL); + BufferTable = g_hash_table_new(g_str_hash, g_str_equal); + + AggMime = g_hash_table_new_full(g_str_hash, g_str_equal, free, free); + AggSize = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL, free); + AggDate = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL, free); + + LOG_INFO("stats.c", "Generating stats...") + + read_index_into_tables(index); + + LOG_DEBUG("stats.c", "Read index into tables") + LOG_DEBUGF("stats.c", "Total size is %ld", TotalSize) + LOG_DEBUGF("stats.c", "Document count is %ld", DocumentCount) + LOG_DEBUGF("stats.c", "Merging small directories upwards with a threshold of %f%%", threshold * 100) + + while (merge_up(threshold) > 100) {} + + char tmp[PATH_MAX]; + + strncpy(tmp, out_prefix, sizeof(tmp)); + strcat(tmp, "treemap.csv"); + write_treemap_csv(threshold, tmp); + + strncpy(tmp, out_prefix, sizeof(tmp)); + strcat(tmp, "mime_agg.csv"); + write_agg_csv_str(tmp, MIME_AGG_CSV_HEADER, AggMime); + + strncpy(tmp, out_prefix, sizeof(tmp)); + strcat(tmp, "size_agg.csv"); + write_agg_csv_long(tmp, SIZE_AGG_CSV_HEADER, AggSize); + + strncpy(tmp, out_prefix, sizeof(tmp)); + strcat(tmp, "date_agg.csv"); + write_agg_csv_long(tmp, DATE_AGG_CSV_HEADER, AggDate); + + g_hash_table_remove_all(FlatTree); + g_hash_table_destroy(FlatTree); + g_hash_table_destroy(BufferTable); + + g_hash_table_remove_all(AggMime); + g_hash_table_destroy(AggMime); + g_hash_table_remove_all(AggSize); + g_hash_table_destroy(AggSize); + g_hash_table_remove_all(AggDate); + g_hash_table_destroy(AggDate); + + return 0; +} + diff --git a/src/stats.h b/src/stats.h new file mode 100644 index 0000000..250874c --- /dev/null +++ b/src/stats.h @@ -0,0 +1,6 @@ +#ifndef SIST2_STATS_H +#define SIST2_STATS_H + +int generate_stats(index_t *index, double threshold, const char* out_prefix); + +#endif diff --git a/src/web/serve.c b/src/web/serve.c index 0485646..3235795 100644 --- a/src/web/serve.c +++ b/src/web/serve.c @@ -59,12 +59,71 @@ void search_index(struct mg_connection *nc) { nc->flags |= MG_F_SEND_AND_CLOSE; } -void javascript(struct mg_connection *nc) { +void stats(struct mg_connection *nc) { + send_response_line(nc, 200, sizeof(stats_html), "Content-Type: text/html"); + mg_send(nc, stats_html, sizeof(stats_html)); + nc->flags |= MG_F_SEND_AND_CLOSE; +} + +void stats_files(struct mg_connection *nc, struct http_message *hm, struct mg_str *path) { + + if (path->len != UUID_STR_LEN + 4) { + nc->flags |= MG_F_SEND_AND_CLOSE; + return; + } + + char arg_uuid[UUID_STR_LEN]; + memcpy(arg_uuid, hm->uri.p + 3, UUID_STR_LEN); + *(arg_uuid + UUID_STR_LEN - 1) = '\0'; + + index_t *index = get_index_by_id(arg_uuid); + if (index == NULL) { + nc->flags |= MG_F_SEND_AND_CLOSE; + return; + } + + const char *file; + switch (atoi(hm->uri.p + 3 + UUID_STR_LEN)) { + case 1: + file = "treemap.csv"; + break; + case 2: + file = "mime_agg.csv"; + break; + case 3: + file = "size_agg.csv"; + break; + case 4: + file = "date_agg.csv"; + break; + default: + nc->flags |= MG_F_SEND_AND_CLOSE; + return; + } + + char disposition[8196]; + snprintf(disposition, sizeof(disposition), "Content-Disposition: inline; filename=\"%s\"", file); + + char full_path[PATH_MAX]; + strcpy(full_path, index->path); + strcat(full_path, file); + + mg_http_serve_file(nc, hm, full_path, mg_mk_str("text/csv"), mg_mk_str(disposition)); + nc->flags |= MG_F_SEND_AND_CLOSE; +} + +void javascript_lib(struct mg_connection *nc) { send_response_line(nc, 200, sizeof(bundle_js), "Content-Type: application/javascript"); mg_send(nc, bundle_js, sizeof(bundle_js)); nc->flags |= MG_F_SEND_AND_CLOSE; } +void javascript_search(struct mg_connection *nc) { + send_response_line(nc, 200, sizeof(search_js), "Content-Type: application/javascript"); + mg_send(nc, search_js, sizeof(search_js)); + nc->flags |= MG_F_SEND_AND_CLOSE; +} + int client_requested_dark_theme(struct http_message *hm) { struct mg_str *cookie_header = mg_get_http_header(hm, "cookie"); if (cookie_header == NULL) { @@ -387,8 +446,12 @@ static void ev_router(struct mg_connection *nc, int ev, void *p) { search_index(nc); } else if (is_equal(&path, &((struct mg_str) MG_MK_STR("/css")))) { style(nc, hm); - } else if (is_equal(&path, &((struct mg_str) MG_MK_STR("/js")))) { - javascript(nc); + } else if (is_equal(&path, &((struct mg_str) MG_MK_STR("/stats")))) { + stats(nc); + } else if (is_equal(&path, &((struct mg_str) MG_MK_STR("/jslib")))) { + javascript_lib(nc); + } else if (is_equal(&path, &((struct mg_str) MG_MK_STR("/jssearch")))) { + javascript_search(nc); } else if (is_equal(&path, &((struct mg_str) MG_MK_STR("/img/sprite-skin-flat.png")))) { img_sprite_skin_flat(nc, hm); } else if (is_equal(&path, &((struct mg_str) MG_MK_STR("/es")))) { @@ -401,6 +464,8 @@ static void ev_router(struct mg_connection *nc, int ev, void *p) { file(nc, hm, &path); } else if (has_prefix(&path, &((struct mg_str) MG_MK_STR("/t/")))) { thumbnail(nc, hm, &path); + } else if (has_prefix(&path, &((struct mg_str) MG_MK_STR("/s/")))) { + stats_files(nc, hm, &path); } else if (has_prefix(&path, &((struct mg_str) MG_MK_STR("/d/")))) { document_info(nc, hm, &path); } else { diff --git a/src/web/static_generated.c b/src/web/static_generated.c index 4702d19..7cfe24f 100644 --- a/src/web/static_generated.c +++ b/src/web/static_generated.c @@ -1,6 +1,8 @@ -char bundle_css[197134] = {47,42,33,10,32,42,32,66,111,111,116,115,116,114,97,112,32,118,52,46,51,46,49,32,40,104,116,116,112,115,58,47,47,103,101,116,98,111,111,116,115,116,114,97,112,46,99,111,109,47,41,10,32,42,32,67,111,112,121,114,105,103,104,116,32,50,48,49,49,45,50,48,49,57,32,84,104,101,32,66,111,111,116,115,116,114,97,112,32,65,117,116,104,111,114,115,10,32,42,32,67,111,112,121,114,105,103,104,116,32,50,48,49,49,45,50,48,49,57,32,84,119,105,116,116,101,114,44,32,73,110,99,46,10,32,42,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,32,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,119,98,115,47,98,111,111,116,115,116,114,97,112,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,41,10,32,42,47,58,114,111,111,116,123,45,45,98,108,117,101,58,35,48,48,55,98,102,102,59,45,45,105,110,100,105,103,111,58,35,54,54,49,48,102,50,59,45,45,112,117,114,112,108,101,58,35,54,102,52,50,99,49,59,45,45,112,105,110,107,58,35,101,56,51,101,56,99,59,45,45,114,101,100,58,35,100,99,51,53,52,53,59,45,45,111,114,97,110,103,101,58,35,102,100,55,101,49,52,59,45,45,121,101,108,108,111,119,58,35,102,102,99,49,48,55,59,45,45,103,114,101,101,110,58,35,50,56,97,55,52,53,59,45,45,116,101,97,108,58,35,50,48,99,57,57,55,59,45,45,99,121,97,110,58,35,49,55,97,50,98,56,59,45,45,119,104,105,116,101,58,35,102,102,102,59,45,45,103,114,97,121,58,35,54,99,55,53,55,100,59,45,45,103,114,97,121,45,100,97,114,107,58,35,51,52,51,97,52,48,59,45,45,112,114,105,109,97,114,121,58,35,48,48,55,98,102,102,59,45,45,115,101,99,111,110,100,97,114,121,58,35,54,99,55,53,55,100,59,45,45,115,117,99,99,101,115,115,58,35,50,56,97,55,52,53,59,45,45,105,110,102,111,58,35,49,55,97,50,98,56,59,45,45,119,97,114,110,105,110,103,58,35,102,102,99,49,48,55,59,45,45,100,97,110,103,101,114,58,35,100,99,51,53,52,53,59,45,45,108,105,103,104,116,58,35,102,56,102,57,102,97,59,45,45,100,97,114,107,58,35,51,52,51,97,52,48,59,45,45,98,114,101,97,107,112,111,105,110,116,45,120,115,58,48,59,45,45,98,114,101,97,107,112,111,105,110,116,45,115,109,58,53,55,54,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,109,100,58,55,54,56,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,108,103,58,57,57,50,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,120,108,58,49,50,48,48,112,120,59,45,45,102,111,110,116,45,102,97,109,105,108,121,45,115,97,110,115,45,115,101,114,105,102,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,45,45,102,111,110,116,45,102,97,109,105,108,121,45,109,111,110,111,115,112,97,99,101,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,34,67,111,117,114,105,101,114,32,78,101,119,34,44,109,111,110,111,115,112,97,99,101,125,42,44,58,58,97,102,116,101,114,44,58,58,98,101,102,111,114,101,123,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,104,116,109,108,123,102,111,110,116,45,102,97,109,105,108,121,58,115,97,110,115,45,115,101,114,105,102,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,49,53,59,45,119,101,98,107,105,116,45,116,101,120,116,45,115,105,122,101,45,97,100,106,117,115,116,58,49,48,48,37,59,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,97,114,116,105,99,108,101,44,97,115,105,100,101,44,102,105,103,99,97,112,116,105,111,110,44,102,105,103,117,114,101,44,102,111,111,116,101,114,44,104,101,97,100,101,114,44,104,103,114,111,117,112,44,109,97,105,110,44,110,97,118,44,115,101,99,116,105,111,110,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,98,111,100,121,123,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,91,116,97,98,105,110,100,101,120,61,34,45,49,34,93,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,33,105,109,112,111,114,116,97,110,116,125,104,114,123,98,111,120,45,115,105,122,105,110,103,58,99,111,110,116,101,110,116,45,98,111,120,59,104,101,105,103,104,116,58,48,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,104,49,44,104,50,44,104,51,44,104,52,44,104,53,44,104,54,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,112,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,97,98,98,114,91,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,93,44,97,98,98,114,91,116,105,116,108,101,93,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,59,45,119,101,98,107,105,116,45,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,32,100,111,116,116,101,100,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,32,100,111,116,116,101,100,59,99,117,114,115,111,114,58,104,101,108,112,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,45,119,101,98,107,105,116,45,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,115,107,105,112,45,105,110,107,58,110,111,110,101,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,115,107,105,112,45,105,110,107,58,110,111,110,101,125,97,100,100,114,101,115,115,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,125,100,108,44,111,108,44,117,108,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,111,108,32,111,108,44,111,108,32,117,108,44,117,108,32,111,108,44,117,108,32,117,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,100,116,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,100,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,98,108,111,99,107,113,117,111,116,101,123,109,97,114,103,105,110,58,48,32,48,32,49,114,101,109,125,98,44,115,116,114,111,110,103,123,102,111,110,116,45,119,101,105,103,104,116,58,98,111,108,100,101,114,125,115,109,97,108,108,123,102,111,110,116,45,115,105,122,101,58,56,48,37,125,115,117,98,44,115,117,112,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,102,111,110,116,45,115,105,122,101,58,55,53,37,59,108,105,110,101,45,104,101,105,103,104,116,58,48,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,125,115,117,98,123,98,111,116,116,111,109,58,45,46,50,53,101,109,125,115,117,112,123,116,111,112,58,45,46,53,101,109,125,97,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,97,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,58,102,111,99,117,115,44,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,58,104,111,118,101,114,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,125,99,111,100,101,44,107,98,100,44,112,114,101,44,115,97,109,112,123,102,111,110,116,45,102,97,109,105,108,121,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,34,67,111,117,114,105,101,114,32,78,101,119,34,44,109,111,110,111,115,112,97,99,101,59,102,111,110,116,45,115,105,122,101,58,49,101,109,125,112,114,101,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,111,118,101,114,102,108,111,119,58,97,117,116,111,125,102,105,103,117,114,101,123,109,97,114,103,105,110,58,48,32,48,32,49,114,101,109,125,105,109,103,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,98,111,114,100,101,114,45,115,116,121,108,101,58,110,111,110,101,125,115,118,103,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,116,97,98,108,101,123,98,111,114,100,101,114,45,99,111,108,108,97,112,115,101,58,99,111,108,108,97,112,115,101,125,99,97,112,116,105,111,110,123,112,97,100,100,105,110,103,45,116,111,112,58,46,55,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,99,97,112,116,105,111,110,45,115,105,100,101,58,98,111,116,116,111,109,125,116,104,123,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,125,108,97,98,101,108,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,98,117,116,116,111,110,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,98,117,116,116,111,110,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,49,112,120,32,100,111,116,116,101,100,59,111,117,116,108,105,110,101,58,53,112,120,32,97,117,116,111,32,45,119,101,98,107,105,116,45,102,111,99,117,115,45,114,105,110,103,45,99,111,108,111,114,125,98,117,116,116,111,110,44,105,110,112,117,116,44,111,112,116,103,114,111,117,112,44,115,101,108,101,99,116,44,116,101,120,116,97,114,101,97,123,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,105,110,104,101,114,105,116,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,125,98,117,116,116,111,110,44,105,110,112,117,116,123,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,98,117,116,116,111,110,44,115,101,108,101,99,116,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,115,101,108,101,99,116,123,119,111,114,100,45,119,114,97,112,58,110,111,114,109,97,108,125,91,116,121,112,101,61,98,117,116,116,111,110,93,44,91,116,121,112,101,61,114,101,115,101,116,93,44,91,116,121,112,101,61,115,117,98,109,105,116,93,44,98,117,116,116,111,110,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,98,117,116,116,111,110,125,91,116,121,112,101,61,98,117,116,116,111,110,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,91,116,121,112,101,61,114,101,115,101,116,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,91,116,121,112,101,61,115,117,98,109,105,116,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,98,117,116,116,111,110,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,91,116,121,112,101,61,98,117,116,116,111,110,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,91,116,121,112,101,61,114,101,115,101,116,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,91,116,121,112,101,61,115,117,98,109,105,116,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,98,117,116,116,111,110,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,123,112,97,100,100,105,110,103,58,48,59,98,111,114,100,101,114,45,115,116,121,108,101,58,110,111,110,101,125,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,112,97,100,100,105,110,103,58,48,125,105,110,112,117,116,91,116,121,112,101,61,100,97,116,101,93,44,105,110,112,117,116,91,116,121,112,101,61,100,97,116,101,116,105,109,101,45,108,111,99,97,108,93,44,105,110,112,117,116,91,116,121,112,101,61,109,111,110,116,104,93,44,105,110,112,117,116,91,116,121,112,101,61,116,105,109,101,93,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,108,105,115,116,98,111,120,125,116,101,120,116,97,114,101,97,123,111,118,101,114,102,108,111,119,58,97,117,116,111,59,114,101,115,105,122,101,58,118,101,114,116,105,99,97,108,125,102,105,101,108,100,115,101,116,123,109,105,110,45,119,105,100,116,104,58,48,59,112,97,100,100,105,110,103,58,48,59,109,97,114,103,105,110,58,48,59,98,111,114,100,101,114,58,48,125,108,101,103,101,110,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,125,112,114,111,103,114,101,115,115,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,125,91,116,121,112,101,61,110,117,109,98,101,114,93,58,58,45,119,101,98,107,105,116,45,105,110,110,101,114,45,115,112,105,110,45,98,117,116,116,111,110,44,91,116,121,112,101,61,110,117,109,98,101,114,93,58,58,45,119,101,98,107,105,116,45,111,117,116,101,114,45,115,112,105,110,45,98,117,116,116,111,110,123,104,101,105,103,104,116,58,97,117,116,111,125,91,116,121,112,101,61,115,101,97,114,99,104,93,123,111,117,116,108,105,110,101,45,111,102,102,115,101,116,58,45,50,112,120,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,91,116,121,112,101,61,115,101,97,114,99,104,93,58,58,45,119,101,98,107,105,116,45,115,101,97,114,99,104,45,100,101,99,111,114,97,116,105,111,110,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,58,58,45,119,101,98,107,105,116,45,102,105,108,101,45,117,112,108,111,97,100,45,98,117,116,116,111,110,123,102,111,110,116,58,105,110,104,101,114,105,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,98,117,116,116,111,110,125,111,117,116,112,117,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,115,117,109,109,97,114,121,123,100,105,115,112,108,97,121,58,108,105,115,116,45,105,116,101,109,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,116,101,109,112,108,97,116,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,91,104,105,100,100,101,110,93,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,104,49,44,46,104,50,44,46,104,51,44,46,104,52,44,46,104,53,44,46,104,54,44,104,49,44,104,50,44,104,51,44,104,52,44,104,53,44,104,54,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,53,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,104,49,44,104,49,123,102,111,110,116,45,115,105,122,101,58,50,46,53,114,101,109,125,46,104,50,44,104,50,123,102,111,110,116,45,115,105,122,101,58,50,114,101,109,125,46,104,51,44,104,51,123,102,111,110,116,45,115,105,122,101,58,49,46,55,53,114,101,109,125,46,104,52,44,104,52,123,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,125,46,104,53,44,104,53,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,104,54,44,104,54,123,102,111,110,116,45,115,105,122,101,58,49,114,101,109,125,46,108,101,97,100,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,125,46,100,105,115,112,108,97,121,45,49,123,102,111,110,116,45,115,105,122,101,58,54,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,100,105,115,112,108,97,121,45,50,123,102,111,110,116,45,115,105,122,101,58,53,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,100,105,115,112,108,97,121,45,51,123,102,111,110,116,45,115,105,122,101,58,52,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,100,105,115,112,108,97,121,45,52,123,102,111,110,116,45,115,105,122,101,58,51,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,104,114,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,125,46,115,109,97,108,108,44,115,109,97,108,108,123,102,111,110,116,45,115,105,122,101,58,56,48,37,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,125,46,109,97,114,107,44,109,97,114,107,123,112,97,100,100,105,110,103,58,46,50,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,99,102,56,101,51,125,46,108,105,115,116,45,117,110,115,116,121,108,101,100,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,108,105,115,116,45,105,110,108,105,110,101,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,108,105,115,116,45,105,110,108,105,110,101,45,105,116,101,109,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,108,105,115,116,45,105,110,108,105,110,101,45,105,116,101,109,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,125,46,105,110,105,116,105,97,108,105,115,109,123,102,111,110,116,45,115,105,122,101,58,57,48,37,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,117,112,112,101,114,99,97,115,101,125,46,98,108,111,99,107,113,117,111,116,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,98,108,111,99,107,113,117,111,116,101,45,102,111,111,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,108,111,99,107,113,117,111,116,101,45,102,111,111,116,101,114,58,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,34,92,50,48,49,52,92,48,48,65,48,34,125,46,105,109,103,45,102,108,117,105,100,123,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,97,117,116,111,125,46,105,109,103,45,116,104,117,109,98,110,97,105,108,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,97,117,116,111,125,46,102,105,103,117,114,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,102,105,103,117,114,101,45,105,109,103,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,125,46,102,105,103,117,114,101,45,99,97,112,116,105,111,110,123,102,111,110,116,45,115,105,122,101,58,57,48,37,59,99,111,108,111,114,58,35,54,99,55,53,55,100,125,99,111,100,101,123,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,101,56,51,101,56,99,59,119,111,114,100,45,98,114,101,97,107,58,98,114,101,97,107,45,119,111,114,100,125,97,62,99,111,100,101,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,107,98,100,123,112,97,100,100,105,110,103,58,46,50,114,101,109,32,46,52,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,107,98,100,32,107,98,100,123,112,97,100,100,105,110,103,58,48,59,102,111,110,116,45,115,105,122,101,58,49,48,48,37,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,112,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,112,114,101,32,99,111,100,101,123,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,125,46,112,114,101,45,115,99,114,111,108,108,97,98,108,101,123,109,97,120,45,104,101,105,103,104,116,58,51,52,48,112,120,59,111,118,101,114,102,108,111,119,45,121,58,115,99,114,111,108,108,125,46,99,111,110,116,97,105,110,101,114,123,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,53,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,59,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,53,52,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,55,50,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,57,54,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,49,49,52,48,112,120,125,125,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,53,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,59,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,125,46,114,111,119,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,53,112,120,125,46,110,111,45,103,117,116,116,101,114,115,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,110,111,45,103,117,116,116,101,114,115,62,46,99,111,108,44,46,110,111,45,103,117,116,116,101,114,115,62,91,99,108,97,115,115,42,61,99,111,108,45,93,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,99,111,108,44,46,99,111,108,45,49,44,46,99,111,108,45,49,48,44,46,99,111,108,45,49,49,44,46,99,111,108,45,49,50,44,46,99,111,108,45,50,44,46,99,111,108,45,51,44,46,99,111,108,45,52,44,46,99,111,108,45,53,44,46,99,111,108,45,54,44,46,99,111,108,45,55,44,46,99,111,108,45,56,44,46,99,111,108,45,57,44,46,99,111,108,45,97,117,116,111,44,46,99,111,108,45,108,103,44,46,99,111,108,45,108,103,45,49,44,46,99,111,108,45,108,103,45,49,48,44,46,99,111,108,45,108,103,45,49,49,44,46,99,111,108,45,108,103,45,49,50,44,46,99,111,108,45,108,103,45,50,44,46,99,111,108,45,108,103,45,51,44,46,99,111,108,45,108,103,45,52,44,46,99,111,108,45,108,103,45,53,44,46,99,111,108,45,108,103,45,54,44,46,99,111,108,45,108,103,45,55,44,46,99,111,108,45,108,103,45,56,44,46,99,111,108,45,108,103,45,57,44,46,99,111,108,45,108,103,45,97,117,116,111,44,46,99,111,108,45,109,100,44,46,99,111,108,45,109,100,45,49,44,46,99,111,108,45,109,100,45,49,48,44,46,99,111,108,45,109,100,45,49,49,44,46,99,111,108,45,109,100,45,49,50,44,46,99,111,108,45,109,100,45,50,44,46,99,111,108,45,109,100,45,51,44,46,99,111,108,45,109,100,45,52,44,46,99,111,108,45,109,100,45,53,44,46,99,111,108,45,109,100,45,54,44,46,99,111,108,45,109,100,45,55,44,46,99,111,108,45,109,100,45,56,44,46,99,111,108,45,109,100,45,57,44,46,99,111,108,45,109,100,45,97,117,116,111,44,46,99,111,108,45,115,109,44,46,99,111,108,45,115,109,45,49,44,46,99,111,108,45,115,109,45,49,48,44,46,99,111,108,45,115,109,45,49,49,44,46,99,111,108,45,115,109,45,49,50,44,46,99,111,108,45,115,109,45,50,44,46,99,111,108,45,115,109,45,51,44,46,99,111,108,45,115,109,45,52,44,46,99,111,108,45,115,109,45,53,44,46,99,111,108,45,115,109,45,54,44,46,99,111,108,45,115,109,45,55,44,46,99,111,108,45,115,109,45,56,44,46,99,111,108,45,115,109,45,57,44,46,99,111,108,45,115,109,45,97,117,116,111,44,46,99,111,108,45,120,108,44,46,99,111,108,45,120,108,45,49,44,46,99,111,108,45,120,108,45,49,48,44,46,99,111,108,45,120,108,45,49,49,44,46,99,111,108,45,120,108,45,49,50,44,46,99,111,108,45,120,108,45,50,44,46,99,111,108,45,120,108,45,51,44,46,99,111,108,45,120,108,45,52,44,46,99,111,108,45,120,108,45,53,44,46,99,111,108,45,120,108,45,54,44,46,99,111,108,45,120,108,45,55,44,46,99,111,108,45,120,108,45,56,44,46,99,111,108,45,120,108,45,57,44,46,99,111,108,45,120,108,45,97,117,116,111,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,53,112,120,125,46,99,111,108,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,111,108,45,115,109,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,115,109,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,115,109,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,115,109,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,115,109,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,115,109,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,115,109,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,115,109,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,115,109,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,115,109,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,115,109,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,115,109,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,115,109,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,115,109,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,115,109,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,115,109,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,115,109,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,115,109,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,115,109,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,115,109,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,115,109,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,115,109,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,115,109,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,115,109,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,115,109,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,115,109,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,99,111,108,45,109,100,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,109,100,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,109,100,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,109,100,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,109,100,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,109,100,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,109,100,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,109,100,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,109,100,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,109,100,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,109,100,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,109,100,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,109,100,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,109,100,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,109,100,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,109,100,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,109,100,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,109,100,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,109,100,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,109,100,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,109,100,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,109,100,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,109,100,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,109,100,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,109,100,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,109,100,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,99,111,108,45,108,103,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,108,103,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,108,103,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,108,103,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,108,103,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,108,103,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,108,103,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,108,103,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,108,103,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,108,103,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,108,103,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,108,103,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,108,103,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,108,103,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,108,103,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,108,103,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,108,103,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,108,103,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,108,103,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,108,103,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,108,103,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,108,103,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,108,103,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,108,103,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,108,103,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,108,103,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,99,111,108,45,120,108,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,120,108,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,120,108,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,120,108,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,120,108,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,120,108,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,120,108,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,120,108,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,120,108,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,120,108,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,120,108,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,120,108,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,120,108,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,120,108,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,120,108,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,120,108,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,120,108,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,120,108,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,120,108,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,120,108,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,120,108,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,120,108,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,120,108,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,120,108,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,120,108,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,120,108,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,46,116,97,98,108,101,123,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,116,97,98,108,101,32,116,100,44,46,116,97,98,108,101,32,116,104,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,116,104,101,97,100,32,116,104,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,111,116,116,111,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,50,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,116,98,111,100,121,43,116,98,111,100,121,123,98,111,114,100,101,114,45,116,111,112,58,50,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,115,109,32,116,100,44,46,116,97,98,108,101,45,115,109,32,116,104,123,112,97,100,100,105,110,103,58,46,51,114,101,109,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,101,97,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,119,105,100,116,104,58,50,112,120,125,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,104,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,58,48,125,46,116,97,98,108,101,45,115,116,114,105,112,101,100,32,116,98,111,100,121,32,116,114,58,110,116,104,45,111,102,45,116,121,112,101,40,111,100,100,41,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,53,41,125,46,116,97,98,108,101,45,104,111,118,101,114,32,116,98,111,100,121,32,116,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,45,112,114,105,109,97,114,121,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,62,116,100,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,100,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,104,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,55,97,98,97,102,102,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,62,116,100,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,100,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,104,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,51,98,55,98,98,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,116,97,98,108,101,45,115,117,99,99,101,115,115,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,62,116,100,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,100,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,104,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,102,100,49,57,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,116,97,98,108,101,45,105,110,102,111,44,46,116,97,98,108,101,45,105,110,102,111,62,116,100,44,46,116,97,98,108,101,45,105,110,102,111,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,116,97,98,108,101,45,105,110,102,111,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,105,110,102,111,32,116,100,44,46,116,97,98,108,101,45,105,110,102,111,32,116,104,44,46,116,97,98,108,101,45,105,110,102,111,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,54,99,102,100,97,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,116,97,98,108,101,45,119,97,114,110,105,110,103,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,62,116,100,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,100,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,104,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,100,102,55,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,116,97,98,108,101,45,100,97,110,103,101,114,44,46,116,97,98,108,101,45,100,97,110,103,101,114,62,116,100,44,46,116,97,98,108,101,45,100,97,110,103,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,100,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,104,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,100,57,54,57,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,116,97,98,108,101,45,108,105,103,104,116,44,46,116,97,98,108,101,45,108,105,103,104,116,62,116,100,44,46,116,97,98,108,101,45,108,105,103,104,116,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,116,97,98,108,101,45,108,105,103,104,116,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,100,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,104,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,98,102,99,102,99,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,116,97,98,108,101,45,100,97,114,107,44,46,116,97,98,108,101,45,100,97,114,107,62,116,100,44,46,116,97,98,108,101,45,100,97,114,107,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,116,97,98,108,101,45,100,97,114,107,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,57,53,57,57,57,99,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,116,97,98,108,101,45,97,99,116,105,118,101,44,46,116,97,98,108,101,45,97,99,116,105,118,101,62,116,100,44,46,116,97,98,108,101,45,97,99,116,105,118,101,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,100,97,114,107,32,116,104,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,53,52,100,53,53,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,108,105,103,104,116,32,116,104,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,53,52,100,53,53,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,115,116,114,105,112,101,100,32,116,98,111,100,121,32,116,114,58,110,116,104,45,111,102,45,116,121,112,101,40,111,100,100,41,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,48,53,41,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,104,111,118,101,114,32,116,98,111,100,121,32,116,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,48,55,53,41,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,53,55,53,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,115,109,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,115,109,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,55,54,55,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,109,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,109,100,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,57,57,49,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,108,103,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,108,103,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,49,49,57,57,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,120,108,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,120,108,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,102,111,114,109,45,99,111,110,116,114,111,108,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,109,115,45,101,120,112,97,110,100,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,119,101,98,107,105,116,45,105,110,112,117,116,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,109,111,122,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,45,109,115,45,105,110,112,117,116,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,109,115,45,105,110,112,117,116,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,100,105,115,97,98,108,101,100,44,46,102,111,114,109,45,99,111,110,116,114,111,108,91,114,101,97,100,111,110,108,121,93,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,111,112,97,99,105,116,121,58,49,125,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,58,58,45,109,115,45,118,97,108,117,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,114,97,110,103,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,51,55,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,51,55,53,114,101,109,32,43,32,49,112,120,41,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,45,108,103,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,53,114,101,109,32,43,32,49,112,120,41,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,45,115,109,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,49,112,120,41,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,116,111,112,58,46,51,55,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,51,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,119,105,100,116,104,58,49,112,120,32,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,46,102,111,114,109,45,99,111,110,116,114,111,108,45,108,103,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,46,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,108,103,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,91,109,117,108,116,105,112,108,101,93,44,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,91,115,105,122,101,93,123,104,101,105,103,104,116,58,97,117,116,111,125,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,123,104,101,105,103,104,116,58,97,117,116,111,125,46,102,111,114,109,45,103,114,111,117,112,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,46,102,111,114,109,45,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,125,46,102,111,114,109,45,114,111,119,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,53,112,120,125,46,102,111,114,109,45,114,111,119,62,46,99,111,108,44,46,102,111,114,109,45,114,111,119,62,91,99,108,97,115,115,42,61,99,111,108,45,93,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,53,112,120,125,46,102,111,114,109,45,99,104,101,99,107,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,50,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,109,97,114,103,105,110,45,116,111,112,58,46,51,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,50,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,55,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,51,49,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,123,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,122,45,105,110,100,101,120,58,53,59,100,105,115,112,108,97,121,58,110,111,110,101,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,46,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,57,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,50,56,97,55,52,53,39,32,100,61,39,77,50,46,51,32,54,46,55,51,76,46,54,32,52,46,53,51,99,45,46,52,45,49,46,48,52,46,52,54,45,49,46,52,32,49,46,49,45,46,56,108,49,46,49,32,49,46,52,32,51,46,52,45,51,46,56,99,46,54,45,46,54,51,32,49,46,54,45,46,50,55,32,49,46,50,46,55,108,45,52,32,52,46,54,99,45,46,52,51,46,53,45,46,56,46,52,45,49,46,49,46,49,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,99,101,110,116,101,114,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,44,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,116,111,112,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,40,49,101,109,32,43,32,46,55,53,114,101,109,41,32,42,32,51,32,47,32,52,32,43,32,49,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,53,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,51,52,51,97,52,48,39,32,100,61,39,77,50,32,48,76,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,110,111,45,114,101,112,101,97,116,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,44,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,50,56,97,55,52,53,39,32,100,61,39,77,50,46,51,32,54,46,55,51,76,46,54,32,52,46,53,51,99,45,46,52,45,49,46,48,52,46,52,54,45,49,46,52,32,49,46,49,45,46,56,108,49,46,49,32,49,46,52,32,51,46,52,45,51,46,56,99,46,54,45,46,54,51,32,49,46,54,45,46,50,55,32,49,46,50,46,55,108,45,52,32,52,46,54,99,45,46,52,51,46,53,45,46,56,46,52,45,49,46,49,46,49,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,35,102,102,102,32,110,111,45,114,101,112,101,97,116,32,99,101,110,116,101,114,32,114,105,103,104,116,32,49,46,55,53,114,101,109,47,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,99,101,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,99,101,53,55,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,123,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,122,45,105,110,100,101,120,58,53,59,100,105,115,112,108,97,121,58,110,111,110,101,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,46,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,57,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,100,99,51,53,52,53,39,32,118,105,101,119,66,111,120,61,39,45,50,32,45,50,32,55,32,55,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,37,50,51,100,99,51,53,52,53,39,32,100,61,39,77,48,32,48,108,51,32,51,109,48,45,51,76,48,32,51,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,47,115,118,103,37,51,69,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,99,101,110,116,101,114,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,44,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,116,111,112,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,40,49,101,109,32,43,32,46,55,53,114,101,109,41,32,42,32,51,32,47,32,52,32,43,32,49,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,53,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,51,52,51,97,52,48,39,32,100,61,39,77,50,32,48,76,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,110,111,45,114,101,112,101,97,116,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,44,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,100,99,51,53,52,53,39,32,118,105,101,119,66,111,120,61,39,45,50,32,45,50,32,55,32,55,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,37,50,51,100,99,51,53,52,53,39,32,100,61,39,77,48,32,48,108,51,32,51,109,48,45,51,76,48,32,51,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,47,115,118,103,37,51,69,34,41,32,35,102,102,102,32,110,111,45,114,101,112,101,97,116,32,99,101,110,116,101,114,32,114,105,103,104,116,32,49,46,55,53,114,101,109,47,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,52,54,48,54,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,52,54,48,54,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,123,119,105,100,116,104,58,49,48,48,37,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,111,114,109,45,105,110,108,105,110,101,32,108,97,98,101,108,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,111,110,116,114,111,108,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,97,117,116,111,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,102,111,114,109,45,105,110,108,105,110,101,32,46,105,110,112,117,116,45,103,114,111,117,112,123,119,105,100,116,104,58,97,117,116,111,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,119,105,100,116,104,58,97,117,116,111,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,59,102,108,101,120,45,115,104,114,105,110,107,58,48,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,125,46,98,116,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,116,110,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,98,116,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,116,110,46,102,111,99,117,115,44,46,98,116,110,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,98,116,110,46,100,105,115,97,98,108,101,100,44,46,98,116,110,58,100,105,115,97,98,108,101,100,123,111,112,97,99,105,116,121,58,46,54,53,125,97,46,98,116,110,46,100,105,115,97,98,108,101,100,44,102,105,101,108,100,115,101,116,58,100,105,115,97,98,108,101,100,32,97,46,98,116,110,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,116,110,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,57,100,57,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,54,50,99,99,125,46,98,116,110,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,51,56,44,49,52,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,112,114,105,109,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,112,114,105,109,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,53,99,98,102,125,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,51,56,44,49,52,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,97,54,50,54,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,53,52,53,98,54,50,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,51,48,44,49,51,56,44,49,52,53,44,46,53,41,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,101,53,53,53,98,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,51,48,44,49,51,56,44,49,52,53,44,46,53,41,125,46,98,116,110,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,49,56,56,51,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,101,55,101,51,52,125,46,98,116,110,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,46,98,116,110,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,55,50,44,49,56,48,44,57,55,44,46,53,41,125,46,98,116,110,45,115,117,99,99,101,115,115,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,115,117,99,99,101,115,115,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,99,55,52,51,48,125,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,55,50,44,49,56,48,44,57,55,44,46,53,41,125,46,98,116,110,45,105,110,102,111,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,51,56,52,57,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,49,55,97,56,98,125,46,98,116,110,45,105,110,102,111,46,102,111,99,117,115,44,46,98,116,110,45,105,110,102,111,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,56,44,49,55,54,44,49,57,53,44,46,53,41,125,46,98,116,110,45,105,110,102,111,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,105,110,102,111,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,48,55,48,55,102,125,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,56,44,49,55,54,44,49,57,53,44,46,53,41,125,46,98,116,110,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,48,97,56,48,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,51,57,101,48,48,125,46,98,116,110,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,46,98,116,110,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,50,44,49,55,48,44,49,50,44,46,53,41,125,46,98,116,110,45,119,97,114,110,105,110,103,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,119,97,114,110,105,110,103,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,54,57,53,48,48,125,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,50,44,49,55,48,44,49,50,44,46,53,41,125,46,98,116,110,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,50,51,51,51,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,100,50,49,51,48,125,46,98,116,110,45,100,97,110,103,101,114,46,102,111,99,117,115,44,46,98,116,110,45,100,97,110,103,101,114,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,53,44,56,51,44,57,55,44,46,53,41,125,46,98,116,110,45,100,97,110,103,101,114,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,100,97,110,103,101,114,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,50,49,102,50,100,125,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,53,44,56,51,44,57,55,44,46,53,41,125,46,98,116,110,45,108,105,103,104,116,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,50,101,54,101,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,97,101,48,101,53,125,46,98,116,110,45,108,105,103,104,116,46,102,111,99,117,115,44,46,98,116,110,45,108,105,103,104,116,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,49,54,44,50,49,55,44,50,49,57,44,46,53,41,125,46,98,116,110,45,108,105,103,104,116,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,108,105,103,104,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,51,100,57,100,102,125,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,49,54,44,50,49,55,44,50,49,57,44,46,53,41,125,46,98,116,110,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,51,50,55,50,98,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,100,50,49,50,52,125,46,98,116,110,45,100,97,114,107,46,102,111,99,117,115,44,46,98,116,110,45,100,97,114,107,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,56,50,44,56,56,44,57,51,44,46,53,41,125,46,98,116,110,45,100,97,114,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,100,97,114,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,49,97,49,100,125,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,56,50,44,56,56,44,57,51,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,48,56,44,49,49,55,44,49,50,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,48,56,44,49,49,55,44,49,50,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,123,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,123,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,123,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,98,116,110,45,108,105,110,107,123,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,116,110,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,98,116,110,45,108,105,110,107,46,102,111,99,117,115,44,46,98,116,110,45,108,105,110,107,58,102,111,99,117,115,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,125,46,98,116,110,45,108,105,110,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,108,105,110,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,116,110,45,103,114,111,117,112,45,108,103,62,46,98,116,110,44,46,98,116,110,45,108,103,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,115,109,62,46,98,116,110,44,46,98,116,110,45,115,109,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,98,116,110,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,98,116,110,45,98,108,111,99,107,43,46,98,116,110,45,98,108,111,99,107,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,125,105,110,112,117,116,91,116,121,112,101,61,98,117,116,116,111,110,93,46,98,116,110,45,98,108,111,99,107,44,105,110,112,117,116,91,116,121,112,101,61,114,101,115,101,116,93,46,98,116,110,45,98,108,111,99,107,44,105,110,112,117,116,91,116,121,112,101,61,115,117,98,109,105,116,93,46,98,116,110,45,98,108,111,99,107,123,119,105,100,116,104,58,49,48,48,37,125,46,102,97,100,101,123,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,49,53,115,32,108,105,110,101,97,114,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,102,97,100,101,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,102,97,100,101,58,110,111,116,40,46,115,104,111,119,41,123,111,112,97,99,105,116,121,58,48,125,46,99,111,108,108,97,112,115,101,58,110,111,116,40,46,115,104,111,119,41,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,111,108,108,97,112,115,105,110,103,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,104,101,105,103,104,116,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,116,114,97,110,115,105,116,105,111,110,58,104,101,105,103,104,116,32,46,51,53,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,111,108,108,97,112,115,105,110,103,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,100,114,111,112,100,111,119,110,44,46,100,114,111,112,108,101,102,116,44,46,100,114,111,112,114,105,103,104,116,44,46,100,114,111,112,117,112,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,48,48,59,100,105,115,112,108,97,121,58,110,111,110,101,59,102,108,111,97,116,58,108,101,102,116,59,109,105,110,45,119,105,100,116,104,58,49,48,114,101,109,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,48,59,109,97,114,103,105,110,58,46,49,50,53,114,101,109,32,48,32,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,53,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,115,109,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,115,109,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,109,100,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,109,100,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,103,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,103,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,120,108,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,120,108,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,97,117,116,111,59,98,111,116,116,111,109,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,49,50,53,114,101,109,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,48,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,48,59,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,46,49,50,53,114,101,109,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,48,59,114,105,103,104,116,58,49,48,48,37,59,108,101,102,116,58,97,117,116,111,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,49,50,53,114,101,109,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,98,101,102,111,114,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,123,114,105,103,104,116,58,97,117,116,111,59,98,111,116,116,111,109,58,97,117,116,111,125,46,100,114,111,112,100,111,119,110,45,100,105,118,105,100,101,114,123,104,101,105,103,104,116,58,48,59,109,97,114,103,105,110,58,46,53,114,101,109,32,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,101,57,101,99,101,102,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,49,46,53,114,101,109,59,99,108,101,97,114,58,98,111,116,104,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,102,111,99,117,115,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,54,49,56,49,98,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,46,97,99,116,105,118,101,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,46,100,105,115,97,98,108,101,100,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,46,115,104,111,119,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,100,114,111,112,100,111,119,110,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,46,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,45,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,49,46,53,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,98,116,110,45,103,114,111,117,112,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,104,111,118,101,114,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,49,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,46,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,102,111,99,117,115,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,46,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,49,125,46,98,116,110,45,116,111,111,108,98,97,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,98,116,110,45,116,111,111,108,98,97,114,32,46,105,110,112,117,116,45,103,114,111,117,112,123,119,105,100,116,104,58,97,117,116,111,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,54,50,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,54,50,53,114,101,109,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,97,102,116,101,114,44,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,97,102,116,101,114,44,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,98,101,102,111,114,101,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,125,46,98,116,110,45,103,114,111,117,112,45,115,109,62,46,98,116,110,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,44,46,98,116,110,45,115,109,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,51,55,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,51,55,53,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,108,103,62,46,98,116,110,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,44,46,98,116,110,45,108,103,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,55,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,55,53,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,123,119,105,100,116,104,58,49,48,48,37,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,116,111,112,58,45,49,112,120,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,99,108,105,112,58,114,101,99,116,40,48,44,48,44,48,44,48,41,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,105,110,112,117,116,45,103,114,111,117,112,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,59,119,105,100,116,104,58,49,48,48,37,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,119,105,100,116,104,58,49,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,102,111,114,109,45,99,111,110,116,114,111,108,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,51,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,52,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,58,102,111,99,117,115,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,51,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,109,97,114,103,105,110,45,116,111,112,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,116,101,120,116,97,114,101,97,41,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,116,101,120,116,97,114,101,97,41,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,125,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,55,53,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,108,97,115,116,45,99,104,105,108,100,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,108,97,115,116,45,99,104,105,108,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,102,105,114,115,116,45,99,104,105,108,100,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,102,105,114,115,116,45,99,104,105,108,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,105,110,45,104,101,105,103,104,116,58,49,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,45,49,59,111,112,97,99,105,116,121,58,48,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,46,50,53,114,101,109,59,108,101,102,116,58,45,49,46,53,114,101,109,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,35,97,100,98,53,98,100,32,115,111,108,105,100,32,49,112,120,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,46,50,53,114,101,109,59,108,101,102,116,58,45,49,46,53,114,101,109,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,58,110,111,45,114,101,112,101,97,116,32,53,48,37,47,53,48,37,32,53,48,37,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,100,61,39,77,54,46,53,54,52,46,55,53,108,45,51,46,53,57,32,51,46,54,49,50,45,49,46,53,51,56,45,49,46,53,53,76,48,32,52,46,50,54,32,50,46,57,55,52,32,55,46,50,53,32,56,32,50,46,49,57,51,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,52,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,37,50,51,102,102,102,39,32,100,61,39,77,48,32,50,104,52,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,45,52,32,45,52,32,56,32,56,39,37,51,101,37,51,99,99,105,114,99,108,101,32,114,61,39,51,39,32,102,105,108,108,61,39,37,50,51,102,102,102,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,123,112,97,100,100,105,110,103,45,108,101,102,116,58,50,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,108,101,102,116,58,45,50,46,50,53,114,101,109,59,119,105,100,116,104,58,49,46,55,53,114,101,109,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,108,108,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,116,111,112,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,50,112,120,41,59,108,101,102,116,58,99,97,108,99,40,45,50,46,50,53,114,101,109,32,43,32,50,112,120,41,59,119,105,100,116,104,58,99,97,108,99,40,49,114,101,109,32,45,32,52,112,120,41,59,104,101,105,103,104,116,58,99,97,108,99,40,49,114,101,109,32,45,32,52,112,120,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,46,55,53,114,101,109,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,46,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,49,46,55,53,114,101,109,32,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,53,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,51,52,51,97,52,48,39,32,100,61,39,77,50,32,48,76,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,110,111,45,114,101,112,101,97,116,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,58,58,45,109,115,45,118,97,108,117,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,91,109,117,108,116,105,112,108,101,93,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,91,115,105,122,101,93,58,110,111,116,40,91,115,105,122,101,61,34,49,34,93,41,123,104,101,105,103,104,116,58,97,117,116,111,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,58,45,109,115,45,101,120,112,97,110,100,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,45,115,109,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,45,108,103,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,102,105,108,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,109,97,114,103,105,110,58,48,59,111,112,97,99,105,116,121,58,48,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,108,97,110,103,40,101,110,41,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,34,66,114,111,119,115,101,34,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,91,100,97,116,97,45,98,114,111,119,115,101,93,58,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,97,116,116,114,40,100,97,116,97,45,98,114,111,119,115,101,41,125,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,122,45,105,110,100,101,120,58,51,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,99,111,110,116,101,110,116,58,34,66,114,111,119,115,101,34,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,108,101,102,116,58,105,110,104,101,114,105,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,32,46,50,53,114,101,109,32,46,50,53,114,101,109,32,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,114,101,109,32,43,32,46,52,114,101,109,41,59,112,97,100,100,105,110,103,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,109,115,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,102,111,99,117,115,45,111,117,116,101,114,123,98,111,114,100,101,114,58,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,102,105,108,108,45,108,111,119,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,102,105,108,108,45,117,112,112,101,114,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,112,120,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,115,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,110,97,118,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,110,97,118,45,108,105,110,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,125,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,110,97,118,45,116,97,98,115,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,105,116,101,109,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,57,101,99,101,102,32,35,101,57,101,99,101,102,32,35,100,101,101,50,101,54,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,105,116,101,109,46,115,104,111,119,32,46,110,97,118,45,108,105,110,107,44,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,32,35,100,101,101,50,101,54,32,35,102,102,102,125,46,110,97,118,45,116,97,98,115,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,109,97,114,103,105,110,45,116,111,112,58,45,49,112,120,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,110,97,118,45,112,105,108,108,115,32,46,110,97,118,45,108,105,110,107,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,45,112,105,108,108,115,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,45,112,105,108,108,115,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,110,97,118,45,102,105,108,108,32,46,110,97,118,45,105,116,101,109,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,46,110,97,118,45,106,117,115,116,105,102,105,101,100,32,46,110,97,118,45,105,116,101,109,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,46,116,97,98,45,99,111,110,116,101,110,116,62,46,116,97,98,45,112,97,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,45,99,111,110,116,101,110,116,62,46,97,99,116,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,110,97,118,98,97,114,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,125,46,110,97,118,98,97,114,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,125,46,110,97,118,98,97,114,45,98,114,97,110,100,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,45,116,111,112,58,46,51,49,50,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,51,49,50,53,114,101,109,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,98,97,114,45,110,97,118,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,102,108,111,97,116,58,110,111,110,101,125,46,110,97,118,98,97,114,45,116,101,120,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,49,48,48,37,59,102,108,101,120,45,98,97,115,105,115,58,49,48,48,37,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,46,53,101,109,59,104,101,105,103,104,116,58,49,46,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,58,110,111,45,114,101,112,101,97,116,32,99,101,110,116,101,114,32,99,101,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,48,48,37,32,49,48,48,37,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,53,55,53,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,55,54,55,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,57,57,49,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,49,49,57,57,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,55,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,51,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,97,99,116,105,118,101,62,46,110,97,118,45,108,105,110,107,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,115,104,111,119,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,49,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,118,105,101,119,66,111,120,61,39,48,32,48,32,51,48,32,51,48,39,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,53,41,39,32,115,116,114,111,107,101,45,119,105,100,116,104,61,39,50,39,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,39,114,111,117,110,100,39,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,39,49,48,39,32,100,61,39,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,55,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,50,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,97,99,116,105,118,101,62,46,110,97,118,45,108,105,110,107,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,115,104,111,119,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,118,105,101,119,66,111,120,61,39,48,32,48,32,51,48,32,51,48,39,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,53,41,39,32,115,116,114,111,107,101,45,119,105,100,116,104,61,39,50,39,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,39,114,111,117,110,100,39,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,39,49,48,39,32,100,61,39,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,125,46,99,97,114,100,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,109,105,110,45,119,105,100,116,104,58,48,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,98,111,114,100,101,114,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,97,114,100,62,104,114,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,99,97,114,100,62,46,108,105,115,116,45,103,114,111,117,112,58,102,105,114,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,97,114,100,62,46,108,105,115,116,45,103,114,111,117,112,58,108,97,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,97,114,100,45,98,111,100,121,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,112,97,100,100,105,110,103,58,49,46,50,53,114,101,109,125,46,99,97,114,100,45,116,105,116,108,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,46,99,97,114,100,45,115,117,98,116,105,116,108,101,123,109,97,114,103,105,110,45,116,111,112,58,45,46,51,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,116,101,120,116,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,108,105,110,107,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,99,97,114,100,45,108,105,110,107,43,46,99,97,114,100,45,108,105,110,107,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,50,53,114,101,109,125,46,99,97,114,100,45,104,101,97,100,101,114,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,51,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,99,97,114,100,45,104,101,97,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,48,32,48,125,46,99,97,114,100,45,104,101,97,100,101,114,43,46,108,105,115,116,45,103,114,111,117,112,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,58,48,125,46,99,97,114,100,45,102,111,111,116,101,114,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,51,41,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,99,97,114,100,45,102,111,111,116,101,114,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,32,48,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,104,101,97,100,101,114,45,116,97,98,115,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,54,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,55,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,46,54,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,104,101,97,100,101,114,45,112,105,108,108,115,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,54,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,46,54,50,53,114,101,109,125,46,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,112,97,100,100,105,110,103,58,49,46,50,53,114,101,109,125,46,99,97,114,100,45,105,109,103,123,119,105,100,116,104,58,49,48,48,37,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,105,109,103,45,116,111,112,123,119,105,100,116,104,58,49,48,48,37,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,119,105,100,116,104,58,49,48,48,37,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,100,101,99,107,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,125,46,99,97,114,100,45,100,101,99,107,32,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,53,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,100,101,99,107,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,53,112,120,125,46,99,97,114,100,45,100,101,99,107,32,46,99,97,114,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,58,49,32,48,32,48,37,59,102,108,101,120,58,49,32,48,32,48,37,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,49,53,112,120,125,125,46,99,97,114,100,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,53,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,103,114,111,117,112,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,123,45,109,115,45,102,108,101,120,58,49,32,48,32,48,37,59,102,108,101,120,58,49,32,48,32,48,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,43,46,99,97,114,100,123,109,97,114,103,105,110,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,108,101,102,116,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,104,101,97,100,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,102,111,111,116,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,104,101,97,100,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,102,111,111,116,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,46,99,97,114,100,45,99,111,108,117,109,110,115,32,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,99,111,108,117,109,110,115,123,45,119,101,98,107,105,116,45,99,111,108,117,109,110,45,99,111,117,110,116,58,51,59,45,109,111,122,45,99,111,108,117,109,110,45,99,111,117,110,116,58,51,59,99,111,108,117,109,110,45,99,111,117,110,116,58,51,59,45,119,101,98,107,105,116,45,99,111,108,117,109,110,45,103,97,112,58,49,46,50,53,114,101,109,59,45,109,111,122,45,99,111,108,117,109,110,45,103,97,112,58,49,46,50,53,114,101,109,59,99,111,108,117,109,110,45,103,97,112,58,49,46,50,53,114,101,109,59,111,114,112,104,97,110,115,58,49,59,119,105,100,111,119,115,58,49,125,46,99,97,114,100,45,99,111,108,117,109,110,115,32,46,99,97,114,100,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,111,102,45,116,121,112,101,41,32,46,99,97,114,100,45,104,101,97,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,111,102,45,116,121,112,101,41,58,110,111,116,40,58,108,97,115,116,45,111,102,45,116,121,112,101,41,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,102,105,114,115,116,45,111,102,45,116,121,112,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,108,97,115,116,45,111,102,45,116,121,112,101,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,32,46,99,97,114,100,45,104,101,97,100,101,114,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,125,46,98,114,101,97,100,99,114,117,109,98,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,99,111,110,116,101,110,116,58,34,47,34,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,112,97,103,105,110,97,116,105,111,110,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,108,105,110,107,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,53,59,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,112,97,103,101,45,108,105,110,107,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,50,59,99,111,108,111,114,58,35,48,48,53,54,98,51,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,112,97,103,101,45,108,105,110,107,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,50,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,109,97,114,103,105,110,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,105,116,101,109,46,97,99,116,105,118,101,32,46,112,97,103,101,45,108,105,110,107,123,122,45,105,110,100,101,120,58,49,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,112,97,103,101,45,105,116,101,109,46,100,105,115,97,98,108,101,100,32,46,112,97,103,101,45,108,105,110,107,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,99,117,114,115,111,114,58,97,117,116,111,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,108,105,110,107,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,108,105,110,107,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,98,97,100,103,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,50,53,101,109,32,46,52,101,109,59,102,111,110,116,45,115,105,122,101,58,55,53,37,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,97,100,103,101,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,97,46,98,97,100,103,101,58,102,111,99,117,115,44,97,46,98,97,100,103,101,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,97,100,103,101,58,101,109,112,116,121,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,98,116,110,32,46,98,97,100,103,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,111,112,58,45,49,112,120,125,46,98,97,100,103,101,45,112,105,108,108,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,54,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,54,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,48,114,101,109,125,46,98,97,100,103,101,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,125,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,125,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,48,56,44,49,49,55,44,49,50,53,44,46,53,41,125,46,98,97,100,103,101,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,125,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,97,100,103,101,45,105,110,102,111,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,97,46,98,97,100,103,101,45,105,110,102,111,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,125,97,46,98,97,100,103,101,45,105,110,102,111,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,105,110,102,111,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,97,100,103,101,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,125,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,97,100,103,101,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,125,97,46,98,97,100,103,101,45,100,97,110,103,101,114,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,97,100,103,101,45,108,105,103,104,116,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,97,46,98,97,100,103,101,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,125,97,46,98,97,100,103,101,45,108,105,103,104,116,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,108,105,103,104,116,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,97,100,103,101,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,97,46,98,97,100,103,101,45,100,97,114,107,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,125,97,46,98,97,100,103,101,45,100,97,114,107,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,114,107,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,106,117,109,98,111,116,114,111,110,123,112,97,100,100,105,110,103,58,50,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,50,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,106,117,109,98,111,116,114,111,110,123,112,97,100,100,105,110,103,58,52,114,101,109,32,50,114,101,109,125,125,46,106,117,109,98,111,116,114,111,110,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,97,108,101,114,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,97,108,101,114,116,45,104,101,97,100,105,110,103,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,97,108,101,114,116,45,108,105,110,107,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,52,114,101,109,125,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,32,46,99,108,111,115,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,99,101,53,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,48,50,55,53,50,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,50,101,51,101,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,50,48,50,51,50,54,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,52,101,100,100,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,98,50,101,49,51,125,46,97,108,101,114,116,45,105,110,102,111,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,49,101,99,102,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,97,108,101,114,116,45,105,110,102,111,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,97,108,101,114,116,45,105,110,102,111,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,54,50,99,51,51,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,51,99,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,53,51,51,102,48,51,125,46,97,108,101,114,116,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,100,55,100,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,97,108,101,114,116,45,100,97,110,103,101,114,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,97,108,101,114,116,45,100,97,110,103,101,114,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,52,57,49,50,49,55,125,46,97,108,101,114,116,45,108,105,103,104,116,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,101,102,101,102,101,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,97,108,101,114,116,45,108,105,103,104,116,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,97,108,101,114,116,45,108,105,103,104,116,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,54,56,54,56,54,56,125,46,97,108,101,114,116,45,100,97,114,107,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,57,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,97,108,101,114,116,45,100,97,114,107,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,97,108,101,114,116,45,100,97,114,107,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,52,48,53,48,53,125,64,45,119,101,98,107,105,116,45,107,101,121,102,114,97,109,101,115,32,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,123,102,114,111,109,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,114,101,109,32,48,125,116,111,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,125,125,64,107,101,121,102,114,97,109,101,115,32,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,123,102,114,111,109,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,114,101,109,32,48,125,116,111,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,125,125,46,112,114,111,103,114,101,115,115,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,104,101,105,103,104,116,58,49,114,101,109,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,102,111,110,116,45,115,105,122,101,58,46,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,114,111,103,114,101,115,115,45,98,97,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,114,97,110,115,105,116,105,111,110,58,119,105,100,116,104,32,46,54,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,112,114,111,103,114,101,115,115,45,98,97,114,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,53,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,53,48,37,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,53,41,32,53,48,37,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,53,41,32,55,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,116,114,97,110,115,112,97,114,101,110,116,41,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,114,101,109,32,49,114,101,109,125,46,112,114,111,103,114,101,115,115,45,98,97,114,45,97,110,105,109,97,116,101,100,123,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,32,49,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,59,97,110,105,109,97,116,105,111,110,58,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,32,49,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,112,114,111,103,114,101,115,115,45,98,97,114,45,97,110,105,109,97,116,101,100,123,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,110,111,110,101,59,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,46,109,101,100,105,97,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,125,46,109,101,100,105,97,45,98,111,100,121,123,45,109,115,45,102,108,101,120,58,49,59,102,108,101,120,58,49,125,46,108,105,115,116,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,123,119,105,100,116,104,58,49,48,48,37,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,49,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,97,99,116,105,118,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,100,105,115,97,98,108,101,100,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,122,45,105,110,100,101,120,58,50,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,98,111,114,100,101,114,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,58,102,105,114,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,58,108,97,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,52,48,56,53,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,56,51,100,52,49,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,53,53,55,50,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,99,53,52,54,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,53,54,52,48,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,55,50,49,99,50,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,49,56,49,56,50,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,98,49,101,50,49,125,46,99,108,111,115,101,123,102,108,111,97,116,58,114,105,103,104,116,59,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,99,111,108,111,114,58,35,48,48,48,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,49,112,120,32,48,32,35,102,102,102,59,111,112,97,99,105,116,121,58,46,53,125,46,99,108,111,115,101,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,48,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,99,108,111,115,101,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,102,111,99,117,115,44,46,99,108,111,115,101,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,104,111,118,101,114,123,111,112,97,99,105,116,121,58,46,55,53,125,98,117,116,116,111,110,46,99,108,111,115,101,123,112,97,100,100,105,110,103,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,97,46,99,108,111,115,101,46,100,105,115,97,98,108,101,100,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,116,111,97,115,116,123,109,97,120,45,119,105,100,116,104,58,51,53,48,112,120,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,56,53,41,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,46,50,53,114,101,109,32,46,55,53,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,59,45,119,101,98,107,105,116,45,98,97,99,107,100,114,111,112,45,102,105,108,116,101,114,58,98,108,117,114,40,49,48,112,120,41,59,98,97,99,107,100,114,111,112,45,102,105,108,116,101,114,58,98,108,117,114,40,49,48,112,120,41,59,111,112,97,99,105,116,121,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,116,111,97,115,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,46,116,111,97,115,116,46,115,104,111,119,105,110,103,123,111,112,97,99,105,116,121,58,49,125,46,116,111,97,115,116,46,115,104,111,119,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,111,112,97,99,105,116,121,58,49,125,46,116,111,97,115,116,46,104,105,100,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,111,97,115,116,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,56,53,41,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,48,53,41,125,46,116,111,97,115,116,45,98,111,100,121,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,125,46,109,111,100,97,108,45,111,112,101,110,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,109,111,100,97,108,45,111,112,101,110,32,46,109,111,100,97,108,123,111,118,101,114,102,108,111,119,45,120,58,104,105,100,100,101,110,59,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,125,46,109,111,100,97,108,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,53,48,59,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,111,117,116,108,105,110,101,58,48,125,46,109,111,100,97,108,45,100,105,97,108,111,103,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,97,117,116,111,59,109,97,114,103,105,110,58,46,53,114,101,109,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,109,111,100,97,108,46,102,97,100,101,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,48,44,45,53,48,112,120,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,48,44,45,53,48,112,120,41,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,109,111,100,97,108,46,102,97,100,101,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,109,111,100,97,108,46,115,104,111,119,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,49,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,49,114,101,109,41,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,102,111,111,116,101,114,44,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,104,101,97,100,101,114,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,59,102,108,101,120,45,115,104,114,105,110,107,58,48,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,98,111,100,121,123,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,49,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,49,114,101,109,41,59,99,111,110,116,101,110,116,58,34,34,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,104,101,105,103,104,116,58,49,48,48,37,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,110,111,110,101,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,58,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,110,111,110,101,125,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,119,105,100,116,104,58,49,48,48,37,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,59,111,117,116,108,105,110,101,58,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,52,48,59,119,105,100,116,104,58,49,48,48,118,119,59,104,101,105,103,104,116,58,49,48,48,118,104,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,46,102,97,100,101,123,111,112,97,99,105,116,121,58,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,46,115,104,111,119,123,111,112,97,99,105,116,121,58,46,53,125,46,109,111,100,97,108,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,59,112,97,100,100,105,110,103,58,49,114,101,109,32,49,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,109,111,100,97,108,45,104,101,97,100,101,114,32,46,99,108,111,115,101,123,112,97,100,100,105,110,103,58,49,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,58,45,49,114,101,109,32,45,49,114,101,109,32,45,49,114,101,109,32,97,117,116,111,125,46,109,111,100,97,108,45,116,105,116,108,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,109,111,100,97,108,45,98,111,100,121,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,112,97,100,100,105,110,103,58,49,114,101,109,125,46,109,111,100,97,108,45,102,111,111,116,101,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,59,112,97,100,100,105,110,103,58,49,114,101,109,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,109,111,100,97,108,45,102,111,111,116,101,114,62,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,125,46,109,111,100,97,108,45,102,111,111,116,101,114,62,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,125,46,109,111,100,97,108,45,115,99,114,111,108,108,98,97,114,45,109,101,97,115,117,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,45,57,57,57,57,112,120,59,119,105,100,116,104,58,53,48,112,120,59,104,101,105,103,104,116,58,53,48,112,120,59,111,118,101,114,102,108,111,119,58,115,99,114,111,108,108,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,109,111,100,97,108,45,100,105,97,108,111,103,123,109,97,120,45,119,105,100,116,104,58,53,48,48,112,120,59,109,97,114,103,105,110,58,49,46,55,53,114,101,109,32,97,117,116,111,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,123,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,58,58,98,101,102,111,114,101,123,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,115,109,123,109,97,120,45,119,105,100,116,104,58,51,48,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,109,111,100,97,108,45,108,103,44,46,109,111,100,97,108,45,120,108,123,109,97,120,45,119,105,100,116,104,58,56,48,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,109,111,100,97,108,45,120,108,123,109,97,120,45,119,105,100,116,104,58,49,49,52,48,112,120,125,125,46,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,49,48,55,48,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,115,116,97,114,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,59,119,111,114,100,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,108,105,110,101,45,98,114,101,97,107,58,97,117,116,111,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,111,112,97,99,105,116,121,58,48,125,46,116,111,111,108,116,105,112,46,115,104,111,119,123,111,112,97,99,105,116,121,58,46,57,125,46,116,111,111,108,116,105,112,32,46,97,114,114,111,119,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,46,56,114,101,109,59,104,101,105,103,104,116,58,46,52,114,101,109,125,46,116,111,111,108,116,105,112,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,115,116,121,108,101,58,115,111,108,105,100,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,123,112,97,100,100,105,110,103,58,46,52,114,101,109,32,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,123,98,111,116,116,111,109,58,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,116,111,112,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,46,52,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,123,112,97,100,100,105,110,103,58,48,32,46,52,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,123,108,101,102,116,58,48,59,119,105,100,116,104,58,46,52,114,101,109,59,104,101,105,103,104,116,58,46,56,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,46,52,114,101,109,32,46,52,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,123,112,97,100,100,105,110,103,58,46,52,114,101,109,32,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,123,116,111,112,58,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,52,114,101,109,32,46,52,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,123,112,97,100,100,105,110,103,58,48,32,46,52,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,123,114,105,103,104,116,58,48,59,119,105,100,116,104,58,46,52,114,101,109,59,104,101,105,103,104,116,58,46,56,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,108,101,102,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,48,32,46,52,114,101,109,32,46,52,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,48,48,48,125,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,109,97,120,45,119,105,100,116,104,58,50,48,48,112,120,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,111,112,111,118,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,54,48,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,120,45,119,105,100,116,104,58,50,55,54,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,115,116,97,114,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,59,119,111,114,100,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,108,105,110,101,45,98,114,101,97,107,58,97,117,116,111,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,46,53,114,101,109,59,109,97,114,103,105,110,58,48,32,46,51,114,101,109,125,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,115,116,121,108,101,58,115,111,108,105,100,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,123,98,111,116,116,111,109,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,116,116,111,109,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,123,108,101,102,116,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,59,119,105,100,116,104,58,46,53,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,58,46,51,114,101,109,32,48,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,108,101,102,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,108,101,102,116,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,123,116,111,112,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,116,111,112,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,116,111,112,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,53,48,37,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,102,55,102,55,102,55,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,123,114,105,103,104,116,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,59,119,105,100,116,104,58,46,53,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,58,46,51,114,101,109,32,48,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,48,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,114,105,103,104,116,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,48,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,102,102,125,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,55,102,55,102,55,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,101,98,101,98,101,98,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,125,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,101,109,112,116,121,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,112,111,112,111,118,101,114,45,98,111,100,121,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,99,97,114,111,117,115,101,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,99,97,114,111,117,115,101,108,46,112,111,105,110,116,101,114,45,101,118,101,110,116,123,45,109,115,45,116,111,117,99,104,45,97,99,116,105,111,110,58,112,97,110,45,121,59,116,111,117,99,104,45,97,99,116,105,111,110,58,112,97,110,45,121,125,46,99,97,114,111,117,115,101,108,45,105,110,110,101,114,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,99,97,114,111,117,115,101,108,45,105,110,110,101,114,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,34,34,125,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,110,111,110,101,59,102,108,111,97,116,58,108,101,102,116,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,48,48,37,59,45,119,101,98,107,105,116,45,98,97,99,107,102,97,99,101,45,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,59,98,97,99,107,102,97,99,101,45,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,59,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,46,97,99,116,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,58,110,111,116,40,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,41,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,49,48,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,49,48,48,37,41,125,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,58,110,111,116,40,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,41,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,45,49,48,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,45,49,48,48,37,41,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,105,116,105,111,110,45,112,114,111,112,101,114,116,121,58,111,112,97,99,105,116,121,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,46,97,99,116,105,118,101,123,122,45,105,110,100,101,120,58,49,59,111,112,97,99,105,116,121,58,49,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,123,122,45,105,110,100,101,120,58,48,59,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,105,116,105,111,110,58,48,115,32,46,54,115,32,111,112,97,99,105,116,121,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,122,45,105,110,100,101,120,58,49,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,119,105,100,116,104,58,49,53,37,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,111,112,97,99,105,116,121,58,46,53,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,49,53,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,58,102,111,99,117,115,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,58,104,111,118,101,114,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,58,102,111,99,117,115,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,111,117,116,108,105,110,101,58,48,59,111,112,97,99,105,116,121,58,46,57,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,108,101,102,116,58,48,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,123,114,105,103,104,116,58,48,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,45,105,99,111,110,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,45,105,99,111,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,48,112,120,59,104,101,105,103,104,116,58,50,48,112,120,59,98,97,99,107,103,114,111,117,110,100,58,110,111,45,114,101,112,101,97,116,32,53,48,37,47,49,48,48,37,32,49,48,48,37,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,100,61,39,77,53,46,50,53,32,48,108,45,52,32,52,32,52,32,52,32,49,46,53,45,49,46,53,45,50,46,53,45,50,46,53,32,50,46,53,45,50,46,53,45,49,46,53,45,49,46,53,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,100,61,39,77,50,46,55,53,32,48,108,45,49,46,53,32,49,46,53,32,50,46,53,32,50,46,53,45,50,46,53,32,50,46,53,32,49,46,53,32,49,46,53,32,52,45,52,45,52,45,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,53,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,37,59,109,97,114,103,105,110,45,108,101,102,116,58,49,53,37,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,108,105,123,98,111,120,45,115,105,122,105,110,103,58,99,111,110,116,101,110,116,45,98,111,120,59,45,109,115,45,102,108,101,120,58,48,32,49,32,97,117,116,111,59,102,108,101,120,58,48,32,49,32,97,117,116,111,59,119,105,100,116,104,58,51,48,112,120,59,104,101,105,103,104,116,58,51,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,51,112,120,59,116,101,120,116,45,105,110,100,101,110,116,58,45,57,57,57,112,120,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,45,116,111,112,58,49,48,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,48,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,111,112,97,99,105,116,121,58,46,53,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,54,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,108,105,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,46,97,99,116,105,118,101,123,111,112,97,99,105,116,121,58,49,125,46,99,97,114,111,117,115,101,108,45,99,97,112,116,105,111,110,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,49,53,37,59,98,111,116,116,111,109,58,50,48,112,120,59,108,101,102,116,58,49,53,37,59,122,45,105,110,100,101,120,58,49,48,59,112,97,100,100,105,110,103,45,116,111,112,58,50,48,112,120,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,50,48,112,120,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,64,45,119,101,98,107,105,116,45,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,98,111,114,100,101,114,123,116,111,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,59,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,125,125,64,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,98,111,114,100,101,114,123,116,111,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,59,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,125,125,46,115,112,105,110,110,101,114,45,98,111,114,100,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,114,101,109,59,104,101,105,103,104,116,58,50,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,59,98,111,114,100,101,114,58,46,50,53,101,109,32,115,111,108,105,100,32,99,117,114,114,101,110,116,67,111,108,111,114,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,59,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,98,111,114,100,101,114,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,59,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,98,111,114,100,101,114,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,125,46,115,112,105,110,110,101,114,45,98,111,114,100,101,114,45,115,109,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,50,101,109,125,64,45,119,101,98,107,105,116,45,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,103,114,111,119,123,48,37,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,125,53,48,37,123,111,112,97,99,105,116,121,58,49,125,125,64,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,103,114,111,119,123,48,37,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,125,53,48,37,123,111,112,97,99,105,116,121,58,49,125,125,46,115,112,105,110,110,101,114,45,103,114,111,119,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,114,101,109,59,104,101,105,103,104,116,58,50,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,99,117,114,114,101,110,116,67,111,108,111,114,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,59,111,112,97,99,105,116,121,58,48,59,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,103,114,111,119,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,59,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,103,114,111,119,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,125,46,115,112,105,110,110,101,114,45,103,114,111,119,45,115,109,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,125,46,97,108,105,103,110,45,98,97,115,101,108,105,110,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,111,112,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,109,105,100,100,108,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,98,111,116,116,111,109,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,111,116,116,111,109,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,101,120,116,45,98,111,116,116,111,109,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,101,120,116,45,116,111,112,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,112,114,105,109,97,114,121,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,98,103,45,112,114,105,109,97,114,121,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,115,101,99,111,110,100,97,114,121,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,98,103,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,115,117,99,99,101,115,115,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,98,103,45,115,117,99,99,101,115,115,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,105,110,102,111,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,105,110,102,111,58,102,111,99,117,115,44,97,46,98,103,45,105,110,102,111,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,105,110,102,111,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,105,110,102,111,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,119,97,114,110,105,110,103,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,98,103,45,119,97,114,110,105,110,103,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,100,97,110,103,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,98,103,45,100,97,110,103,101,114,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,100,97,110,103,101,114,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,100,97,110,103,101,114,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,108,105,103,104,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,98,103,45,108,105,103,104,116,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,108,105,103,104,116,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,108,105,103,104,116,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,100,97,114,107,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,100,97,114,107,58,102,111,99,117,115,44,97,46,98,103,45,100,97,114,107,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,100,97,114,107,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,100,97,114,107,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,119,104,105,116,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,116,114,97,110,115,112,97,114,101,110,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,114,105,103,104,116,123,98,111,114,100,101,114,45,114,105,103,104,116,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,101,102,116,123,98,111,114,100,101,114,45,108,101,102,116,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,48,123,98,111,114,100,101,114,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,116,111,112,45,48,123,98,111,114,100,101,114,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,114,105,103,104,116,45,48,123,98,111,114,100,101,114,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,98,111,116,116,111,109,45,48,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,101,102,116,45,48,123,98,111,114,100,101,114,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,112,114,105,109,97,114,121,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,115,101,99,111,110,100,97,114,121,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,115,117,99,99,101,115,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,105,110,102,111,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,119,97,114,110,105,110,103,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,100,97,110,103,101,114,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,105,103,104,116,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,100,97,114,107,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,119,104,105,116,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,115,109,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,114,105,103,104,116,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,108,101,102,116,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,108,103,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,99,105,114,99,108,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,112,105,108,108,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,48,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,33,105,109,112,111,114,116,97,110,116,125,46,99,108,101,97,114,102,105,120,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,34,34,125,46,100,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,100,45,115,109,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,100,45,109,100,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,100,45,108,103,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,100,45,120,108,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,112,114,105,110,116,123,46,100,45,112,114,105,110,116,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,111,110,116,101,110,116,58,34,34,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,105,116,101,109,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,101,109,98,101,100,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,105,102,114,97,109,101,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,111,98,106,101,99,116,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,118,105,100,101,111,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,98,111,114,100,101,114,58,48,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,50,49,98,121,57,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,52,50,46,56,53,55,49,52,51,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,49,54,98,121,57,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,53,54,46,50,53,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,52,98,121,51,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,55,53,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,49,98,121,49,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,49,48,48,37,125,46,102,108,101,120,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,108,101,120,45,115,109,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,108,101,120,45,109,100,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,102,108,101,120,45,108,103,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,102,108,101,120,45,120,108,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,46,102,108,111,97,116,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,108,111,97,116,45,115,109,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,115,109,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,115,109,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,108,111,97,116,45,109,100,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,109,100,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,109,100,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,102,108,111,97,116,45,108,103,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,108,103,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,108,103,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,102,108,111,97,116,45,120,108,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,120,108,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,120,108,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,46,111,118,101,114,102,108,111,119,45,97,117,116,111,123,111,118,101,114,102,108,111,119,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,111,118,101,114,102,108,111,119,45,104,105,100,100,101,110,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,115,116,97,116,105,99,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,114,101,108,97,116,105,118,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,97,98,115,111,108,117,116,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,102,105,120,101,100,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,115,116,105,99,107,121,123,112,111,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,115,116,105,99,107,121,33,105,109,112,111,114,116,97,110,116,59,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,33,105,109,112,111,114,116,97,110,116,125,46,102,105,120,101,100,45,116,111,112,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,51,48,125,46,102,105,120,101,100,45,98,111,116,116,111,109,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,51,48,125,64,115,117,112,112,111,114,116,115,32,40,40,112,111,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,115,116,105,99,107,121,41,32,111,114,32,40,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,41,41,123,46,115,116,105,99,107,121,45,116,111,112,123,112,111,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,115,116,105,99,107,121,59,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,59,116,111,112,58,48,59,122,45,105,110,100,101,120,58,49,48,50,48,125,125,46,115,114,45,111,110,108,121,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,119,105,100,116,104,58,49,112,120,59,104,101,105,103,104,116,58,49,112,120,59,112,97,100,100,105,110,103,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,99,108,105,112,58,114,101,99,116,40,48,44,48,44,48,44,48,41,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,111,114,100,101,114,58,48,125,46,115,114,45,111,110,108,121,45,102,111,99,117,115,97,98,108,101,58,97,99,116,105,118,101,44,46,115,114,45,111,110,108,121,45,102,111,99,117,115,97,98,108,101,58,102,111,99,117,115,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,119,105,100,116,104,58,97,117,116,111,59,104,101,105,103,104,116,58,97,117,116,111,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,59,99,108,105,112,58,97,117,116,111,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,125,46,115,104,97,100,111,119,45,115,109,123,98,111,120,45,115,104,97,100,111,119,58,48,32,46,49,50,53,114,101,109,32,46,50,53,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,123,98,111,120,45,115,104,97,100,111,119,58,48,32,46,53,114,101,109,32,49,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,45,108,103,123,98,111,120,45,115,104,97,100,111,119,58,48,32,49,114,101,109,32,51,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,55,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,45,110,111,110,101,123,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,119,45,50,53,123,119,105,100,116,104,58,50,53,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,53,48,123,119,105,100,116,104,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,55,53,123,119,105,100,116,104,58,55,53,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,49,48,48,123,119,105,100,116,104,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,97,117,116,111,123,119,105,100,116,104,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,104,45,50,53,123,104,101,105,103,104,116,58,50,53,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,53,48,123,104,101,105,103,104,116,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,55,53,123,104,101,105,103,104,116,58,55,53,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,49,48,48,123,104,101,105,103,104,116,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,97,117,116,111,123,104,101,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,119,45,49,48,48,123,109,97,120,45,119,105,100,116,104,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,109,104,45,49,48,48,123,109,97,120,45,104,101,105,103,104,116,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,109,105,110,45,118,119,45,49,48,48,123,109,105,110,45,119,105,100,116,104,58,49,48,48,118,119,33,105,109,112,111,114,116,97,110,116,125,46,109,105,110,45,118,104,45,49,48,48,123,109,105,110,45,104,101,105,103,104,116,58,49,48,48,118,104,33,105,109,112,111,114,116,97,110,116,125,46,118,119,45,49,48,48,123,119,105,100,116,104,58,49,48,48,118,119,33,105,109,112,111,114,116,97,110,116,125,46,118,104,45,49,48,48,123,104,101,105,103,104,116,58,49,48,48,118,104,33,105,109,112,111,114,116,97,110,116,125,46,115,116,114,101,116,99,104,101,100,45,108,105,110,107,58,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,48,41,125,46,109,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,48,44,46,109,121,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,48,44,46,109,120,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,48,44,46,109,121,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,48,44,46,109,120,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,49,44,46,109,121,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,49,44,46,109,120,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,49,44,46,109,121,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,49,44,46,109,120,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,50,44,46,109,121,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,50,44,46,109,120,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,50,44,46,109,121,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,50,44,46,109,120,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,51,44,46,109,121,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,51,44,46,109,120,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,51,44,46,109,121,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,51,44,46,109,120,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,52,44,46,109,121,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,52,44,46,109,120,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,52,44,46,109,121,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,52,44,46,109,120,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,53,44,46,109,121,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,53,44,46,109,120,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,53,44,46,109,121,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,53,44,46,109,120,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,48,44,46,112,121,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,48,44,46,112,120,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,48,44,46,112,121,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,48,44,46,112,120,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,49,44,46,112,121,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,49,44,46,112,120,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,49,44,46,112,121,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,49,44,46,112,120,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,50,44,46,112,121,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,50,44,46,112,120,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,50,44,46,112,121,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,50,44,46,112,120,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,51,44,46,112,121,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,51,44,46,112,120,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,51,44,46,112,121,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,51,44,46,112,120,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,52,44,46,112,121,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,52,44,46,112,120,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,52,44,46,112,121,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,52,44,46,112,120,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,53,44,46,112,121,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,53,44,46,112,120,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,53,44,46,112,121,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,53,44,46,112,120,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,49,44,46,109,121,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,49,44,46,109,120,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,49,44,46,109,121,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,49,44,46,109,120,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,50,44,46,109,121,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,50,44,46,109,120,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,50,44,46,109,121,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,50,44,46,109,120,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,51,44,46,109,121,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,51,44,46,109,120,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,51,44,46,109,121,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,51,44,46,109,120,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,52,44,46,109,121,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,52,44,46,109,120,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,52,44,46,109,121,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,52,44,46,109,120,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,53,44,46,109,121,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,53,44,46,109,120,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,53,44,46,109,121,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,53,44,46,109,120,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,97,117,116,111,44,46,109,121,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,97,117,116,111,44,46,109,120,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,97,117,116,111,44,46,109,121,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,97,117,116,111,44,46,109,120,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,109,45,115,109,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,48,44,46,109,121,45,115,109,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,48,44,46,109,120,45,115,109,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,48,44,46,109,121,45,115,109,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,48,44,46,109,120,45,115,109,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,49,44,46,109,121,45,115,109,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,49,44,46,109,120,45,115,109,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,49,44,46,109,121,45,115,109,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,49,44,46,109,120,45,115,109,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,50,44,46,109,121,45,115,109,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,50,44,46,109,120,45,115,109,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,50,44,46,109,121,45,115,109,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,50,44,46,109,120,45,115,109,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,51,44,46,109,121,45,115,109,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,51,44,46,109,120,45,115,109,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,51,44,46,109,121,45,115,109,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,51,44,46,109,120,45,115,109,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,52,44,46,109,121,45,115,109,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,52,44,46,109,120,45,115,109,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,52,44,46,109,121,45,115,109,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,52,44,46,109,120,45,115,109,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,53,44,46,109,121,45,115,109,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,53,44,46,109,120,45,115,109,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,53,44,46,109,121,45,115,109,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,53,44,46,109,120,45,115,109,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,48,44,46,112,121,45,115,109,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,48,44,46,112,120,45,115,109,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,48,44,46,112,121,45,115,109,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,48,44,46,112,120,45,115,109,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,49,44,46,112,121,45,115,109,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,49,44,46,112,120,45,115,109,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,49,44,46,112,121,45,115,109,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,49,44,46,112,120,45,115,109,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,50,44,46,112,121,45,115,109,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,50,44,46,112,120,45,115,109,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,50,44,46,112,121,45,115,109,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,50,44,46,112,120,45,115,109,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,51,44,46,112,121,45,115,109,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,51,44,46,112,120,45,115,109,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,51,44,46,112,121,45,115,109,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,51,44,46,112,120,45,115,109,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,52,44,46,112,121,45,115,109,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,52,44,46,112,120,45,115,109,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,52,44,46,112,121,45,115,109,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,52,44,46,112,120,45,115,109,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,53,44,46,112,121,45,115,109,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,53,44,46,112,120,45,115,109,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,53,44,46,112,121,45,115,109,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,53,44,46,112,120,45,115,109,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,49,44,46,109,121,45,115,109,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,49,44,46,109,120,45,115,109,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,49,44,46,109,121,45,115,109,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,49,44,46,109,120,45,115,109,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,50,44,46,109,121,45,115,109,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,50,44,46,109,120,45,115,109,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,50,44,46,109,121,45,115,109,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,50,44,46,109,120,45,115,109,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,51,44,46,109,121,45,115,109,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,51,44,46,109,120,45,115,109,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,51,44,46,109,121,45,115,109,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,51,44,46,109,120,45,115,109,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,52,44,46,109,121,45,115,109,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,52,44,46,109,120,45,115,109,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,52,44,46,109,121,45,115,109,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,52,44,46,109,120,45,115,109,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,53,44,46,109,121,45,115,109,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,53,44,46,109,120,45,115,109,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,53,44,46,109,121,45,115,109,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,53,44,46,109,120,45,115,109,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,97,117,116,111,44,46,109,121,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,97,117,116,111,44,46,109,120,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,97,117,116,111,44,46,109,121,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,97,117,116,111,44,46,109,120,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,109,45,109,100,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,48,44,46,109,121,45,109,100,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,48,44,46,109,120,45,109,100,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,48,44,46,109,121,45,109,100,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,48,44,46,109,120,45,109,100,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,49,44,46,109,121,45,109,100,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,49,44,46,109,120,45,109,100,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,49,44,46,109,121,45,109,100,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,49,44,46,109,120,45,109,100,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,50,44,46,109,121,45,109,100,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,50,44,46,109,120,45,109,100,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,50,44,46,109,121,45,109,100,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,50,44,46,109,120,45,109,100,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,51,44,46,109,121,45,109,100,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,51,44,46,109,120,45,109,100,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,51,44,46,109,121,45,109,100,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,51,44,46,109,120,45,109,100,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,52,44,46,109,121,45,109,100,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,52,44,46,109,120,45,109,100,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,52,44,46,109,121,45,109,100,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,52,44,46,109,120,45,109,100,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,53,44,46,109,121,45,109,100,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,53,44,46,109,120,45,109,100,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,53,44,46,109,121,45,109,100,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,53,44,46,109,120,45,109,100,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,48,44,46,112,121,45,109,100,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,48,44,46,112,120,45,109,100,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,48,44,46,112,121,45,109,100,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,48,44,46,112,120,45,109,100,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,49,44,46,112,121,45,109,100,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,49,44,46,112,120,45,109,100,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,49,44,46,112,121,45,109,100,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,49,44,46,112,120,45,109,100,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,50,44,46,112,121,45,109,100,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,50,44,46,112,120,45,109,100,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,50,44,46,112,121,45,109,100,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,50,44,46,112,120,45,109,100,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,51,44,46,112,121,45,109,100,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,51,44,46,112,120,45,109,100,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,51,44,46,112,121,45,109,100,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,51,44,46,112,120,45,109,100,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,52,44,46,112,121,45,109,100,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,52,44,46,112,120,45,109,100,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,52,44,46,112,121,45,109,100,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,52,44,46,112,120,45,109,100,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,53,44,46,112,121,45,109,100,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,53,44,46,112,120,45,109,100,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,53,44,46,112,121,45,109,100,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,53,44,46,112,120,45,109,100,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,49,44,46,109,121,45,109,100,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,49,44,46,109,120,45,109,100,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,49,44,46,109,121,45,109,100,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,49,44,46,109,120,45,109,100,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,50,44,46,109,121,45,109,100,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,50,44,46,109,120,45,109,100,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,50,44,46,109,121,45,109,100,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,50,44,46,109,120,45,109,100,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,51,44,46,109,121,45,109,100,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,51,44,46,109,120,45,109,100,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,51,44,46,109,121,45,109,100,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,51,44,46,109,120,45,109,100,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,52,44,46,109,121,45,109,100,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,52,44,46,109,120,45,109,100,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,52,44,46,109,121,45,109,100,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,52,44,46,109,120,45,109,100,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,53,44,46,109,121,45,109,100,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,53,44,46,109,120,45,109,100,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,53,44,46,109,121,45,109,100,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,53,44,46,109,120,45,109,100,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,97,117,116,111,44,46,109,121,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,97,117,116,111,44,46,109,120,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,97,117,116,111,44,46,109,121,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,97,117,116,111,44,46,109,120,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,109,45,108,103,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,48,44,46,109,121,45,108,103,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,48,44,46,109,120,45,108,103,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,48,44,46,109,121,45,108,103,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,48,44,46,109,120,45,108,103,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,49,44,46,109,121,45,108,103,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,49,44,46,109,120,45,108,103,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,49,44,46,109,121,45,108,103,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,49,44,46,109,120,45,108,103,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,50,44,46,109,121,45,108,103,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,50,44,46,109,120,45,108,103,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,50,44,46,109,121,45,108,103,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,50,44,46,109,120,45,108,103,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,51,44,46,109,121,45,108,103,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,51,44,46,109,120,45,108,103,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,51,44,46,109,121,45,108,103,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,51,44,46,109,120,45,108,103,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,52,44,46,109,121,45,108,103,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,52,44,46,109,120,45,108,103,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,52,44,46,109,121,45,108,103,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,52,44,46,109,120,45,108,103,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,53,44,46,109,121,45,108,103,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,53,44,46,109,120,45,108,103,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,53,44,46,109,121,45,108,103,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,53,44,46,109,120,45,108,103,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,48,44,46,112,121,45,108,103,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,48,44,46,112,120,45,108,103,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,48,44,46,112,121,45,108,103,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,48,44,46,112,120,45,108,103,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,49,44,46,112,121,45,108,103,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,49,44,46,112,120,45,108,103,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,49,44,46,112,121,45,108,103,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,49,44,46,112,120,45,108,103,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,50,44,46,112,121,45,108,103,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,50,44,46,112,120,45,108,103,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,50,44,46,112,121,45,108,103,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,50,44,46,112,120,45,108,103,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,51,44,46,112,121,45,108,103,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,51,44,46,112,120,45,108,103,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,51,44,46,112,121,45,108,103,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,51,44,46,112,120,45,108,103,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,52,44,46,112,121,45,108,103,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,52,44,46,112,120,45,108,103,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,52,44,46,112,121,45,108,103,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,52,44,46,112,120,45,108,103,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,53,44,46,112,121,45,108,103,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,53,44,46,112,120,45,108,103,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,53,44,46,112,121,45,108,103,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,53,44,46,112,120,45,108,103,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,49,44,46,109,121,45,108,103,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,49,44,46,109,120,45,108,103,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,49,44,46,109,121,45,108,103,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,49,44,46,109,120,45,108,103,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,50,44,46,109,121,45,108,103,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,50,44,46,109,120,45,108,103,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,50,44,46,109,121,45,108,103,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,50,44,46,109,120,45,108,103,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,51,44,46,109,121,45,108,103,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,51,44,46,109,120,45,108,103,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,51,44,46,109,121,45,108,103,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,51,44,46,109,120,45,108,103,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,52,44,46,109,121,45,108,103,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,52,44,46,109,120,45,108,103,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,52,44,46,109,121,45,108,103,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,52,44,46,109,120,45,108,103,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,53,44,46,109,121,45,108,103,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,53,44,46,109,120,45,108,103,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,53,44,46,109,121,45,108,103,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,53,44,46,109,120,45,108,103,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,97,117,116,111,44,46,109,121,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,97,117,116,111,44,46,109,120,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,97,117,116,111,44,46,109,121,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,97,117,116,111,44,46,109,120,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,109,45,120,108,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,48,44,46,109,121,45,120,108,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,48,44,46,109,120,45,120,108,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,48,44,46,109,121,45,120,108,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,48,44,46,109,120,45,120,108,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,49,44,46,109,121,45,120,108,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,49,44,46,109,120,45,120,108,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,49,44,46,109,121,45,120,108,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,49,44,46,109,120,45,120,108,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,50,44,46,109,121,45,120,108,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,50,44,46,109,120,45,120,108,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,50,44,46,109,121,45,120,108,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,50,44,46,109,120,45,120,108,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,51,44,46,109,121,45,120,108,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,51,44,46,109,120,45,120,108,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,51,44,46,109,121,45,120,108,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,51,44,46,109,120,45,120,108,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,52,44,46,109,121,45,120,108,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,52,44,46,109,120,45,120,108,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,52,44,46,109,121,45,120,108,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,52,44,46,109,120,45,120,108,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,53,44,46,109,121,45,120,108,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,53,44,46,109,120,45,120,108,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,53,44,46,109,121,45,120,108,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,53,44,46,109,120,45,120,108,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,48,44,46,112,121,45,120,108,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,48,44,46,112,120,45,120,108,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,48,44,46,112,121,45,120,108,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,48,44,46,112,120,45,120,108,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,49,44,46,112,121,45,120,108,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,49,44,46,112,120,45,120,108,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,49,44,46,112,121,45,120,108,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,49,44,46,112,120,45,120,108,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,50,44,46,112,121,45,120,108,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,50,44,46,112,120,45,120,108,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,50,44,46,112,121,45,120,108,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,50,44,46,112,120,45,120,108,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,51,44,46,112,121,45,120,108,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,51,44,46,112,120,45,120,108,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,51,44,46,112,121,45,120,108,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,51,44,46,112,120,45,120,108,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,52,44,46,112,121,45,120,108,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,52,44,46,112,120,45,120,108,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,52,44,46,112,121,45,120,108,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,52,44,46,112,120,45,120,108,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,53,44,46,112,121,45,120,108,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,53,44,46,112,120,45,120,108,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,53,44,46,112,121,45,120,108,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,53,44,46,112,120,45,120,108,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,49,44,46,109,121,45,120,108,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,49,44,46,109,120,45,120,108,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,49,44,46,109,121,45,120,108,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,49,44,46,109,120,45,120,108,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,50,44,46,109,121,45,120,108,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,50,44,46,109,120,45,120,108,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,50,44,46,109,121,45,120,108,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,50,44,46,109,120,45,120,108,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,51,44,46,109,121,45,120,108,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,51,44,46,109,120,45,120,108,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,51,44,46,109,121,45,120,108,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,51,44,46,109,120,45,120,108,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,52,44,46,109,121,45,120,108,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,52,44,46,109,120,45,120,108,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,52,44,46,109,121,45,120,108,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,52,44,46,109,120,45,120,108,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,53,44,46,109,121,45,120,108,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,53,44,46,109,120,45,120,108,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,53,44,46,109,121,45,120,108,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,53,44,46,109,120,45,120,108,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,97,117,116,111,44,46,109,121,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,97,117,116,111,44,46,109,120,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,97,117,116,111,44,46,109,121,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,97,117,116,111,44,46,109,120,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,46,116,101,120,116,45,109,111,110,111,115,112,97,99,101,123,102,111,110,116,45,102,97,109,105,108,121,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,34,67,111,117,114,105,101,114,32,78,101,119,34,44,109,111,110,111,115,112,97,99,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,106,117,115,116,105,102,121,123,116,101,120,116,45,97,108,105,103,110,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,114,97,112,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,110,111,119,114,97,112,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,116,114,117,110,99,97,116,101,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,116,101,120,116,45,111,118,101,114,102,108,111,119,58,101,108,108,105,112,115,105,115,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,116,101,120,116,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,116,101,120,116,45,115,109,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,109,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,109,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,116,101,120,116,45,109,100,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,100,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,100,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,116,101,120,116,45,108,103,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,103,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,103,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,116,101,120,116,45,120,108,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,120,108,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,120,108,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,46,116,101,120,116,45,108,111,119,101,114,99,97,115,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,108,111,119,101,114,99,97,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,117,112,112,101,114,99,97,115,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,117,112,112,101,114,99,97,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,99,97,112,105,116,97,108,105,122,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,99,97,112,105,116,97,108,105,122,101,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,108,105,103,104,116,123,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,108,105,103,104,116,101,114,123,102,111,110,116,45,119,101,105,103,104,116,58,108,105,103,104,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,110,111,114,109,97,108,123,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,98,111,108,100,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,98,111,108,100,101,114,123,102,111,110,116,45,119,101,105,103,104,116,58,98,111,108,100,101,114,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,105,116,97,108,105,99,123,102,111,110,116,45,115,116,121,108,101,58,105,116,97,108,105,99,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,104,105,116,101,123,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,116,101,120,116,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,52,57,52,102,53,52,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,116,101,120,116,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,57,54,57,50,99,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,105,110,102,111,123,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,105,110,102,111,58,102,111,99,117,115,44,97,46,116,101,120,116,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,102,54,54,55,52,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,116,101,120,116,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,98,97,56,98,48,48,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,116,101,120,116,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,97,55,49,100,50,97,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,105,103,104,116,123,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,116,101,120,116,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,99,98,100,51,100,97,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,100,97,114,107,123,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,100,97,114,107,58,102,111,99,117,115,44,97,46,116,101,120,116,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,50,49,52,49,54,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,111,100,121,123,99,111,108,111,114,58,35,50,49,50,53,50,57,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,117,116,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,108,97,99,107,45,53,48,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,104,105,116,101,45,53,48,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,104,105,100,101,123,102,111,110,116,58,48,47,48,32,97,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,110,111,110,101,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,114,101,97,107,123,119,111,114,100,45,98,114,101,97,107,58,98,114,101,97,107,45,119,111,114,100,33,105,109,112,111,114,116,97,110,116,59,111,118,101,114,102,108,111,119,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,114,101,115,101,116,123,99,111,108,111,114,58,105,110,104,101,114,105,116,33,105,109,112,111,114,116,97,110,116,125,46,118,105,115,105,98,108,101,123,118,105,115,105,98,105,108,105,116,121,58,118,105,115,105,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,105,110,118,105,115,105,98,108,101,123,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,112,114,105,110,116,123,42,44,58,58,97,102,116,101,114,44,58,58,98,101,102,111,114,101,123,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,97,58,110,111,116,40,46,98,116,110,41,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,97,98,98,114,91,116,105,116,108,101,93,58,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,34,32,40,34,32,97,116,116,114,40,116,105,116,108,101,41,32,34,41,34,125,112,114,101,123,119,104,105,116,101,45,115,112,97,99,101,58,112,114,101,45,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,98,108,111,99,107,113,117,111,116,101,44,112,114,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,97,100,98,53,98,100,59,112,97,103,101,45,98,114,101,97,107,45,105,110,115,105,100,101,58,97,118,111,105,100,125,116,104,101,97,100,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,104,101,97,100,101,114,45,103,114,111,117,112,125,105,109,103,44,116,114,123,112,97,103,101,45,98,114,101,97,107,45,105,110,115,105,100,101,58,97,118,111,105,100,125,104,50,44,104,51,44,112,123,111,114,112,104,97,110,115,58,51,59,119,105,100,111,119,115,58,51,125,104,50,44,104,51,123,112,97,103,101,45,98,114,101,97,107,45,97,102,116,101,114,58,97,118,111,105,100,125,64,112,97,103,101,123,115,105,122,101,58,97,51,125,98,111,100,121,123,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,33,105,109,112,111,114,116,97,110,116,125,46,99,111,110,116,97,105,110,101,114,123,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,33,105,109,112,111,114,116,97,110,116,125,46,110,97,118,98,97,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,98,97,100,103,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,48,48,48,125,46,116,97,98,108,101,123,98,111,114,100,101,114,45,99,111,108,108,97,112,115,101,58,99,111,108,108,97,112,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,32,116,100,44,46,116,97,98,108,101,32,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,45,100,97,114,107,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,116,97,98,108,101,45,100,97,114,107,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,100,97,114,107,32,116,104,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,125,10,46,98,114,105,99,107,108,97,121,101,114,123,100,105,115,112,108,97,121,58,45,119,101,98,107,105,116,45,98,111,120,59,100,105,115,112,108,97,121,58,45,119,101,98,107,105,116,45,102,108,101,120,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,119,101,98,107,105,116,45,98,111,120,45,97,108,105,103,110,58,115,116,97,114,116,59,45,119,101,98,107,105,116,45,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,119,101,98,107,105,116,45,98,111,120,45,112,97,99,107,58,99,101,110,116,101,114,59,45,119,101,98,107,105,116,45,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,45,119,101,98,107,105,116,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,125,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,49,48,48,37,59,100,105,115,112,108,97,121,58,110,111,110,101,125,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,54,52,48,112,120,41,123,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,53,48,37,125,125,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,57,56,48,112,120,41,123,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,51,51,46,51,51,51,37,125,125,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,50,53,37,125,125,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,123,45,119,101,98,107,105,116,45,98,111,120,45,102,108,101,120,58,49,59,45,119,101,98,107,105,116,45,102,108,101,120,58,49,59,45,109,115,45,102,108,101,120,58,49,59,102,108,101,120,58,49,59,112,97,100,100,105,110,103,45,108,101,102,116,58,53,112,120,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,53,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,52,41,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,48,112,120,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,97,108,108,32,49,53,48,109,115,32,108,105,110,101,97,114,59,116,114,97,110,115,105,116,105,111,110,58,97,108,108,32,49,53,48,109,115,32,108,105,110,101,97,114,59,119,105,100,116,104,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,58,104,111,118,101,114,123,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,50,112,120,32,51,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,49,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,50,112,120,32,51,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,49,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,32,43,32,46,98,116,110,123,109,97,114,103,105,110,45,108,101,102,116,58,53,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,46,105,99,111,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,46,105,99,111,110,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,49,52,112,120,59,108,101,102,116,58,53,48,37,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,125,46,105,116,114,101,101,45,109,101,110,117,123,98,97,99,107,103,114,111,117,110,100,58,35,100,100,100,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,52,99,52,99,52,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,115,97,110,115,45,115,101,114,105,102,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,109,97,114,103,105,110,58,48,59,109,105,110,45,119,105,100,116,104,58,49,53,48,112,120,59,112,97,100,100,105,110,103,58,48,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,49,48,125,46,105,116,114,101,101,45,109,101,110,117,32,97,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,51,112,120,32,56,112,120,125,46,105,116,114,101,101,45,109,101,110,117,32,97,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,50,49,56,44,32,50,53,48,44,32,50,53,53,44,32,48,46,53,41,59,99,111,108,111,114,58,114,103,98,97,40,49,54,52,44,32,50,51,52,44,32,50,52,53,44,32,48,46,53,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,123,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,42,123,45,119,101,98,107,105,116,45,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,111,108,123,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,111,108,32,111,108,123,112,97,100,100,105,110,103,45,108,101,102,116,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,99,111,108,108,97,112,115,101,100,32,62,32,111,108,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,104,105,100,100,101,110,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,32,62,32,46,116,105,116,108,101,45,119,114,97,112,123,109,105,110,45,104,101,105,103,104,116,58,50,53,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,111,103,103,108,101,123,104,101,105,103,104,116,58,50,53,112,120,59,108,101,102,116,58,48,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,119,105,100,116,104,58,50,53,112,120,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,111,103,103,108,101,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,101,102,116,58,53,48,37,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,91,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,93,123,108,101,102,116,58,50,50,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,55,112,120,59,119,105,100,116,104,58,50,48,112,120,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,52,50,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,101,120,116,45,111,118,101,114,102,108,111,119,58,101,108,108,105,112,115,105,115,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,122,45,105,110,100,101,120,58,49,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,46,108,111,97,100,45,109,111,114,101,123,99,111,108,111,114,58,35,52,55,54,99,98,56,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,46,108,111,97,100,45,109,111,114,101,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,58,58,98,101,102,111,114,101,123,108,101,102,116,58,50,52,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,45,53,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,45,53,48,37,41,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,100,114,97,103,45,97,110,100,45,100,114,111,112,32,108,105,58,110,111,116,40,46,100,114,111,112,45,116,97,114,103,101,116,41,123,111,112,97,99,105,116,121,58,48,46,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,62,32,46,116,105,116,108,101,44,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,46,105,110,115,112,105,114,101,45,116,114,101,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,97,98,111,118,101,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,62,32,46,116,105,116,108,101,123,98,111,114,100,101,114,45,116,111,112,58,51,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,98,101,108,111,119,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,62,32,46,116,105,116,108,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,51,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,59,112,97,100,100,105,110,103,45,116,111,112,58,50,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,105,110,112,117,116,123,104,101,105,103,104,116,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,46,98,116,110,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,105,110,112,117,116,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,62,32,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,110,111,110,101,59,112,97,100,100,105,110,103,45,116,111,112,58,50,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,49,48,112,120,59,122,45,105,110,100,101,120,58,51,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,58,104,111,118,101,114,32,62,32,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,105,110,112,117,116,32,43,32,46,98,116,110,45,103,114,111,117,112,123,109,97,114,103,105,110,45,108,101,102,116,58,49,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,46,98,116,110,46,105,99,111,110,123,109,97,114,103,105,110,45,108,101,102,116,58,50,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,111,108,32,62,32,46,102,111,108,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,49,51,112,120,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,101,100,105,116,97,98,108,101,45,97,100,100,32,62,32,111,108,32,62,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,114,101,112,101,97,116,45,121,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,111,108,32,46,101,120,112,97,110,100,101,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,46,101,120,112,97,110,100,101,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,62,32,111,108,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,114,101,112,101,97,116,45,121,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,46,101,120,112,97,110,100,101,100,46,102,111,108,100,101,114,58,110,111,116,40,46,108,111,97,100,105,110,103,41,32,62,32,46,116,105,116,108,101,45,119,114,97,112,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,51,49,112,120,32,49,51,112,120,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,101,116,97,99,104,101,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,89,67,65,89,65,65,65,65,104,56,72,100,85,65,65,65,65,78,48,108,69,81,86,81,52,84,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,76,111,48,100,66,68,68,122,48,83,77,117,53,111,50,111,77,70,70,103,66,88,98,69,101,73,48,88,119,89,73,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,65,65,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,78,67,65,89,65,65,65,66,121,54,43,82,56,65,65,65,65,75,107,108,69,81,86,81,111,85,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,74,111,65,71,85,90,77,51,50,90,48,85,56,116,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,46,100,101,116,97,99,104,101,100,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,101,100,105,116,97,98,108,101,45,97,100,100,32,62,32,111,108,32,62,32,46,108,101,97,102,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,89,67,65,89,65,65,65,65,104,56,72,100,85,65,65,65,65,78,48,108,69,81,86,81,52,84,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,76,111,48,100,66,68,68,122,48,83,77,117,53,111,50,111,77,70,70,103,66,88,98,69,101,73,48,88,119,89,73,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,65,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,99,111,110,116,101,110,116,58,39,39,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,49,52,112,120,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,104,101,99,107,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,104,101,99,107,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,111,108,108,97,112,115,101,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,56,37,50,48,49,49,104,56,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,56,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,119,104,105,116,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,114,111,115,115,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,114,111,115,115,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,101,120,112,97,110,100,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,49,50,37,50,48,55,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,118,51,104,51,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,51,118,51,113,48,37,50,48,48,46,52,49,52,45,48,46,50,57,51,37,50,48,48,46,55,48,55,116,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,45,48,46,50,57,51,45,48,46,50,57,51,45,48,46,55,48,55,118,45,51,104,45,51,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,104,51,118,45,51,113,48,45,48,46,52,49,52,37,50,48,48,46,50,57,51,45,48,46,55,48,55,116,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,119,104,105,116,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,53,97,53,97,53,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,111,108,100,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,111,108,100,101,114,45,111,112,101,110,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,105,110,117,115,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,105,110,117,115,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,111,114,101,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,50,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,49,56,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,54,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,101,110,99,105,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,101,110,99,105,108,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,108,117,115,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,108,117,115,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,111,108,100,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,111,108,100,101,114,45,111,112,101,110,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,111,97,100,105,110,103,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,105,110,112,117,116,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,111,97,100,105,110,103,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,116,105,116,108,101,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,119,105,100,116,104,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,104,101,105,103,104,116,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,49,48,48,37,50,48,49,48,48,37,50,50,37,50,48,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,37,51,68,37,50,50,120,77,105,100,89,77,105,100,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,117,105,108,45,114,105,110,103,37,50,50,37,51,69,37,51,67,114,101,99,116,37,50,48,120,37,51,68,37,50,50,48,37,50,50,37,50,48,121,37,51,68,37,50,50,48,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,110,111,110,101,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,98,107,37,50,50,37,51,69,37,51,67,37,50,70,114,101,99,116,37,51,69,37,51,67,100,101,102,115,37,51,69,37,51,67,102,105,108,116,101,114,37,50,48,105,100,37,51,68,37,50,50,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,37,50,50,37,50,48,120,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,121,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,51,69,37,51,67,102,101,79,102,102,115,101,116,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,100,120,37,51,68,37,50,50,48,37,50,50,37,50,48,100,121,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,79,102,102,115,101,116,37,51,69,37,51,67,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,115,116,100,68,101,118,105,97,116,105,111,110,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,51,69,37,51,67,102,101,66,108,101,110,100,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,105,110,50,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,109,111,100,101,37,51,68,37,50,50,110,111,114,109,97,108,37,50,50,37,51,69,37,51,67,37,50,70,102,101,66,108,101,110,100,37,51,69,37,51,67,37,50,70,102,105,108,116,101,114,37,51,69,37,51,67,37,50,70,100,101,102,115,37,51,69,37,51,67,112,97,116,104,37,50,48,100,37,51,68,37,50,50,77,49,48,37,50,67,53,48,99,48,37,50,67,48,37,50,67,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,37,50,67,48,46,50,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,46,49,37,50,67,48,46,55,37,50,67,48,46,49,37,50,67,49,46,49,99,48,46,49,37,50,67,48,46,52,37,50,67,48,46,49,37,50,67,48,46,56,37,50,67,48,46,50,37,50,67,49,46,50,99,48,46,50,37,50,67,48,46,56,37,50,67,48,46,51,37,50,67,49,46,56,37,50,67,48,46,53,37,50,67,50,46,56,37,50,48,99,48,46,51,37,50,67,49,37,50,67,48,46,54,37,50,67,50,46,49,37,50,67,48,46,57,37,50,67,51,46,50,99,48,46,51,37,50,67,49,46,49,37,50,67,48,46,57,37,50,67,50,46,51,37,50,67,49,46,52,37,50,67,51,46,53,99,48,46,53,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,50,46,52,37,50,67,49,46,56,37,50,67,51,46,55,99,48,46,51,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,49,46,57,99,48,46,52,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,51,37,50,67,49,46,51,37,50,67,49,46,57,37,50,48,99,49,37,50,67,49,46,50,37,50,67,49,46,57,37,50,67,50,46,54,37,50,67,51,46,49,37,50,67,51,46,55,99,50,46,50,37,50,67,50,46,53,37,50,67,53,37,50,67,52,46,55,37,50,67,55,46,57,37,50,67,54,46,55,99,51,37,50,67,50,37,50,67,54,46,53,37,50,67,51,46,52,37,50,67,49,48,46,49,37,50,67,52,46,54,99,51,46,54,37,50,67,49,46,49,37,50,67,55,46,53,37,50,67,49,46,53,37,50,67,49,49,46,50,37,50,67,49,46,54,99,52,45,48,46,49,37,50,67,55,46,55,45,48,46,54,37,50,67,49,49,46,51,45,49,46,54,37,50,48,99,51,46,54,45,49,46,50,37,50,67,55,45,50,46,54,37,50,67,49,48,45,52,46,54,99,51,45,50,37,50,67,53,46,56,45,52,46,50,37,50,67,55,46,57,45,54,46,55,99,49,46,50,45,49,46,50,37,50,67,50,46,49,45,50,46,53,37,50,67,51,46,49,45,51,46,55,99,48,46,53,45,48,46,54,37,50,67,48,46,57,45,49,46,51,37,50,67,49,46,51,45,49,46,57,99,48,46,52,45,48,46,54,37,50,67,48,46,56,45,49,46,51,37,50,67,49,46,50,45,49,46,57,37,50,48,99,48,46,54,45,49,46,51,37,50,67,49,46,51,45,50,46,53,37,50,67,49,46,56,45,51,46,55,99,48,46,53,45,49,46,50,37,50,67,49,45,50,46,52,37,50,67,49,46,52,45,51,46,53,99,48,46,51,45,49,46,49,37,50,67,48,46,54,45,50,46,50,37,50,67,48,46,57,45,51,46,50,99,48,46,50,45,49,37,50,67,48,46,52,45,49,46,57,37,50,67,48,46,53,45,50,46,56,99,48,46,49,45,48,46,52,37,50,67,48,46,49,45,48,46,56,37,50,67,48,46,50,45,49,46,50,37,50,48,99,48,45,48,46,52,37,50,67,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,49,99,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,50,37,50,67,48,46,50,45,49,46,55,67,57,48,37,50,67,53,48,46,53,37,50,67,57,48,37,50,67,53,48,37,50,67,57,48,37,50,67,53,48,115,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,37,50,67,48,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,37,50,67,48,46,55,37,50,67,48,37,50,67,49,46,49,37,50,48,99,48,37,50,67,48,46,52,45,48,46,49,37,50,67,48,46,56,45,48,46,49,37,50,67,49,46,50,99,45,48,46,49,37,50,67,48,46,57,45,48,46,50,37,50,67,49,46,56,45,48,46,52,37,50,67,50,46,56,99,45,48,46,50,37,50,67,49,45,48,46,53,37,50,67,50,46,49,45,48,46,55,37,50,67,51,46,51,99,45,48,46,51,37,50,67,49,46,50,45,48,46,56,37,50,67,50,46,52,45,49,46,50,37,50,67,51,46,55,99,45,48,46,50,37,50,67,48,46,55,45,48,46,53,37,50,67,49,46,51,45,48,46,56,37,50,67,49,46,57,37,50,48,99,45,48,46,51,37,50,67,48,46,55,45,48,46,54,37,50,67,49,46,51,45,48,46,57,37,50,67,50,99,45,48,46,51,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,51,45,49,46,49,37,50,67,50,99,45,48,46,52,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,52,45,49,46,50,37,50,67,50,99,45,49,37,50,67,49,46,51,45,49,46,57,37,50,67,50,46,55,45,51,46,49,37,50,67,52,99,45,50,46,50,37,50,67,50,46,55,45,53,37,50,67,53,45,56,46,49,37,50,67,55,46,49,37,50,48,99,45,48,46,56,37,50,67,48,46,53,45,49,46,54,37,50,67,49,45,50,46,52,37,50,67,49,46,53,99,45,48,46,56,37,50,67,48,46,53,45,49,46,55,37,50,67,48,46,57,45,50,46,54,37,50,67,49,46,51,76,54,54,37,50,67,56,55,46,55,108,45,49,46,52,37,50,67,48,46,53,99,45,48,46,57,37,50,67,48,46,51,45,49,46,56,37,50,67,48,46,55,45,50,46,56,37,50,67,49,99,45,51,46,56,37,50,67,49,46,49,45,55,46,57,37,50,67,49,46,55,45,49,49,46,56,37,50,67,49,46,56,76,52,55,37,50,67,57,48,46,56,37,50,48,99,45,49,37,50,67,48,45,50,45,48,46,50,45,51,45,48,46,51,108,45,49,46,53,45,48,46,50,108,45,48,46,55,45,48,46,49,76,52,49,46,49,37,50,67,57,48,99,45,49,45,48,46,51,45,49,46,57,45,48,46,53,45,50,46,57,45,48,46,55,99,45,48,46,57,45,48,46,51,45,49,46,57,45,48,46,55,45,50,46,56,45,49,76,51,52,37,50,67,56,55,46,55,108,45,49,46,51,45,48,46,54,37,50,48,99,45,48,46,57,45,48,46,52,45,49,46,56,45,48,46,56,45,50,46,54,45,49,46,51,99,45,48,46,56,45,48,46,53,45,49,46,54,45,49,45,50,46,52,45,49,46,53,99,45,51,46,49,45,50,46,49,45,53,46,57,45,52,46,53,45,56,46,49,45,55,46,49,99,45,49,46,50,45,49,46,50,45,50,46,49,45,50,46,55,45,51,46,49,45,52,99,45,48,46,53,45,48,46,54,45,48,46,56,45,49,46,52,45,49,46,50,45,50,37,50,48,99,45,48,46,52,45,48,46,55,45,48,46,56,45,49,46,51,45,49,46,49,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,57,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,56,45,49,46,57,99,45,48,46,52,45,49,46,51,45,48,46,57,45,50,46,53,45,49,46,50,45,51,46,55,99,45,48,46,51,45,49,46,50,45,48,46,53,45,50,46,51,45,48,46,55,45,51,46,51,37,50,48,99,45,48,46,50,45,49,45,48,46,51,45,50,45,48,46,52,45,50,46,56,99,45,48,46,49,45,48,46,52,45,48,46,49,45,48,46,56,45,48,46,49,45,49,46,50,99,48,45,48,46,52,37,50,67,48,45,48,46,55,37,50,67,48,45,49,46,49,99,48,45,48,46,55,37,50,67,48,45,49,46,50,37,50,67,48,45,49,46,55,67,49,48,37,50,67,53,48,46,53,37,50,67,49,48,37,50,67,53,48,37,50,67,49,48,37,50,67,53,48,122,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,49,51,49,51,56,37,50,50,37,50,48,102,105,108,116,101,114,37,51,68,37,50,50,117,114,108,40,37,50,51,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,41,37,50,50,37,51,69,37,51,67,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,50,48,97,116,116,114,105,98,117,116,101,78,97,109,101,37,51,68,37,50,50,116,114,97,110,115,102,111,114,109,37,50,50,37,50,48,116,121,112,101,37,51,68,37,50,50,114,111,116,97,116,101,37,50,50,37,50,48,102,114,111,109,37,51,68,37,50,50,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,116,111,37,51,68,37,50,50,51,54,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,114,101,112,101,97,116,67,111,117,110,116,37,51,68,37,50,50,105,110,100,101,102,105,110,105,116,101,37,50,50,37,50,48,100,117,114,37,51,68,37,50,50,49,115,37,50,50,37,51,69,37,51,67,37,50,70,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,59,99,111,110,116,101,110,116,58,39,39,59,104,101,105,103,104,116,58,49,52,112,120,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,111,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,119,104,111,108,101,114,111,119,123,104,101,105,103,104,116,58,50,53,112,120,59,108,101,102,116,58,48,59,109,97,114,103,105,110,45,116,111,112,58,45,50,53,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,119,105,100,116,104,58,49,48,48,37,59,122,45,105,110,100,101,120,58,49,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,102,111,99,117,115,101,100,58,110,111,116,40,46,115,101,108,101,99,116,101,100,41,32,62,32,46,119,104,111,108,101,114,111,119,123,111,117,116,108,105,110,101,58,49,112,120,32,100,111,116,116,101,100,32,98,108,97,99,107,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,32,43,32,46,119,104,111,108,101,114,111,119,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,119,104,111,108,101,114,111,119,123,98,97,99,107,103,114,111,117,110,100,58,35,66,66,68,69,70,66,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,97,123,99,111,108,111,114,58,35,52,57,53,48,53,55,125,46,105,114,115,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,45,119,101,98,107,105,116,45,116,111,117,99,104,45,99,97,108,108,111,117,116,58,110,111,110,101,59,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,107,104,116,109,108,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,125,46,105,114,115,45,108,105,110,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,125,46,105,114,115,45,108,105,110,101,45,108,101,102,116,44,46,105,114,115,45,108,105,110,101,45,109,105,100,44,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,125,46,105,114,115,45,108,105,110,101,45,108,101,102,116,123,108,101,102,116,58,48,59,119,105,100,116,104,58,49,49,37,125,46,105,114,115,45,108,105,110,101,45,109,105,100,123,108,101,102,116,58,57,37,59,119,105,100,116,104,58,56,50,37,125,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,119,105,100,116,104,58,49,49,37,125,46,105,114,115,45,98,97,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,101,102,116,58,48,59,119,105,100,116,104,58,48,125,46,105,114,115,45,98,97,114,45,101,100,103,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,48,125,46,105,114,115,45,115,104,97,100,111,119,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,110,111,110,101,59,108,101,102,116,58,48,59,119,105,100,116,104,58,48,125,46,105,114,115,45,115,108,105,100,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,122,45,105,110,100,101,120,58,49,125,46,105,114,115,45,115,108,105,100,101,114,46,115,105,110,103,108,101,123,125,46,105,114,115,45,115,108,105,100,101,114,46,102,114,111,109,123,125,46,105,114,115,45,115,108,105,100,101,114,46,116,111,123,125,46,105,114,115,45,115,108,105,100,101,114,46,116,121,112,101,95,108,97,115,116,123,122,45,105,110,100,101,120,58,50,125,46,105,114,115,45,109,105,110,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,101,102,116,58,48,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,105,114,115,45,109,97,120,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,114,105,103,104,116,58,48,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,105,114,115,45,102,114,111,109,44,46,105,114,115,45,115,105,110,103,108,101,44,46,105,114,115,45,116,111,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,48,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,105,114,115,45,103,114,105,100,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,110,111,110,101,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,50,48,112,120,125,46,105,114,115,45,119,105,116,104,45,103,114,105,100,32,46,105,114,115,45,103,114,105,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,105,114,115,45,103,114,105,100,45,112,111,108,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,112,120,59,104,101,105,103,104,116,58,56,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,48,48,48,125,46,105,114,115,45,103,114,105,100,45,112,111,108,46,115,109,97,108,108,123,104,101,105,103,104,116,58,52,112,120,125,46,105,114,115,45,103,114,105,100,45,116,101,120,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,102,111,110,116,45,115,105,122,101,58,57,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,57,112,120,59,112,97,100,100,105,110,103,58,48,32,51,112,120,59,99,111,108,111,114,58,35,48,48,48,125,46,105,114,115,45,100,105,115,97,98,108,101,45,109,97,115,107,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,45,49,37,59,119,105,100,116,104,58,49,48,50,37,59,104,101,105,103,104,116,58,49,48,48,37,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,48,44,48,44,48,44,48,46,48,41,59,122,45,105,110,100,101,120,58,50,125,46,105,114,115,45,100,105,115,97,98,108,101,100,123,111,112,97,99,105,116,121,58,48,46,52,125,46,108,116,45,105,101,57,32,46,105,114,115,45,100,105,115,97,98,108,101,100,123,102,105,108,116,101,114,58,32,97,108,112,104,97,40,111,112,97,99,105,116,121,61,52,48,41,125,46,105,114,115,45,104,105,100,100,101,110,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,32,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,98,108,111,99,107,32,33,105,109,112,111,114,116,97,110,116,59,116,111,112,58,48,32,33,105,109,112,111,114,116,97,110,116,59,108,101,102,116,58,48,32,33,105,109,112,111,114,116,97,110,116,59,119,105,100,116,104,58,48,32,33,105,109,112,111,114,116,97,110,116,59,104,101,105,103,104,116,58,48,32,33,105,109,112,111,114,116,97,110,116,59,102,111,110,116,45,115,105,122,101,58,48,32,33,105,109,112,111,114,116,97,110,116,59,108,105,110,101,45,104,101,105,103,104,116,58,48,32,33,105,109,112,111,114,116,97,110,116,59,112,97,100,100,105,110,103,58,48,32,33,105,109,112,111,114,116,97,110,116,59,109,97,114,103,105,110,58,48,32,33,105,109,112,111,114,116,97,110,116,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,122,45,105,110,100,101,120,58,45,57,57,57,57,32,33,105,109,112,111,114,116,97,110,116,59,98,97,99,107,103,114,111,117,110,100,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,115,116,121,108,101,58,115,111,108,105,100,32,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,32,33,105,109,112,111,114,116,97,110,116,125,10,46,105,114,115,45,98,97,114,44,46,105,114,115,45,98,97,114,45,101,100,103,101,44,46,105,114,115,45,108,105,110,101,45,108,101,102,116,44,46,105,114,115,45,108,105,110,101,45,109,105,100,44,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,44,46,105,114,115,45,115,108,105,100,101,114,123,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,46,46,47,105,109,103,47,115,112,114,105,116,101,45,115,107,105,110,45,102,108,97,116,46,112,110,103,34,41,32,114,101,112,101,97,116,45,120,125,46,105,114,115,123,104,101,105,103,104,116,58,52,48,112,120,125,46,105,114,115,45,119,105,116,104,45,103,114,105,100,123,104,101,105,103,104,116,58,54,48,112,120,125,46,105,114,115,45,108,105,110,101,123,104,101,105,103,104,116,58,49,50,112,120,59,116,111,112,58,50,53,112,120,125,46,105,114,115,45,108,105,110,101,45,108,101,102,116,123,104,101,105,103,104,116,58,49,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,51,48,112,120,125,46,105,114,115,45,108,105,110,101,45,109,105,100,123,104,101,105,103,104,116,58,49,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,125,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,123,104,101,105,103,104,116,58,49,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,48,48,37,32,45,51,48,112,120,125,46,105,114,115,45,98,97,114,123,104,101,105,103,104,116,58,49,50,112,120,59,116,111,112,58,50,53,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,54,48,112,120,125,46,105,114,115,45,98,97,114,45,101,100,103,101,123,116,111,112,58,50,53,112,120,59,104,101,105,103,104,116,58,49,50,112,120,59,119,105,100,116,104,58,57,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,57,48,112,120,125,46,105,114,115,45,115,104,97,100,111,119,123,104,101,105,103,104,116,58,51,112,120,59,116,111,112,58,51,52,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,48,48,48,59,111,112,97,99,105,116,121,58,48,46,50,53,125,46,108,116,45,105,101,57,32,46,105,114,115,45,115,104,97,100,111,119,123,102,105,108,116,101,114,58,32,97,108,112,104,97,40,111,112,97,99,105,116,121,61,50,53,41,125,46,105,114,115,45,115,108,105,100,101,114,123,119,105,100,116,104,58,49,54,112,120,59,104,101,105,103,104,116,58,49,56,112,120,59,116,111,112,58,50,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,49,50,48,112,120,125,46,105,114,115,45,115,108,105,100,101,114,46,115,116,97,116,101,95,104,111,118,101,114,44,46,105,114,115,45,115,108,105,100,101,114,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,49,53,48,112,120,125,46,105,114,115,45,109,97,120,44,46,105,114,115,45,109,105,110,123,99,111,108,111,114,58,35,57,57,57,59,102,111,110,116,45,115,105,122,101,58,49,48,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,51,51,51,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,116,111,112,58,48,59,112,97,100,100,105,110,103,58,49,112,120,32,51,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,101,49,101,52,101,57,59,45,109,111,122,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,125,46,105,114,115,45,102,114,111,109,44,46,105,114,115,45,115,105,110,103,108,101,44,46,105,114,115,45,116,111,123,99,111,108,111,114,58,35,102,102,102,59,102,111,110,116,45,115,105,122,101,58,49,48,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,51,51,51,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,112,97,100,100,105,110,103,58,49,112,120,32,53,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,50,49,57,54,70,51,59,45,109,111,122,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,125,46,105,114,115,45,102,114,111,109,58,97,102,116,101,114,44,46,105,114,115,45,115,105,110,103,108,101,58,97,102,116,101,114,44,46,105,114,115,45,116,111,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,111,110,116,101,110,116,58,34,34,59,98,111,116,116,111,109,58,45,54,112,120,59,108,101,102,116,58,53,48,37,59,119,105,100,116,104,58,48,59,104,101,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,45,51,112,120,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,98,111,114,100,101,114,58,51,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,50,49,57,54,70,51,125,46,105,114,115,45,103,114,105,100,45,112,111,108,123,98,97,99,107,103,114,111,117,110,100,58,35,101,49,101,52,101,57,125,46,105,114,115,45,103,114,105,100,45,116,101,120,116,123,99,111,108,111,114,58,35,57,57,57,125,46,105,114,115,45,100,105,115,97,98,108,101,100,123,125,10,46,106,113,45,116,111,97,115,116,45,119,114,97,112,44,46,106,113,45,116,111,97,115,116,45,119,114,97,112,32,42,123,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,119,105,100,116,104,58,50,53,48,112,120,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,122,45,105,110,100,101,120,58,57,48,48,48,33,105,109,112,111,114,116,97,110,116,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,98,111,116,116,111,109,45,108,101,102,116,123,98,111,116,116,111,109,58,50,48,112,120,59,108,101,102,116,58,50,48,112,120,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,98,111,116,116,111,109,45,114,105,103,104,116,123,98,111,116,116,111,109,58,50,48,112,120,59,114,105,103,104,116,58,52,48,112,120,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,116,111,112,45,108,101,102,116,123,116,111,112,58,50,48,112,120,59,108,101,102,116,58,50,48,112,120,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,116,111,112,45,114,105,103,104,116,123,116,111,112,58,50,48,112,120,59,114,105,103,104,116,58,52,48,112,120,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,49,48,112,120,59,109,97,114,103,105,110,58,48,32,48,32,53,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,59,102,111,110,116,45,115,105,122,101,58,49,50,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,97,114,105,97,108,44,115,97,110,115,45,115,101,114,105,102,59,108,105,110,101,45,104,101,105,103,104,116,58,49,55,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,108,108,33,105,109,112,111,114,116,97,110,116,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,52,52,52,59,99,111,108,111,114,58,35,102,102,102,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,104,50,123,102,111,110,116,45,102,97,109,105,108,121,58,97,114,105,97,108,44,115,97,110,115,45,115,101,114,105,102,59,102,111,110,116,45,115,105,122,101,58,49,52,112,120,59,109,97,114,103,105,110,58,48,32,48,32,55,112,120,59,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,97,123,99,111,108,111,114,58,35,101,101,101,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,102,102,102,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,112,120,59,102,111,110,116,45,115,105,122,101,58,49,50,112,120,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,117,108,123,109,97,114,103,105,110,58,48,32,48,32,48,32,49,53,112,120,59,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,112,97,100,100,105,110,103,58,48,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,117,108,32,108,105,123,108,105,115,116,45,115,116,121,108,101,45,116,121,112,101,58,100,105,115,99,33,105,109,112,111,114,116,97,110,116,59,108,105,110,101,45,104,101,105,103,104,116,58,49,55,112,120,59,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,125,46,99,108,111,115,101,45,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,51,112,120,59,114,105,103,104,116,58,55,112,120,59,102,111,110,116,45,115,105,122,101,58,49,52,112,120,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,106,113,45,116,111,97,115,116,45,108,111,97,100,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,45,50,112,120,59,104,101,105,103,104,116,58,53,112,120,59,119,105,100,116,104,58,48,59,108,101,102,116,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,112,120,59,98,97,99,107,103,114,111,117,110,100,58,114,101,100,125,46,106,113,45,116,111,97,115,116,45,108,111,97,100,101,100,123,119,105,100,116,104,58,49,48,48,37,125,46,106,113,45,104,97,115,45,105,99,111,110,123,112,97,100,100,105,110,103,58,49,48,112,120,32,49,48,112,120,32,49,48,112,120,32,53,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,48,112,120,125,46,106,113,45,105,99,111,110,45,105,110,102,111,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,71,119,83,85,82,66,86,69,104,76,116,90,97,57,83,103,78,66,69,77,99,57,115,85,120,120,82,99,111,85,75,83,122,83,87,73,104,88,112,70,77,104,104,89,87,70,104,97,66,103,52,121,80,89,105,87,67,88,90,120,66,76,69,82,115,76,82,83,51,69,81,107,69,102,119,67,75,100,106,87,74,65,119,83,75,67,103,111,75,67,99,117,100,118,52,79,53,89,76,114,116,55,69,122,103,88,104,105,85,51,47,52,43,98,50,99,107,109,119,86,106,74,83,112,75,107,81,54,119,65,105,52,103,119,104,84,43,122,51,119,82,66,99,69,122,48,121,106,83,115,101,85,84,114,99,82,121,102,115,72,115,88,109,68,48,65,109,98,72,79,67,57,73,105,56,86,73,109,110,117,88,66,80,103,108,72,112,81,53,119,119,83,86,77,55,115,78,110,84,71,55,90,97,52,74,119,68,100,67,106,120,121,65,105,72,51,110,121,65,50,109,116,97,84,74,117,102,105,68,90,53,100,67,97,113,108,73,116,73,76,104,49,78,72,97,116,102,78,53,115,107,118,106,120,57,90,51,56,109,54,57,67,103,122,117,88,109,90,103,86,114,80,73,71,69,55,54,51,74,120,57,113,75,115,82,111,122,87,89,119,54,120,79,72,100,69,82,43,110,110,50,75,107,79,43,66,98,43,85,86,53,67,66,78,54,87,67,54,81,116,66,103,98,82,86,111,122,114,97,104,65,98,109,109,54,72,116,85,115,103,116,80,67,49,57,116,70,100,120,88,90,89,66,79,102,107,98,109,70,74,49,86,97,72,65,49,86,65,72,106,100,48,112,112,55,48,111,84,90,122,118,82,43,69,86,114,120,50,89,103,102,100,115,113,54,101,117,53,53,66,72,89,82,56,104,108,99,107,105,43,110,43,107,69,82,85,70,71,56,66,114,65,48,66,119,106,101,65,118,50,77,56,87,76,81,66,116,99,121,43,83,68,54,102,78,115,109,110,66,51,65,108,66,76,114,103,84,116,86,87,49,99,50,81,78,52,98,86,87,76,65,84,97,73,83,54,48,74,50,68,117,53,121,49,84,105,74,103,106,83,66,118,70,86,90,103,84,109,119,67,85,43,100,65,90,70,111,80,120,71,69,69,115,56,110,121,72,67,57,66,119,101,50,71,118,69,74,118,50,87,88,90,98,48,118,106,100,121,70,84,52,67,120,107,51,101,47,107,73,113,108,79,71,111,86,76,119,119,80,101,118,112,89,72,84,43,48,48,84,43,104,87,119,88,68,102,52,65,74,65,79,85,113,87,99,68,104,98,119,65,65,65,65,65,83,85,86,79,82,75,53,67,89,73,73,61,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,49,55,48,56,102,59,99,111,108,111,114,58,35,100,57,101,100,102,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,99,101,56,102,49,125,46,106,113,45,105,99,111,110,45,119,97,114,110,105,110,103,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,71,89,83,85,82,66,86,69,104,76,53,90,83,118,84,115,78,81,70,77,98,88,90,71,73,67,77,89,71,89,109,74,104,65,81,73,74,65,73,67,89,81,80,65,65,67,105,83,68,66,56,65,105,73,67,81,81,74,84,52,67,113,81,69,119,103,74,118,89,65,83,65,81,67,105,90,105,89,109,74,104,65,73,66,65,84,67,65,82,74,121,43,57,114,84,115,108,100,100,56,115,75,117,49,77,48,43,100,76,98,48,53,55,118,54,47,108,98,113,47,50,114,75,48,109,83,47,84,82,78,106,57,99,87,78,65,75,80,89,73,74,73,73,55,103,73,120,67,99,81,53,49,99,118,113,73,68,43,71,73,69,88,56,65,83,71,52,66,49,98,75,53,103,73,90,70,101,81,102,111,74,100,69,88,79,102,103,88,52,81,65,81,103,55,107,72,50,65,54,53,121,81,56,55,108,121,120,98,50,55,115,103,103,107,65,122,65,117,70,104,98,98,103,49,75,50,107,103,67,107,66,49,98,86,119,121,73,82,57,109,50,76,55,80,82,80,73,104,68,85,73,88,103,71,116,121,75,119,53,55,53,121,122,51,108,84,78,115,54,88,52,74,88,110,106,86,43,76,75,77,47,109,51,77,121,100,110,84,98,116,79,75,73,106,116,122,54,86,104,67,66,113,52,118,83,109,51,110,99,100,114,68,50,108,107,48,86,103,85,88,83,86,75,106,86,68,74,88,74,122,105,106,87,49,82,81,100,115,85,55,70,55,55,72,101,56,117,54,56,107,111,78,90,84,122,56,79,122,53,121,71,97,54,74,51,72,51,108,90,48,120,89,103,88,66,75,50,81,121,109,108,87,87,65,43,82,87,110,89,104,115,107,76,66,118,50,118,109,69,43,104,66,77,67,116,98,65,55,75,88,53,100,114,87,121,82,84,47,50,74,115,113,90,50,73,118,102,66,57,89,52,98,87,68,78,77,70,98,74,82,70,109,67,57,69,55,52,83,111,83,48,67,113,117,108,119,106,107,67,48,43,53,98,112,99,86,49,67,90,56,78,77,101,106,52,112,106,121,48,85,43,100,111,68,81,115,71,121,111,49,104,122,86,74,116,116,73,106,104,81,55,71,110,66,116,82,70,78,49,85,97,114,85,108,72,56,70,51,120,105,99,116,43,72,89,48,55,114,69,122,111,85,71,80,108,87,99,106,82,70,82,114,52,47,103,67,104,90,103,99,51,90,76,50,100,56,111,65,65,65,65,65,83,85,86,79,82,75,53,67,89,73,73,61,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,56,97,54,100,51,98,59,99,111,108,111,114,58,35,102,99,102,56,101,51,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,97,101,98,99,99,125,46,106,113,45,105,99,111,110,45,101,114,114,111,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,72,79,83,85,82,66,86,69,104,76,114,90,97,47,83,103,78,66,69,77,90,122,104,48,87,75,67,67,108,83,67,75,97,73,89,79,69,68,43,65,65,75,101,81,81,76,71,56,72,87,122,116,76,67,73,109,66,114,89,97,100,103,73,100,89,43,103,73,75,78,89,107,66,70,83,119,117,55,67,65,111,113,67,103,107,107,111,71,66,73,47,69,50,56,80,100,98,76,90,109,101,68,76,103,122,90,122,99,120,56,51,47,122,90,50,83,83,88,67,49,106,57,102,114,43,73,49,72,113,57,51,103,50,121,120,72,52,105,119,77,49,118,107,111,66,87,65,100,120,67,109,112,122,84,120,102,107,78,50,82,99,121,90,78,97,72,70,73,107,83,111,49,48,43,56,107,103,120,107,88,73,85,82,86,53,72,71,120,84,109,70,117,99,55,53,66,50,82,102,81,107,112,120,72,71,56,97,65,103,97,65,70,97,48,116,65,72,113,89,70,102,81,55,73,119,101,50,121,104,79,68,107,56,43,74,52,67,55,121,65,111,82,84,87,73,51,119,47,52,107,108,71,82,103,82,52,108,79,55,82,112,110,57,43,103,118,77,121,87,112,43,117,120,70,104,56,43,72,43,65,82,108,103,78,49,110,74,117,74,117,81,65,89,118,78,107,69,110,119,71,70,99,107,49,56,69,114,52,113,51,101,103,69,99,47,111,79,43,109,104,76,100,75,103,82,121,104,100,78,70,105,97,99,67,48,114,108,79,67,98,104,78,86,122,52,72,57,70,110,65,89,103,68,66,118,85,51,81,73,105,111,90,108,74,70,76,74,116,115,111,72,89,82,68,102,105,90,111,85,121,73,120,113,67,116,82,112,86,108,65,78,113,48,69,85,52,100,65,112,106,114,116,103,101,122,80,70,97,100,53,83,49,57,87,103,106,107,99,48,104,78,86,110,117,70,52,72,106,86,65,54,67,55,81,114,83,73,98,121,108,66,43,111,90,101,51,97,72,103,66,115,113,108,78,113,75,89,72,52,56,106,88,121,74,75,77,117,65,98,105,121,86,74,56,75,122,97,66,51,101,82,99,48,112,103,57,86,119,81,52,110,105,70,114,121,73,54,56,113,105,79,105,51,65,98,106,119,100,115,102,110,65,116,107,48,98,67,106,84,76,74,75,114,54,109,114,68,57,103,56,105,113,47,83,47,66,56,49,104,103,117,79,77,108,81,84,110,86,121,71,52,48,119,65,99,106,110,109,103,115,67,78,69,83,68,114,106,109,101,55,119,102,102,116,80,52,80,55,83,80,52,78,51,67,74,90,100,118,122,111,78,121,71,113,50,99,47,72,87,79,88,74,71,115,118,86,103,43,82,65,47,107,50,77,67,47,119,78,54,73,50,89,65,50,80,116,56,71,107,65,65,65,65,65,83,85,86,79,82,75,53,67,89,73,73,61,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,57,52,52,52,50,59,99,111,108,111,114,58,35,102,50,100,101,100,101,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,98,99,99,100,49,125,46,106,113,45,105,99,111,110,45,115,117,99,99,101,115,115,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,68,115,83,85,82,66,86,69,104,76,89,50,65,89,66,102,81,77,103,102,47,47,47,51,80,56,43,47,101,118,65,73,103,118,65,47,70,115,73,70,43,66,97,118,89,68,68,87,77,66,71,114,111,97,83,77,77,66,105,69,56,86,67,55,65,90,68,114,73,70,97,77,70,110,105,105,51,65,90,84,106,85,103,115,85,85,87,85,68,65,56,79,100,65,72,54,105,81,98,81,69,104,119,52,72,121,71,115,80,69,99,75,66,88,66,73,67,52,65,82,104,101,120,52,71,52,66,115,106,109,119,101,85,49,115,111,73,70,97,71,103,47,87,116,111,70,90,82,73,90,100,69,118,73,77,104,120,107,67,67,106,88,73,86,115,65,84,86,54,103,70,71,65,67,115,52,82,115,119,48,69,71,103,73,73,72,51,81,74,89,74,103,72,83,65,82,81,90,68,114,87,65,66,43,106,97,119,122,103,115,43,81,50,85,79,52,57,68,55,106,110,82,83,82,71,111,69,70,82,73,76,99,100,109,69,77,87,71,73,48,99,109,48,74,74,50,81,112,89,65,49,82,68,118,99,109,122,74,69,87,104,65,66,104,68,47,112,113,114,76,48,83,48,67,87,117,65,66,75,103,110,82,107,105,57,108,76,115,101,83,55,103,50,65,108,113,119,72,87,81,83,75,72,52,111,75,76,114,73,76,112,82,71,104,69,81,67,119,50,76,105,82,85,73,97,52,108,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,61,61,41,59,99,111,108,111,114,58,35,100,102,102,48,100,56,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,99,55,54,51,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,54,101,57,99,54,125,47,42,33,32,76,105,116,121,32,45,32,118,50,46,52,46,48,32,45,32,50,48,49,57,45,48,56,45,49,48,10,42,32,104,116,116,112,58,47,47,115,111,114,103,97,108,108,97,46,99,111,109,47,108,105,116,121,47,10,42,32,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,53,45,50,48,49,57,32,74,97,110,32,83,111,114,103,97,108,108,97,59,32,76,105,99,101,110,115,101,100,32,77,73,84,32,42,47,46,108,105,116,121,123,122,45,105,110,100,101,120,58,57,57,57,48,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,58,35,48,98,48,98,48,98,59,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,48,44,48,44,48,44,48,46,57,41,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,111,112,97,99,105,116,121,58,48,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,45,111,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,125,46,108,105,116,121,46,108,105,116,121,45,111,112,101,110,101,100,123,111,112,97,99,105,116,121,58,49,125,46,108,105,116,121,46,108,105,116,121,45,99,108,111,115,101,100,123,111,112,97,99,105,116,121,58,48,125,46,108,105,116,121,32,42,123,45,119,101,98,107,105,116,45,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,45,109,111,122,45,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,46,108,105,116,121,45,119,114,97,112,123,122,45,105,110,100,101,120,58,57,57,57,48,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,125,46,108,105,116,121,45,119,114,97,112,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,39,39,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,49,48,48,37,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,48,46,50,53,101,109,125,46,108,105,116,121,45,108,111,97,100,101,114,123,122,45,105,110,100,101,120,58,57,57,57,49,59,99,111,108,111,114,58,35,102,102,102,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,109,97,114,103,105,110,45,116,111,112,58,45,48,46,56,101,109,59,119,105,100,116,104,58,49,48,48,37,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,102,111,110,116,45,115,105,122,101,58,49,52,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,65,114,105,97,108,44,72,101,108,118,101,116,105,99,97,44,115,97,110,115,45,115,101,114,105,102,59,111,112,97,99,105,116,121,58,48,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,45,111,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,125,46,108,105,116,121,45,108,111,97,100,105,110,103,32,46,108,105,116,121,45,108,111,97,100,101,114,123,111,112,97,99,105,116,121,58,49,125,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,123,122,45,105,110,100,101,120,58,57,57,57,50,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,104,101,105,103,104,116,58,49,48,48,37,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,125,46,108,105,116,121,45,99,111,110,116,101,110,116,123,122,45,105,110,100,101,120,58,57,57,57,51,59,119,105,100,116,104,58,49,48,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,45,109,115,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,45,111,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,45,111,45,116,114,97,110,115,105,116,105,111,110,58,45,111,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,44,32,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,44,32,45,111,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,125,46,108,105,116,121,45,108,111,97,100,105,110,103,32,46,108,105,116,121,45,99,111,110,116,101,110,116,44,46,108,105,116,121,45,99,108,111,115,101,100,32,46,108,105,116,121,45,99,111,110,116,101,110,116,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,59,45,109,115,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,59,45,111,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,125,46,108,105,116,121,45,99,111,110,116,101,110,116,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,39,39,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,108,101,102,116,58,48,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,114,105,103,104,116,58,48,59,119,105,100,116,104,58,97,117,116,111,59,104,101,105,103,104,116,58,97,117,116,111,59,122,45,105,110,100,101,120,58,45,49,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,125,46,108,105,116,121,45,99,108,111,115,101,123,122,45,105,110,100,101,120,58,57,57,57,52,59,119,105,100,116,104,58,51,53,112,120,59,104,101,105,103,104,116,58,51,53,112,120,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,114,105,103,104,116,58,48,59,116,111,112,58,48,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,48,59,99,111,108,111,114,58,35,102,102,102,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,115,105,122,101,58,51,53,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,65,114,105,97,108,44,66,97,115,107,101,114,118,105,108,108,101,44,109,111,110,111,115,112,97,99,101,59,108,105,110,101,45,104,101,105,103,104,116,58,51,53,112,120,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,49,112,120,32,50,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,114,100,101,114,58,48,59,98,97,99,107,103,114,111,117,110,100,58,110,111,110,101,59,111,117,116,108,105,110,101,58,110,111,110,101,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,125,46,108,105,116,121,45,99,108,111,115,101,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,123,98,111,114,100,101,114,58,48,59,112,97,100,100,105,110,103,58,48,125,46,108,105,116,121,45,99,108,111,115,101,58,104,111,118,101,114,44,46,108,105,116,121,45,99,108,111,115,101,58,102,111,99,117,115,44,46,108,105,116,121,45,99,108,111,115,101,58,97,99,116,105,118,101,44,46,108,105,116,121,45,99,108,111,115,101,58,118,105,115,105,116,101,100,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,48,59,99,111,108,111,114,58,35,102,102,102,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,115,105,122,101,58,51,53,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,65,114,105,97,108,44,66,97,115,107,101,114,118,105,108,108,101,44,109,111,110,111,115,112,97,99,101,59,108,105,110,101,45,104,101,105,103,104,116,58,51,53,112,120,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,49,112,120,32,50,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,114,100,101,114,58,48,59,98,97,99,107,103,114,111,117,110,100,58,110,111,110,101,59,111,117,116,108,105,110,101,58,110,111,110,101,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,125,46,108,105,116,121,45,99,108,111,115,101,58,97,99,116,105,118,101,123,116,111,112,58,49,112,120,125,46,108,105,116,121,45,105,109,97,103,101,32,105,109,103,123,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,105,110,101,45,104,101,105,103,104,116,58,48,59,98,111,114,100,101,114,58,48,125,46,108,105,116,121,45,105,102,114,97,109,101,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,121,111,117,116,117,98,101,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,118,105,109,101,111,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,102,97,99,101,98,111,111,107,118,105,100,101,111,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,103,111,111,103,108,101,109,97,112,115,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,123,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,57,54,52,112,120,125,46,108,105,116,121,45,105,102,114,97,109,101,45,99,111,110,116,97,105,110,101,114,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,116,111,112,58,53,54,46,50,53,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,108,108,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,90,40,48,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,90,40,48,41,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,108,105,116,121,45,105,102,114,97,109,101,45,99,111,110,116,97,105,110,101,114,32,105,102,114,97,109,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,97,99,107,103,114,111,117,110,100,58,35,48,48,48,125,46,108,105,116,121,45,104,105,100,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,42,58,102,111,99,117,115,32,123,10,32,32,32,32,111,117,116,108,105,110,101,58,32,48,59,10,125,10,10,46,105,110,102,111,45,105,99,111,110,32,123,10,32,32,32,32,119,105,100,116,104,58,32,49,114,101,109,59,10,32,32,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,48,46,50,114,101,109,59,10,32,32,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,10,32,32,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,32,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,98,97,115,101,54,52,44,80,72,78,50,90,121,66,52,98,87,120,117,99,122,48,105,97,72,82,48,99,68,111,118,76,51,100,51,100,121,53,51,77,121,53,118,99,109,99,118,77,106,65,119,77,67,57,122,100,109,99,105,73,72,104,116,98,71,53,122,79,110,104,115,97,87,53,114,80,83,74,111,100,72,82,119,79,105,56,118,100,51,100,51,76,110,99,122,76,109,57,121,90,121,56,120,79,84,107,53,76,51,104,115,97,87,53,114,73,105,66,52,80,83,73,119,99,72,103,105,73,72,107,57,73,106,66,119,101,67,73,75,73,67,65,103,73,67,66,50,97,87,86,51,81,109,57,52,80,83,73,119,73,68,65,103,78,68,73,50,76,106,89,50,78,121,65,48,77,106,89,117,78,106,89,51,73,105,66,122,100,72,108,115,90,84,48,105,90,87,53,104,89,109,120,108,76,87,74,104,89,50,116,110,99,109,57,49,98,109,81,54,98,109,86,51,73,68,65,103,77,67,65,48,77,106,89,117,78,106,89,51,73,68,81,121,78,105,52,50,78,106,99,55,73,105,66,109,97,87,120,115,80,83,73,106,90,109,90,109,73,106,52,75,80,71,99,43,67,105,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,80,72,74,108,89,51,81,103,101,68,48,105,77,84,107,121,73,105,66,53,80,83,73,120,79,84,73,105,73,72,100,112,90,72,82,111,80,83,73,48,77,105,52,50,78,106,99,105,73,71,104,108,97,87,100,111,100,68,48,105,77,84,73,52,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,119,89,88,82,111,73,71,81,57,73,107,48,121,77,84,77,117,77,122,77,122,76,68,66,68,79,84,85,117,78,68,89,51,76,68,65,115,77,67,119,53,78,83,52,48,78,106,99,115,77,67,119,121,77,84,77,117,77,122,77,122,99,122,107,49,76,106,81,50,78,121,119,121,77,84,77,117,77,122,77,122,76,68,73,120,77,121,52,122,77,122,77,115,77,106,69,122,76,106,77,122,77,49,77,48,77,106,89,117,78,106,89,51,76,68,77,122,77,83,52,121,76,68,81,121,78,105,52,50,78,106,99,115,77,106,69,122,76,106,77,122,77,119,111,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,85,122,77,122,77,83,52,121,76,68,65,115,77,106,69,122,76,106,77,122,77,121,119,119,101,105,66,78,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,106,76,84,107,48,76,106,65,52,76,68,65,116,77,84,99,119,76,106,89,50,78,121,48,51,78,105,52,49,79,68,99,116,77,84,99,119,76,106,89,50,78,121,48,120,78,122,65,117,78,106,89,51,85,122,69,120,79,83,52,121,78,84,77,115,78,68,73,117,78,106,89,51,76,68,73,120,77,121,52,122,77,122,77,115,78,68,73,117,78,106,89,51,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,66,84,77,122,103,48,76,68,69,120,79,83,52,121,78,84,77,115,77,122,103,48,76,68,73,120,77,121,52,122,77,122,78,84,77,122,65,51,76,106,81,120,77,121,119,122,79,68,81,115,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,54,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,121,90,87,78,48,73,72,103,57,73,106,69,53,77,105,73,103,101,84,48,105,77,84,65,50,76,106,89,50,78,121,73,103,100,50,108,107,100,71,103,57,73,106,81,121,76,106,89,50,78,121,73,103,97,71,86,112,90,50,104,48,80,83,73,48,77,105,52,50,78,106,99,105,76,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,76,50,99,43,67,105,65,103,73,67,65,56,76,50,99,43,67,106,119,118,90,122,52,75,80,67,57,122,100,109,99,43,67,103,61,61,41,59,10,32,32,32,32,102,105,108,116,101,114,58,32,98,114,105,103,104,116,110,101,115,115,40,52,53,37,41,59,10,125,10,10,46,105,110,102,111,45,105,99,111,110,58,104,111,118,101,114,32,123,10,32,32,32,32,99,111,108,111,114,58,32,105,110,104,101,114,105,116,59,10,125,10,10,46,109,111,100,97,108,45,116,105,116,108,101,32,123,10,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,99,97,108,99,40,49,48,48,37,32,45,32,50,114,101,109,41,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,10,32,32,32,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,10,125,10,10,46,112,97,116,104,45,114,111,119,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,45,109,115,45,102,108,101,120,98,111,120,59,10,32,32,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,10,32,32,32,32,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,32,115,116,97,114,116,59,10,32,32,32,32,97,108,105,103,110,45,105,116,101,109,115,58,32,102,108,101,120,45,115,116,97,114,116,59,10,125,10,10,46,116,97,103,45,99,111,110,116,97,105,110,101,114,32,123,10,32,32,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,48,46,51,114,101,109,59,10,125,10,10,46,112,97,116,104,45,108,105,110,101,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,52,52,52,59,10,32,32,32,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,10,32,32,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,119,114,97,112,59,10,125,10,10,98,111,100,121,32,123,10,32,32,32,32,111,118,101,114,102,108,111,119,45,121,58,32,115,99,114,111,108,108,59,10,125,10,10,46,112,114,111,103,114,101,115,115,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,125,10,10,46,99,97,114,100,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,32,32,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,46,49,50,53,114,101,109,32,46,50,53,114,101,109,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,48,56,41,32,33,105,109,112,111,114,116,97,110,116,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,10,32,32,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,10,125,10,10,46,115,117,98,45,100,111,99,117,109,101,110,116,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,65,66,52,55,66,67,49,70,32,33,105,109,112,111,114,116,97,110,116,59,10,125,10,10,46,110,97,118,98,97,114,45,98,114,97,110,100,32,123,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,46,55,53,114,101,109,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,59,10,125,10,10,46,110,97,118,98,97,114,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,70,55,70,55,70,55,59,10,32,32,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,115,111,108,105,100,32,49,112,120,32,35,100,102,100,102,100,102,59,10,125,10,10,46,100,111,99,117,109,101,110,116,32,123,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,46,53,114,101,109,59,10,125,10,10,46,100,111,99,117,109,101,110,116,32,112,32,123,10,32,32,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,48,59,10,125,10,10,46,100,111,99,117,109,101,110,116,58,104,111,118,101,114,32,112,32,123,10,32,32,32,32,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,32,117,110,100,101,114,108,105,110,101,59,10,125,10,10,46,98,97,100,103,101,45,118,105,100,101,111,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,50,55,55,54,49,59,10,125,10,10,46,98,97,100,103,101,45,105,109,97,103,101,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,65,65,57,57,67,57,59,10,125,10,10,46,98,97,100,103,101,45,97,117,100,105,111,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,48,48,65,68,69,70,59,10,125,10,10,46,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,50,49,50,53,50,57,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,70,67,49,48,55,59,10,125,10,10,46,98,97,100,103,101,45,117,115,101,114,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,50,49,50,53,50,57,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,125,10,10,46,98,97,100,103,101,45,116,101,120,116,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,65,65,66,51,67,59,10,125,10,10,46,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,32,123,10,32,32,32,32,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,32,110,111,110,101,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,46,55,53,114,101,109,59,10,10,32,32,32,32,98,111,116,116,111,109,58,32,117,110,115,101,116,59,10,32,32,32,32,116,111,112,58,32,48,59,10,32,32,32,32,108,101,102,116,58,32,117,110,115,101,116,59,10,32,32,32,32,114,105,103,104,116,58,32,117,110,115,101,116,59,10,125,10,10,46,102,105,108,101,45,116,105,116,108,101,32,123,10,32,32,32,32,119,105,100,116,104,58,32,49,48,48,37,59,10,32,32,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,104,101,105,103,104,116,58,32,49,46,49,114,101,109,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,48,112,116,59,10,32,32,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,119,114,97,112,59,10,32,32,32,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,10,125,10,10,46,98,97,100,103,101,32,123,10,32,32,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,51,112,120,59,10,125,10,10,46,102,105,116,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,10,32,32,32,32,109,105,110,45,119,105,100,116,104,58,32,54,52,112,120,59,10,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,49,48,48,37,59,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,49,55,53,112,120,59,10,32,32,32,32,109,97,114,103,105,110,58,32,48,32,97,117,116,111,32,48,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,51,112,120,32,51,112,120,32,48,32,51,112,120,59,10,32,32,32,32,119,105,100,116,104,58,32,97,117,116,111,59,10,32,32,32,32,104,101,105,103,104,116,58,32,97,117,116,111,59,10,125,10,10,46,102,105,116,45,115,109,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,10,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,54,52,112,120,59,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,54,52,112,120,59,10,32,32,32,32,109,97,114,103,105,110,58,32,48,32,97,117,116,111,32,48,59,10,32,32,32,32,119,105,100,116,104,58,32,97,117,116,111,59,10,32,32,32,32,104,101,105,103,104,116,58,32,97,117,116,111,59,10,125,10,10,46,97,117,100,105,111,45,102,105,116,32,123,10,32,32,32,32,104,101,105,103,104,116,58,32,51,57,112,120,59,10,32,32,32,32,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,32,98,111,116,116,111,109,59,10,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,108,105,110,101,59,10,32,32,32,32,119,105,100,116,104,58,32,49,48,48,37,59,10,125,10,10,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,97,120,45,119,105,100,116,104,58,32,49,50,48,48,112,120,41,32,123,10,32,32,32,32,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,49,48,48,37,59,10,32,32,32,32,125,10,125,10,10,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,32,49,53,48,48,112,120,41,32,123,10,32,32,32,32,46,99,111,110,116,97,105,110,101,114,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,49,52,52,48,112,120,59,10,32,32,32,32,125,10,10,32,32,32,32,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,32,123,10,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,50,48,37,32,33,105,109,112,111,114,116,97,110,116,59,10,32,32,32,32,125,10,10,32,32,32,32,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,50,48,37,59,10,32,32,32,32,125,10,125,10,10,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,32,49,56,48,48,112,120,41,32,123,10,32,32,32,32,46,99,111,110,116,97,105,110,101,114,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,49,53,53,48,112,120,59,10,32,32,32,32,125,10,125,10,10,109,97,114,107,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,50,49,55,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,49,112,120,32,48,59,10,32,32,32,32,99,111,108,111,114,58,32,105,110,104,101,114,105,116,59,10,125,10,10,46,99,111,110,116,101,110,116,45,100,105,118,32,123,10,32,32,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,32,77,101,110,108,111,44,32,77,111,110,97,99,111,44,32,67,111,110,115,111,108,97,115,44,32,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,32,34,67,111,117,114,105,101,114,32,78,101,119,34,44,32,109,111,110,111,115,112,97,99,101,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,49,101,109,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,102,53,102,53,102,53,59,10,32,32,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,99,99,99,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,52,112,120,59,10,32,32,32,32,109,97,114,103,105,110,58,32,51,112,120,59,10,32,32,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,114,109,97,108,59,10,32,32,32,32,99,111,108,111,114,58,32,35,48,48,48,59,10,125,10,10,46,105,114,115,45,115,105,110,103,108,101,44,32,46,105,114,115,45,102,114,111,109,44,32,46,105,114,115,45,116,111,32,123,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,10,125,10,10,46,105,114,115,45,115,108,105,100,101,114,32,123,10,32,32,32,32,99,117,114,115,111,114,58,32,99,111,108,45,114,101,115,105,122,101,59,10,125,10,10,46,99,117,115,116,111,109,45,115,101,108,101,99,116,32,123,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,59,10,125,10,10,46,105,114,115,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,32,32,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,49,101,109,59,10,125,10,10,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,119,104,111,108,101,114,111,119,44,32,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,32,43,32,46,119,104,111,108,101,114,111,119,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,110,111,110,101,59,10,125,10,10,46,105,110,115,112,105,114,101,45,116,114,101,101,32,123,10,32,32,32,32,102,111,110,116,45,119,101,105,103,104,116,58,32,52,48,48,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,52,112,120,59,10,32,32,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,72,101,108,118,101,116,105,99,97,44,32,78,117,101,117,101,44,32,86,101,114,100,97,110,97,44,32,115,97,110,115,45,115,101,114,105,102,59,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,51,53,48,112,120,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,59,10,125,10,10,46,112,97,103,101,45,105,110,100,105,99,97,116,111,114,32,123,10,32,32,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,46,53,114,101,109,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,56,102,57,102,97,59,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,125,10,10,46,98,116,110,45,120,115,32,123,10,32,32,32,32,112,97,100,100,105,110,103,58,32,46,49,114,101,109,32,46,51,114,101,109,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,46,56,55,53,114,101,109,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,46,50,114,101,109,59,10,125,10,10,46,110,97,118,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,48,46,53,114,101,109,59,10,125,10,10,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,32,56,48,48,112,120,41,32,123,10,32,32,32,32,35,116,114,101,101,84,97,98,115,32,123,10,32,32,32,32,32,32,32,32,102,108,101,120,45,98,97,115,105,115,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,32,32,32,32,102,108,101,120,45,103,114,111,119,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,125,10,125,10,10,46,108,105,115,116,45,103,114,111,117,112,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,125,10,10,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,32,123,10,32,32,32,32,112,97,100,100,105,110,103,58,32,46,50,53,114,101,109,32,48,46,53,114,101,109,59,10,125,10,10,46,119,114,97,112,112,101,114,45,115,109,32,123,10,32,32,32,32,109,105,110,45,119,105,100,116,104,58,32,54,52,112,120,59,10,125,10,10,46,109,101,100,105,97,45,101,120,112,97,110,100,101,100,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,104,101,114,105,116,59,10,125,10,10,46,109,101,100,105,97,45,101,120,112,97,110,100,101,100,32,46,102,105,116,32,123,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,50,53,48,112,120,59,10,125,10,10,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,32,54,53,48,112,120,41,32,123,10,32,32,32,32,46,109,101,100,105,97,45,101,120,112,97,110,100,101,100,32,46,102,105,116,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,110,111,110,101,59,10,32,32,32,32,125,10,10,32,32,32,32,46,116,97,103,108,105,110,101,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,10,32,32,32,32,125,10,125,10,10,46,118,101,114,115,105,111,110,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,48,48,55,98,102,102,59,10,32,32,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,45,49,56,112,120,59,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,45,49,52,112,120,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,49,112,120,59,10,125,10,10,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,32,56,48,48,112,120,41,32,123,10,32,32,32,32,46,115,109,97,108,108,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,10,32,32,32,32,125,10,10,32,32,32,32,46,108,97,114,103,101,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,125,10,125,10,10,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,32,56,48,49,112,120,41,32,123,10,32,32,32,32,46,115,109,97,108,108,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,125,10,10,32,32,32,32,46,108,97,114,103,101,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,10,32,32,32,32,125,10,125,10,10,35,115,101,97,114,99,104,66,97,114,32,123,10,32,32,32,32,98,111,114,100,101,114,45,114,105,103,104,116,58,32,110,111,110,101,59,10,125,10,10,35,112,97,116,104,84,114,101,101,32,46,116,105,116,108,101,32,123,10,32,32,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,10,125,10,10,46,112,108,97,121,32,123,10,32,32,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,10,32,32,32,32,119,105,100,116,104,58,32,53,48,112,120,59,10,32,32,32,32,104,101,105,103,104,116,58,32,53,48,112,120,59,10,32,32,32,32,108,101,102,116,58,32,53,48,37,59,10,32,32,32,32,116,111,112,58,32,53,48,37,59,10,32,32,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,10,32,32,32,32,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,32,110,111,110,101,59,10,125,10,10,46,112,108,97,121,32,115,118,103,32,123,10,32,32,32,32,102,105,108,108,58,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,55,41,59,10,125,10,10,46,105,109,103,45,119,114,97,112,112,101,114,58,104,111,118,101,114,32,115,118,103,32,123,10,32,32,32,32,102,105,108,108,58,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,49,41,59,10,125,10,10,46,112,111,105,110,116,101,114,32,123,10,32,32,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,10,125,10,10}; -char bundle_dark_css[199208] = {47,42,33,10,32,42,32,66,111,111,116,115,116,114,97,112,32,118,52,46,51,46,49,32,40,104,116,116,112,115,58,47,47,103,101,116,98,111,111,116,115,116,114,97,112,46,99,111,109,47,41,10,32,42,32,67,111,112,121,114,105,103,104,116,32,50,48,49,49,45,50,48,49,57,32,84,104,101,32,66,111,111,116,115,116,114,97,112,32,65,117,116,104,111,114,115,10,32,42,32,67,111,112,121,114,105,103,104,116,32,50,48,49,49,45,50,48,49,57,32,84,119,105,116,116,101,114,44,32,73,110,99,46,10,32,42,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,32,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,119,98,115,47,98,111,111,116,115,116,114,97,112,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,41,10,32,42,47,58,114,111,111,116,123,45,45,98,108,117,101,58,35,48,48,55,98,102,102,59,45,45,105,110,100,105,103,111,58,35,54,54,49,48,102,50,59,45,45,112,117,114,112,108,101,58,35,54,102,52,50,99,49,59,45,45,112,105,110,107,58,35,101,56,51,101,56,99,59,45,45,114,101,100,58,35,100,99,51,53,52,53,59,45,45,111,114,97,110,103,101,58,35,102,100,55,101,49,52,59,45,45,121,101,108,108,111,119,58,35,102,102,99,49,48,55,59,45,45,103,114,101,101,110,58,35,50,56,97,55,52,53,59,45,45,116,101,97,108,58,35,50,48,99,57,57,55,59,45,45,99,121,97,110,58,35,49,55,97,50,98,56,59,45,45,119,104,105,116,101,58,35,102,102,102,59,45,45,103,114,97,121,58,35,54,99,55,53,55,100,59,45,45,103,114,97,121,45,100,97,114,107,58,35,51,52,51,97,52,48,59,45,45,112,114,105,109,97,114,121,58,35,48,48,55,98,102,102,59,45,45,115,101,99,111,110,100,97,114,121,58,35,54,99,55,53,55,100,59,45,45,115,117,99,99,101,115,115,58,35,50,56,97,55,52,53,59,45,45,105,110,102,111,58,35,49,55,97,50,98,56,59,45,45,119,97,114,110,105,110,103,58,35,102,102,99,49,48,55,59,45,45,100,97,110,103,101,114,58,35,100,99,51,53,52,53,59,45,45,108,105,103,104,116,58,35,102,56,102,57,102,97,59,45,45,100,97,114,107,58,35,51,52,51,97,52,48,59,45,45,98,114,101,97,107,112,111,105,110,116,45,120,115,58,48,59,45,45,98,114,101,97,107,112,111,105,110,116,45,115,109,58,53,55,54,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,109,100,58,55,54,56,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,108,103,58,57,57,50,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,120,108,58,49,50,48,48,112,120,59,45,45,102,111,110,116,45,102,97,109,105,108,121,45,115,97,110,115,45,115,101,114,105,102,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,45,45,102,111,110,116,45,102,97,109,105,108,121,45,109,111,110,111,115,112,97,99,101,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,34,67,111,117,114,105,101,114,32,78,101,119,34,44,109,111,110,111,115,112,97,99,101,125,42,44,58,58,97,102,116,101,114,44,58,58,98,101,102,111,114,101,123,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,104,116,109,108,123,102,111,110,116,45,102,97,109,105,108,121,58,115,97,110,115,45,115,101,114,105,102,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,49,53,59,45,119,101,98,107,105,116,45,116,101,120,116,45,115,105,122,101,45,97,100,106,117,115,116,58,49,48,48,37,59,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,97,114,116,105,99,108,101,44,97,115,105,100,101,44,102,105,103,99,97,112,116,105,111,110,44,102,105,103,117,114,101,44,102,111,111,116,101,114,44,104,101,97,100,101,114,44,104,103,114,111,117,112,44,109,97,105,110,44,110,97,118,44,115,101,99,116,105,111,110,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,98,111,100,121,123,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,91,116,97,98,105,110,100,101,120,61,34,45,49,34,93,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,33,105,109,112,111,114,116,97,110,116,125,104,114,123,98,111,120,45,115,105,122,105,110,103,58,99,111,110,116,101,110,116,45,98,111,120,59,104,101,105,103,104,116,58,48,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,104,49,44,104,50,44,104,51,44,104,52,44,104,53,44,104,54,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,112,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,97,98,98,114,91,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,93,44,97,98,98,114,91,116,105,116,108,101,93,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,59,45,119,101,98,107,105,116,45,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,32,100,111,116,116,101,100,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,32,100,111,116,116,101,100,59,99,117,114,115,111,114,58,104,101,108,112,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,45,119,101,98,107,105,116,45,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,115,107,105,112,45,105,110,107,58,110,111,110,101,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,115,107,105,112,45,105,110,107,58,110,111,110,101,125,97,100,100,114,101,115,115,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,125,100,108,44,111,108,44,117,108,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,111,108,32,111,108,44,111,108,32,117,108,44,117,108,32,111,108,44,117,108,32,117,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,100,116,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,100,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,98,108,111,99,107,113,117,111,116,101,123,109,97,114,103,105,110,58,48,32,48,32,49,114,101,109,125,98,44,115,116,114,111,110,103,123,102,111,110,116,45,119,101,105,103,104,116,58,98,111,108,100,101,114,125,115,109,97,108,108,123,102,111,110,116,45,115,105,122,101,58,56,48,37,125,115,117,98,44,115,117,112,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,102,111,110,116,45,115,105,122,101,58,55,53,37,59,108,105,110,101,45,104,101,105,103,104,116,58,48,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,125,115,117,98,123,98,111,116,116,111,109,58,45,46,50,53,101,109,125,115,117,112,123,116,111,112,58,45,46,53,101,109,125,97,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,97,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,58,102,111,99,117,115,44,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,58,104,111,118,101,114,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,125,99,111,100,101,44,107,98,100,44,112,114,101,44,115,97,109,112,123,102,111,110,116,45,102,97,109,105,108,121,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,34,67,111,117,114,105,101,114,32,78,101,119,34,44,109,111,110,111,115,112,97,99,101,59,102,111,110,116,45,115,105,122,101,58,49,101,109,125,112,114,101,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,111,118,101,114,102,108,111,119,58,97,117,116,111,125,102,105,103,117,114,101,123,109,97,114,103,105,110,58,48,32,48,32,49,114,101,109,125,105,109,103,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,98,111,114,100,101,114,45,115,116,121,108,101,58,110,111,110,101,125,115,118,103,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,116,97,98,108,101,123,98,111,114,100,101,114,45,99,111,108,108,97,112,115,101,58,99,111,108,108,97,112,115,101,125,99,97,112,116,105,111,110,123,112,97,100,100,105,110,103,45,116,111,112,58,46,55,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,99,97,112,116,105,111,110,45,115,105,100,101,58,98,111,116,116,111,109,125,116,104,123,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,125,108,97,98,101,108,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,98,117,116,116,111,110,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,98,117,116,116,111,110,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,49,112,120,32,100,111,116,116,101,100,59,111,117,116,108,105,110,101,58,53,112,120,32,97,117,116,111,32,45,119,101,98,107,105,116,45,102,111,99,117,115,45,114,105,110,103,45,99,111,108,111,114,125,98,117,116,116,111,110,44,105,110,112,117,116,44,111,112,116,103,114,111,117,112,44,115,101,108,101,99,116,44,116,101,120,116,97,114,101,97,123,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,105,110,104,101,114,105,116,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,125,98,117,116,116,111,110,44,105,110,112,117,116,123,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,98,117,116,116,111,110,44,115,101,108,101,99,116,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,115,101,108,101,99,116,123,119,111,114,100,45,119,114,97,112,58,110,111,114,109,97,108,125,91,116,121,112,101,61,98,117,116,116,111,110,93,44,91,116,121,112,101,61,114,101,115,101,116,93,44,91,116,121,112,101,61,115,117,98,109,105,116,93,44,98,117,116,116,111,110,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,98,117,116,116,111,110,125,91,116,121,112,101,61,98,117,116,116,111,110,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,91,116,121,112,101,61,114,101,115,101,116,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,91,116,121,112,101,61,115,117,98,109,105,116,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,98,117,116,116,111,110,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,91,116,121,112,101,61,98,117,116,116,111,110,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,91,116,121,112,101,61,114,101,115,101,116,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,91,116,121,112,101,61,115,117,98,109,105,116,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,98,117,116,116,111,110,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,123,112,97,100,100,105,110,103,58,48,59,98,111,114,100,101,114,45,115,116,121,108,101,58,110,111,110,101,125,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,112,97,100,100,105,110,103,58,48,125,105,110,112,117,116,91,116,121,112,101,61,100,97,116,101,93,44,105,110,112,117,116,91,116,121,112,101,61,100,97,116,101,116,105,109,101,45,108,111,99,97,108,93,44,105,110,112,117,116,91,116,121,112,101,61,109,111,110,116,104,93,44,105,110,112,117,116,91,116,121,112,101,61,116,105,109,101,93,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,108,105,115,116,98,111,120,125,116,101,120,116,97,114,101,97,123,111,118,101,114,102,108,111,119,58,97,117,116,111,59,114,101,115,105,122,101,58,118,101,114,116,105,99,97,108,125,102,105,101,108,100,115,101,116,123,109,105,110,45,119,105,100,116,104,58,48,59,112,97,100,100,105,110,103,58,48,59,109,97,114,103,105,110,58,48,59,98,111,114,100,101,114,58,48,125,108,101,103,101,110,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,125,112,114,111,103,114,101,115,115,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,125,91,116,121,112,101,61,110,117,109,98,101,114,93,58,58,45,119,101,98,107,105,116,45,105,110,110,101,114,45,115,112,105,110,45,98,117,116,116,111,110,44,91,116,121,112,101,61,110,117,109,98,101,114,93,58,58,45,119,101,98,107,105,116,45,111,117,116,101,114,45,115,112,105,110,45,98,117,116,116,111,110,123,104,101,105,103,104,116,58,97,117,116,111,125,91,116,121,112,101,61,115,101,97,114,99,104,93,123,111,117,116,108,105,110,101,45,111,102,102,115,101,116,58,45,50,112,120,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,91,116,121,112,101,61,115,101,97,114,99,104,93,58,58,45,119,101,98,107,105,116,45,115,101,97,114,99,104,45,100,101,99,111,114,97,116,105,111,110,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,58,58,45,119,101,98,107,105,116,45,102,105,108,101,45,117,112,108,111,97,100,45,98,117,116,116,111,110,123,102,111,110,116,58,105,110,104,101,114,105,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,98,117,116,116,111,110,125,111,117,116,112,117,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,115,117,109,109,97,114,121,123,100,105,115,112,108,97,121,58,108,105,115,116,45,105,116,101,109,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,116,101,109,112,108,97,116,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,91,104,105,100,100,101,110,93,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,104,49,44,46,104,50,44,46,104,51,44,46,104,52,44,46,104,53,44,46,104,54,44,104,49,44,104,50,44,104,51,44,104,52,44,104,53,44,104,54,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,53,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,104,49,44,104,49,123,102,111,110,116,45,115,105,122,101,58,50,46,53,114,101,109,125,46,104,50,44,104,50,123,102,111,110,116,45,115,105,122,101,58,50,114,101,109,125,46,104,51,44,104,51,123,102,111,110,116,45,115,105,122,101,58,49,46,55,53,114,101,109,125,46,104,52,44,104,52,123,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,125,46,104,53,44,104,53,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,104,54,44,104,54,123,102,111,110,116,45,115,105,122,101,58,49,114,101,109,125,46,108,101,97,100,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,125,46,100,105,115,112,108,97,121,45,49,123,102,111,110,116,45,115,105,122,101,58,54,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,100,105,115,112,108,97,121,45,50,123,102,111,110,116,45,115,105,122,101,58,53,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,100,105,115,112,108,97,121,45,51,123,102,111,110,116,45,115,105,122,101,58,52,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,100,105,115,112,108,97,121,45,52,123,102,111,110,116,45,115,105,122,101,58,51,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,104,114,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,125,46,115,109,97,108,108,44,115,109,97,108,108,123,102,111,110,116,45,115,105,122,101,58,56,48,37,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,125,46,109,97,114,107,44,109,97,114,107,123,112,97,100,100,105,110,103,58,46,50,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,99,102,56,101,51,125,46,108,105,115,116,45,117,110,115,116,121,108,101,100,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,108,105,115,116,45,105,110,108,105,110,101,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,108,105,115,116,45,105,110,108,105,110,101,45,105,116,101,109,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,108,105,115,116,45,105,110,108,105,110,101,45,105,116,101,109,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,125,46,105,110,105,116,105,97,108,105,115,109,123,102,111,110,116,45,115,105,122,101,58,57,48,37,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,117,112,112,101,114,99,97,115,101,125,46,98,108,111,99,107,113,117,111,116,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,98,108,111,99,107,113,117,111,116,101,45,102,111,111,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,108,111,99,107,113,117,111,116,101,45,102,111,111,116,101,114,58,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,34,92,50,48,49,52,92,48,48,65,48,34,125,46,105,109,103,45,102,108,117,105,100,123,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,97,117,116,111,125,46,105,109,103,45,116,104,117,109,98,110,97,105,108,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,97,117,116,111,125,46,102,105,103,117,114,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,102,105,103,117,114,101,45,105,109,103,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,125,46,102,105,103,117,114,101,45,99,97,112,116,105,111,110,123,102,111,110,116,45,115,105,122,101,58,57,48,37,59,99,111,108,111,114,58,35,54,99,55,53,55,100,125,99,111,100,101,123,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,101,56,51,101,56,99,59,119,111,114,100,45,98,114,101,97,107,58,98,114,101,97,107,45,119,111,114,100,125,97,62,99,111,100,101,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,107,98,100,123,112,97,100,100,105,110,103,58,46,50,114,101,109,32,46,52,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,107,98,100,32,107,98,100,123,112,97,100,100,105,110,103,58,48,59,102,111,110,116,45,115,105,122,101,58,49,48,48,37,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,112,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,112,114,101,32,99,111,100,101,123,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,125,46,112,114,101,45,115,99,114,111,108,108,97,98,108,101,123,109,97,120,45,104,101,105,103,104,116,58,51,52,48,112,120,59,111,118,101,114,102,108,111,119,45,121,58,115,99,114,111,108,108,125,46,99,111,110,116,97,105,110,101,114,123,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,53,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,59,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,53,52,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,55,50,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,57,54,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,49,49,52,48,112,120,125,125,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,53,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,59,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,125,46,114,111,119,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,53,112,120,125,46,110,111,45,103,117,116,116,101,114,115,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,110,111,45,103,117,116,116,101,114,115,62,46,99,111,108,44,46,110,111,45,103,117,116,116,101,114,115,62,91,99,108,97,115,115,42,61,99,111,108,45,93,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,99,111,108,44,46,99,111,108,45,49,44,46,99,111,108,45,49,48,44,46,99,111,108,45,49,49,44,46,99,111,108,45,49,50,44,46,99,111,108,45,50,44,46,99,111,108,45,51,44,46,99,111,108,45,52,44,46,99,111,108,45,53,44,46,99,111,108,45,54,44,46,99,111,108,45,55,44,46,99,111,108,45,56,44,46,99,111,108,45,57,44,46,99,111,108,45,97,117,116,111,44,46,99,111,108,45,108,103,44,46,99,111,108,45,108,103,45,49,44,46,99,111,108,45,108,103,45,49,48,44,46,99,111,108,45,108,103,45,49,49,44,46,99,111,108,45,108,103,45,49,50,44,46,99,111,108,45,108,103,45,50,44,46,99,111,108,45,108,103,45,51,44,46,99,111,108,45,108,103,45,52,44,46,99,111,108,45,108,103,45,53,44,46,99,111,108,45,108,103,45,54,44,46,99,111,108,45,108,103,45,55,44,46,99,111,108,45,108,103,45,56,44,46,99,111,108,45,108,103,45,57,44,46,99,111,108,45,108,103,45,97,117,116,111,44,46,99,111,108,45,109,100,44,46,99,111,108,45,109,100,45,49,44,46,99,111,108,45,109,100,45,49,48,44,46,99,111,108,45,109,100,45,49,49,44,46,99,111,108,45,109,100,45,49,50,44,46,99,111,108,45,109,100,45,50,44,46,99,111,108,45,109,100,45,51,44,46,99,111,108,45,109,100,45,52,44,46,99,111,108,45,109,100,45,53,44,46,99,111,108,45,109,100,45,54,44,46,99,111,108,45,109,100,45,55,44,46,99,111,108,45,109,100,45,56,44,46,99,111,108,45,109,100,45,57,44,46,99,111,108,45,109,100,45,97,117,116,111,44,46,99,111,108,45,115,109,44,46,99,111,108,45,115,109,45,49,44,46,99,111,108,45,115,109,45,49,48,44,46,99,111,108,45,115,109,45,49,49,44,46,99,111,108,45,115,109,45,49,50,44,46,99,111,108,45,115,109,45,50,44,46,99,111,108,45,115,109,45,51,44,46,99,111,108,45,115,109,45,52,44,46,99,111,108,45,115,109,45,53,44,46,99,111,108,45,115,109,45,54,44,46,99,111,108,45,115,109,45,55,44,46,99,111,108,45,115,109,45,56,44,46,99,111,108,45,115,109,45,57,44,46,99,111,108,45,115,109,45,97,117,116,111,44,46,99,111,108,45,120,108,44,46,99,111,108,45,120,108,45,49,44,46,99,111,108,45,120,108,45,49,48,44,46,99,111,108,45,120,108,45,49,49,44,46,99,111,108,45,120,108,45,49,50,44,46,99,111,108,45,120,108,45,50,44,46,99,111,108,45,120,108,45,51,44,46,99,111,108,45,120,108,45,52,44,46,99,111,108,45,120,108,45,53,44,46,99,111,108,45,120,108,45,54,44,46,99,111,108,45,120,108,45,55,44,46,99,111,108,45,120,108,45,56,44,46,99,111,108,45,120,108,45,57,44,46,99,111,108,45,120,108,45,97,117,116,111,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,53,112,120,125,46,99,111,108,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,111,108,45,115,109,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,115,109,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,115,109,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,115,109,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,115,109,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,115,109,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,115,109,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,115,109,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,115,109,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,115,109,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,115,109,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,115,109,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,115,109,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,115,109,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,115,109,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,115,109,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,115,109,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,115,109,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,115,109,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,115,109,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,115,109,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,115,109,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,115,109,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,115,109,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,115,109,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,115,109,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,99,111,108,45,109,100,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,109,100,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,109,100,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,109,100,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,109,100,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,109,100,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,109,100,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,109,100,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,109,100,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,109,100,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,109,100,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,109,100,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,109,100,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,109,100,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,109,100,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,109,100,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,109,100,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,109,100,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,109,100,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,109,100,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,109,100,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,109,100,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,109,100,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,109,100,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,109,100,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,109,100,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,99,111,108,45,108,103,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,108,103,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,108,103,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,108,103,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,108,103,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,108,103,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,108,103,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,108,103,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,108,103,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,108,103,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,108,103,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,108,103,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,108,103,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,108,103,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,108,103,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,108,103,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,108,103,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,108,103,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,108,103,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,108,103,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,108,103,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,108,103,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,108,103,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,108,103,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,108,103,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,108,103,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,99,111,108,45,120,108,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,120,108,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,120,108,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,120,108,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,120,108,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,120,108,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,120,108,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,120,108,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,120,108,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,120,108,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,120,108,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,120,108,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,120,108,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,120,108,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,120,108,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,120,108,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,120,108,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,120,108,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,120,108,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,120,108,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,120,108,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,120,108,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,120,108,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,120,108,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,120,108,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,120,108,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,46,116,97,98,108,101,123,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,116,97,98,108,101,32,116,100,44,46,116,97,98,108,101,32,116,104,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,116,104,101,97,100,32,116,104,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,111,116,116,111,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,50,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,116,98,111,100,121,43,116,98,111,100,121,123,98,111,114,100,101,114,45,116,111,112,58,50,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,115,109,32,116,100,44,46,116,97,98,108,101,45,115,109,32,116,104,123,112,97,100,100,105,110,103,58,46,51,114,101,109,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,101,97,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,119,105,100,116,104,58,50,112,120,125,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,104,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,58,48,125,46,116,97,98,108,101,45,115,116,114,105,112,101,100,32,116,98,111,100,121,32,116,114,58,110,116,104,45,111,102,45,116,121,112,101,40,111,100,100,41,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,53,41,125,46,116,97,98,108,101,45,104,111,118,101,114,32,116,98,111,100,121,32,116,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,45,112,114,105,109,97,114,121,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,62,116,100,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,100,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,104,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,55,97,98,97,102,102,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,62,116,100,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,100,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,104,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,51,98,55,98,98,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,116,97,98,108,101,45,115,117,99,99,101,115,115,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,62,116,100,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,100,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,104,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,102,100,49,57,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,116,97,98,108,101,45,105,110,102,111,44,46,116,97,98,108,101,45,105,110,102,111,62,116,100,44,46,116,97,98,108,101,45,105,110,102,111,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,116,97,98,108,101,45,105,110,102,111,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,105,110,102,111,32,116,100,44,46,116,97,98,108,101,45,105,110,102,111,32,116,104,44,46,116,97,98,108,101,45,105,110,102,111,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,54,99,102,100,97,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,116,97,98,108,101,45,119,97,114,110,105,110,103,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,62,116,100,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,100,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,104,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,100,102,55,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,116,97,98,108,101,45,100,97,110,103,101,114,44,46,116,97,98,108,101,45,100,97,110,103,101,114,62,116,100,44,46,116,97,98,108,101,45,100,97,110,103,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,100,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,104,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,100,57,54,57,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,116,97,98,108,101,45,108,105,103,104,116,44,46,116,97,98,108,101,45,108,105,103,104,116,62,116,100,44,46,116,97,98,108,101,45,108,105,103,104,116,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,116,97,98,108,101,45,108,105,103,104,116,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,100,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,104,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,98,102,99,102,99,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,116,97,98,108,101,45,100,97,114,107,44,46,116,97,98,108,101,45,100,97,114,107,62,116,100,44,46,116,97,98,108,101,45,100,97,114,107,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,116,97,98,108,101,45,100,97,114,107,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,57,53,57,57,57,99,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,116,97,98,108,101,45,97,99,116,105,118,101,44,46,116,97,98,108,101,45,97,99,116,105,118,101,62,116,100,44,46,116,97,98,108,101,45,97,99,116,105,118,101,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,100,97,114,107,32,116,104,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,53,52,100,53,53,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,108,105,103,104,116,32,116,104,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,53,52,100,53,53,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,115,116,114,105,112,101,100,32,116,98,111,100,121,32,116,114,58,110,116,104,45,111,102,45,116,121,112,101,40,111,100,100,41,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,48,53,41,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,104,111,118,101,114,32,116,98,111,100,121,32,116,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,48,55,53,41,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,53,55,53,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,115,109,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,115,109,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,55,54,55,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,109,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,109,100,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,57,57,49,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,108,103,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,108,103,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,49,49,57,57,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,120,108,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,120,108,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,102,111,114,109,45,99,111,110,116,114,111,108,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,109,115,45,101,120,112,97,110,100,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,119,101,98,107,105,116,45,105,110,112,117,116,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,109,111,122,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,45,109,115,45,105,110,112,117,116,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,109,115,45,105,110,112,117,116,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,100,105,115,97,98,108,101,100,44,46,102,111,114,109,45,99,111,110,116,114,111,108,91,114,101,97,100,111,110,108,121,93,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,111,112,97,99,105,116,121,58,49,125,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,58,58,45,109,115,45,118,97,108,117,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,114,97,110,103,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,51,55,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,51,55,53,114,101,109,32,43,32,49,112,120,41,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,45,108,103,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,53,114,101,109,32,43,32,49,112,120,41,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,45,115,109,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,49,112,120,41,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,116,111,112,58,46,51,55,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,51,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,119,105,100,116,104,58,49,112,120,32,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,46,102,111,114,109,45,99,111,110,116,114,111,108,45,108,103,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,46,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,108,103,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,91,109,117,108,116,105,112,108,101,93,44,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,91,115,105,122,101,93,123,104,101,105,103,104,116,58,97,117,116,111,125,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,123,104,101,105,103,104,116,58,97,117,116,111,125,46,102,111,114,109,45,103,114,111,117,112,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,46,102,111,114,109,45,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,125,46,102,111,114,109,45,114,111,119,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,53,112,120,125,46,102,111,114,109,45,114,111,119,62,46,99,111,108,44,46,102,111,114,109,45,114,111,119,62,91,99,108,97,115,115,42,61,99,111,108,45,93,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,53,112,120,125,46,102,111,114,109,45,99,104,101,99,107,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,50,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,109,97,114,103,105,110,45,116,111,112,58,46,51,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,50,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,55,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,51,49,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,123,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,122,45,105,110,100,101,120,58,53,59,100,105,115,112,108,97,121,58,110,111,110,101,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,46,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,57,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,50,56,97,55,52,53,39,32,100,61,39,77,50,46,51,32,54,46,55,51,76,46,54,32,52,46,53,51,99,45,46,52,45,49,46,48,52,46,52,54,45,49,46,52,32,49,46,49,45,46,56,108,49,46,49,32,49,46,52,32,51,46,52,45,51,46,56,99,46,54,45,46,54,51,32,49,46,54,45,46,50,55,32,49,46,50,46,55,108,45,52,32,52,46,54,99,45,46,52,51,46,53,45,46,56,46,52,45,49,46,49,46,49,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,99,101,110,116,101,114,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,44,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,116,111,112,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,40,49,101,109,32,43,32,46,55,53,114,101,109,41,32,42,32,51,32,47,32,52,32,43,32,49,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,53,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,51,52,51,97,52,48,39,32,100,61,39,77,50,32,48,76,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,110,111,45,114,101,112,101,97,116,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,44,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,50,56,97,55,52,53,39,32,100,61,39,77,50,46,51,32,54,46,55,51,76,46,54,32,52,46,53,51,99,45,46,52,45,49,46,48,52,46,52,54,45,49,46,52,32,49,46,49,45,46,56,108,49,46,49,32,49,46,52,32,51,46,52,45,51,46,56,99,46,54,45,46,54,51,32,49,46,54,45,46,50,55,32,49,46,50,46,55,108,45,52,32,52,46,54,99,45,46,52,51,46,53,45,46,56,46,52,45,49,46,49,46,49,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,35,102,102,102,32,110,111,45,114,101,112,101,97,116,32,99,101,110,116,101,114,32,114,105,103,104,116,32,49,46,55,53,114,101,109,47,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,99,101,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,99,101,53,55,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,123,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,122,45,105,110,100,101,120,58,53,59,100,105,115,112,108,97,121,58,110,111,110,101,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,46,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,57,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,100,99,51,53,52,53,39,32,118,105,101,119,66,111,120,61,39,45,50,32,45,50,32,55,32,55,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,37,50,51,100,99,51,53,52,53,39,32,100,61,39,77,48,32,48,108,51,32,51,109,48,45,51,76,48,32,51,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,47,115,118,103,37,51,69,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,99,101,110,116,101,114,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,44,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,116,111,112,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,40,49,101,109,32,43,32,46,55,53,114,101,109,41,32,42,32,51,32,47,32,52,32,43,32,49,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,53,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,51,52,51,97,52,48,39,32,100,61,39,77,50,32,48,76,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,110,111,45,114,101,112,101,97,116,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,44,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,100,99,51,53,52,53,39,32,118,105,101,119,66,111,120,61,39,45,50,32,45,50,32,55,32,55,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,37,50,51,100,99,51,53,52,53,39,32,100,61,39,77,48,32,48,108,51,32,51,109,48,45,51,76,48,32,51,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,47,115,118,103,37,51,69,34,41,32,35,102,102,102,32,110,111,45,114,101,112,101,97,116,32,99,101,110,116,101,114,32,114,105,103,104,116,32,49,46,55,53,114,101,109,47,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,52,54,48,54,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,52,54,48,54,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,123,119,105,100,116,104,58,49,48,48,37,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,111,114,109,45,105,110,108,105,110,101,32,108,97,98,101,108,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,111,110,116,114,111,108,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,97,117,116,111,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,102,111,114,109,45,105,110,108,105,110,101,32,46,105,110,112,117,116,45,103,114,111,117,112,123,119,105,100,116,104,58,97,117,116,111,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,119,105,100,116,104,58,97,117,116,111,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,59,102,108,101,120,45,115,104,114,105,110,107,58,48,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,125,46,98,116,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,116,110,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,98,116,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,116,110,46,102,111,99,117,115,44,46,98,116,110,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,98,116,110,46,100,105,115,97,98,108,101,100,44,46,98,116,110,58,100,105,115,97,98,108,101,100,123,111,112,97,99,105,116,121,58,46,54,53,125,97,46,98,116,110,46,100,105,115,97,98,108,101,100,44,102,105,101,108,100,115,101,116,58,100,105,115,97,98,108,101,100,32,97,46,98,116,110,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,116,110,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,57,100,57,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,54,50,99,99,125,46,98,116,110,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,51,56,44,49,52,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,112,114,105,109,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,112,114,105,109,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,53,99,98,102,125,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,51,56,44,49,52,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,97,54,50,54,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,53,52,53,98,54,50,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,51,48,44,49,51,56,44,49,52,53,44,46,53,41,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,101,53,53,53,98,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,51,48,44,49,51,56,44,49,52,53,44,46,53,41,125,46,98,116,110,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,49,56,56,51,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,101,55,101,51,52,125,46,98,116,110,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,46,98,116,110,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,55,50,44,49,56,48,44,57,55,44,46,53,41,125,46,98,116,110,45,115,117,99,99,101,115,115,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,115,117,99,99,101,115,115,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,99,55,52,51,48,125,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,55,50,44,49,56,48,44,57,55,44,46,53,41,125,46,98,116,110,45,105,110,102,111,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,51,56,52,57,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,49,55,97,56,98,125,46,98,116,110,45,105,110,102,111,46,102,111,99,117,115,44,46,98,116,110,45,105,110,102,111,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,56,44,49,55,54,44,49,57,53,44,46,53,41,125,46,98,116,110,45,105,110,102,111,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,105,110,102,111,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,48,55,48,55,102,125,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,56,44,49,55,54,44,49,57,53,44,46,53,41,125,46,98,116,110,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,48,97,56,48,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,51,57,101,48,48,125,46,98,116,110,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,46,98,116,110,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,50,44,49,55,48,44,49,50,44,46,53,41,125,46,98,116,110,45,119,97,114,110,105,110,103,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,119,97,114,110,105,110,103,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,54,57,53,48,48,125,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,50,44,49,55,48,44,49,50,44,46,53,41,125,46,98,116,110,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,50,51,51,51,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,100,50,49,51,48,125,46,98,116,110,45,100,97,110,103,101,114,46,102,111,99,117,115,44,46,98,116,110,45,100,97,110,103,101,114,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,53,44,56,51,44,57,55,44,46,53,41,125,46,98,116,110,45,100,97,110,103,101,114,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,100,97,110,103,101,114,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,50,49,102,50,100,125,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,53,44,56,51,44,57,55,44,46,53,41,125,46,98,116,110,45,108,105,103,104,116,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,50,101,54,101,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,97,101,48,101,53,125,46,98,116,110,45,108,105,103,104,116,46,102,111,99,117,115,44,46,98,116,110,45,108,105,103,104,116,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,49,54,44,50,49,55,44,50,49,57,44,46,53,41,125,46,98,116,110,45,108,105,103,104,116,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,108,105,103,104,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,51,100,57,100,102,125,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,49,54,44,50,49,55,44,50,49,57,44,46,53,41,125,46,98,116,110,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,51,50,55,50,98,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,100,50,49,50,52,125,46,98,116,110,45,100,97,114,107,46,102,111,99,117,115,44,46,98,116,110,45,100,97,114,107,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,56,50,44,56,56,44,57,51,44,46,53,41,125,46,98,116,110,45,100,97,114,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,100,97,114,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,49,97,49,100,125,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,56,50,44,56,56,44,57,51,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,48,56,44,49,49,55,44,49,50,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,48,56,44,49,49,55,44,49,50,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,123,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,123,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,123,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,98,116,110,45,108,105,110,107,123,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,116,110,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,98,116,110,45,108,105,110,107,46,102,111,99,117,115,44,46,98,116,110,45,108,105,110,107,58,102,111,99,117,115,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,125,46,98,116,110,45,108,105,110,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,108,105,110,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,116,110,45,103,114,111,117,112,45,108,103,62,46,98,116,110,44,46,98,116,110,45,108,103,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,115,109,62,46,98,116,110,44,46,98,116,110,45,115,109,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,98,116,110,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,98,116,110,45,98,108,111,99,107,43,46,98,116,110,45,98,108,111,99,107,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,125,105,110,112,117,116,91,116,121,112,101,61,98,117,116,116,111,110,93,46,98,116,110,45,98,108,111,99,107,44,105,110,112,117,116,91,116,121,112,101,61,114,101,115,101,116,93,46,98,116,110,45,98,108,111,99,107,44,105,110,112,117,116,91,116,121,112,101,61,115,117,98,109,105,116,93,46,98,116,110,45,98,108,111,99,107,123,119,105,100,116,104,58,49,48,48,37,125,46,102,97,100,101,123,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,49,53,115,32,108,105,110,101,97,114,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,102,97,100,101,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,102,97,100,101,58,110,111,116,40,46,115,104,111,119,41,123,111,112,97,99,105,116,121,58,48,125,46,99,111,108,108,97,112,115,101,58,110,111,116,40,46,115,104,111,119,41,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,111,108,108,97,112,115,105,110,103,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,104,101,105,103,104,116,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,116,114,97,110,115,105,116,105,111,110,58,104,101,105,103,104,116,32,46,51,53,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,111,108,108,97,112,115,105,110,103,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,100,114,111,112,100,111,119,110,44,46,100,114,111,112,108,101,102,116,44,46,100,114,111,112,114,105,103,104,116,44,46,100,114,111,112,117,112,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,48,48,59,100,105,115,112,108,97,121,58,110,111,110,101,59,102,108,111,97,116,58,108,101,102,116,59,109,105,110,45,119,105,100,116,104,58,49,48,114,101,109,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,48,59,109,97,114,103,105,110,58,46,49,50,53,114,101,109,32,48,32,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,53,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,115,109,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,115,109,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,109,100,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,109,100,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,103,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,103,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,120,108,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,120,108,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,97,117,116,111,59,98,111,116,116,111,109,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,49,50,53,114,101,109,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,48,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,48,59,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,46,49,50,53,114,101,109,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,48,59,114,105,103,104,116,58,49,48,48,37,59,108,101,102,116,58,97,117,116,111,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,49,50,53,114,101,109,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,98,101,102,111,114,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,123,114,105,103,104,116,58,97,117,116,111,59,98,111,116,116,111,109,58,97,117,116,111,125,46,100,114,111,112,100,111,119,110,45,100,105,118,105,100,101,114,123,104,101,105,103,104,116,58,48,59,109,97,114,103,105,110,58,46,53,114,101,109,32,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,101,57,101,99,101,102,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,49,46,53,114,101,109,59,99,108,101,97,114,58,98,111,116,104,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,102,111,99,117,115,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,54,49,56,49,98,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,46,97,99,116,105,118,101,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,46,100,105,115,97,98,108,101,100,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,46,115,104,111,119,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,100,114,111,112,100,111,119,110,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,46,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,45,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,49,46,53,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,98,116,110,45,103,114,111,117,112,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,104,111,118,101,114,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,49,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,46,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,102,111,99,117,115,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,46,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,49,125,46,98,116,110,45,116,111,111,108,98,97,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,98,116,110,45,116,111,111,108,98,97,114,32,46,105,110,112,117,116,45,103,114,111,117,112,123,119,105,100,116,104,58,97,117,116,111,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,54,50,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,54,50,53,114,101,109,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,97,102,116,101,114,44,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,97,102,116,101,114,44,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,98,101,102,111,114,101,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,125,46,98,116,110,45,103,114,111,117,112,45,115,109,62,46,98,116,110,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,44,46,98,116,110,45,115,109,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,51,55,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,51,55,53,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,108,103,62,46,98,116,110,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,44,46,98,116,110,45,108,103,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,55,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,55,53,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,123,119,105,100,116,104,58,49,48,48,37,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,116,111,112,58,45,49,112,120,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,99,108,105,112,58,114,101,99,116,40,48,44,48,44,48,44,48,41,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,105,110,112,117,116,45,103,114,111,117,112,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,59,119,105,100,116,104,58,49,48,48,37,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,119,105,100,116,104,58,49,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,102,111,114,109,45,99,111,110,116,114,111,108,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,51,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,52,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,58,102,111,99,117,115,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,51,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,109,97,114,103,105,110,45,116,111,112,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,116,101,120,116,97,114,101,97,41,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,116,101,120,116,97,114,101,97,41,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,125,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,55,53,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,108,97,115,116,45,99,104,105,108,100,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,108,97,115,116,45,99,104,105,108,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,102,105,114,115,116,45,99,104,105,108,100,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,102,105,114,115,116,45,99,104,105,108,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,105,110,45,104,101,105,103,104,116,58,49,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,45,49,59,111,112,97,99,105,116,121,58,48,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,46,50,53,114,101,109,59,108,101,102,116,58,45,49,46,53,114,101,109,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,35,97,100,98,53,98,100,32,115,111,108,105,100,32,49,112,120,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,46,50,53,114,101,109,59,108,101,102,116,58,45,49,46,53,114,101,109,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,58,110,111,45,114,101,112,101,97,116,32,53,48,37,47,53,48,37,32,53,48,37,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,100,61,39,77,54,46,53,54,52,46,55,53,108,45,51,46,53,57,32,51,46,54,49,50,45,49,46,53,51,56,45,49,46,53,53,76,48,32,52,46,50,54,32,50,46,57,55,52,32,55,46,50,53,32,56,32,50,46,49,57,51,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,52,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,37,50,51,102,102,102,39,32,100,61,39,77,48,32,50,104,52,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,45,52,32,45,52,32,56,32,56,39,37,51,101,37,51,99,99,105,114,99,108,101,32,114,61,39,51,39,32,102,105,108,108,61,39,37,50,51,102,102,102,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,123,112,97,100,100,105,110,103,45,108,101,102,116,58,50,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,108,101,102,116,58,45,50,46,50,53,114,101,109,59,119,105,100,116,104,58,49,46,55,53,114,101,109,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,108,108,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,116,111,112,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,50,112,120,41,59,108,101,102,116,58,99,97,108,99,40,45,50,46,50,53,114,101,109,32,43,32,50,112,120,41,59,119,105,100,116,104,58,99,97,108,99,40,49,114,101,109,32,45,32,52,112,120,41,59,104,101,105,103,104,116,58,99,97,108,99,40,49,114,101,109,32,45,32,52,112,120,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,46,55,53,114,101,109,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,46,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,49,46,55,53,114,101,109,32,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,53,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,51,52,51,97,52,48,39,32,100,61,39,77,50,32,48,76,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,110,111,45,114,101,112,101,97,116,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,58,58,45,109,115,45,118,97,108,117,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,91,109,117,108,116,105,112,108,101,93,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,91,115,105,122,101,93,58,110,111,116,40,91,115,105,122,101,61,34,49,34,93,41,123,104,101,105,103,104,116,58,97,117,116,111,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,58,45,109,115,45,101,120,112,97,110,100,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,45,115,109,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,45,108,103,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,102,105,108,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,109,97,114,103,105,110,58,48,59,111,112,97,99,105,116,121,58,48,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,108,97,110,103,40,101,110,41,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,34,66,114,111,119,115,101,34,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,91,100,97,116,97,45,98,114,111,119,115,101,93,58,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,97,116,116,114,40,100,97,116,97,45,98,114,111,119,115,101,41,125,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,122,45,105,110,100,101,120,58,51,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,99,111,110,116,101,110,116,58,34,66,114,111,119,115,101,34,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,108,101,102,116,58,105,110,104,101,114,105,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,32,46,50,53,114,101,109,32,46,50,53,114,101,109,32,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,114,101,109,32,43,32,46,52,114,101,109,41,59,112,97,100,100,105,110,103,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,109,115,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,102,111,99,117,115,45,111,117,116,101,114,123,98,111,114,100,101,114,58,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,102,105,108,108,45,108,111,119,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,102,105,108,108,45,117,112,112,101,114,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,112,120,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,115,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,110,97,118,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,110,97,118,45,108,105,110,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,125,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,110,97,118,45,116,97,98,115,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,105,116,101,109,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,57,101,99,101,102,32,35,101,57,101,99,101,102,32,35,100,101,101,50,101,54,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,105,116,101,109,46,115,104,111,119,32,46,110,97,118,45,108,105,110,107,44,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,32,35,100,101,101,50,101,54,32,35,102,102,102,125,46,110,97,118,45,116,97,98,115,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,109,97,114,103,105,110,45,116,111,112,58,45,49,112,120,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,110,97,118,45,112,105,108,108,115,32,46,110,97,118,45,108,105,110,107,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,45,112,105,108,108,115,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,45,112,105,108,108,115,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,110,97,118,45,102,105,108,108,32,46,110,97,118,45,105,116,101,109,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,46,110,97,118,45,106,117,115,116,105,102,105,101,100,32,46,110,97,118,45,105,116,101,109,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,46,116,97,98,45,99,111,110,116,101,110,116,62,46,116,97,98,45,112,97,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,45,99,111,110,116,101,110,116,62,46,97,99,116,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,110,97,118,98,97,114,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,125,46,110,97,118,98,97,114,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,125,46,110,97,118,98,97,114,45,98,114,97,110,100,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,45,116,111,112,58,46,51,49,50,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,51,49,50,53,114,101,109,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,98,97,114,45,110,97,118,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,102,108,111,97,116,58,110,111,110,101,125,46,110,97,118,98,97,114,45,116,101,120,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,49,48,48,37,59,102,108,101,120,45,98,97,115,105,115,58,49,48,48,37,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,46,53,101,109,59,104,101,105,103,104,116,58,49,46,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,58,110,111,45,114,101,112,101,97,116,32,99,101,110,116,101,114,32,99,101,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,48,48,37,32,49,48,48,37,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,53,55,53,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,55,54,55,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,57,57,49,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,49,49,57,57,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,55,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,51,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,97,99,116,105,118,101,62,46,110,97,118,45,108,105,110,107,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,115,104,111,119,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,49,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,118,105,101,119,66,111,120,61,39,48,32,48,32,51,48,32,51,48,39,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,53,41,39,32,115,116,114,111,107,101,45,119,105,100,116,104,61,39,50,39,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,39,114,111,117,110,100,39,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,39,49,48,39,32,100,61,39,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,55,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,50,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,97,99,116,105,118,101,62,46,110,97,118,45,108,105,110,107,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,115,104,111,119,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,118,105,101,119,66,111,120,61,39,48,32,48,32,51,48,32,51,48,39,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,53,41,39,32,115,116,114,111,107,101,45,119,105,100,116,104,61,39,50,39,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,39,114,111,117,110,100,39,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,39,49,48,39,32,100,61,39,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,125,46,99,97,114,100,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,109,105,110,45,119,105,100,116,104,58,48,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,98,111,114,100,101,114,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,97,114,100,62,104,114,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,99,97,114,100,62,46,108,105,115,116,45,103,114,111,117,112,58,102,105,114,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,97,114,100,62,46,108,105,115,116,45,103,114,111,117,112,58,108,97,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,97,114,100,45,98,111,100,121,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,112,97,100,100,105,110,103,58,49,46,50,53,114,101,109,125,46,99,97,114,100,45,116,105,116,108,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,46,99,97,114,100,45,115,117,98,116,105,116,108,101,123,109,97,114,103,105,110,45,116,111,112,58,45,46,51,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,116,101,120,116,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,108,105,110,107,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,99,97,114,100,45,108,105,110,107,43,46,99,97,114,100,45,108,105,110,107,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,50,53,114,101,109,125,46,99,97,114,100,45,104,101,97,100,101,114,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,51,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,99,97,114,100,45,104,101,97,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,48,32,48,125,46,99,97,114,100,45,104,101,97,100,101,114,43,46,108,105,115,116,45,103,114,111,117,112,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,58,48,125,46,99,97,114,100,45,102,111,111,116,101,114,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,51,41,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,99,97,114,100,45,102,111,111,116,101,114,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,32,48,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,104,101,97,100,101,114,45,116,97,98,115,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,54,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,55,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,46,54,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,104,101,97,100,101,114,45,112,105,108,108,115,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,54,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,46,54,50,53,114,101,109,125,46,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,112,97,100,100,105,110,103,58,49,46,50,53,114,101,109,125,46,99,97,114,100,45,105,109,103,123,119,105,100,116,104,58,49,48,48,37,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,105,109,103,45,116,111,112,123,119,105,100,116,104,58,49,48,48,37,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,119,105,100,116,104,58,49,48,48,37,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,100,101,99,107,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,125,46,99,97,114,100,45,100,101,99,107,32,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,53,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,100,101,99,107,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,53,112,120,125,46,99,97,114,100,45,100,101,99,107,32,46,99,97,114,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,58,49,32,48,32,48,37,59,102,108,101,120,58,49,32,48,32,48,37,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,49,53,112,120,125,125,46,99,97,114,100,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,53,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,103,114,111,117,112,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,123,45,109,115,45,102,108,101,120,58,49,32,48,32,48,37,59,102,108,101,120,58,49,32,48,32,48,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,43,46,99,97,114,100,123,109,97,114,103,105,110,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,108,101,102,116,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,104,101,97,100,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,102,111,111,116,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,104,101,97,100,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,102,111,111,116,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,46,99,97,114,100,45,99,111,108,117,109,110,115,32,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,99,111,108,117,109,110,115,123,45,119,101,98,107,105,116,45,99,111,108,117,109,110,45,99,111,117,110,116,58,51,59,45,109,111,122,45,99,111,108,117,109,110,45,99,111,117,110,116,58,51,59,99,111,108,117,109,110,45,99,111,117,110,116,58,51,59,45,119,101,98,107,105,116,45,99,111,108,117,109,110,45,103,97,112,58,49,46,50,53,114,101,109,59,45,109,111,122,45,99,111,108,117,109,110,45,103,97,112,58,49,46,50,53,114,101,109,59,99,111,108,117,109,110,45,103,97,112,58,49,46,50,53,114,101,109,59,111,114,112,104,97,110,115,58,49,59,119,105,100,111,119,115,58,49,125,46,99,97,114,100,45,99,111,108,117,109,110,115,32,46,99,97,114,100,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,111,102,45,116,121,112,101,41,32,46,99,97,114,100,45,104,101,97,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,111,102,45,116,121,112,101,41,58,110,111,116,40,58,108,97,115,116,45,111,102,45,116,121,112,101,41,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,102,105,114,115,116,45,111,102,45,116,121,112,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,108,97,115,116,45,111,102,45,116,121,112,101,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,32,46,99,97,114,100,45,104,101,97,100,101,114,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,125,46,98,114,101,97,100,99,114,117,109,98,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,99,111,110,116,101,110,116,58,34,47,34,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,112,97,103,105,110,97,116,105,111,110,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,108,105,110,107,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,53,59,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,112,97,103,101,45,108,105,110,107,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,50,59,99,111,108,111,114,58,35,48,48,53,54,98,51,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,112,97,103,101,45,108,105,110,107,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,50,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,109,97,114,103,105,110,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,105,116,101,109,46,97,99,116,105,118,101,32,46,112,97,103,101,45,108,105,110,107,123,122,45,105,110,100,101,120,58,49,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,112,97,103,101,45,105,116,101,109,46,100,105,115,97,98,108,101,100,32,46,112,97,103,101,45,108,105,110,107,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,99,117,114,115,111,114,58,97,117,116,111,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,108,105,110,107,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,108,105,110,107,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,98,97,100,103,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,50,53,101,109,32,46,52,101,109,59,102,111,110,116,45,115,105,122,101,58,55,53,37,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,97,100,103,101,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,97,46,98,97,100,103,101,58,102,111,99,117,115,44,97,46,98,97,100,103,101,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,97,100,103,101,58,101,109,112,116,121,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,98,116,110,32,46,98,97,100,103,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,111,112,58,45,49,112,120,125,46,98,97,100,103,101,45,112,105,108,108,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,54,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,54,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,48,114,101,109,125,46,98,97,100,103,101,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,125,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,125,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,48,56,44,49,49,55,44,49,50,53,44,46,53,41,125,46,98,97,100,103,101,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,125,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,97,100,103,101,45,105,110,102,111,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,97,46,98,97,100,103,101,45,105,110,102,111,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,125,97,46,98,97,100,103,101,45,105,110,102,111,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,105,110,102,111,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,97,100,103,101,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,125,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,97,100,103,101,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,125,97,46,98,97,100,103,101,45,100,97,110,103,101,114,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,97,100,103,101,45,108,105,103,104,116,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,97,46,98,97,100,103,101,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,125,97,46,98,97,100,103,101,45,108,105,103,104,116,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,108,105,103,104,116,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,97,100,103,101,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,97,46,98,97,100,103,101,45,100,97,114,107,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,125,97,46,98,97,100,103,101,45,100,97,114,107,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,114,107,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,106,117,109,98,111,116,114,111,110,123,112,97,100,100,105,110,103,58,50,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,50,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,106,117,109,98,111,116,114,111,110,123,112,97,100,100,105,110,103,58,52,114,101,109,32,50,114,101,109,125,125,46,106,117,109,98,111,116,114,111,110,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,97,108,101,114,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,97,108,101,114,116,45,104,101,97,100,105,110,103,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,97,108,101,114,116,45,108,105,110,107,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,52,114,101,109,125,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,32,46,99,108,111,115,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,99,101,53,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,48,50,55,53,50,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,50,101,51,101,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,50,48,50,51,50,54,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,52,101,100,100,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,98,50,101,49,51,125,46,97,108,101,114,116,45,105,110,102,111,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,49,101,99,102,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,97,108,101,114,116,45,105,110,102,111,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,97,108,101,114,116,45,105,110,102,111,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,54,50,99,51,51,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,51,99,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,53,51,51,102,48,51,125,46,97,108,101,114,116,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,100,55,100,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,97,108,101,114,116,45,100,97,110,103,101,114,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,97,108,101,114,116,45,100,97,110,103,101,114,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,52,57,49,50,49,55,125,46,97,108,101,114,116,45,108,105,103,104,116,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,101,102,101,102,101,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,97,108,101,114,116,45,108,105,103,104,116,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,97,108,101,114,116,45,108,105,103,104,116,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,54,56,54,56,54,56,125,46,97,108,101,114,116,45,100,97,114,107,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,57,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,97,108,101,114,116,45,100,97,114,107,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,97,108,101,114,116,45,100,97,114,107,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,52,48,53,48,53,125,64,45,119,101,98,107,105,116,45,107,101,121,102,114,97,109,101,115,32,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,123,102,114,111,109,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,114,101,109,32,48,125,116,111,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,125,125,64,107,101,121,102,114,97,109,101,115,32,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,123,102,114,111,109,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,114,101,109,32,48,125,116,111,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,125,125,46,112,114,111,103,114,101,115,115,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,104,101,105,103,104,116,58,49,114,101,109,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,102,111,110,116,45,115,105,122,101,58,46,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,114,111,103,114,101,115,115,45,98,97,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,114,97,110,115,105,116,105,111,110,58,119,105,100,116,104,32,46,54,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,112,114,111,103,114,101,115,115,45,98,97,114,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,53,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,53,48,37,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,53,41,32,53,48,37,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,53,41,32,55,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,116,114,97,110,115,112,97,114,101,110,116,41,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,114,101,109,32,49,114,101,109,125,46,112,114,111,103,114,101,115,115,45,98,97,114,45,97,110,105,109,97,116,101,100,123,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,32,49,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,59,97,110,105,109,97,116,105,111,110,58,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,32,49,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,112,114,111,103,114,101,115,115,45,98,97,114,45,97,110,105,109,97,116,101,100,123,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,110,111,110,101,59,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,46,109,101,100,105,97,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,125,46,109,101,100,105,97,45,98,111,100,121,123,45,109,115,45,102,108,101,120,58,49,59,102,108,101,120,58,49,125,46,108,105,115,116,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,123,119,105,100,116,104,58,49,48,48,37,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,49,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,97,99,116,105,118,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,100,105,115,97,98,108,101,100,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,122,45,105,110,100,101,120,58,50,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,98,111,114,100,101,114,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,58,102,105,114,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,58,108,97,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,52,48,56,53,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,56,51,100,52,49,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,53,53,55,50,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,99,53,52,54,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,53,54,52,48,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,55,50,49,99,50,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,49,56,49,56,50,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,98,49,101,50,49,125,46,99,108,111,115,101,123,102,108,111,97,116,58,114,105,103,104,116,59,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,99,111,108,111,114,58,35,48,48,48,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,49,112,120,32,48,32,35,102,102,102,59,111,112,97,99,105,116,121,58,46,53,125,46,99,108,111,115,101,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,48,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,99,108,111,115,101,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,102,111,99,117,115,44,46,99,108,111,115,101,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,104,111,118,101,114,123,111,112,97,99,105,116,121,58,46,55,53,125,98,117,116,116,111,110,46,99,108,111,115,101,123,112,97,100,100,105,110,103,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,97,46,99,108,111,115,101,46,100,105,115,97,98,108,101,100,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,116,111,97,115,116,123,109,97,120,45,119,105,100,116,104,58,51,53,48,112,120,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,56,53,41,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,46,50,53,114,101,109,32,46,55,53,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,59,45,119,101,98,107,105,116,45,98,97,99,107,100,114,111,112,45,102,105,108,116,101,114,58,98,108,117,114,40,49,48,112,120,41,59,98,97,99,107,100,114,111,112,45,102,105,108,116,101,114,58,98,108,117,114,40,49,48,112,120,41,59,111,112,97,99,105,116,121,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,116,111,97,115,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,46,116,111,97,115,116,46,115,104,111,119,105,110,103,123,111,112,97,99,105,116,121,58,49,125,46,116,111,97,115,116,46,115,104,111,119,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,111,112,97,99,105,116,121,58,49,125,46,116,111,97,115,116,46,104,105,100,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,111,97,115,116,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,56,53,41,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,48,53,41,125,46,116,111,97,115,116,45,98,111,100,121,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,125,46,109,111,100,97,108,45,111,112,101,110,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,109,111,100,97,108,45,111,112,101,110,32,46,109,111,100,97,108,123,111,118,101,114,102,108,111,119,45,120,58,104,105,100,100,101,110,59,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,125,46,109,111,100,97,108,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,53,48,59,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,111,117,116,108,105,110,101,58,48,125,46,109,111,100,97,108,45,100,105,97,108,111,103,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,97,117,116,111,59,109,97,114,103,105,110,58,46,53,114,101,109,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,109,111,100,97,108,46,102,97,100,101,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,48,44,45,53,48,112,120,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,48,44,45,53,48,112,120,41,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,109,111,100,97,108,46,102,97,100,101,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,109,111,100,97,108,46,115,104,111,119,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,49,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,49,114,101,109,41,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,102,111,111,116,101,114,44,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,104,101,97,100,101,114,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,59,102,108,101,120,45,115,104,114,105,110,107,58,48,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,98,111,100,121,123,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,49,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,49,114,101,109,41,59,99,111,110,116,101,110,116,58,34,34,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,104,101,105,103,104,116,58,49,48,48,37,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,110,111,110,101,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,58,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,110,111,110,101,125,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,119,105,100,116,104,58,49,48,48,37,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,59,111,117,116,108,105,110,101,58,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,52,48,59,119,105,100,116,104,58,49,48,48,118,119,59,104,101,105,103,104,116,58,49,48,48,118,104,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,46,102,97,100,101,123,111,112,97,99,105,116,121,58,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,46,115,104,111,119,123,111,112,97,99,105,116,121,58,46,53,125,46,109,111,100,97,108,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,59,112,97,100,100,105,110,103,58,49,114,101,109,32,49,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,109,111,100,97,108,45,104,101,97,100,101,114,32,46,99,108,111,115,101,123,112,97,100,100,105,110,103,58,49,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,58,45,49,114,101,109,32,45,49,114,101,109,32,45,49,114,101,109,32,97,117,116,111,125,46,109,111,100,97,108,45,116,105,116,108,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,109,111,100,97,108,45,98,111,100,121,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,112,97,100,100,105,110,103,58,49,114,101,109,125,46,109,111,100,97,108,45,102,111,111,116,101,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,59,112,97,100,100,105,110,103,58,49,114,101,109,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,109,111,100,97,108,45,102,111,111,116,101,114,62,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,125,46,109,111,100,97,108,45,102,111,111,116,101,114,62,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,125,46,109,111,100,97,108,45,115,99,114,111,108,108,98,97,114,45,109,101,97,115,117,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,45,57,57,57,57,112,120,59,119,105,100,116,104,58,53,48,112,120,59,104,101,105,103,104,116,58,53,48,112,120,59,111,118,101,114,102,108,111,119,58,115,99,114,111,108,108,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,109,111,100,97,108,45,100,105,97,108,111,103,123,109,97,120,45,119,105,100,116,104,58,53,48,48,112,120,59,109,97,114,103,105,110,58,49,46,55,53,114,101,109,32,97,117,116,111,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,123,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,58,58,98,101,102,111,114,101,123,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,115,109,123,109,97,120,45,119,105,100,116,104,58,51,48,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,109,111,100,97,108,45,108,103,44,46,109,111,100,97,108,45,120,108,123,109,97,120,45,119,105,100,116,104,58,56,48,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,109,111,100,97,108,45,120,108,123,109,97,120,45,119,105,100,116,104,58,49,49,52,48,112,120,125,125,46,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,49,48,55,48,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,115,116,97,114,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,59,119,111,114,100,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,108,105,110,101,45,98,114,101,97,107,58,97,117,116,111,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,111,112,97,99,105,116,121,58,48,125,46,116,111,111,108,116,105,112,46,115,104,111,119,123,111,112,97,99,105,116,121,58,46,57,125,46,116,111,111,108,116,105,112,32,46,97,114,114,111,119,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,46,56,114,101,109,59,104,101,105,103,104,116,58,46,52,114,101,109,125,46,116,111,111,108,116,105,112,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,115,116,121,108,101,58,115,111,108,105,100,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,123,112,97,100,100,105,110,103,58,46,52,114,101,109,32,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,123,98,111,116,116,111,109,58,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,116,111,112,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,46,52,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,123,112,97,100,100,105,110,103,58,48,32,46,52,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,123,108,101,102,116,58,48,59,119,105,100,116,104,58,46,52,114,101,109,59,104,101,105,103,104,116,58,46,56,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,46,52,114,101,109,32,46,52,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,123,112,97,100,100,105,110,103,58,46,52,114,101,109,32,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,123,116,111,112,58,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,52,114,101,109,32,46,52,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,123,112,97,100,100,105,110,103,58,48,32,46,52,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,123,114,105,103,104,116,58,48,59,119,105,100,116,104,58,46,52,114,101,109,59,104,101,105,103,104,116,58,46,56,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,108,101,102,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,48,32,46,52,114,101,109,32,46,52,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,48,48,48,125,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,109,97,120,45,119,105,100,116,104,58,50,48,48,112,120,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,111,112,111,118,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,54,48,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,120,45,119,105,100,116,104,58,50,55,54,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,115,116,97,114,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,59,119,111,114,100,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,108,105,110,101,45,98,114,101,97,107,58,97,117,116,111,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,46,53,114,101,109,59,109,97,114,103,105,110,58,48,32,46,51,114,101,109,125,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,115,116,121,108,101,58,115,111,108,105,100,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,123,98,111,116,116,111,109,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,116,116,111,109,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,123,108,101,102,116,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,59,119,105,100,116,104,58,46,53,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,58,46,51,114,101,109,32,48,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,108,101,102,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,108,101,102,116,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,123,116,111,112,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,116,111,112,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,116,111,112,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,53,48,37,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,102,55,102,55,102,55,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,123,114,105,103,104,116,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,59,119,105,100,116,104,58,46,53,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,58,46,51,114,101,109,32,48,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,48,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,114,105,103,104,116,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,48,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,102,102,125,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,55,102,55,102,55,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,101,98,101,98,101,98,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,125,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,101,109,112,116,121,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,112,111,112,111,118,101,114,45,98,111,100,121,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,99,97,114,111,117,115,101,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,99,97,114,111,117,115,101,108,46,112,111,105,110,116,101,114,45,101,118,101,110,116,123,45,109,115,45,116,111,117,99,104,45,97,99,116,105,111,110,58,112,97,110,45,121,59,116,111,117,99,104,45,97,99,116,105,111,110,58,112,97,110,45,121,125,46,99,97,114,111,117,115,101,108,45,105,110,110,101,114,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,99,97,114,111,117,115,101,108,45,105,110,110,101,114,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,34,34,125,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,110,111,110,101,59,102,108,111,97,116,58,108,101,102,116,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,48,48,37,59,45,119,101,98,107,105,116,45,98,97,99,107,102,97,99,101,45,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,59,98,97,99,107,102,97,99,101,45,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,59,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,46,97,99,116,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,58,110,111,116,40,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,41,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,49,48,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,49,48,48,37,41,125,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,58,110,111,116,40,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,41,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,45,49,48,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,45,49,48,48,37,41,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,105,116,105,111,110,45,112,114,111,112,101,114,116,121,58,111,112,97,99,105,116,121,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,46,97,99,116,105,118,101,123,122,45,105,110,100,101,120,58,49,59,111,112,97,99,105,116,121,58,49,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,123,122,45,105,110,100,101,120,58,48,59,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,105,116,105,111,110,58,48,115,32,46,54,115,32,111,112,97,99,105,116,121,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,122,45,105,110,100,101,120,58,49,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,119,105,100,116,104,58,49,53,37,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,111,112,97,99,105,116,121,58,46,53,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,49,53,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,58,102,111,99,117,115,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,58,104,111,118,101,114,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,58,102,111,99,117,115,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,111,117,116,108,105,110,101,58,48,59,111,112,97,99,105,116,121,58,46,57,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,108,101,102,116,58,48,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,123,114,105,103,104,116,58,48,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,45,105,99,111,110,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,45,105,99,111,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,48,112,120,59,104,101,105,103,104,116,58,50,48,112,120,59,98,97,99,107,103,114,111,117,110,100,58,110,111,45,114,101,112,101,97,116,32,53,48,37,47,49,48,48,37,32,49,48,48,37,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,100,61,39,77,53,46,50,53,32,48,108,45,52,32,52,32,52,32,52,32,49,46,53,45,49,46,53,45,50,46,53,45,50,46,53,32,50,46,53,45,50,46,53,45,49,46,53,45,49,46,53,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,100,61,39,77,50,46,55,53,32,48,108,45,49,46,53,32,49,46,53,32,50,46,53,32,50,46,53,45,50,46,53,32,50,46,53,32,49,46,53,32,49,46,53,32,52,45,52,45,52,45,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,53,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,37,59,109,97,114,103,105,110,45,108,101,102,116,58,49,53,37,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,108,105,123,98,111,120,45,115,105,122,105,110,103,58,99,111,110,116,101,110,116,45,98,111,120,59,45,109,115,45,102,108,101,120,58,48,32,49,32,97,117,116,111,59,102,108,101,120,58,48,32,49,32,97,117,116,111,59,119,105,100,116,104,58,51,48,112,120,59,104,101,105,103,104,116,58,51,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,51,112,120,59,116,101,120,116,45,105,110,100,101,110,116,58,45,57,57,57,112,120,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,45,116,111,112,58,49,48,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,48,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,111,112,97,99,105,116,121,58,46,53,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,54,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,108,105,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,46,97,99,116,105,118,101,123,111,112,97,99,105,116,121,58,49,125,46,99,97,114,111,117,115,101,108,45,99,97,112,116,105,111,110,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,49,53,37,59,98,111,116,116,111,109,58,50,48,112,120,59,108,101,102,116,58,49,53,37,59,122,45,105,110,100,101,120,58,49,48,59,112,97,100,100,105,110,103,45,116,111,112,58,50,48,112,120,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,50,48,112,120,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,64,45,119,101,98,107,105,116,45,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,98,111,114,100,101,114,123,116,111,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,59,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,125,125,64,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,98,111,114,100,101,114,123,116,111,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,59,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,125,125,46,115,112,105,110,110,101,114,45,98,111,114,100,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,114,101,109,59,104,101,105,103,104,116,58,50,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,59,98,111,114,100,101,114,58,46,50,53,101,109,32,115,111,108,105,100,32,99,117,114,114,101,110,116,67,111,108,111,114,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,59,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,98,111,114,100,101,114,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,59,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,98,111,114,100,101,114,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,125,46,115,112,105,110,110,101,114,45,98,111,114,100,101,114,45,115,109,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,50,101,109,125,64,45,119,101,98,107,105,116,45,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,103,114,111,119,123,48,37,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,125,53,48,37,123,111,112,97,99,105,116,121,58,49,125,125,64,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,103,114,111,119,123,48,37,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,125,53,48,37,123,111,112,97,99,105,116,121,58,49,125,125,46,115,112,105,110,110,101,114,45,103,114,111,119,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,114,101,109,59,104,101,105,103,104,116,58,50,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,99,117,114,114,101,110,116,67,111,108,111,114,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,59,111,112,97,99,105,116,121,58,48,59,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,103,114,111,119,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,59,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,103,114,111,119,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,125,46,115,112,105,110,110,101,114,45,103,114,111,119,45,115,109,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,125,46,97,108,105,103,110,45,98,97,115,101,108,105,110,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,111,112,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,109,105,100,100,108,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,98,111,116,116,111,109,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,111,116,116,111,109,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,101,120,116,45,98,111,116,116,111,109,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,101,120,116,45,116,111,112,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,112,114,105,109,97,114,121,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,98,103,45,112,114,105,109,97,114,121,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,115,101,99,111,110,100,97,114,121,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,98,103,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,115,117,99,99,101,115,115,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,98,103,45,115,117,99,99,101,115,115,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,105,110,102,111,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,105,110,102,111,58,102,111,99,117,115,44,97,46,98,103,45,105,110,102,111,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,105,110,102,111,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,105,110,102,111,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,119,97,114,110,105,110,103,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,98,103,45,119,97,114,110,105,110,103,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,100,97,110,103,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,98,103,45,100,97,110,103,101,114,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,100,97,110,103,101,114,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,100,97,110,103,101,114,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,108,105,103,104,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,98,103,45,108,105,103,104,116,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,108,105,103,104,116,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,108,105,103,104,116,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,100,97,114,107,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,100,97,114,107,58,102,111,99,117,115,44,97,46,98,103,45,100,97,114,107,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,100,97,114,107,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,100,97,114,107,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,119,104,105,116,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,116,114,97,110,115,112,97,114,101,110,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,114,105,103,104,116,123,98,111,114,100,101,114,45,114,105,103,104,116,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,101,102,116,123,98,111,114,100,101,114,45,108,101,102,116,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,48,123,98,111,114,100,101,114,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,116,111,112,45,48,123,98,111,114,100,101,114,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,114,105,103,104,116,45,48,123,98,111,114,100,101,114,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,98,111,116,116,111,109,45,48,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,101,102,116,45,48,123,98,111,114,100,101,114,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,112,114,105,109,97,114,121,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,115,101,99,111,110,100,97,114,121,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,115,117,99,99,101,115,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,105,110,102,111,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,119,97,114,110,105,110,103,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,100,97,110,103,101,114,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,105,103,104,116,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,100,97,114,107,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,119,104,105,116,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,115,109,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,114,105,103,104,116,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,108,101,102,116,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,108,103,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,99,105,114,99,108,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,112,105,108,108,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,48,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,33,105,109,112,111,114,116,97,110,116,125,46,99,108,101,97,114,102,105,120,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,34,34,125,46,100,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,100,45,115,109,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,100,45,109,100,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,100,45,108,103,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,100,45,120,108,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,112,114,105,110,116,123,46,100,45,112,114,105,110,116,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,111,110,116,101,110,116,58,34,34,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,105,116,101,109,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,101,109,98,101,100,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,105,102,114,97,109,101,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,111,98,106,101,99,116,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,118,105,100,101,111,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,98,111,114,100,101,114,58,48,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,50,49,98,121,57,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,52,50,46,56,53,55,49,52,51,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,49,54,98,121,57,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,53,54,46,50,53,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,52,98,121,51,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,55,53,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,49,98,121,49,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,49,48,48,37,125,46,102,108,101,120,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,108,101,120,45,115,109,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,108,101,120,45,109,100,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,102,108,101,120,45,108,103,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,102,108,101,120,45,120,108,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,46,102,108,111,97,116,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,108,111,97,116,45,115,109,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,115,109,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,115,109,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,108,111,97,116,45,109,100,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,109,100,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,109,100,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,102,108,111,97,116,45,108,103,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,108,103,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,108,103,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,102,108,111,97,116,45,120,108,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,120,108,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,120,108,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,46,111,118,101,114,102,108,111,119,45,97,117,116,111,123,111,118,101,114,102,108,111,119,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,111,118,101,114,102,108,111,119,45,104,105,100,100,101,110,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,115,116,97,116,105,99,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,114,101,108,97,116,105,118,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,97,98,115,111,108,117,116,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,102,105,120,101,100,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,115,116,105,99,107,121,123,112,111,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,115,116,105,99,107,121,33,105,109,112,111,114,116,97,110,116,59,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,33,105,109,112,111,114,116,97,110,116,125,46,102,105,120,101,100,45,116,111,112,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,51,48,125,46,102,105,120,101,100,45,98,111,116,116,111,109,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,51,48,125,64,115,117,112,112,111,114,116,115,32,40,40,112,111,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,115,116,105,99,107,121,41,32,111,114,32,40,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,41,41,123,46,115,116,105,99,107,121,45,116,111,112,123,112,111,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,115,116,105,99,107,121,59,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,59,116,111,112,58,48,59,122,45,105,110,100,101,120,58,49,48,50,48,125,125,46,115,114,45,111,110,108,121,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,119,105,100,116,104,58,49,112,120,59,104,101,105,103,104,116,58,49,112,120,59,112,97,100,100,105,110,103,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,99,108,105,112,58,114,101,99,116,40,48,44,48,44,48,44,48,41,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,111,114,100,101,114,58,48,125,46,115,114,45,111,110,108,121,45,102,111,99,117,115,97,98,108,101,58,97,99,116,105,118,101,44,46,115,114,45,111,110,108,121,45,102,111,99,117,115,97,98,108,101,58,102,111,99,117,115,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,119,105,100,116,104,58,97,117,116,111,59,104,101,105,103,104,116,58,97,117,116,111,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,59,99,108,105,112,58,97,117,116,111,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,125,46,115,104,97,100,111,119,45,115,109,123,98,111,120,45,115,104,97,100,111,119,58,48,32,46,49,50,53,114,101,109,32,46,50,53,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,123,98,111,120,45,115,104,97,100,111,119,58,48,32,46,53,114,101,109,32,49,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,45,108,103,123,98,111,120,45,115,104,97,100,111,119,58,48,32,49,114,101,109,32,51,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,55,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,45,110,111,110,101,123,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,119,45,50,53,123,119,105,100,116,104,58,50,53,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,53,48,123,119,105,100,116,104,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,55,53,123,119,105,100,116,104,58,55,53,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,49,48,48,123,119,105,100,116,104,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,97,117,116,111,123,119,105,100,116,104,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,104,45,50,53,123,104,101,105,103,104,116,58,50,53,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,53,48,123,104,101,105,103,104,116,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,55,53,123,104,101,105,103,104,116,58,55,53,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,49,48,48,123,104,101,105,103,104,116,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,97,117,116,111,123,104,101,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,119,45,49,48,48,123,109,97,120,45,119,105,100,116,104,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,109,104,45,49,48,48,123,109,97,120,45,104,101,105,103,104,116,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,109,105,110,45,118,119,45,49,48,48,123,109,105,110,45,119,105,100,116,104,58,49,48,48,118,119,33,105,109,112,111,114,116,97,110,116,125,46,109,105,110,45,118,104,45,49,48,48,123,109,105,110,45,104,101,105,103,104,116,58,49,48,48,118,104,33,105,109,112,111,114,116,97,110,116,125,46,118,119,45,49,48,48,123,119,105,100,116,104,58,49,48,48,118,119,33,105,109,112,111,114,116,97,110,116,125,46,118,104,45,49,48,48,123,104,101,105,103,104,116,58,49,48,48,118,104,33,105,109,112,111,114,116,97,110,116,125,46,115,116,114,101,116,99,104,101,100,45,108,105,110,107,58,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,48,41,125,46,109,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,48,44,46,109,121,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,48,44,46,109,120,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,48,44,46,109,121,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,48,44,46,109,120,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,49,44,46,109,121,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,49,44,46,109,120,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,49,44,46,109,121,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,49,44,46,109,120,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,50,44,46,109,121,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,50,44,46,109,120,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,50,44,46,109,121,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,50,44,46,109,120,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,51,44,46,109,121,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,51,44,46,109,120,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,51,44,46,109,121,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,51,44,46,109,120,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,52,44,46,109,121,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,52,44,46,109,120,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,52,44,46,109,121,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,52,44,46,109,120,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,53,44,46,109,121,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,53,44,46,109,120,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,53,44,46,109,121,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,53,44,46,109,120,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,48,44,46,112,121,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,48,44,46,112,120,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,48,44,46,112,121,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,48,44,46,112,120,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,49,44,46,112,121,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,49,44,46,112,120,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,49,44,46,112,121,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,49,44,46,112,120,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,50,44,46,112,121,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,50,44,46,112,120,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,50,44,46,112,121,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,50,44,46,112,120,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,51,44,46,112,121,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,51,44,46,112,120,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,51,44,46,112,121,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,51,44,46,112,120,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,52,44,46,112,121,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,52,44,46,112,120,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,52,44,46,112,121,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,52,44,46,112,120,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,53,44,46,112,121,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,53,44,46,112,120,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,53,44,46,112,121,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,53,44,46,112,120,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,49,44,46,109,121,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,49,44,46,109,120,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,49,44,46,109,121,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,49,44,46,109,120,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,50,44,46,109,121,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,50,44,46,109,120,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,50,44,46,109,121,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,50,44,46,109,120,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,51,44,46,109,121,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,51,44,46,109,120,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,51,44,46,109,121,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,51,44,46,109,120,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,52,44,46,109,121,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,52,44,46,109,120,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,52,44,46,109,121,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,52,44,46,109,120,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,53,44,46,109,121,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,53,44,46,109,120,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,53,44,46,109,121,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,53,44,46,109,120,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,97,117,116,111,44,46,109,121,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,97,117,116,111,44,46,109,120,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,97,117,116,111,44,46,109,121,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,97,117,116,111,44,46,109,120,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,109,45,115,109,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,48,44,46,109,121,45,115,109,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,48,44,46,109,120,45,115,109,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,48,44,46,109,121,45,115,109,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,48,44,46,109,120,45,115,109,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,49,44,46,109,121,45,115,109,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,49,44,46,109,120,45,115,109,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,49,44,46,109,121,45,115,109,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,49,44,46,109,120,45,115,109,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,50,44,46,109,121,45,115,109,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,50,44,46,109,120,45,115,109,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,50,44,46,109,121,45,115,109,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,50,44,46,109,120,45,115,109,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,51,44,46,109,121,45,115,109,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,51,44,46,109,120,45,115,109,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,51,44,46,109,121,45,115,109,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,51,44,46,109,120,45,115,109,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,52,44,46,109,121,45,115,109,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,52,44,46,109,120,45,115,109,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,52,44,46,109,121,45,115,109,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,52,44,46,109,120,45,115,109,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,53,44,46,109,121,45,115,109,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,53,44,46,109,120,45,115,109,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,53,44,46,109,121,45,115,109,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,53,44,46,109,120,45,115,109,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,48,44,46,112,121,45,115,109,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,48,44,46,112,120,45,115,109,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,48,44,46,112,121,45,115,109,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,48,44,46,112,120,45,115,109,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,49,44,46,112,121,45,115,109,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,49,44,46,112,120,45,115,109,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,49,44,46,112,121,45,115,109,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,49,44,46,112,120,45,115,109,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,50,44,46,112,121,45,115,109,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,50,44,46,112,120,45,115,109,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,50,44,46,112,121,45,115,109,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,50,44,46,112,120,45,115,109,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,51,44,46,112,121,45,115,109,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,51,44,46,112,120,45,115,109,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,51,44,46,112,121,45,115,109,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,51,44,46,112,120,45,115,109,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,52,44,46,112,121,45,115,109,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,52,44,46,112,120,45,115,109,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,52,44,46,112,121,45,115,109,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,52,44,46,112,120,45,115,109,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,53,44,46,112,121,45,115,109,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,53,44,46,112,120,45,115,109,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,53,44,46,112,121,45,115,109,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,53,44,46,112,120,45,115,109,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,49,44,46,109,121,45,115,109,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,49,44,46,109,120,45,115,109,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,49,44,46,109,121,45,115,109,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,49,44,46,109,120,45,115,109,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,50,44,46,109,121,45,115,109,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,50,44,46,109,120,45,115,109,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,50,44,46,109,121,45,115,109,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,50,44,46,109,120,45,115,109,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,51,44,46,109,121,45,115,109,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,51,44,46,109,120,45,115,109,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,51,44,46,109,121,45,115,109,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,51,44,46,109,120,45,115,109,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,52,44,46,109,121,45,115,109,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,52,44,46,109,120,45,115,109,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,52,44,46,109,121,45,115,109,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,52,44,46,109,120,45,115,109,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,53,44,46,109,121,45,115,109,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,53,44,46,109,120,45,115,109,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,53,44,46,109,121,45,115,109,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,53,44,46,109,120,45,115,109,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,97,117,116,111,44,46,109,121,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,97,117,116,111,44,46,109,120,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,97,117,116,111,44,46,109,121,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,97,117,116,111,44,46,109,120,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,109,45,109,100,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,48,44,46,109,121,45,109,100,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,48,44,46,109,120,45,109,100,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,48,44,46,109,121,45,109,100,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,48,44,46,109,120,45,109,100,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,49,44,46,109,121,45,109,100,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,49,44,46,109,120,45,109,100,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,49,44,46,109,121,45,109,100,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,49,44,46,109,120,45,109,100,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,50,44,46,109,121,45,109,100,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,50,44,46,109,120,45,109,100,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,50,44,46,109,121,45,109,100,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,50,44,46,109,120,45,109,100,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,51,44,46,109,121,45,109,100,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,51,44,46,109,120,45,109,100,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,51,44,46,109,121,45,109,100,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,51,44,46,109,120,45,109,100,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,52,44,46,109,121,45,109,100,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,52,44,46,109,120,45,109,100,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,52,44,46,109,121,45,109,100,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,52,44,46,109,120,45,109,100,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,53,44,46,109,121,45,109,100,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,53,44,46,109,120,45,109,100,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,53,44,46,109,121,45,109,100,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,53,44,46,109,120,45,109,100,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,48,44,46,112,121,45,109,100,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,48,44,46,112,120,45,109,100,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,48,44,46,112,121,45,109,100,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,48,44,46,112,120,45,109,100,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,49,44,46,112,121,45,109,100,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,49,44,46,112,120,45,109,100,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,49,44,46,112,121,45,109,100,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,49,44,46,112,120,45,109,100,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,50,44,46,112,121,45,109,100,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,50,44,46,112,120,45,109,100,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,50,44,46,112,121,45,109,100,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,50,44,46,112,120,45,109,100,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,51,44,46,112,121,45,109,100,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,51,44,46,112,120,45,109,100,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,51,44,46,112,121,45,109,100,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,51,44,46,112,120,45,109,100,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,52,44,46,112,121,45,109,100,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,52,44,46,112,120,45,109,100,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,52,44,46,112,121,45,109,100,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,52,44,46,112,120,45,109,100,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,53,44,46,112,121,45,109,100,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,53,44,46,112,120,45,109,100,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,53,44,46,112,121,45,109,100,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,53,44,46,112,120,45,109,100,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,49,44,46,109,121,45,109,100,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,49,44,46,109,120,45,109,100,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,49,44,46,109,121,45,109,100,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,49,44,46,109,120,45,109,100,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,50,44,46,109,121,45,109,100,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,50,44,46,109,120,45,109,100,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,50,44,46,109,121,45,109,100,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,50,44,46,109,120,45,109,100,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,51,44,46,109,121,45,109,100,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,51,44,46,109,120,45,109,100,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,51,44,46,109,121,45,109,100,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,51,44,46,109,120,45,109,100,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,52,44,46,109,121,45,109,100,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,52,44,46,109,120,45,109,100,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,52,44,46,109,121,45,109,100,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,52,44,46,109,120,45,109,100,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,53,44,46,109,121,45,109,100,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,53,44,46,109,120,45,109,100,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,53,44,46,109,121,45,109,100,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,53,44,46,109,120,45,109,100,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,97,117,116,111,44,46,109,121,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,97,117,116,111,44,46,109,120,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,97,117,116,111,44,46,109,121,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,97,117,116,111,44,46,109,120,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,109,45,108,103,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,48,44,46,109,121,45,108,103,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,48,44,46,109,120,45,108,103,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,48,44,46,109,121,45,108,103,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,48,44,46,109,120,45,108,103,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,49,44,46,109,121,45,108,103,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,49,44,46,109,120,45,108,103,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,49,44,46,109,121,45,108,103,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,49,44,46,109,120,45,108,103,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,50,44,46,109,121,45,108,103,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,50,44,46,109,120,45,108,103,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,50,44,46,109,121,45,108,103,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,50,44,46,109,120,45,108,103,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,51,44,46,109,121,45,108,103,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,51,44,46,109,120,45,108,103,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,51,44,46,109,121,45,108,103,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,51,44,46,109,120,45,108,103,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,52,44,46,109,121,45,108,103,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,52,44,46,109,120,45,108,103,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,52,44,46,109,121,45,108,103,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,52,44,46,109,120,45,108,103,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,53,44,46,109,121,45,108,103,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,53,44,46,109,120,45,108,103,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,53,44,46,109,121,45,108,103,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,53,44,46,109,120,45,108,103,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,48,44,46,112,121,45,108,103,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,48,44,46,112,120,45,108,103,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,48,44,46,112,121,45,108,103,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,48,44,46,112,120,45,108,103,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,49,44,46,112,121,45,108,103,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,49,44,46,112,120,45,108,103,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,49,44,46,112,121,45,108,103,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,49,44,46,112,120,45,108,103,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,50,44,46,112,121,45,108,103,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,50,44,46,112,120,45,108,103,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,50,44,46,112,121,45,108,103,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,50,44,46,112,120,45,108,103,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,51,44,46,112,121,45,108,103,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,51,44,46,112,120,45,108,103,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,51,44,46,112,121,45,108,103,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,51,44,46,112,120,45,108,103,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,52,44,46,112,121,45,108,103,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,52,44,46,112,120,45,108,103,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,52,44,46,112,121,45,108,103,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,52,44,46,112,120,45,108,103,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,53,44,46,112,121,45,108,103,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,53,44,46,112,120,45,108,103,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,53,44,46,112,121,45,108,103,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,53,44,46,112,120,45,108,103,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,49,44,46,109,121,45,108,103,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,49,44,46,109,120,45,108,103,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,49,44,46,109,121,45,108,103,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,49,44,46,109,120,45,108,103,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,50,44,46,109,121,45,108,103,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,50,44,46,109,120,45,108,103,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,50,44,46,109,121,45,108,103,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,50,44,46,109,120,45,108,103,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,51,44,46,109,121,45,108,103,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,51,44,46,109,120,45,108,103,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,51,44,46,109,121,45,108,103,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,51,44,46,109,120,45,108,103,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,52,44,46,109,121,45,108,103,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,52,44,46,109,120,45,108,103,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,52,44,46,109,121,45,108,103,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,52,44,46,109,120,45,108,103,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,53,44,46,109,121,45,108,103,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,53,44,46,109,120,45,108,103,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,53,44,46,109,121,45,108,103,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,53,44,46,109,120,45,108,103,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,97,117,116,111,44,46,109,121,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,97,117,116,111,44,46,109,120,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,97,117,116,111,44,46,109,121,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,97,117,116,111,44,46,109,120,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,109,45,120,108,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,48,44,46,109,121,45,120,108,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,48,44,46,109,120,45,120,108,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,48,44,46,109,121,45,120,108,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,48,44,46,109,120,45,120,108,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,49,44,46,109,121,45,120,108,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,49,44,46,109,120,45,120,108,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,49,44,46,109,121,45,120,108,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,49,44,46,109,120,45,120,108,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,50,44,46,109,121,45,120,108,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,50,44,46,109,120,45,120,108,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,50,44,46,109,121,45,120,108,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,50,44,46,109,120,45,120,108,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,51,44,46,109,121,45,120,108,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,51,44,46,109,120,45,120,108,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,51,44,46,109,121,45,120,108,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,51,44,46,109,120,45,120,108,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,52,44,46,109,121,45,120,108,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,52,44,46,109,120,45,120,108,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,52,44,46,109,121,45,120,108,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,52,44,46,109,120,45,120,108,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,53,44,46,109,121,45,120,108,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,53,44,46,109,120,45,120,108,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,53,44,46,109,121,45,120,108,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,53,44,46,109,120,45,120,108,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,48,44,46,112,121,45,120,108,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,48,44,46,112,120,45,120,108,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,48,44,46,112,121,45,120,108,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,48,44,46,112,120,45,120,108,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,49,44,46,112,121,45,120,108,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,49,44,46,112,120,45,120,108,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,49,44,46,112,121,45,120,108,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,49,44,46,112,120,45,120,108,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,50,44,46,112,121,45,120,108,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,50,44,46,112,120,45,120,108,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,50,44,46,112,121,45,120,108,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,50,44,46,112,120,45,120,108,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,51,44,46,112,121,45,120,108,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,51,44,46,112,120,45,120,108,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,51,44,46,112,121,45,120,108,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,51,44,46,112,120,45,120,108,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,52,44,46,112,121,45,120,108,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,52,44,46,112,120,45,120,108,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,52,44,46,112,121,45,120,108,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,52,44,46,112,120,45,120,108,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,53,44,46,112,121,45,120,108,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,53,44,46,112,120,45,120,108,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,53,44,46,112,121,45,120,108,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,53,44,46,112,120,45,120,108,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,49,44,46,109,121,45,120,108,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,49,44,46,109,120,45,120,108,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,49,44,46,109,121,45,120,108,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,49,44,46,109,120,45,120,108,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,50,44,46,109,121,45,120,108,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,50,44,46,109,120,45,120,108,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,50,44,46,109,121,45,120,108,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,50,44,46,109,120,45,120,108,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,51,44,46,109,121,45,120,108,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,51,44,46,109,120,45,120,108,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,51,44,46,109,121,45,120,108,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,51,44,46,109,120,45,120,108,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,52,44,46,109,121,45,120,108,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,52,44,46,109,120,45,120,108,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,52,44,46,109,121,45,120,108,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,52,44,46,109,120,45,120,108,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,53,44,46,109,121,45,120,108,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,53,44,46,109,120,45,120,108,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,53,44,46,109,121,45,120,108,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,53,44,46,109,120,45,120,108,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,97,117,116,111,44,46,109,121,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,97,117,116,111,44,46,109,120,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,97,117,116,111,44,46,109,121,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,97,117,116,111,44,46,109,120,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,46,116,101,120,116,45,109,111,110,111,115,112,97,99,101,123,102,111,110,116,45,102,97,109,105,108,121,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,34,67,111,117,114,105,101,114,32,78,101,119,34,44,109,111,110,111,115,112,97,99,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,106,117,115,116,105,102,121,123,116,101,120,116,45,97,108,105,103,110,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,114,97,112,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,110,111,119,114,97,112,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,116,114,117,110,99,97,116,101,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,116,101,120,116,45,111,118,101,114,102,108,111,119,58,101,108,108,105,112,115,105,115,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,116,101,120,116,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,116,101,120,116,45,115,109,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,109,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,109,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,116,101,120,116,45,109,100,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,100,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,100,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,116,101,120,116,45,108,103,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,103,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,103,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,116,101,120,116,45,120,108,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,120,108,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,120,108,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,46,116,101,120,116,45,108,111,119,101,114,99,97,115,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,108,111,119,101,114,99,97,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,117,112,112,101,114,99,97,115,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,117,112,112,101,114,99,97,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,99,97,112,105,116,97,108,105,122,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,99,97,112,105,116,97,108,105,122,101,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,108,105,103,104,116,123,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,108,105,103,104,116,101,114,123,102,111,110,116,45,119,101,105,103,104,116,58,108,105,103,104,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,110,111,114,109,97,108,123,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,98,111,108,100,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,98,111,108,100,101,114,123,102,111,110,116,45,119,101,105,103,104,116,58,98,111,108,100,101,114,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,105,116,97,108,105,99,123,102,111,110,116,45,115,116,121,108,101,58,105,116,97,108,105,99,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,104,105,116,101,123,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,116,101,120,116,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,52,57,52,102,53,52,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,116,101,120,116,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,57,54,57,50,99,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,105,110,102,111,123,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,105,110,102,111,58,102,111,99,117,115,44,97,46,116,101,120,116,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,102,54,54,55,52,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,116,101,120,116,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,98,97,56,98,48,48,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,116,101,120,116,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,97,55,49,100,50,97,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,105,103,104,116,123,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,116,101,120,116,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,99,98,100,51,100,97,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,100,97,114,107,123,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,100,97,114,107,58,102,111,99,117,115,44,97,46,116,101,120,116,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,50,49,52,49,54,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,111,100,121,123,99,111,108,111,114,58,35,50,49,50,53,50,57,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,117,116,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,108,97,99,107,45,53,48,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,104,105,116,101,45,53,48,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,104,105,100,101,123,102,111,110,116,58,48,47,48,32,97,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,110,111,110,101,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,114,101,97,107,123,119,111,114,100,45,98,114,101,97,107,58,98,114,101,97,107,45,119,111,114,100,33,105,109,112,111,114,116,97,110,116,59,111,118,101,114,102,108,111,119,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,114,101,115,101,116,123,99,111,108,111,114,58,105,110,104,101,114,105,116,33,105,109,112,111,114,116,97,110,116,125,46,118,105,115,105,98,108,101,123,118,105,115,105,98,105,108,105,116,121,58,118,105,115,105,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,105,110,118,105,115,105,98,108,101,123,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,112,114,105,110,116,123,42,44,58,58,97,102,116,101,114,44,58,58,98,101,102,111,114,101,123,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,97,58,110,111,116,40,46,98,116,110,41,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,97,98,98,114,91,116,105,116,108,101,93,58,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,34,32,40,34,32,97,116,116,114,40,116,105,116,108,101,41,32,34,41,34,125,112,114,101,123,119,104,105,116,101,45,115,112,97,99,101,58,112,114,101,45,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,98,108,111,99,107,113,117,111,116,101,44,112,114,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,97,100,98,53,98,100,59,112,97,103,101,45,98,114,101,97,107,45,105,110,115,105,100,101,58,97,118,111,105,100,125,116,104,101,97,100,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,104,101,97,100,101,114,45,103,114,111,117,112,125,105,109,103,44,116,114,123,112,97,103,101,45,98,114,101,97,107,45,105,110,115,105,100,101,58,97,118,111,105,100,125,104,50,44,104,51,44,112,123,111,114,112,104,97,110,115,58,51,59,119,105,100,111,119,115,58,51,125,104,50,44,104,51,123,112,97,103,101,45,98,114,101,97,107,45,97,102,116,101,114,58,97,118,111,105,100,125,64,112,97,103,101,123,115,105,122,101,58,97,51,125,98,111,100,121,123,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,33,105,109,112,111,114,116,97,110,116,125,46,99,111,110,116,97,105,110,101,114,123,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,33,105,109,112,111,114,116,97,110,116,125,46,110,97,118,98,97,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,98,97,100,103,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,48,48,48,125,46,116,97,98,108,101,123,98,111,114,100,101,114,45,99,111,108,108,97,112,115,101,58,99,111,108,108,97,112,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,32,116,100,44,46,116,97,98,108,101,32,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,45,100,97,114,107,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,116,97,98,108,101,45,100,97,114,107,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,100,97,114,107,32,116,104,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,125,10,46,98,114,105,99,107,108,97,121,101,114,123,100,105,115,112,108,97,121,58,45,119,101,98,107,105,116,45,98,111,120,59,100,105,115,112,108,97,121,58,45,119,101,98,107,105,116,45,102,108,101,120,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,119,101,98,107,105,116,45,98,111,120,45,97,108,105,103,110,58,115,116,97,114,116,59,45,119,101,98,107,105,116,45,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,119,101,98,107,105,116,45,98,111,120,45,112,97,99,107,58,99,101,110,116,101,114,59,45,119,101,98,107,105,116,45,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,45,119,101,98,107,105,116,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,125,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,49,48,48,37,59,100,105,115,112,108,97,121,58,110,111,110,101,125,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,54,52,48,112,120,41,123,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,53,48,37,125,125,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,57,56,48,112,120,41,123,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,51,51,46,51,51,51,37,125,125,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,50,53,37,125,125,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,123,45,119,101,98,107,105,116,45,98,111,120,45,102,108,101,120,58,49,59,45,119,101,98,107,105,116,45,102,108,101,120,58,49,59,45,109,115,45,102,108,101,120,58,49,59,102,108,101,120,58,49,59,112,97,100,100,105,110,103,45,108,101,102,116,58,53,112,120,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,53,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,52,41,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,48,112,120,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,97,108,108,32,49,53,48,109,115,32,108,105,110,101,97,114,59,116,114,97,110,115,105,116,105,111,110,58,97,108,108,32,49,53,48,109,115,32,108,105,110,101,97,114,59,119,105,100,116,104,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,58,104,111,118,101,114,123,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,50,112,120,32,51,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,49,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,50,112,120,32,51,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,49,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,32,43,32,46,98,116,110,123,109,97,114,103,105,110,45,108,101,102,116,58,53,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,46,105,99,111,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,46,105,99,111,110,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,49,52,112,120,59,108,101,102,116,58,53,48,37,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,125,46,105,116,114,101,101,45,109,101,110,117,123,98,97,99,107,103,114,111,117,110,100,58,35,100,100,100,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,52,99,52,99,52,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,115,97,110,115,45,115,101,114,105,102,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,109,97,114,103,105,110,58,48,59,109,105,110,45,119,105,100,116,104,58,49,53,48,112,120,59,112,97,100,100,105,110,103,58,48,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,49,48,125,46,105,116,114,101,101,45,109,101,110,117,32,97,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,51,112,120,32,56,112,120,125,46,105,116,114,101,101,45,109,101,110,117,32,97,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,50,49,56,44,32,50,53,48,44,32,50,53,53,44,32,48,46,53,41,59,99,111,108,111,114,58,114,103,98,97,40,49,54,52,44,32,50,51,52,44,32,50,52,53,44,32,48,46,53,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,123,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,42,123,45,119,101,98,107,105,116,45,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,111,108,123,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,111,108,32,111,108,123,112,97,100,100,105,110,103,45,108,101,102,116,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,99,111,108,108,97,112,115,101,100,32,62,32,111,108,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,104,105,100,100,101,110,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,32,62,32,46,116,105,116,108,101,45,119,114,97,112,123,109,105,110,45,104,101,105,103,104,116,58,50,53,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,111,103,103,108,101,123,104,101,105,103,104,116,58,50,53,112,120,59,108,101,102,116,58,48,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,119,105,100,116,104,58,50,53,112,120,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,111,103,103,108,101,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,101,102,116,58,53,48,37,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,91,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,93,123,108,101,102,116,58,50,50,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,55,112,120,59,119,105,100,116,104,58,50,48,112,120,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,52,50,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,101,120,116,45,111,118,101,114,102,108,111,119,58,101,108,108,105,112,115,105,115,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,122,45,105,110,100,101,120,58,49,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,46,108,111,97,100,45,109,111,114,101,123,99,111,108,111,114,58,35,52,55,54,99,98,56,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,46,108,111,97,100,45,109,111,114,101,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,58,58,98,101,102,111,114,101,123,108,101,102,116,58,50,52,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,45,53,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,45,53,48,37,41,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,100,114,97,103,45,97,110,100,45,100,114,111,112,32,108,105,58,110,111,116,40,46,100,114,111,112,45,116,97,114,103,101,116,41,123,111,112,97,99,105,116,121,58,48,46,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,62,32,46,116,105,116,108,101,44,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,46,105,110,115,112,105,114,101,45,116,114,101,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,97,98,111,118,101,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,62,32,46,116,105,116,108,101,123,98,111,114,100,101,114,45,116,111,112,58,51,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,98,101,108,111,119,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,62,32,46,116,105,116,108,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,51,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,59,112,97,100,100,105,110,103,45,116,111,112,58,50,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,105,110,112,117,116,123,104,101,105,103,104,116,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,46,98,116,110,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,105,110,112,117,116,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,62,32,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,110,111,110,101,59,112,97,100,100,105,110,103,45,116,111,112,58,50,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,49,48,112,120,59,122,45,105,110,100,101,120,58,51,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,58,104,111,118,101,114,32,62,32,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,105,110,112,117,116,32,43,32,46,98,116,110,45,103,114,111,117,112,123,109,97,114,103,105,110,45,108,101,102,116,58,49,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,46,98,116,110,46,105,99,111,110,123,109,97,114,103,105,110,45,108,101,102,116,58,50,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,111,108,32,62,32,46,102,111,108,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,49,51,112,120,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,101,100,105,116,97,98,108,101,45,97,100,100,32,62,32,111,108,32,62,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,114,101,112,101,97,116,45,121,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,111,108,32,46,101,120,112,97,110,100,101,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,46,101,120,112,97,110,100,101,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,62,32,111,108,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,114,101,112,101,97,116,45,121,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,46,101,120,112,97,110,100,101,100,46,102,111,108,100,101,114,58,110,111,116,40,46,108,111,97,100,105,110,103,41,32,62,32,46,116,105,116,108,101,45,119,114,97,112,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,51,49,112,120,32,49,51,112,120,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,101,116,97,99,104,101,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,89,67,65,89,65,65,65,65,104,56,72,100,85,65,65,65,65,78,48,108,69,81,86,81,52,84,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,76,111,48,100,66,68,68,122,48,83,77,117,53,111,50,111,77,70,70,103,66,88,98,69,101,73,48,88,119,89,73,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,65,65,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,78,67,65,89,65,65,65,66,121,54,43,82,56,65,65,65,65,75,107,108,69,81,86,81,111,85,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,74,111,65,71,85,90,77,51,50,90,48,85,56,116,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,46,100,101,116,97,99,104,101,100,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,101,100,105,116,97,98,108,101,45,97,100,100,32,62,32,111,108,32,62,32,46,108,101,97,102,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,89,67,65,89,65,65,65,65,104,56,72,100,85,65,65,65,65,78,48,108,69,81,86,81,52,84,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,76,111,48,100,66,68,68,122,48,83,77,117,53,111,50,111,77,70,70,103,66,88,98,69,101,73,48,88,119,89,73,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,65,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,99,111,110,116,101,110,116,58,39,39,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,49,52,112,120,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,104,101,99,107,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,104,101,99,107,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,111,108,108,97,112,115,101,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,56,37,50,48,49,49,104,56,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,56,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,119,104,105,116,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,114,111,115,115,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,114,111,115,115,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,101,120,112,97,110,100,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,49,50,37,50,48,55,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,118,51,104,51,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,51,118,51,113,48,37,50,48,48,46,52,49,52,45,48,46,50,57,51,37,50,48,48,46,55,48,55,116,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,45,48,46,50,57,51,45,48,46,50,57,51,45,48,46,55,48,55,118,45,51,104,45,51,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,104,51,118,45,51,113,48,45,48,46,52,49,52,37,50,48,48,46,50,57,51,45,48,46,55,48,55,116,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,119,104,105,116,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,53,97,53,97,53,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,111,108,100,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,111,108,100,101,114,45,111,112,101,110,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,105,110,117,115,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,105,110,117,115,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,111,114,101,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,50,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,49,56,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,54,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,101,110,99,105,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,101,110,99,105,108,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,108,117,115,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,108,117,115,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,111,108,100,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,111,108,100,101,114,45,111,112,101,110,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,111,97,100,105,110,103,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,105,110,112,117,116,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,111,97,100,105,110,103,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,116,105,116,108,101,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,119,105,100,116,104,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,104,101,105,103,104,116,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,49,48,48,37,50,48,49,48,48,37,50,50,37,50,48,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,37,51,68,37,50,50,120,77,105,100,89,77,105,100,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,117,105,108,45,114,105,110,103,37,50,50,37,51,69,37,51,67,114,101,99,116,37,50,48,120,37,51,68,37,50,50,48,37,50,50,37,50,48,121,37,51,68,37,50,50,48,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,110,111,110,101,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,98,107,37,50,50,37,51,69,37,51,67,37,50,70,114,101,99,116,37,51,69,37,51,67,100,101,102,115,37,51,69,37,51,67,102,105,108,116,101,114,37,50,48,105,100,37,51,68,37,50,50,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,37,50,50,37,50,48,120,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,121,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,51,69,37,51,67,102,101,79,102,102,115,101,116,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,100,120,37,51,68,37,50,50,48,37,50,50,37,50,48,100,121,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,79,102,102,115,101,116,37,51,69,37,51,67,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,115,116,100,68,101,118,105,97,116,105,111,110,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,51,69,37,51,67,102,101,66,108,101,110,100,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,105,110,50,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,109,111,100,101,37,51,68,37,50,50,110,111,114,109,97,108,37,50,50,37,51,69,37,51,67,37,50,70,102,101,66,108,101,110,100,37,51,69,37,51,67,37,50,70,102,105,108,116,101,114,37,51,69,37,51,67,37,50,70,100,101,102,115,37,51,69,37,51,67,112,97,116,104,37,50,48,100,37,51,68,37,50,50,77,49,48,37,50,67,53,48,99,48,37,50,67,48,37,50,67,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,37,50,67,48,46,50,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,46,49,37,50,67,48,46,55,37,50,67,48,46,49,37,50,67,49,46,49,99,48,46,49,37,50,67,48,46,52,37,50,67,48,46,49,37,50,67,48,46,56,37,50,67,48,46,50,37,50,67,49,46,50,99,48,46,50,37,50,67,48,46,56,37,50,67,48,46,51,37,50,67,49,46,56,37,50,67,48,46,53,37,50,67,50,46,56,37,50,48,99,48,46,51,37,50,67,49,37,50,67,48,46,54,37,50,67,50,46,49,37,50,67,48,46,57,37,50,67,51,46,50,99,48,46,51,37,50,67,49,46,49,37,50,67,48,46,57,37,50,67,50,46,51,37,50,67,49,46,52,37,50,67,51,46,53,99,48,46,53,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,50,46,52,37,50,67,49,46,56,37,50,67,51,46,55,99,48,46,51,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,49,46,57,99,48,46,52,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,51,37,50,67,49,46,51,37,50,67,49,46,57,37,50,48,99,49,37,50,67,49,46,50,37,50,67,49,46,57,37,50,67,50,46,54,37,50,67,51,46,49,37,50,67,51,46,55,99,50,46,50,37,50,67,50,46,53,37,50,67,53,37,50,67,52,46,55,37,50,67,55,46,57,37,50,67,54,46,55,99,51,37,50,67,50,37,50,67,54,46,53,37,50,67,51,46,52,37,50,67,49,48,46,49,37,50,67,52,46,54,99,51,46,54,37,50,67,49,46,49,37,50,67,55,46,53,37,50,67,49,46,53,37,50,67,49,49,46,50,37,50,67,49,46,54,99,52,45,48,46,49,37,50,67,55,46,55,45,48,46,54,37,50,67,49,49,46,51,45,49,46,54,37,50,48,99,51,46,54,45,49,46,50,37,50,67,55,45,50,46,54,37,50,67,49,48,45,52,46,54,99,51,45,50,37,50,67,53,46,56,45,52,46,50,37,50,67,55,46,57,45,54,46,55,99,49,46,50,45,49,46,50,37,50,67,50,46,49,45,50,46,53,37,50,67,51,46,49,45,51,46,55,99,48,46,53,45,48,46,54,37,50,67,48,46,57,45,49,46,51,37,50,67,49,46,51,45,49,46,57,99,48,46,52,45,48,46,54,37,50,67,48,46,56,45,49,46,51,37,50,67,49,46,50,45,49,46,57,37,50,48,99,48,46,54,45,49,46,51,37,50,67,49,46,51,45,50,46,53,37,50,67,49,46,56,45,51,46,55,99,48,46,53,45,49,46,50,37,50,67,49,45,50,46,52,37,50,67,49,46,52,45,51,46,53,99,48,46,51,45,49,46,49,37,50,67,48,46,54,45,50,46,50,37,50,67,48,46,57,45,51,46,50,99,48,46,50,45,49,37,50,67,48,46,52,45,49,46,57,37,50,67,48,46,53,45,50,46,56,99,48,46,49,45,48,46,52,37,50,67,48,46,49,45,48,46,56,37,50,67,48,46,50,45,49,46,50,37,50,48,99,48,45,48,46,52,37,50,67,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,49,99,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,50,37,50,67,48,46,50,45,49,46,55,67,57,48,37,50,67,53,48,46,53,37,50,67,57,48,37,50,67,53,48,37,50,67,57,48,37,50,67,53,48,115,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,37,50,67,48,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,37,50,67,48,46,55,37,50,67,48,37,50,67,49,46,49,37,50,48,99,48,37,50,67,48,46,52,45,48,46,49,37,50,67,48,46,56,45,48,46,49,37,50,67,49,46,50,99,45,48,46,49,37,50,67,48,46,57,45,48,46,50,37,50,67,49,46,56,45,48,46,52,37,50,67,50,46,56,99,45,48,46,50,37,50,67,49,45,48,46,53,37,50,67,50,46,49,45,48,46,55,37,50,67,51,46,51,99,45,48,46,51,37,50,67,49,46,50,45,48,46,56,37,50,67,50,46,52,45,49,46,50,37,50,67,51,46,55,99,45,48,46,50,37,50,67,48,46,55,45,48,46,53,37,50,67,49,46,51,45,48,46,56,37,50,67,49,46,57,37,50,48,99,45,48,46,51,37,50,67,48,46,55,45,48,46,54,37,50,67,49,46,51,45,48,46,57,37,50,67,50,99,45,48,46,51,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,51,45,49,46,49,37,50,67,50,99,45,48,46,52,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,52,45,49,46,50,37,50,67,50,99,45,49,37,50,67,49,46,51,45,49,46,57,37,50,67,50,46,55,45,51,46,49,37,50,67,52,99,45,50,46,50,37,50,67,50,46,55,45,53,37,50,67,53,45,56,46,49,37,50,67,55,46,49,37,50,48,99,45,48,46,56,37,50,67,48,46,53,45,49,46,54,37,50,67,49,45,50,46,52,37,50,67,49,46,53,99,45,48,46,56,37,50,67,48,46,53,45,49,46,55,37,50,67,48,46,57,45,50,46,54,37,50,67,49,46,51,76,54,54,37,50,67,56,55,46,55,108,45,49,46,52,37,50,67,48,46,53,99,45,48,46,57,37,50,67,48,46,51,45,49,46,56,37,50,67,48,46,55,45,50,46,56,37,50,67,49,99,45,51,46,56,37,50,67,49,46,49,45,55,46,57,37,50,67,49,46,55,45,49,49,46,56,37,50,67,49,46,56,76,52,55,37,50,67,57,48,46,56,37,50,48,99,45,49,37,50,67,48,45,50,45,48,46,50,45,51,45,48,46,51,108,45,49,46,53,45,48,46,50,108,45,48,46,55,45,48,46,49,76,52,49,46,49,37,50,67,57,48,99,45,49,45,48,46,51,45,49,46,57,45,48,46,53,45,50,46,57,45,48,46,55,99,45,48,46,57,45,48,46,51,45,49,46,57,45,48,46,55,45,50,46,56,45,49,76,51,52,37,50,67,56,55,46,55,108,45,49,46,51,45,48,46,54,37,50,48,99,45,48,46,57,45,48,46,52,45,49,46,56,45,48,46,56,45,50,46,54,45,49,46,51,99,45,48,46,56,45,48,46,53,45,49,46,54,45,49,45,50,46,52,45,49,46,53,99,45,51,46,49,45,50,46,49,45,53,46,57,45,52,46,53,45,56,46,49,45,55,46,49,99,45,49,46,50,45,49,46,50,45,50,46,49,45,50,46,55,45,51,46,49,45,52,99,45,48,46,53,45,48,46,54,45,48,46,56,45,49,46,52,45,49,46,50,45,50,37,50,48,99,45,48,46,52,45,48,46,55,45,48,46,56,45,49,46,51,45,49,46,49,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,57,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,56,45,49,46,57,99,45,48,46,52,45,49,46,51,45,48,46,57,45,50,46,53,45,49,46,50,45,51,46,55,99,45,48,46,51,45,49,46,50,45,48,46,53,45,50,46,51,45,48,46,55,45,51,46,51,37,50,48,99,45,48,46,50,45,49,45,48,46,51,45,50,45,48,46,52,45,50,46,56,99,45,48,46,49,45,48,46,52,45,48,46,49,45,48,46,56,45,48,46,49,45,49,46,50,99,48,45,48,46,52,37,50,67,48,45,48,46,55,37,50,67,48,45,49,46,49,99,48,45,48,46,55,37,50,67,48,45,49,46,50,37,50,67,48,45,49,46,55,67,49,48,37,50,67,53,48,46,53,37,50,67,49,48,37,50,67,53,48,37,50,67,49,48,37,50,67,53,48,122,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,49,51,49,51,56,37,50,50,37,50,48,102,105,108,116,101,114,37,51,68,37,50,50,117,114,108,40,37,50,51,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,41,37,50,50,37,51,69,37,51,67,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,50,48,97,116,116,114,105,98,117,116,101,78,97,109,101,37,51,68,37,50,50,116,114,97,110,115,102,111,114,109,37,50,50,37,50,48,116,121,112,101,37,51,68,37,50,50,114,111,116,97,116,101,37,50,50,37,50,48,102,114,111,109,37,51,68,37,50,50,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,116,111,37,51,68,37,50,50,51,54,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,114,101,112,101,97,116,67,111,117,110,116,37,51,68,37,50,50,105,110,100,101,102,105,110,105,116,101,37,50,50,37,50,48,100,117,114,37,51,68,37,50,50,49,115,37,50,50,37,51,69,37,51,67,37,50,70,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,59,99,111,110,116,101,110,116,58,39,39,59,104,101,105,103,104,116,58,49,52,112,120,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,111,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,119,104,111,108,101,114,111,119,123,104,101,105,103,104,116,58,50,53,112,120,59,108,101,102,116,58,48,59,109,97,114,103,105,110,45,116,111,112,58,45,50,53,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,119,105,100,116,104,58,49,48,48,37,59,122,45,105,110,100,101,120,58,49,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,102,111,99,117,115,101,100,58,110,111,116,40,46,115,101,108,101,99,116,101,100,41,32,62,32,46,119,104,111,108,101,114,111,119,123,111,117,116,108,105,110,101,58,49,112,120,32,100,111,116,116,101,100,32,98,108,97,99,107,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,32,43,32,46,119,104,111,108,101,114,111,119,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,119,104,111,108,101,114,111,119,123,98,97,99,107,103,114,111,117,110,100,58,35,66,66,68,69,70,66,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,97,123,99,111,108,111,114,58,35,52,57,53,48,53,55,125,46,105,114,115,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,45,119,101,98,107,105,116,45,116,111,117,99,104,45,99,97,108,108,111,117,116,58,110,111,110,101,59,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,107,104,116,109,108,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,125,46,105,114,115,45,108,105,110,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,125,46,105,114,115,45,108,105,110,101,45,108,101,102,116,44,46,105,114,115,45,108,105,110,101,45,109,105,100,44,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,125,46,105,114,115,45,108,105,110,101,45,108,101,102,116,123,108,101,102,116,58,48,59,119,105,100,116,104,58,49,49,37,125,46,105,114,115,45,108,105,110,101,45,109,105,100,123,108,101,102,116,58,57,37,59,119,105,100,116,104,58,56,50,37,125,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,119,105,100,116,104,58,49,49,37,125,46,105,114,115,45,98,97,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,101,102,116,58,48,59,119,105,100,116,104,58,48,125,46,105,114,115,45,98,97,114,45,101,100,103,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,48,125,46,105,114,115,45,115,104,97,100,111,119,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,110,111,110,101,59,108,101,102,116,58,48,59,119,105,100,116,104,58,48,125,46,105,114,115,45,115,108,105,100,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,122,45,105,110,100,101,120,58,49,125,46,105,114,115,45,115,108,105,100,101,114,46,115,105,110,103,108,101,123,125,46,105,114,115,45,115,108,105,100,101,114,46,102,114,111,109,123,125,46,105,114,115,45,115,108,105,100,101,114,46,116,111,123,125,46,105,114,115,45,115,108,105,100,101,114,46,116,121,112,101,95,108,97,115,116,123,122,45,105,110,100,101,120,58,50,125,46,105,114,115,45,109,105,110,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,101,102,116,58,48,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,105,114,115,45,109,97,120,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,114,105,103,104,116,58,48,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,105,114,115,45,102,114,111,109,44,46,105,114,115,45,115,105,110,103,108,101,44,46,105,114,115,45,116,111,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,48,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,105,114,115,45,103,114,105,100,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,110,111,110,101,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,50,48,112,120,125,46,105,114,115,45,119,105,116,104,45,103,114,105,100,32,46,105,114,115,45,103,114,105,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,105,114,115,45,103,114,105,100,45,112,111,108,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,112,120,59,104,101,105,103,104,116,58,56,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,48,48,48,125,46,105,114,115,45,103,114,105,100,45,112,111,108,46,115,109,97,108,108,123,104,101,105,103,104,116,58,52,112,120,125,46,105,114,115,45,103,114,105,100,45,116,101,120,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,102,111,110,116,45,115,105,122,101,58,57,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,57,112,120,59,112,97,100,100,105,110,103,58,48,32,51,112,120,59,99,111,108,111,114,58,35,48,48,48,125,46,105,114,115,45,100,105,115,97,98,108,101,45,109,97,115,107,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,45,49,37,59,119,105,100,116,104,58,49,48,50,37,59,104,101,105,103,104,116,58,49,48,48,37,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,48,44,48,44,48,44,48,46,48,41,59,122,45,105,110,100,101,120,58,50,125,46,105,114,115,45,100,105,115,97,98,108,101,100,123,111,112,97,99,105,116,121,58,48,46,52,125,46,108,116,45,105,101,57,32,46,105,114,115,45,100,105,115,97,98,108,101,100,123,102,105,108,116,101,114,58,32,97,108,112,104,97,40,111,112,97,99,105,116,121,61,52,48,41,125,46,105,114,115,45,104,105,100,100,101,110,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,32,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,98,108,111,99,107,32,33,105,109,112,111,114,116,97,110,116,59,116,111,112,58,48,32,33,105,109,112,111,114,116,97,110,116,59,108,101,102,116,58,48,32,33,105,109,112,111,114,116,97,110,116,59,119,105,100,116,104,58,48,32,33,105,109,112,111,114,116,97,110,116,59,104,101,105,103,104,116,58,48,32,33,105,109,112,111,114,116,97,110,116,59,102,111,110,116,45,115,105,122,101,58,48,32,33,105,109,112,111,114,116,97,110,116,59,108,105,110,101,45,104,101,105,103,104,116,58,48,32,33,105,109,112,111,114,116,97,110,116,59,112,97,100,100,105,110,103,58,48,32,33,105,109,112,111,114,116,97,110,116,59,109,97,114,103,105,110,58,48,32,33,105,109,112,111,114,116,97,110,116,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,122,45,105,110,100,101,120,58,45,57,57,57,57,32,33,105,109,112,111,114,116,97,110,116,59,98,97,99,107,103,114,111,117,110,100,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,115,116,121,108,101,58,115,111,108,105,100,32,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,32,33,105,109,112,111,114,116,97,110,116,125,10,46,105,114,115,45,98,97,114,44,46,105,114,115,45,98,97,114,45,101,100,103,101,44,46,105,114,115,45,108,105,110,101,45,108,101,102,116,44,46,105,114,115,45,108,105,110,101,45,109,105,100,44,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,44,46,105,114,115,45,115,108,105,100,101,114,123,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,46,46,47,105,109,103,47,115,112,114,105,116,101,45,115,107,105,110,45,102,108,97,116,46,112,110,103,34,41,32,114,101,112,101,97,116,45,120,125,46,105,114,115,123,104,101,105,103,104,116,58,52,48,112,120,125,46,105,114,115,45,119,105,116,104,45,103,114,105,100,123,104,101,105,103,104,116,58,54,48,112,120,125,46,105,114,115,45,108,105,110,101,123,104,101,105,103,104,116,58,49,50,112,120,59,116,111,112,58,50,53,112,120,125,46,105,114,115,45,108,105,110,101,45,108,101,102,116,123,104,101,105,103,104,116,58,49,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,51,48,112,120,125,46,105,114,115,45,108,105,110,101,45,109,105,100,123,104,101,105,103,104,116,58,49,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,125,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,123,104,101,105,103,104,116,58,49,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,48,48,37,32,45,51,48,112,120,125,46,105,114,115,45,98,97,114,123,104,101,105,103,104,116,58,49,50,112,120,59,116,111,112,58,50,53,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,54,48,112,120,125,46,105,114,115,45,98,97,114,45,101,100,103,101,123,116,111,112,58,50,53,112,120,59,104,101,105,103,104,116,58,49,50,112,120,59,119,105,100,116,104,58,57,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,57,48,112,120,125,46,105,114,115,45,115,104,97,100,111,119,123,104,101,105,103,104,116,58,51,112,120,59,116,111,112,58,51,52,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,48,48,48,59,111,112,97,99,105,116,121,58,48,46,50,53,125,46,108,116,45,105,101,57,32,46,105,114,115,45,115,104,97,100,111,119,123,102,105,108,116,101,114,58,32,97,108,112,104,97,40,111,112,97,99,105,116,121,61,50,53,41,125,46,105,114,115,45,115,108,105,100,101,114,123,119,105,100,116,104,58,49,54,112,120,59,104,101,105,103,104,116,58,49,56,112,120,59,116,111,112,58,50,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,49,50,48,112,120,125,46,105,114,115,45,115,108,105,100,101,114,46,115,116,97,116,101,95,104,111,118,101,114,44,46,105,114,115,45,115,108,105,100,101,114,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,49,53,48,112,120,125,46,105,114,115,45,109,97,120,44,46,105,114,115,45,109,105,110,123,99,111,108,111,114,58,35,57,57,57,59,102,111,110,116,45,115,105,122,101,58,49,48,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,51,51,51,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,116,111,112,58,48,59,112,97,100,100,105,110,103,58,49,112,120,32,51,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,101,49,101,52,101,57,59,45,109,111,122,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,125,46,105,114,115,45,102,114,111,109,44,46,105,114,115,45,115,105,110,103,108,101,44,46,105,114,115,45,116,111,123,99,111,108,111,114,58,35,102,102,102,59,102,111,110,116,45,115,105,122,101,58,49,48,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,51,51,51,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,112,97,100,100,105,110,103,58,49,112,120,32,53,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,50,49,57,54,70,51,59,45,109,111,122,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,125,46,105,114,115,45,102,114,111,109,58,97,102,116,101,114,44,46,105,114,115,45,115,105,110,103,108,101,58,97,102,116,101,114,44,46,105,114,115,45,116,111,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,111,110,116,101,110,116,58,34,34,59,98,111,116,116,111,109,58,45,54,112,120,59,108,101,102,116,58,53,48,37,59,119,105,100,116,104,58,48,59,104,101,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,45,51,112,120,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,98,111,114,100,101,114,58,51,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,50,49,57,54,70,51,125,46,105,114,115,45,103,114,105,100,45,112,111,108,123,98,97,99,107,103,114,111,117,110,100,58,35,101,49,101,52,101,57,125,46,105,114,115,45,103,114,105,100,45,116,101,120,116,123,99,111,108,111,114,58,35,57,57,57,125,46,105,114,115,45,100,105,115,97,98,108,101,100,123,125,10,46,106,113,45,116,111,97,115,116,45,119,114,97,112,44,46,106,113,45,116,111,97,115,116,45,119,114,97,112,32,42,123,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,119,105,100,116,104,58,50,53,48,112,120,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,122,45,105,110,100,101,120,58,57,48,48,48,33,105,109,112,111,114,116,97,110,116,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,98,111,116,116,111,109,45,108,101,102,116,123,98,111,116,116,111,109,58,50,48,112,120,59,108,101,102,116,58,50,48,112,120,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,98,111,116,116,111,109,45,114,105,103,104,116,123,98,111,116,116,111,109,58,50,48,112,120,59,114,105,103,104,116,58,52,48,112,120,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,116,111,112,45,108,101,102,116,123,116,111,112,58,50,48,112,120,59,108,101,102,116,58,50,48,112,120,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,116,111,112,45,114,105,103,104,116,123,116,111,112,58,50,48,112,120,59,114,105,103,104,116,58,52,48,112,120,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,49,48,112,120,59,109,97,114,103,105,110,58,48,32,48,32,53,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,59,102,111,110,116,45,115,105,122,101,58,49,50,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,97,114,105,97,108,44,115,97,110,115,45,115,101,114,105,102,59,108,105,110,101,45,104,101,105,103,104,116,58,49,55,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,108,108,33,105,109,112,111,114,116,97,110,116,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,52,52,52,59,99,111,108,111,114,58,35,102,102,102,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,104,50,123,102,111,110,116,45,102,97,109,105,108,121,58,97,114,105,97,108,44,115,97,110,115,45,115,101,114,105,102,59,102,111,110,116,45,115,105,122,101,58,49,52,112,120,59,109,97,114,103,105,110,58,48,32,48,32,55,112,120,59,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,97,123,99,111,108,111,114,58,35,101,101,101,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,102,102,102,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,112,120,59,102,111,110,116,45,115,105,122,101,58,49,50,112,120,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,117,108,123,109,97,114,103,105,110,58,48,32,48,32,48,32,49,53,112,120,59,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,112,97,100,100,105,110,103,58,48,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,117,108,32,108,105,123,108,105,115,116,45,115,116,121,108,101,45,116,121,112,101,58,100,105,115,99,33,105,109,112,111,114,116,97,110,116,59,108,105,110,101,45,104,101,105,103,104,116,58,49,55,112,120,59,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,125,46,99,108,111,115,101,45,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,51,112,120,59,114,105,103,104,116,58,55,112,120,59,102,111,110,116,45,115,105,122,101,58,49,52,112,120,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,106,113,45,116,111,97,115,116,45,108,111,97,100,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,45,50,112,120,59,104,101,105,103,104,116,58,53,112,120,59,119,105,100,116,104,58,48,59,108,101,102,116,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,112,120,59,98,97,99,107,103,114,111,117,110,100,58,114,101,100,125,46,106,113,45,116,111,97,115,116,45,108,111,97,100,101,100,123,119,105,100,116,104,58,49,48,48,37,125,46,106,113,45,104,97,115,45,105,99,111,110,123,112,97,100,100,105,110,103,58,49,48,112,120,32,49,48,112,120,32,49,48,112,120,32,53,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,48,112,120,125,46,106,113,45,105,99,111,110,45,105,110,102,111,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,71,119,83,85,82,66,86,69,104,76,116,90,97,57,83,103,78,66,69,77,99,57,115,85,120,120,82,99,111,85,75,83,122,83,87,73,104,88,112,70,77,104,104,89,87,70,104,97,66,103,52,121,80,89,105,87,67,88,90,120,66,76,69,82,115,76,82,83,51,69,81,107,69,102,119,67,75,100,106,87,74,65,119,83,75,67,103,111,75,67,99,117,100,118,52,79,53,89,76,114,116,55,69,122,103,88,104,105,85,51,47,52,43,98,50,99,107,109,119,86,106,74,83,112,75,107,81,54,119,65,105,52,103,119,104,84,43,122,51,119,82,66,99,69,122,48,121,106,83,115,101,85,84,114,99,82,121,102,115,72,115,88,109,68,48,65,109,98,72,79,67,57,73,105,56,86,73,109,110,117,88,66,80,103,108,72,112,81,53,119,119,83,86,77,55,115,78,110,84,71,55,90,97,52,74,119,68,100,67,106,120,121,65,105,72,51,110,121,65,50,109,116,97,84,74,117,102,105,68,90,53,100,67,97,113,108,73,116,73,76,104,49,78,72,97,116,102,78,53,115,107,118,106,120,57,90,51,56,109,54,57,67,103,122,117,88,109,90,103,86,114,80,73,71,69,55,54,51,74,120,57,113,75,115,82,111,122,87,89,119,54,120,79,72,100,69,82,43,110,110,50,75,107,79,43,66,98,43,85,86,53,67,66,78,54,87,67,54,81,116,66,103,98,82,86,111,122,114,97,104,65,98,109,109,54,72,116,85,115,103,116,80,67,49,57,116,70,100,120,88,90,89,66,79,102,107,98,109,70,74,49,86,97,72,65,49,86,65,72,106,100,48,112,112,55,48,111,84,90,122,118,82,43,69,86,114,120,50,89,103,102,100,115,113,54,101,117,53,53,66,72,89,82,56,104,108,99,107,105,43,110,43,107,69,82,85,70,71,56,66,114,65,48,66,119,106,101,65,118,50,77,56,87,76,81,66,116,99,121,43,83,68,54,102,78,115,109,110,66,51,65,108,66,76,114,103,84,116,86,87,49,99,50,81,78,52,98,86,87,76,65,84,97,73,83,54,48,74,50,68,117,53,121,49,84,105,74,103,106,83,66,118,70,86,90,103,84,109,119,67,85,43,100,65,90,70,111,80,120,71,69,69,115,56,110,121,72,67,57,66,119,101,50,71,118,69,74,118,50,87,88,90,98,48,118,106,100,121,70,84,52,67,120,107,51,101,47,107,73,113,108,79,71,111,86,76,119,119,80,101,118,112,89,72,84,43,48,48,84,43,104,87,119,88,68,102,52,65,74,65,79,85,113,87,99,68,104,98,119,65,65,65,65,65,83,85,86,79,82,75,53,67,89,73,73,61,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,49,55,48,56,102,59,99,111,108,111,114,58,35,100,57,101,100,102,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,99,101,56,102,49,125,46,106,113,45,105,99,111,110,45,119,97,114,110,105,110,103,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,71,89,83,85,82,66,86,69,104,76,53,90,83,118,84,115,78,81,70,77,98,88,90,71,73,67,77,89,71,89,109,74,104,65,81,73,74,65,73,67,89,81,80,65,65,67,105,83,68,66,56,65,105,73,67,81,81,74,84,52,67,113,81,69,119,103,74,118,89,65,83,65,81,67,105,90,105,89,109,74,104,65,73,66,65,84,67,65,82,74,121,43,57,114,84,115,108,100,100,56,115,75,117,49,77,48,43,100,76,98,48,53,55,118,54,47,108,98,113,47,50,114,75,48,109,83,47,84,82,78,106,57,99,87,78,65,75,80,89,73,74,73,73,55,103,73,120,67,99,81,53,49,99,118,113,73,68,43,71,73,69,88,56,65,83,71,52,66,49,98,75,53,103,73,90,70,101,81,102,111,74,100,69,88,79,102,103,88,52,81,65,81,103,55,107,72,50,65,54,53,121,81,56,55,108,121,120,98,50,55,115,103,103,107,65,122,65,117,70,104,98,98,103,49,75,50,107,103,67,107,66,49,98,86,119,121,73,82,57,109,50,76,55,80,82,80,73,104,68,85,73,88,103,71,116,121,75,119,53,55,53,121,122,51,108,84,78,115,54,88,52,74,88,110,106,86,43,76,75,77,47,109,51,77,121,100,110,84,98,116,79,75,73,106,116,122,54,86,104,67,66,113,52,118,83,109,51,110,99,100,114,68,50,108,107,48,86,103,85,88,83,86,75,106,86,68,74,88,74,122,105,106,87,49,82,81,100,115,85,55,70,55,55,72,101,56,117,54,56,107,111,78,90,84,122,56,79,122,53,121,71,97,54,74,51,72,51,108,90,48,120,89,103,88,66,75,50,81,121,109,108,87,87,65,43,82,87,110,89,104,115,107,76,66,118,50,118,109,69,43,104,66,77,67,116,98,65,55,75,88,53,100,114,87,121,82,84,47,50,74,115,113,90,50,73,118,102,66,57,89,52,98,87,68,78,77,70,98,74,82,70,109,67,57,69,55,52,83,111,83,48,67,113,117,108,119,106,107,67,48,43,53,98,112,99,86,49,67,90,56,78,77,101,106,52,112,106,121,48,85,43,100,111,68,81,115,71,121,111,49,104,122,86,74,116,116,73,106,104,81,55,71,110,66,116,82,70,78,49,85,97,114,85,108,72,56,70,51,120,105,99,116,43,72,89,48,55,114,69,122,111,85,71,80,108,87,99,106,82,70,82,114,52,47,103,67,104,90,103,99,51,90,76,50,100,56,111,65,65,65,65,65,83,85,86,79,82,75,53,67,89,73,73,61,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,56,97,54,100,51,98,59,99,111,108,111,114,58,35,102,99,102,56,101,51,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,97,101,98,99,99,125,46,106,113,45,105,99,111,110,45,101,114,114,111,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,72,79,83,85,82,66,86,69,104,76,114,90,97,47,83,103,78,66,69,77,90,122,104,48,87,75,67,67,108,83,67,75,97,73,89,79,69,68,43,65,65,75,101,81,81,76,71,56,72,87,122,116,76,67,73,109,66,114,89,97,100,103,73,100,89,43,103,73,75,78,89,107,66,70,83,119,117,55,67,65,111,113,67,103,107,107,111,71,66,73,47,69,50,56,80,100,98,76,90,109,101,68,76,103,122,90,122,99,120,56,51,47,122,90,50,83,83,88,67,49,106,57,102,114,43,73,49,72,113,57,51,103,50,121,120,72,52,105,119,77,49,118,107,111,66,87,65,100,120,67,109,112,122,84,120,102,107,78,50,82,99,121,90,78,97,72,70,73,107,83,111,49,48,43,56,107,103,120,107,88,73,85,82,86,53,72,71,120,84,109,70,117,99,55,53,66,50,82,102,81,107,112,120,72,71,56,97,65,103,97,65,70,97,48,116,65,72,113,89,70,102,81,55,73,119,101,50,121,104,79,68,107,56,43,74,52,67,55,121,65,111,82,84,87,73,51,119,47,52,107,108,71,82,103,82,52,108,79,55,82,112,110,57,43,103,118,77,121,87,112,43,117,120,70,104,56,43,72,43,65,82,108,103,78,49,110,74,117,74,117,81,65,89,118,78,107,69,110,119,71,70,99,107,49,56,69,114,52,113,51,101,103,69,99,47,111,79,43,109,104,76,100,75,103,82,121,104,100,78,70,105,97,99,67,48,114,108,79,67,98,104,78,86,122,52,72,57,70,110,65,89,103,68,66,118,85,51,81,73,105,111,90,108,74,70,76,74,116,115,111,72,89,82,68,102,105,90,111,85,121,73,120,113,67,116,82,112,86,108,65,78,113,48,69,85,52,100,65,112,106,114,116,103,101,122,80,70,97,100,53,83,49,57,87,103,106,107,99,48,104,78,86,110,117,70,52,72,106,86,65,54,67,55,81,114,83,73,98,121,108,66,43,111,90,101,51,97,72,103,66,115,113,108,78,113,75,89,72,52,56,106,88,121,74,75,77,117,65,98,105,121,86,74,56,75,122,97,66,51,101,82,99,48,112,103,57,86,119,81,52,110,105,70,114,121,73,54,56,113,105,79,105,51,65,98,106,119,100,115,102,110,65,116,107,48,98,67,106,84,76,74,75,114,54,109,114,68,57,103,56,105,113,47,83,47,66,56,49,104,103,117,79,77,108,81,84,110,86,121,71,52,48,119,65,99,106,110,109,103,115,67,78,69,83,68,114,106,109,101,55,119,102,102,116,80,52,80,55,83,80,52,78,51,67,74,90,100,118,122,111,78,121,71,113,50,99,47,72,87,79,88,74,71,115,118,86,103,43,82,65,47,107,50,77,67,47,119,78,54,73,50,89,65,50,80,116,56,71,107,65,65,65,65,65,83,85,86,79,82,75,53,67,89,73,73,61,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,57,52,52,52,50,59,99,111,108,111,114,58,35,102,50,100,101,100,101,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,98,99,99,100,49,125,46,106,113,45,105,99,111,110,45,115,117,99,99,101,115,115,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,68,115,83,85,82,66,86,69,104,76,89,50,65,89,66,102,81,77,103,102,47,47,47,51,80,56,43,47,101,118,65,73,103,118,65,47,70,115,73,70,43,66,97,118,89,68,68,87,77,66,71,114,111,97,83,77,77,66,105,69,56,86,67,55,65,90,68,114,73,70,97,77,70,110,105,105,51,65,90,84,106,85,103,115,85,85,87,85,68,65,56,79,100,65,72,54,105,81,98,81,69,104,119,52,72,121,71,115,80,69,99,75,66,88,66,73,67,52,65,82,104,101,120,52,71,52,66,115,106,109,119,101,85,49,115,111,73,70,97,71,103,47,87,116,111,70,90,82,73,90,100,69,118,73,77,104,120,107,67,67,106,88,73,86,115,65,84,86,54,103,70,71,65,67,115,52,82,115,119,48,69,71,103,73,73,72,51,81,74,89,74,103,72,83,65,82,81,90,68,114,87,65,66,43,106,97,119,122,103,115,43,81,50,85,79,52,57,68,55,106,110,82,83,82,71,111,69,70,82,73,76,99,100,109,69,77,87,71,73,48,99,109,48,74,74,50,81,112,89,65,49,82,68,118,99,109,122,74,69,87,104,65,66,104,68,47,112,113,114,76,48,83,48,67,87,117,65,66,75,103,110,82,107,105,57,108,76,115,101,83,55,103,50,65,108,113,119,72,87,81,83,75,72,52,111,75,76,114,73,76,112,82,71,104,69,81,67,119,50,76,105,82,85,73,97,52,108,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,61,61,41,59,99,111,108,111,114,58,35,100,102,102,48,100,56,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,99,55,54,51,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,54,101,57,99,54,125,47,42,33,32,76,105,116,121,32,45,32,118,50,46,52,46,48,32,45,32,50,48,49,57,45,48,56,45,49,48,10,42,32,104,116,116,112,58,47,47,115,111,114,103,97,108,108,97,46,99,111,109,47,108,105,116,121,47,10,42,32,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,53,45,50,48,49,57,32,74,97,110,32,83,111,114,103,97,108,108,97,59,32,76,105,99,101,110,115,101,100,32,77,73,84,32,42,47,46,108,105,116,121,123,122,45,105,110,100,101,120,58,57,57,57,48,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,58,35,48,98,48,98,48,98,59,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,48,44,48,44,48,44,48,46,57,41,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,111,112,97,99,105,116,121,58,48,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,45,111,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,125,46,108,105,116,121,46,108,105,116,121,45,111,112,101,110,101,100,123,111,112,97,99,105,116,121,58,49,125,46,108,105,116,121,46,108,105,116,121,45,99,108,111,115,101,100,123,111,112,97,99,105,116,121,58,48,125,46,108,105,116,121,32,42,123,45,119,101,98,107,105,116,45,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,45,109,111,122,45,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,46,108,105,116,121,45,119,114,97,112,123,122,45,105,110,100,101,120,58,57,57,57,48,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,125,46,108,105,116,121,45,119,114,97,112,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,39,39,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,49,48,48,37,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,48,46,50,53,101,109,125,46,108,105,116,121,45,108,111,97,100,101,114,123,122,45,105,110,100,101,120,58,57,57,57,49,59,99,111,108,111,114,58,35,102,102,102,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,109,97,114,103,105,110,45,116,111,112,58,45,48,46,56,101,109,59,119,105,100,116,104,58,49,48,48,37,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,102,111,110,116,45,115,105,122,101,58,49,52,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,65,114,105,97,108,44,72,101,108,118,101,116,105,99,97,44,115,97,110,115,45,115,101,114,105,102,59,111,112,97,99,105,116,121,58,48,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,45,111,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,125,46,108,105,116,121,45,108,111,97,100,105,110,103,32,46,108,105,116,121,45,108,111,97,100,101,114,123,111,112,97,99,105,116,121,58,49,125,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,123,122,45,105,110,100,101,120,58,57,57,57,50,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,104,101,105,103,104,116,58,49,48,48,37,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,125,46,108,105,116,121,45,99,111,110,116,101,110,116,123,122,45,105,110,100,101,120,58,57,57,57,51,59,119,105,100,116,104,58,49,48,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,45,109,115,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,45,111,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,45,111,45,116,114,97,110,115,105,116,105,111,110,58,45,111,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,44,32,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,44,32,45,111,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,125,46,108,105,116,121,45,108,111,97,100,105,110,103,32,46,108,105,116,121,45,99,111,110,116,101,110,116,44,46,108,105,116,121,45,99,108,111,115,101,100,32,46,108,105,116,121,45,99,111,110,116,101,110,116,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,59,45,109,115,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,59,45,111,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,125,46,108,105,116,121,45,99,111,110,116,101,110,116,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,39,39,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,108,101,102,116,58,48,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,114,105,103,104,116,58,48,59,119,105,100,116,104,58,97,117,116,111,59,104,101,105,103,104,116,58,97,117,116,111,59,122,45,105,110,100,101,120,58,45,49,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,125,46,108,105,116,121,45,99,108,111,115,101,123,122,45,105,110,100,101,120,58,57,57,57,52,59,119,105,100,116,104,58,51,53,112,120,59,104,101,105,103,104,116,58,51,53,112,120,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,114,105,103,104,116,58,48,59,116,111,112,58,48,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,48,59,99,111,108,111,114,58,35,102,102,102,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,115,105,122,101,58,51,53,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,65,114,105,97,108,44,66,97,115,107,101,114,118,105,108,108,101,44,109,111,110,111,115,112,97,99,101,59,108,105,110,101,45,104,101,105,103,104,116,58,51,53,112,120,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,49,112,120,32,50,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,114,100,101,114,58,48,59,98,97,99,107,103,114,111,117,110,100,58,110,111,110,101,59,111,117,116,108,105,110,101,58,110,111,110,101,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,125,46,108,105,116,121,45,99,108,111,115,101,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,123,98,111,114,100,101,114,58,48,59,112,97,100,100,105,110,103,58,48,125,46,108,105,116,121,45,99,108,111,115,101,58,104,111,118,101,114,44,46,108,105,116,121,45,99,108,111,115,101,58,102,111,99,117,115,44,46,108,105,116,121,45,99,108,111,115,101,58,97,99,116,105,118,101,44,46,108,105,116,121,45,99,108,111,115,101,58,118,105,115,105,116,101,100,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,48,59,99,111,108,111,114,58,35,102,102,102,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,115,105,122,101,58,51,53,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,65,114,105,97,108,44,66,97,115,107,101,114,118,105,108,108,101,44,109,111,110,111,115,112,97,99,101,59,108,105,110,101,45,104,101,105,103,104,116,58,51,53,112,120,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,49,112,120,32,50,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,114,100,101,114,58,48,59,98,97,99,107,103,114,111,117,110,100,58,110,111,110,101,59,111,117,116,108,105,110,101,58,110,111,110,101,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,125,46,108,105,116,121,45,99,108,111,115,101,58,97,99,116,105,118,101,123,116,111,112,58,49,112,120,125,46,108,105,116,121,45,105,109,97,103,101,32,105,109,103,123,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,105,110,101,45,104,101,105,103,104,116,58,48,59,98,111,114,100,101,114,58,48,125,46,108,105,116,121,45,105,102,114,97,109,101,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,121,111,117,116,117,98,101,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,118,105,109,101,111,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,102,97,99,101,98,111,111,107,118,105,100,101,111,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,103,111,111,103,108,101,109,97,112,115,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,123,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,57,54,52,112,120,125,46,108,105,116,121,45,105,102,114,97,109,101,45,99,111,110,116,97,105,110,101,114,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,116,111,112,58,53,54,46,50,53,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,108,108,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,90,40,48,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,90,40,48,41,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,108,105,116,121,45,105,102,114,97,109,101,45,99,111,110,116,97,105,110,101,114,32,105,102,114,97,109,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,97,99,107,103,114,111,117,110,100,58,35,48,48,48,125,46,108,105,116,121,45,104,105,100,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,42,58,102,111,99,117,115,32,123,10,32,32,32,32,111,117,116,108,105,110,101,58,32,48,59,10,125,10,10,46,105,110,102,111,45,105,99,111,110,32,123,10,32,32,32,32,119,105,100,116,104,58,32,49,114,101,109,59,10,32,32,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,48,46,50,114,101,109,59,10,32,32,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,10,32,32,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,32,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,98,97,115,101,54,52,44,80,72,78,50,90,121,66,52,98,87,120,117,99,122,48,105,97,72,82,48,99,68,111,118,76,51,100,51,100,121,53,51,77,121,53,118,99,109,99,118,77,106,65,119,77,67,57,122,100,109,99,105,73,72,104,116,98,71,53,122,79,110,104,115,97,87,53,114,80,83,74,111,100,72,82,119,79,105,56,118,100,51,100,51,76,110,99,122,76,109,57,121,90,121,56,120,79,84,107,53,76,51,104,115,97,87,53,114,73,105,66,52,80,83,73,119,99,72,103,105,73,72,107,57,73,106,66,119,101,67,73,75,73,67,65,103,73,67,66,50,97,87,86,51,81,109,57,52,80,83,73,119,73,68,65,103,78,68,73,50,76,106,89,50,78,121,65,48,77,106,89,117,78,106,89,51,73,105,66,122,100,72,108,115,90,84,48,105,90,87,53,104,89,109,120,108,76,87,74,104,89,50,116,110,99,109,57,49,98,109,81,54,98,109,86,51,73,68,65,103,77,67,65,48,77,106,89,117,78,106,89,51,73,68,81,121,78,105,52,50,78,106,99,55,73,105,66,109,97,87,120,115,80,83,73,106,90,109,90,109,73,106,52,75,80,71,99,43,67,105,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,80,72,74,108,89,51,81,103,101,68,48,105,77,84,107,121,73,105,66,53,80,83,73,120,79,84,73,105,73,72,100,112,90,72,82,111,80,83,73,48,77,105,52,50,78,106,99,105,73,71,104,108,97,87,100,111,100,68,48,105,77,84,73,52,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,119,89,88,82,111,73,71,81,57,73,107,48,121,77,84,77,117,77,122,77,122,76,68,66,68,79,84,85,117,78,68,89,51,76,68,65,115,77,67,119,53,78,83,52,48,78,106,99,115,77,67,119,121,77,84,77,117,77,122,77,122,99,122,107,49,76,106,81,50,78,121,119,121,77,84,77,117,77,122,77,122,76,68,73,120,77,121,52,122,77,122,77,115,77,106,69,122,76,106,77,122,77,49,77,48,77,106,89,117,78,106,89,51,76,68,77,122,77,83,52,121,76,68,81,121,78,105,52,50,78,106,99,115,77,106,69,122,76,106,77,122,77,119,111,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,85,122,77,122,77,83,52,121,76,68,65,115,77,106,69,122,76,106,77,122,77,121,119,119,101,105,66,78,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,106,76,84,107,48,76,106,65,52,76,68,65,116,77,84,99,119,76,106,89,50,78,121,48,51,78,105,52,49,79,68,99,116,77,84,99,119,76,106,89,50,78,121,48,120,78,122,65,117,78,106,89,51,85,122,69,120,79,83,52,121,78,84,77,115,78,68,73,117,78,106,89,51,76,68,73,120,77,121,52,122,77,122,77,115,78,68,73,117,78,106,89,51,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,66,84,77,122,103,48,76,68,69,120,79,83,52,121,78,84,77,115,77,122,103,48,76,68,73,120,77,121,52,122,77,122,78,84,77,122,65,51,76,106,81,120,77,121,119,122,79,68,81,115,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,54,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,121,90,87,78,48,73,72,103,57,73,106,69,53,77,105,73,103,101,84,48,105,77,84,65,50,76,106,89,50,78,121,73,103,100,50,108,107,100,71,103,57,73,106,81,121,76,106,89,50,78,121,73,103,97,71,86,112,90,50,104,48,80,83,73,48,77,105,52,50,78,106,99,105,76,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,76,50,99,43,67,105,65,103,73,67,65,56,76,50,99,43,67,106,119,118,90,122,52,75,80,67,57,122,100,109,99,43,67,103,61,61,41,59,10,32,32,32,32,102,105,108,116,101,114,58,32,98,114,105,103,104,116,110,101,115,115,40,54,53,37,41,59,10,125,10,10,46,105,110,102,111,45,105,99,111,110,58,104,111,118,101,114,32,123,10,32,32,32,32,99,111,108,111,114,58,32,105,110,104,101,114,105,116,59,10,125,10,10,46,109,111,100,97,108,45,116,105,116,108,101,32,123,10,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,99,97,108,99,40,49,48,48,37,32,45,32,50,114,101,109,41,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,10,32,32,32,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,10,125,10,10,10,46,112,97,116,104,45,114,111,119,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,45,109,115,45,102,108,101,120,98,111,120,59,10,32,32,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,10,32,32,32,32,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,32,115,116,97,114,116,59,10,32,32,32,32,97,108,105,103,110,45,105,116,101,109,115,58,32,102,108,101,120,45,115,116,97,114,116,59,10,125,10,10,46,116,97,103,45,99,111,110,116,97,105,110,101,114,32,123,10,32,32,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,48,46,51,114,101,109,59,10,125,10,10,46,112,97,116,104,45,108,105,110,101,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,66,66,66,59,10,32,32,32,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,10,32,32,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,119,114,97,112,59,10,125,10,10,97,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,48,48,66,67,68,52,59,10,125,10,10,98,111,100,121,32,123,10,32,32,32,32,111,118,101,114,102,108,111,119,45,121,58,32,115,99,114,111,108,108,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,98,108,97,99,107,59,10,125,10,10,46,112,114,111,103,114,101,115,115,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,125,10,10,46,99,97,114,100,44,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,50,49,50,49,50,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,49,112,120,59,10,32,32,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,10,125,10,10,46,116,97,98,108,101,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,125,10,10,46,116,97,98,108,101,32,116,100,44,32,46,116,97,98,108,101,32,116,104,32,123,10,32,32,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,10,125,10,10,46,116,97,98,108,101,32,116,104,101,97,100,32,116,104,32,123,10,32,32,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,49,112,120,32,115,111,108,105,100,32,35,54,52,54,52,54,52,59,10,125,10,10,46,109,111,100,97,108,45,104,101,97,100,101,114,32,46,99,108,111,115,101,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,32,32,32,32,116,101,120,116,45,115,104,97,100,111,119,58,32,110,111,110,101,59,10,125,10,10,46,109,111,100,97,108,45,104,101,97,100,101,114,32,123,10,32,32,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,49,112,120,32,115,111,108,105,100,32,35,54,52,54,52,54,52,59,10,125,10,10,46,115,117,98,45,100,111,99,117,109,101,110,116,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,51,55,52,55,52,70,32,33,105,109,112,111,114,116,97,110,116,59,10,125,10,10,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,115,117,98,45,100,111,99,117,109,101,110,116,32,123,10,32,32,32,32,98,111,114,100,101,114,45,116,111,112,58,32,49,112,120,32,115,111,108,105,100,32,35,54,52,54,52,54,52,32,33,105,109,112,111,114,116,97,110,116,59,10,125,10,10,46,115,117,98,45,100,111,99,117,109,101,110,116,32,46,116,101,120,116,45,109,117,116,101,100,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,56,97,57,52,57,99,32,33,105,109,112,111,114,116,97,110,116,59,10,125,10,10,10,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,50,49,50,49,50,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,10,32,32,32,32,98,111,114,100,101,114,45,116,111,112,58,32,49,112,120,32,115,111,108,105,100,32,35,52,50,52,50,52,50,59,10,32,32,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,110,111,110,101,59,10,32,32,32,32,98,111,114,100,101,114,45,108,101,102,116,58,32,110,111,110,101,59,10,32,32,32,32,98,111,114,100,101,114,45,114,105,103,104,116,58,32,110,111,110,101,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,46,50,53,114,101,109,32,48,46,53,114,101,109,59,10,125,10,10,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,123,10,32,32,32,32,98,111,114,100,101,114,45,116,111,112,58,32,110,111,110,101,59,10,125,10,10,46,110,97,118,98,97,114,45,98,114,97,110,100,32,123,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,46,55,53,114,101,109,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,59,10,32,32,32,32,99,111,108,111,114,58,32,35,102,53,102,53,102,53,59,10,125,10,10,46,110,97,118,98,97,114,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,53,52,54,98,55,97,59,10,125,10,10,46,110,97,118,98,97,114,32,97,58,104,111,118,101,114,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,102,102,102,59,10,125,10,10,46,110,97,118,98,97,114,32,115,112,97,110,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,101,101,101,59,10,125,10,10,46,100,111,99,117,109,101,110,116,32,123,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,46,53,114,101,109,59,10,125,10,10,46,100,111,99,117,109,101,110,116,32,112,32,123,10,32,32,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,48,59,10,125,10,10,46,100,111,99,117,109,101,110,116,58,104,111,118,101,114,32,112,32,123,10,32,32,32,32,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,32,117,110,100,101,114,108,105,110,101,59,10,125,10,10,46,98,97,100,103,101,45,118,105,100,101,111,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,50,55,55,54,49,59,10,125,10,10,46,98,97,100,103,101,45,105,109,97,103,101,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,65,65,57,57,67,57,59,10,125,10,10,46,98,97,100,103,101,45,97,117,100,105,111,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,48,48,65,68,69,70,59,10,125,10,10,46,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,50,49,50,53,50,57,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,66,48,66,69,67,53,59,10,125,10,10,46,98,97,100,103,101,45,116,101,120,116,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,65,65,66,51,67,59,10,125,10,10,46,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,32,123,10,32,32,32,32,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,32,110,111,110,101,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,46,55,53,114,101,109,59,10,10,32,32,32,32,98,111,116,116,111,109,58,32,117,110,115,101,116,59,10,32,32,32,32,116,111,112,58,32,48,59,10,32,32,32,32,108,101,102,116,58,32,117,110,115,101,116,59,10,32,32,32,32,114,105,103,104,116,58,32,117,110,115,101,116,59,10,125,10,10,46,102,105,108,101,45,116,105,116,108,101,32,123,10,32,32,32,32,119,105,100,116,104,58,32,49,48,48,37,59,10,32,32,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,104,101,105,103,104,116,58,32,49,46,49,114,101,109,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,48,112,116,59,10,32,32,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,119,114,97,112,59,10,32,32,32,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,10,32,32,32,32,99,111,108,111,114,58,32,35,48,48,66,67,68,52,59,10,125,10,10,46,98,97,100,103,101,32,123,10,32,32,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,51,112,120,59,10,125,10,10,46,98,97,100,103,101,45,117,115,101,114,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,50,49,50,53,50,57,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,125,10,10,46,102,105,116,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,10,32,32,32,32,109,105,110,45,119,105,100,116,104,58,32,54,52,112,120,59,10,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,49,48,48,37,59,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,49,55,53,112,120,59,10,32,32,32,32,109,97,114,103,105,110,58,32,48,32,97,117,116,111,32,48,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,51,112,120,32,51,112,120,32,48,59,10,32,32,32,32,119,105,100,116,104,58,32,97,117,116,111,59,10,32,32,32,32,104,101,105,103,104,116,58,32,97,117,116,111,59,10,125,10,10,46,102,105,116,45,115,109,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,10,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,54,52,112,120,59,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,54,52,112,120,59,10,32,32,32,32,109,97,114,103,105,110,58,32,48,32,97,117,116,111,59,10,32,32,32,32,119,105,100,116,104,58,32,97,117,116,111,59,10,32,32,32,32,104,101,105,103,104,116,58,32,97,117,116,111,59,10,125,10,10,46,97,117,100,105,111,45,102,105,116,32,123,10,32,32,32,32,104,101,105,103,104,116,58,32,51,57,112,120,59,10,32,32,32,32,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,32,98,111,116,116,111,109,59,10,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,108,105,110,101,59,10,32,32,32,32,119,105,100,116,104,58,32,49,48,48,37,59,10,125,10,10,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,32,49,53,48,48,112,120,41,32,123,10,32,32,32,32,46,99,111,110,116,97,105,110,101,114,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,49,52,52,48,112,120,59,10,32,32,32,32,125,10,10,32,32,32,32,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,32,123,10,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,50,48,37,32,33,105,109,112,111,114,116,97,110,116,59,10,32,32,32,32,125,10,10,32,32,32,32,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,50,48,37,59,10,32,32,32,32,125,10,125,10,10,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,32,49,56,48,48,112,120,41,32,123,10,32,32,32,32,46,99,111,110,116,97,105,110,101,114,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,49,53,53,48,112,120,59,10,32,32,32,32,125,10,125,10,10,109,97,114,107,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,114,103,98,97,40,50,53,49,44,32,49,57,49,44,32,52,49,44,32,48,46,50,53,41,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,49,112,120,32,48,59,10,32,32,32,32,99,111,108,111,114,58,32,105,110,104,101,114,105,116,59,10,125,10,10,46,99,111,110,116,101,110,116,45,100,105,118,32,109,97,114,107,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,114,103,98,97,40,50,53,49,44,32,49,57,49,44,32,52,49,44,32,48,46,52,48,41,59,10,32,32,32,32,99,111,108,111,114,58,32,119,104,105,116,101,59,10,125,10,10,10,46,99,111,110,116,101,110,116,45,100,105,118,32,123,10,32,32,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,32,77,101,110,108,111,44,32,77,111,110,97,99,111,44,32,67,111,110,115,111,108,97,115,44,32,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,32,34,67,111,117,114,105,101,114,32,78,101,119,34,44,32,109,111,110,111,115,112,97,99,101,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,49,101,109,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,51,55,52,55,52,70,59,10,32,32,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,54,49,54,49,54,49,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,52,112,120,59,10,32,32,32,32,109,97,114,103,105,110,58,32,51,112,120,59,10,32,32,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,114,109,97,108,59,10,32,32,32,32,99,111,108,111,114,58,32,114,103,98,40,50,50,52,44,32,50,50,52,44,32,50,50,52,41,59,10,125,10,10,46,105,114,115,45,115,105,110,103,108,101,44,32,46,105,114,115,45,102,114,111,109,44,32,46,105,114,115,45,116,111,32,123,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,48,48,66,67,68,52,59,10,125,10,10,46,105,114,115,45,115,108,105,100,101,114,32,123,10,32,32,32,32,99,117,114,115,111,114,58,32,99,111,108,45,114,101,115,105,122,101,59,10,125,10,10,46,105,114,115,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,32,32,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,49,101,109,59,10,125,10,10,46,99,117,115,116,111,109,45,115,101,108,101,99,116,32,123,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,51,55,52,55,52,70,59,10,32,32,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,54,49,54,49,54,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,98,100,98,100,98,100,59,10,125,10,10,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,32,123,10,32,32,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,35,55,53,55,53,55,53,59,10,32,32,32,32,111,117,116,108,105,110,101,58,32,48,59,10,32,32,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,32,49,50,51,44,32,50,53,53,44,32,46,50,53,41,59,10,125,10,10,111,112,116,105,111,110,32,123,10,32,32,32,32,111,117,116,108,105,110,101,58,32,110,111,110,101,59,10,125,10,10,46,102,111,114,109,45,99,111,110,116,114,111,108,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,51,55,52,55,52,70,59,10,32,32,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,54,49,54,49,54,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,102,102,102,59,10,125,10,10,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,53,52,54,69,55,65,59,10,32,32,32,32,99,111,108,111,114,58,32,35,102,102,102,59,10,125,10,10,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,50,54,51,50,51,56,59,10,32,32,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,54,49,54,49,54,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,100,98,100,98,100,98,59,10,125,10,10,58,58,112,108,97,99,101,104,111,108,100,101,114,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,66,68,66,68,66,68,32,33,105,109,112,111,114,116,97,110,116,59,10,32,32,32,32,111,112,97,99,105,116,121,58,32,49,59,10,125,10,10,10,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,119,104,111,108,101,114,111,119,44,32,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,32,43,32,46,119,104,111,108,101,114,111,119,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,110,111,110,101,59,10,125,10,10,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,101,120,112,97,110,100,58,58,98,101,102,111,114,101,44,32,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,111,108,108,97,112,115,101,58,58,98,101,102,111,114,101,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,98,108,97,99,107,59,10,125,10,10,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,101,101,101,59,10,125,10,10,46,105,110,115,112,105,114,101,45,116,114,101,101,32,123,10,32,32,32,32,102,111,110,116,45,119,101,105,103,104,116,58,32,52,48,48,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,52,112,120,59,10,32,32,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,72,101,108,118,101,116,105,99,97,44,32,78,117,101,117,101,44,32,86,101,114,100,97,110,97,44,32,115,97,110,115,45,115,101,114,105,102,59,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,51,53,48,112,120,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,59,10,125,10,10,46,112,97,103,101,45,105,110,100,105,99,97,116,111,114,32,123,10,32,32,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,46,53,114,101,109,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,50,49,50,49,50,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,101,101,101,59,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,125,10,10,46,98,116,110,45,120,115,32,123,10,32,32,32,32,112,97,100,100,105,110,103,58,32,46,49,114,101,109,32,46,51,114,101,109,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,46,56,55,53,114,101,109,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,46,50,114,101,109,59,10,125,10,10,46,98,116,110,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,101,101,101,59,10,125,10,10,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,125,10,10,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,105,116,101,109,46,115,104,111,119,32,46,110,97,118,45,108,105,110,107,44,32,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,50,49,50,49,50,49,59,10,32,32,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,35,54,49,54,49,54,49,32,35,54,49,54,49,54,49,32,35,50,49,50,49,50,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,125,10,10,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,32,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,32,123,10,32,32,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,35,54,49,54,49,54,49,32,35,54,49,54,49,54,49,32,35,50,49,50,49,50,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,125,10,10,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,32,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,32,123,10,32,32,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,35,101,48,101,48,101,48,32,35,101,48,101,48,101,48,32,35,50,49,50,49,50,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,125,10,10,46,110,97,118,45,116,97,98,115,32,123,10,32,32,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,35,54,49,54,49,54,49,59,10,125,10,10,46,110,97,118,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,48,46,53,114,101,109,59,10,125,10,10,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,32,56,48,48,112,120,41,32,123,10,32,32,32,32,35,116,114,101,101,84,97,98,115,32,123,10,32,32,32,32,32,32,32,32,102,108,101,120,45,98,97,115,105,115,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,32,32,32,32,102,108,101,120,45,103,114,111,119,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,125,10,125,10,10,46,108,105,115,116,45,103,114,111,117,112,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,125,10,10,46,119,114,97,112,112,101,114,45,115,109,32,123,10,32,32,32,32,109,105,110,45,119,105,100,116,104,58,32,54,52,112,120,59,10,125,10,10,46,109,101,100,105,97,45,101,120,112,97,110,100,101,100,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,104,101,114,105,116,59,10,125,10,10,46,109,101,100,105,97,45,101,120,112,97,110,100,101,100,32,46,102,105,116,32,123,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,50,53,48,112,120,59,10,125,10,10,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,32,54,53,48,112,120,41,32,123,10,32,32,32,32,46,109,101,100,105,97,45,101,120,112,97,110,100,101,100,32,46,102,105,116,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,110,111,110,101,59,10,32,32,32,32,125,10,10,32,32,32,32,46,116,97,103,108,105,110,101,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,10,32,32,32,32,125,10,125,10,10,46,118,101,114,115,105,111,110,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,48,48,66,67,68,52,59,10,32,32,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,45,49,56,112,120,59,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,45,49,52,112,120,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,49,112,120,59,10,125,10,10,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,32,56,48,48,112,120,41,32,123,10,32,32,32,32,46,115,109,97,108,108,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,10,32,32,32,32,125,10,32,32,32,32,46,108,97,114,103,101,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,125,10,125,10,10,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,32,56,48,49,112,120,41,32,123,10,32,32,32,32,46,115,109,97,108,108,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,125,10,32,32,32,32,46,108,97,114,103,101,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,10,32,32,32,32,125,10,125,10,10,35,115,101,97,114,99,104,66,97,114,32,123,10,32,32,32,32,98,111,114,100,101,114,45,114,105,103,104,116,58,32,110,111,110,101,59,10,125,10,10,35,112,97,116,104,84,114,101,101,32,46,116,105,116,108,101,32,123,10,32,32,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,10,125,10,10,115,118,103,32,123,10,32,32,32,32,102,105,108,108,58,32,119,104,105,116,101,59,10,125,10,10,46,112,108,97,121,32,123,10,32,32,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,10,32,32,32,32,119,105,100,116,104,58,32,53,48,112,120,59,10,32,32,32,32,104,101,105,103,104,116,58,32,53,48,112,120,59,10,32,32,32,32,108,101,102,116,58,32,53,48,37,59,10,32,32,32,32,116,111,112,58,32,53,48,37,59,10,32,32,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,10,32,32,32,32,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,32,110,111,110,101,59,10,125,10,10,46,112,108,97,121,32,115,118,103,32,123,10,32,32,32,32,102,105,108,108,58,32,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,55,41,59,10,125,10,10,46,105,109,103,45,119,114,97,112,112,101,114,58,104,111,118,101,114,32,115,118,103,32,123,10,32,32,32,32,102,105,108,108,58,32,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,49,41,59,10,125,10,10,46,112,111,105,110,116,101,114,32,123,10,32,32,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,10,125,10,10}; -char bundle_js[437709] = {47,42,33,32,106,81,117,101,114,121,32,118,51,46,52,46,49,32,124,32,40,99,41,32,74,83,32,70,111,117,110,100,97,116,105,111,110,32,97,110,100,32,111,116,104,101,114,32,99,111,110,116,114,105,98,117,116,111,114,115,32,124,32,106,113,117,101,114,121,46,111,114,103,47,108,105,99,101,110,115,101,32,42,47,10,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,109,111,100,117,108,101,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,101,46,100,111,99,117,109,101,110,116,63,116,40,101,44,33,48,41,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,101,46,100,111,99,117,109,101,110,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,106,81,117,101,114,121,32,114,101,113,117,105,114,101,115,32,97,32,119,105,110,100,111,119,32,119,105,116,104,32,97,32,100,111,99,117,109,101,110,116,34,41,59,114,101,116,117,114,110,32,116,40,101,41,125,58,116,40,101,41,125,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,116,104,105,115,44,102,117,110,99,116,105,111,110,40,67,44,101,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,116,61,91,93,44,69,61,67,46,100,111,99,117,109,101,110,116,44,114,61,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,44,115,61,116,46,115,108,105,99,101,44,103,61,116,46,99,111,110,99,97,116,44,117,61,116,46,112,117,115,104,44,105,61,116,46,105,110,100,101,120,79,102,44,110,61,123,125,44,111,61,110,46,116,111,83,116,114,105,110,103,44,118,61,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,44,97,61,118,46,116,111,83,116,114,105,110,103,44,108,61,97,46,99,97,108,108,40,79,98,106,101,99,116,41,44,121,61,123,125,44,109,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,38,38,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,101,46,110,111,100,101,84,121,112,101,125,44,120,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,101,38,38,101,61,61,61,101,46,119,105,110,100,111,119,125,44,99,61,123,116,121,112,101,58,33,48,44,115,114,99,58,33,48,44,110,111,110,99,101,58,33,48,44,110,111,77,111,100,117,108,101,58,33,48,125,59,102,117,110,99,116,105,111,110,32,98,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,40,110,61,110,124,124,69,41,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,99,114,105,112,116,34,41,59,105,102,40,111,46,116,101,120,116,61,101,44,116,41,102,111,114,40,114,32,105,110,32,99,41,40,105,61,116,91,114,93,124,124,116,46,103,101,116,65,116,116,114,105,98,117,116,101,38,38,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,114,41,41,38,38,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,114,44,105,41,59,110,46,104,101,97,100,46,97,112,112,101,110,100,67,104,105,108,100,40,111,41,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,111,41,125,102,117,110,99,116,105,111,110,32,119,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,63,101,43,34,34,58,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,110,91,111,46,99,97,108,108,40,101,41,93,124,124,34,111,98,106,101,99,116,34,58,116,121,112,101,111,102,32,101,125,118,97,114,32,102,61,34,51,46,52,46,49,34,44,107,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,110,101,119,32,107,46,102,110,46,105,110,105,116,40,101,44,116,41,125,44,112,61,47,94,91,92,115,92,117,70,69,70,70,92,120,65,48,93,43,124,91,92,115,92,117,70,69,70,70,92,120,65,48,93,43,36,47,103,59,102,117,110,99,116,105,111,110,32,100,40,101,41,123,118,97,114,32,116,61,33,33,101,38,38,34,108,101,110,103,116,104,34,105,110,32,101,38,38,101,46,108,101,110,103,116,104,44,110,61,119,40,101,41,59,114,101,116,117,114,110,33,109,40,101,41,38,38,33,120,40,101,41,38,38,40,34,97,114,114,97,121,34,61,61,61,110,124,124,48,61,61,61,116,124,124,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,38,38,48,60,116,38,38,116,45,49,32,105,110,32,101,41,125,107,46,102,110,61,107,46,112,114,111,116,111,116,121,112,101,61,123,106,113,117,101,114,121,58,102,44,99,111,110,115,116,114,117,99,116,111,114,58,107,44,108,101,110,103,116,104,58,48,44,116,111,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,46,99,97,108,108,40,116,104,105,115,41,125,44,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,63,115,46,99,97,108,108,40,116,104,105,115,41,58,101,60,48,63,116,104,105,115,91,101,43,116,104,105,115,46,108,101,110,103,116,104,93,58,116,104,105,115,91,101,93,125,44,112,117,115,104,83,116,97,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,46,109,101,114,103,101,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,41,44,101,41,59,114,101,116,117,114,110,32,116,46,112,114,101,118,79,98,106,101,99,116,61,116,104,105,115,44,116,125,44,101,97,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,101,97,99,104,40,116,104,105,115,44,101,41,125,44,109,97,112,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,107,46,109,97,112,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,110,46,99,97,108,108,40,101,44,116,44,101,41,125,41,41,125,44,115,108,105,99,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,115,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,44,102,105,114,115,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,113,40,48,41,125,44,108,97,115,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,113,40,45,49,41,125,44,101,113,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,108,101,110,103,116,104,44,110,61,43,101,43,40,101,60,48,63,116,58,48,41,59,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,48,60,61,110,38,38,110,60,116,63,91,116,104,105,115,91,110,93,93,58,91,93,41,125,44,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,114,101,118,79,98,106,101,99,116,124,124,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,41,125,44,112,117,115,104,58,117,44,115,111,114,116,58,116,46,115,111,114,116,44,115,112,108,105,99,101,58,116,46,115,112,108,105,99,101,125,44,107,46,101,120,116,101,110,100,61,107,46,102,110,46,101,120,116,101,110,100,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,44,110,44,114,44,105,44,111,44,97,61,97,114,103,117,109,101,110,116,115,91,48,93,124,124,123,125,44,115,61,49,44,117,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,108,61,33,49,59,102,111,114,40,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,97,38,38,40,108,61,97,44,97,61,97,114,103,117,109,101,110,116,115,91,115,93,124,124,123,125,44,115,43,43,41,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,97,124,124,109,40,97,41,124,124,40,97,61,123,125,41,44,115,61,61,61,117,38,38,40,97,61,116,104,105,115,44,115,45,45,41,59,115,60,117,59,115,43,43,41,105,102,40,110,117,108,108,33,61,40,101,61,97,114,103,117,109,101,110,116,115,91,115,93,41,41,102,111,114,40,116,32,105,110,32,101,41,114,61,101,91,116,93,44,34,95,95,112,114,111,116,111,95,95,34,33,61,61,116,38,38,97,33,61,61,114,38,38,40,108,38,38,114,38,38,40,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,114,41,124,124,40,105,61,65,114,114,97,121,46,105,115,65,114,114,97,121,40,114,41,41,41,63,40,110,61,97,91,116,93,44,111,61,105,38,38,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,63,91,93,58,105,124,124,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,110,41,63,110,58,123,125,44,105,61,33,49,44,97,91,116,93,61,107,46,101,120,116,101,110,100,40,108,44,111,44,114,41,41,58,118,111,105,100,32,48,33,61,61,114,38,38,40,97,91,116,93,61,114,41,41,59,114,101,116,117,114,110,32,97,125,44,107,46,101,120,116,101,110,100,40,123,101,120,112,97,110,100,111,58,34,106,81,117,101,114,121,34,43,40,102,43,77,97,116,104,46,114,97,110,100,111,109,40,41,41,46,114,101,112,108,97,99,101,40,47,92,68,47,103,44,34,34,41,44,105,115,82,101,97,100,121,58,33,48,44,101,114,114,111,114,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,101,41,125,44,110,111,111,112,58,102,117,110,99,116,105,111,110,40,41,123,125,44,105,115,80,108,97,105,110,79,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,59,114,101,116,117,114,110,33,40,33,101,124,124,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,33,61,61,111,46,99,97,108,108,40,101,41,41,38,38,40,33,40,116,61,114,40,101,41,41,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,40,110,61,118,46,99,97,108,108,40,116,44,34,99,111,110,115,116,114,117,99,116,111,114,34,41,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,41,38,38,97,46,99,97,108,108,40,110,41,61,61,61,108,41,125,44,105,115,69,109,112,116,121,79,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,102,111,114,40,116,32,105,110,32,101,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,44,103,108,111,98,97,108,69,118,97,108,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,98,40,101,44,123,110,111,110,99,101,58,116,38,38,116,46,110,111,110,99,101,125,41,125,44,101,97,99,104,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,48,59,105,102,40,100,40,101,41,41,123,102,111,114,40,110,61,101,46,108,101,110,103,116,104,59,114,60,110,59,114,43,43,41,105,102,40,33,49,61,61,61,116,46,99,97,108,108,40,101,91,114,93,44,114,44,101,91,114,93,41,41,98,114,101,97,107,125,101,108,115,101,32,102,111,114,40,114,32,105,110,32,101,41,105,102,40,33,49,61,61,61,116,46,99,97,108,108,40,101,91,114,93,44,114,44,101,91,114,93,41,41,98,114,101,97,107,59,114,101,116,117,114,110,32,101,125,44,116,114,105,109,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,63,34,34,58,40,101,43,34,34,41,46,114,101,112,108,97,99,101,40,112,44,34,34,41,125,44,109,97,107,101,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,124,124,91,93,59,114,101,116,117,114,110,32,110,117,108,108,33,61,101,38,38,40,100,40,79,98,106,101,99,116,40,101,41,41,63,107,46,109,101,114,103,101,40,110,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,91,101,93,58,101,41,58,117,46,99,97,108,108,40,110,44,101,41,41,44,110,125,44,105,110,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,45,49,58,105,46,99,97,108,108,40,116,44,101,44,110,41,125,44,109,101,114,103,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,43,116,46,108,101,110,103,116,104,44,114,61,48,44,105,61,101,46,108,101,110,103,116,104,59,114,60,110,59,114,43,43,41,101,91,105,43,43,93,61,116,91,114,93,59,114,101,116,117,114,110,32,101,46,108,101,110,103,116,104,61,105,44,101,125,44,103,114,101,112,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,61,91,93,44,105,61,48,44,111,61,101,46,108,101,110,103,116,104,44,97,61,33,110,59,105,60,111,59,105,43,43,41,33,116,40,101,91,105,93,44,105,41,33,61,61,97,38,38,114,46,112,117,115,104,40,101,91,105,93,41,59,114,101,116,117,114,110,32,114,125,44,109,97,112,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,48,44,97,61,91,93,59,105,102,40,100,40,101,41,41,102,111,114,40,114,61,101,46,108,101,110,103,116,104,59,111,60,114,59,111,43,43,41,110,117,108,108,33,61,40,105,61,116,40,101,91,111,93,44,111,44,110,41,41,38,38,97,46,112,117,115,104,40,105,41,59,101,108,115,101,32,102,111,114,40,111,32,105,110,32,101,41,110,117,108,108,33,61,40,105,61,116,40,101,91,111,93,44,111,44,110,41,41,38,38,97,46,112,117,115,104,40,105,41,59,114,101,116,117,114,110,32,103,46,97,112,112,108,121,40,91,93,44,97,41,125,44,103,117,105,100,58,49,44,115,117,112,112,111,114,116,58,121,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,40,107,46,102,110,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,61,116,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,41,44,107,46,101,97,99,104,40,34,66,111,111,108,101,97,110,32,78,117,109,98,101,114,32,83,116,114,105,110,103,32,70,117,110,99,116,105,111,110,32,65,114,114,97,121,32,68,97,116,101,32,82,101,103,69,120,112,32,79,98,106,101,99,116,32,69,114,114,111,114,32,83,121,109,98,111,108,34,46,115,112,108,105,116,40,34,32,34,41,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,110,91,34,91,111,98,106,101,99,116,32,34,43,116,43,34,93,34,93,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,59,118,97,114,32,104,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,44,100,44,98,44,111,44,105,44,104,44,102,44,103,44,119,44,117,44,108,44,84,44,67,44,97,44,69,44,118,44,115,44,99,44,121,44,107,61,34,115,105,122,122,108,101,34,43,49,42,110,101,119,32,68,97,116,101,44,109,61,110,46,100,111,99,117,109,101,110,116,44,83,61,48,44,114,61,48,44,112,61,117,101,40,41,44,120,61,117,101,40,41,44,78,61,117,101,40,41,44,65,61,117,101,40,41,44,68,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,101,61,61,61,116,38,38,40,108,61,33,48,41,44,48,125,44,106,61,123,125,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,44,116,61,91,93,44,113,61,116,46,112,111,112,44,76,61,116,46,112,117,115,104,44,72,61,116,46,112,117,115,104,44,79,61,116,46,115,108,105,99,101,44,80,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,44,114,61,101,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,105,102,40,101,91,110,93,61,61,61,116,41,114,101,116,117,114,110,32,110,59,114,101,116,117,114,110,45,49,125,44,82,61,34,99,104,101,99,107,101,100,124,115,101,108,101,99,116,101,100,124,97,115,121,110,99,124,97,117,116,111,102,111,99,117,115,124,97,117,116,111,112,108,97,121,124,99,111,110,116,114,111,108,115,124,100,101,102,101,114,124,100,105,115,97,98,108,101,100,124,104,105,100,100,101,110,124,105,115,109,97,112,124,108,111,111,112,124,109,117,108,116,105,112,108,101,124,111,112,101,110,124,114,101,97,100,111,110,108,121,124,114,101,113,117,105,114,101,100,124,115,99,111,112,101,100,34,44,77,61,34,91,92,92,120,50,48,92,92,116,92,92,114,92,92,110,92,92,102,93,34,44,73,61,34,40,63,58,92,92,92,92,46,124,91,92,92,119,45,93,124,91,94,92,48,45,92,92,120,97,48,93,41,43,34,44,87,61,34,92,92,91,34,43,77,43,34,42,40,34,43,73,43,34,41,40,63,58,34,43,77,43,34,42,40,91,42,94,36,124,33,126,93,63,61,41,34,43,77,43,34,42,40,63,58,39,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,39,93,41,42,41,39,124,92,34,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,92,34,93,41,42,41,92,34,124,40,34,43,73,43,34,41,41,124,41,34,43,77,43,34,42,92,92,93,34,44,36,61,34,58,40,34,43,73,43,34,41,40,63,58,92,92,40,40,40,39,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,39,93,41,42,41,39,124,92,34,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,92,34,93,41,42,41,92,34,41,124,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,40,41,91,92,92,93,93,124,34,43,87,43,34,41,42,41,124,46,42,41,92,92,41,124,41,34,44,70,61,110,101,119,32,82,101,103,69,120,112,40,77,43,34,43,34,44,34,103,34,41,44,66,61,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,77,43,34,43,124,40,40,63,58,94,124,91,94,92,92,92,92,93,41,40,63,58,92,92,92,92,46,41,42,41,34,43,77,43,34,43,36,34,44,34,103,34,41,44,95,61,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,77,43,34,42,44,34,43,77,43,34,42,34,41,44,122,61,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,77,43,34,42,40,91,62,43,126,93,124,34,43,77,43,34,41,34,43,77,43,34,42,34,41,44,85,61,110,101,119,32,82,101,103,69,120,112,40,77,43,34,124,62,34,41,44,88,61,110,101,119,32,82,101,103,69,120,112,40,36,41,44,86,61,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,73,43,34,36,34,41,44,71,61,123,73,68,58,110,101,119,32,82,101,103,69,120,112,40,34,94,35,40,34,43,73,43,34,41,34,41,44,67,76,65,83,83,58,110,101,119,32,82,101,103,69,120,112,40,34,94,92,92,46,40,34,43,73,43,34,41,34,41,44,84,65,71,58,110,101,119,32,82,101,103,69,120,112,40,34,94,40,34,43,73,43,34,124,91,42,93,41,34,41,44,65,84,84,82,58,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,87,41,44,80,83,69,85,68,79,58,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,36,41,44,67,72,73,76,68,58,110,101,119,32,82,101,103,69,120,112,40,34,94,58,40,111,110,108,121,124,102,105,114,115,116,124,108,97,115,116,124,110,116,104,124,110,116,104,45,108,97,115,116,41,45,40,99,104,105,108,100,124,111,102,45,116,121,112,101,41,40,63,58,92,92,40,34,43,77,43,34,42,40,101,118,101,110,124,111,100,100,124,40,40,91,43,45,93,124,41,40,92,92,100,42,41,110,124,41,34,43,77,43,34,42,40,63,58,40,91,43,45,93,124,41,34,43,77,43,34,42,40,92,92,100,43,41,124,41,41,34,43,77,43,34,42,92,92,41,124,41,34,44,34,105,34,41,44,98,111,111,108,58,110,101,119,32,82,101,103,69,120,112,40,34,94,40,63,58,34,43,82,43,34,41,36,34,44,34,105,34,41,44,110,101,101,100,115,67,111,110,116,101,120,116,58,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,77,43,34,42,91,62,43,126,93,124,58,40,101,118,101,110,124,111,100,100,124,101,113,124,103,116,124,108,116,124,110,116,104,124,102,105,114,115,116,124,108,97,115,116,41,40,63,58,92,92,40,34,43,77,43,34,42,40,40,63,58,45,92,92,100,41,63,92,92,100,42,41,34,43,77,43,34,42,92,92,41,124,41,40,63,61,91,94,45,93,124,36,41,34,44,34,105,34,41,125,44,89,61,47,72,84,77,76,36,47,105,44,81,61,47,94,40,63,58,105,110,112,117,116,124,115,101,108,101,99,116,124,116,101,120,116,97,114,101,97,124,98,117,116,116,111,110,41,36,47,105,44,74,61,47,94,104,92,100,36,47,105,44,75,61,47,94,91,94,123,93,43,92,123,92,115,42,92,91,110,97,116,105,118,101,32,92,119,47,44,90,61,47,94,40,63,58,35,40,91,92,119,45,93,43,41,124,40,92,119,43,41,124,92,46,40,91,92,119,45,93,43,41,41,36,47,44,101,101,61,47,91,43,126,93,47,44,116,101,61,110,101,119,32,82,101,103,69,120,112,40,34,92,92,92,92,40,91,92,92,100,97,45,102,93,123,49,44,54,125,34,43,77,43,34,63,124,40,34,43,77,43,34,41,124,46,41,34,44,34,105,103,34,41,44,110,101,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,34,48,120,34,43,116,45,54,53,53,51,54,59,114,101,116,117,114,110,32,114,33,61,114,124,124,110,63,116,58,114,60,48,63,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,40,114,43,54,53,53,51,54,41,58,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,40,114,62,62,49,48,124,53,53,50,57,54,44,49,48,50,51,38,114,124,53,54,51,50,48,41,125,44,114,101,61,47,40,91,92,48,45,92,120,49,102,92,120,55,102,93,124,94,45,63,92,100,41,124,94,45,36,124,91,94,92,48,45,92,120,49,102,92,120,55,102,45,92,117,70,70,70,70,92,119,45,93,47,103,44,105,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,63,34,92,48,34,61,61,61,101,63,34,92,117,102,102,102,100,34,58,101,46,115,108,105,99,101,40,48,44,45,49,41,43,34,92,92,34,43,101,46,99,104,97,114,67,111,100,101,65,116,40,101,46,108,101,110,103,116,104,45,49,41,46,116,111,83,116,114,105,110,103,40,49,54,41,43,34,32,34,58,34,92,92,34,43,101,125,44,111,101,61,102,117,110,99,116,105,111,110,40,41,123,84,40,41,125,44,97,101,61,98,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,48,61,61,61,101,46,100,105,115,97,98,108,101,100,38,38,34,102,105,101,108,100,115,101,116,34,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,44,123,100,105,114,58,34,112,97,114,101,110,116,78,111,100,101,34,44,110,101,120,116,58,34,108,101,103,101,110,100,34,125,41,59,116,114,121,123,72,46,97,112,112,108,121,40,116,61,79,46,99,97,108,108,40,109,46,99,104,105,108,100,78,111,100,101,115,41,44,109,46,99,104,105,108,100,78,111,100,101,115,41,44,116,91,109,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,93,46,110,111,100,101,84,121,112,101,125,99,97,116,99,104,40,101,41,123,72,61,123,97,112,112,108,121,58,116,46,108,101,110,103,116,104,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,76,46,97,112,112,108,121,40,101,44,79,46,99,97,108,108,40,116,41,41,125,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,101,46,108,101,110,103,116,104,44,114,61,48,59,119,104,105,108,101,40,101,91,110,43,43,93,61,116,91,114,43,43,93,41,59,101,46,108,101,110,103,116,104,61,110,45,49,125,125,125,102,117,110,99,116,105,111,110,32,115,101,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,44,99,44,102,61,101,38,38,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,112,61,101,63,101,46,110,111,100,101,84,121,112,101,58,57,59,105,102,40,110,61,110,124,124,91,93,44,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,116,124,124,33,116,124,124,49,33,61,61,112,38,38,57,33,61,61,112,38,38,49,49,33,61,61,112,41,114,101,116,117,114,110,32,110,59,105,102,40,33,114,38,38,40,40,101,63,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,58,109,41,33,61,61,67,38,38,84,40,101,41,44,101,61,101,124,124,67,44,69,41,41,123,105,102,40,49,49,33,61,61,112,38,38,40,117,61,90,46,101,120,101,99,40,116,41,41,41,105,102,40,105,61,117,91,49,93,41,123,105,102,40,57,61,61,61,112,41,123,105,102,40,33,40,97,61,101,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,105,41,41,41,114,101,116,117,114,110,32,110,59,105,102,40,97,46,105,100,61,61,61,105,41,114,101,116,117,114,110,32,110,46,112,117,115,104,40,97,41,44,110,125,101,108,115,101,32,105,102,40,102,38,38,40,97,61,102,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,105,41,41,38,38,121,40,101,44,97,41,38,38,97,46,105,100,61,61,61,105,41,114,101,116,117,114,110,32,110,46,112,117,115,104,40,97,41,44,110,125,101,108,115,101,123,105,102,40,117,91,50,93,41,114,101,116,117,114,110,32,72,46,97,112,112,108,121,40,110,44,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,116,41,41,44,110,59,105,102,40,40,105,61,117,91,51,93,41,38,38,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,38,38,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,41,114,101,116,117,114,110,32,72,46,97,112,112,108,121,40,110,44,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,40,105,41,41,44,110,125,105,102,40,100,46,113,115,97,38,38,33,65,91,116,43,34,32,34,93,38,38,40,33,118,124,124,33,118,46,116,101,115,116,40,116,41,41,38,38,40,49,33,61,61,112,124,124,34,111,98,106,101,99,116,34,33,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,41,123,105,102,40,99,61,116,44,102,61,101,44,49,61,61,61,112,38,38,85,46,116,101,115,116,40,116,41,41,123,40,115,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,41,41,63,115,61,115,46,114,101,112,108,97,99,101,40,114,101,44,105,101,41,58,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,44,115,61,107,41,44,111,61,40,108,61,104,40,116,41,41,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,108,91,111,93,61,34,35,34,43,115,43,34,32,34,43,120,101,40,108,91,111,93,41,59,99,61,108,46,106,111,105,110,40,34,44,34,41,44,102,61,101,101,46,116,101,115,116,40,116,41,38,38,121,101,40,101,46,112,97,114,101,110,116,78,111,100,101,41,124,124,101,125,116,114,121,123,114,101,116,117,114,110,32,72,46,97,112,112,108,121,40,110,44,102,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,99,41,41,44,110,125,99,97,116,99,104,40,101,41,123,65,40,116,44,33,48,41,125,102,105,110,97,108,108,121,123,115,61,61,61,107,38,38,101,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,105,100,34,41,125,125,125,114,101,116,117,114,110,32,103,40,116,46,114,101,112,108,97,99,101,40,66,44,34,36,49,34,41,44,101,44,110,44,114,41,125,102,117,110,99,116,105,111,110,32,117,101,40,41,123,118,97,114,32,114,61,91,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,101,40,116,44,110,41,123,114,101,116,117,114,110,32,114,46,112,117,115,104,40,116,43,34,32,34,41,62,98,46,99,97,99,104,101,76,101,110,103,116,104,38,38,100,101,108,101,116,101,32,101,91,114,46,115,104,105,102,116,40,41,93,44,101,91,116,43,34,32,34,93,61,110,125,125,102,117,110,99,116,105,111,110,32,108,101,40,101,41,123,114,101,116,117,114,110,32,101,91,107,93,61,33,48,44,101,125,102,117,110,99,116,105,111,110,32,99,101,40,101,41,123,118,97,114,32,116,61,67,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,102,105,101,108,100,115,101,116,34,41,59,116,114,121,123,114,101,116,117,114,110,33,33,101,40,116,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,33,49,125,102,105,110,97,108,108,121,123,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,41,44,116,61,110,117,108,108,125,125,102,117,110,99,116,105,111,110,32,102,101,40,101,44,116,41,123,118,97,114,32,110,61,101,46,115,112,108,105,116,40,34,124,34,41,44,114,61,110,46,108,101,110,103,116,104,59,119,104,105,108,101,40,114,45,45,41,98,46,97,116,116,114,72,97,110,100,108,101,91,110,91,114,93,93,61,116,125,102,117,110,99,116,105,111,110,32,112,101,40,101,44,116,41,123,118,97,114,32,110,61,116,38,38,101,44,114,61,110,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,49,61,61,61,116,46,110,111,100,101,84,121,112,101,38,38,101,46,115,111,117,114,99,101,73,110,100,101,120,45,116,46,115,111,117,114,99,101,73,110,100,101,120,59,105,102,40,114,41,114,101,116,117,114,110,32,114,59,105,102,40,110,41,119,104,105,108,101,40,110,61,110,46,110,101,120,116,83,105,98,108,105,110,103,41,105,102,40,110,61,61,61,116,41,114,101,116,117,114,110,45,49,59,114,101,116,117,114,110,32,101,63,49,58,45,49,125,102,117,110,99,116,105,111,110,32,100,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,105,110,112,117,116,34,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,38,38,101,46,116,121,112,101,61,61,61,116,125,125,102,117,110,99,116,105,111,110,32,104,101,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,40,34,105,110,112,117,116,34,61,61,61,116,124,124,34,98,117,116,116,111,110,34,61,61,61,116,41,38,38,101,46,116,121,112,101,61,61,61,110,125,125,102,117,110,99,116,105,111,110,32,103,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,102,111,114,109,34,105,110,32,101,63,101,46,112,97,114,101,110,116,78,111,100,101,38,38,33,49,61,61,61,101,46,100,105,115,97,98,108,101,100,63,34,108,97,98,101,108,34,105,110,32,101,63,34,108,97,98,101,108,34,105,110,32,101,46,112,97,114,101,110,116,78,111,100,101,63,101,46,112,97,114,101,110,116,78,111,100,101,46,100,105,115,97,98,108,101,100,61,61,61,116,58,101,46,100,105,115,97,98,108,101,100,61,61,61,116,58,101,46,105,115,68,105,115,97,98,108,101,100,61,61,61,116,124,124,101,46,105,115,68,105,115,97,98,108,101,100,33,61,61,33,116,38,38,97,101,40,101,41,61,61,61,116,58,101,46,100,105,115,97,98,108,101,100,61,61,61,116,58,34,108,97,98,101,108,34,105,110,32,101,38,38,101,46,100,105,115,97,98,108,101,100,61,61,61,116,125,125,102,117,110,99,116,105,111,110,32,118,101,40,97,41,123,114,101,116,117,114,110,32,108,101,40,102,117,110,99,116,105,111,110,40,111,41,123,114,101,116,117,114,110,32,111,61,43,111,44,108,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,97,40,91,93,44,101,46,108,101,110,103,116,104,44,111,41,44,105,61,114,46,108,101,110,103,116,104,59,119,104,105,108,101,40,105,45,45,41,101,91,110,61,114,91,105,93,93,38,38,40,101,91,110,93,61,33,40,116,91,110,93,61,101,91,110,93,41,41,125,41,125,41,125,102,117,110,99,116,105,111,110,32,121,101,40,101,41,123,114,101,116,117,114,110,32,101,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,38,38,101,125,102,111,114,40,101,32,105,110,32,100,61,115,101,46,115,117,112,112,111,114,116,61,123,125,44,105,61,115,101,46,105,115,88,77,76,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,97,109,101,115,112,97,99,101,85,82,73,44,110,61,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,114,101,116,117,114,110,33,89,46,116,101,115,116,40,116,124,124,110,38,38,110,46,110,111,100,101,78,97,109,101,124,124,34,72,84,77,76,34,41,125,44,84,61,115,101,46,115,101,116,68,111,99,117,109,101,110,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,61,101,63,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,58,109,59,114,101,116,117,114,110,32,114,33,61,61,67,38,38,57,61,61,61,114,46,110,111,100,101,84,121,112,101,38,38,114,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,40,97,61,40,67,61,114,41,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,69,61,33,105,40,67,41,44,109,33,61,61,67,38,38,40,110,61,67,46,100,101,102,97,117,108,116,86,105,101,119,41,38,38,110,46,116,111,112,33,61,61,110,38,38,40,110,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,63,110,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,117,110,108,111,97,100,34,44,111,101,44,33,49,41,58,110,46,97,116,116,97,99,104,69,118,101,110,116,38,38,110,46,97,116,116,97,99,104,69,118,101,110,116,40,34,111,110,117,110,108,111,97,100,34,44,111,101,41,41,44,100,46,97,116,116,114,105,98,117,116,101,115,61,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,99,108,97,115,115,78,97,109,101,61,34,105,34,44,33,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,78,97,109,101,34,41,125,41,44,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,61,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,97,112,112,101,110,100,67,104,105,108,100,40,67,46,99,114,101,97,116,101,67,111,109,109,101,110,116,40,34,34,41,41,44,33,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,34,42,34,41,46,108,101,110,103,116,104,125,41,44,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,61,75,46,116,101,115,116,40,67,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,41,44,100,46,103,101,116,66,121,73,100,61,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,46,105,100,61,107,44,33,67,46,103,101,116,69,108,101,109,101,110,116,115,66,121,78,97,109,101,124,124,33,67,46,103,101,116,69,108,101,109,101,110,116,115,66,121,78,97,109,101,40,107,41,46,108,101,110,103,116,104,125,41,44,100,46,103,101,116,66,121,73,100,63,40,98,46,102,105,108,116,101,114,46,73,68,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,41,61,61,61,116,125,125,44,98,46,102,105,110,100,46,73,68,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,38,38,69,41,123,118,97,114,32,110,61,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,101,41,59,114,101,116,117,114,110,32,110,63,91,110,93,58,91,93,125,125,41,58,40,98,46,102,105,108,116,101,114,46,73,68,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,101,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,38,38,101,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,34,105,100,34,41,59,114,101,116,117,114,110,32,116,38,38,116,46,118,97,108,117,101,61,61,61,110,125,125,44,98,46,102,105,110,100,46,73,68,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,38,38,69,41,123,118,97,114,32,110,44,114,44,105,44,111,61,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,101,41,59,105,102,40,111,41,123,105,102,40,40,110,61,111,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,34,105,100,34,41,41,38,38,110,46,118,97,108,117,101,61,61,61,101,41,114,101,116,117,114,110,91,111,93,59,105,61,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,78,97,109,101,40,101,41,44,114,61,48,59,119,104,105,108,101,40,111,61,105,91,114,43,43,93,41,105,102,40,40,110,61,111,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,34,105,100,34,41,41,38,38,110,46,118,97,108,117,101,61,61,61,101,41,114,101,116,117,114,110,91,111,93,125,114,101,116,117,114,110,91,93,125,125,41,44,98,46,102,105,110,100,46,84,65,71,61,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,63,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,101,41,58,100,46,113,115,97,63,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,101,41,58,118,111,105,100,32,48,125,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,91,93,44,105,61,48,44,111,61,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,101,41,59,105,102,40,34,42,34,61,61,61,101,41,123,119,104,105,108,101,40,110,61,111,91,105,43,43,93,41,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,114,46,112,117,115,104,40,110,41,59,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,32,111,125,44,98,46,102,105,110,100,46,67,76,65,83,83,61,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,38,38,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,38,38,69,41,114,101,116,117,114,110,32,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,40,101,41,125,44,115,61,91,93,44,118,61,91,93,44,40,100,46,113,115,97,61,75,46,116,101,115,116,40,67,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,41,41,38,38,40,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,97,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,46,105,110,110,101,114,72,84,77,76,61,34,60,97,32,105,100,61,39,34,43,107,43,34,39,62,60,47,97,62,60,115,101,108,101,99,116,32,105,100,61,39,34,43,107,43,34,45,92,114,92,92,39,32,109,115,97,108,108,111,119,99,97,112,116,117,114,101,61,39,39,62,60,111,112,116,105,111,110,32,115,101,108,101,99,116,101,100,61,39,39,62,60,47,111,112,116,105,111,110,62,60,47,115,101,108,101,99,116,62,34,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,91,109,115,97,108,108,111,119,99,97,112,116,117,114,101,94,61,39,39,93,34,41,46,108,101,110,103,116,104,38,38,118,46,112,117,115,104,40,34,91,42,94,36,93,61,34,43,77,43,34,42,40,63,58,39,39,124,92,34,92,34,41,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,91,115,101,108,101,99,116,101,100,93,34,41,46,108,101,110,103,116,104,124,124,118,46,112,117,115,104,40,34,92,92,91,34,43,77,43,34,42,40,63,58,118,97,108,117,101,124,34,43,82,43,34,41,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,91,105,100,126,61,34,43,107,43,34,45,93,34,41,46,108,101,110,103,116,104,124,124,118,46,112,117,115,104,40,34,126,61,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,58,99,104,101,99,107,101,100,34,41,46,108,101,110,103,116,104,124,124,118,46,112,117,115,104,40,34,58,99,104,101,99,107,101,100,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,97,35,34,43,107,43,34,43,42,34,41,46,108,101,110,103,116,104,124,124,118,46,112,117,115,104,40,34,46,35,46,43,91,43,126,93,34,41,125,41,44,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,105,110,110,101,114,72,84,77,76,61,34,60,97,32,104,114,101,102,61,39,39,32,100,105,115,97,98,108,101,100,61,39,100,105,115,97,98,108,101,100,39,62,60,47,97,62,60,115,101,108,101,99,116,32,100,105,115,97,98,108,101,100,61,39,100,105,115,97,98,108,101,100,39,62,60,111,112,116,105,111,110,47,62,60,47,115,101,108,101,99,116,62,34,59,118,97,114,32,116,61,67,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,110,112,117,116,34,41,59,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,34,104,105,100,100,101,110,34,41,44,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,41,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,110,97,109,101,34,44,34,68,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,91,110,97,109,101,61,100,93,34,41,46,108,101,110,103,116,104,38,38,118,46,112,117,115,104,40,34,110,97,109,101,34,43,77,43,34,42,91,42,94,36,124,33,126,93,63,61,34,41,44,50,33,61,61,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,58,101,110,97,98,108,101,100,34,41,46,108,101,110,103,116,104,38,38,118,46,112,117,115,104,40,34,58,101,110,97,98,108,101,100,34,44,34,58,100,105,115,97,98,108,101,100,34,41,44,97,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,46,100,105,115,97,98,108,101,100,61,33,48,44,50,33,61,61,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,58,100,105,115,97,98,108,101,100,34,41,46,108,101,110,103,116,104,38,38,118,46,112,117,115,104,40,34,58,101,110,97,98,108,101,100,34,44,34,58,100,105,115,97,98,108,101,100,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,42,44,58,120,34,41,44,118,46,112,117,115,104,40,34,44,46,42,58,34,41,125,41,41,44,40,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,61,75,46,116,101,115,116,40,99,61,97,46,109,97,116,99,104,101,115,124,124,97,46,119,101,98,107,105,116,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,124,124,97,46,109,111,122,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,124,124,97,46,111,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,124,124,97,46,109,115,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,41,41,38,38,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,100,46,100,105,115,99,111,110,110,101,99,116,101,100,77,97,116,99,104,61,99,46,99,97,108,108,40,101,44,34,42,34,41,44,99,46,99,97,108,108,40,101,44,34,91,115,33,61,39,39,93,58,120,34,41,44,115,46,112,117,115,104,40,34,33,61,34,44,36,41,125,41,44,118,61,118,46,108,101,110,103,116,104,38,38,110,101,119,32,82,101,103,69,120,112,40,118,46,106,111,105,110,40,34,124,34,41,41,44,115,61,115,46,108,101,110,103,116,104,38,38,110,101,119,32,82,101,103,69,120,112,40,115,46,106,111,105,110,40,34,124,34,41,41,44,116,61,75,46,116,101,115,116,40,97,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,41,44,121,61,116,124,124,75,46,116,101,115,116,40,97,46,99,111,110,116,97,105,110,115,41,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,57,61,61,61,101,46,110,111,100,101,84,121,112,101,63,101,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,58,101,44,114,61,116,38,38,116,46,112,97,114,101,110,116,78,111,100,101,59,114,101,116,117,114,110,32,101,61,61,61,114,124,124,33,40,33,114,124,124,49,33,61,61,114,46,110,111,100,101,84,121,112,101,124,124,33,40,110,46,99,111,110,116,97,105,110,115,63,110,46,99,111,110,116,97,105,110,115,40,114,41,58,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,38,38,49,54,38,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,114,41,41,41,125,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,41,119,104,105,108,101,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,105,102,40,116,61,61,61,101,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,44,68,61,116,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,101,61,61,61,116,41,114,101,116,117,114,110,32,108,61,33,48,44,48,59,118,97,114,32,110,61,33,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,45,33,116,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,59,114,101,116,117,114,110,32,110,124,124,40,49,38,40,110,61,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,61,61,61,40,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,116,41,63,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,116,41,58,49,41,124,124,33,100,46,115,111,114,116,68,101,116,97,99,104,101,100,38,38,116,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,101,41,61,61,61,110,63,101,61,61,61,67,124,124,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,61,61,61,109,38,38,121,40,109,44,101,41,63,45,49,58,116,61,61,61,67,124,124,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,61,61,61,109,38,38,121,40,109,44,116,41,63,49,58,117,63,80,40,117,44,101,41,45,80,40,117,44,116,41,58,48,58,52,38,110,63,45,49,58,49,41,125,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,101,61,61,61,116,41,114,101,116,117,114,110,32,108,61,33,48,44,48,59,118,97,114,32,110,44,114,61,48,44,105,61,101,46,112,97,114,101,110,116,78,111,100,101,44,111,61,116,46,112,97,114,101,110,116,78,111,100,101,44,97,61,91,101,93,44,115,61,91,116,93,59,105,102,40,33,105,124,124,33,111,41,114,101,116,117,114,110,32,101,61,61,61,67,63,45,49,58,116,61,61,61,67,63,49,58,105,63,45,49,58,111,63,49,58,117,63,80,40,117,44,101,41,45,80,40,117,44,116,41,58,48,59,105,102,40,105,61,61,61,111,41,114,101,116,117,114,110,32,112,101,40,101,44,116,41,59,110,61,101,59,119,104,105,108,101,40,110,61,110,46,112,97,114,101,110,116,78,111,100,101,41,97,46,117,110,115,104,105,102,116,40,110,41,59,110,61,116,59,119,104,105,108,101,40,110,61,110,46,112,97,114,101,110,116,78,111,100,101,41,115,46,117,110,115,104,105,102,116,40,110,41,59,119,104,105,108,101,40,97,91,114,93,61,61,61,115,91,114,93,41,114,43,43,59,114,101,116,117,114,110,32,114,63,112,101,40,97,91,114,93,44,115,91,114,93,41,58,97,91,114,93,61,61,61,109,63,45,49,58,115,91,114,93,61,61,61,109,63,49,58,48,125,41,44,67,125,44,115,101,46,109,97,116,99,104,101,115,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,115,101,40,101,44,110,117,108,108,44,110,117,108,108,44,116,41,125,44,115,101,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,33,61,61,67,38,38,84,40,101,41,44,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,38,38,69,38,38,33,65,91,116,43,34,32,34,93,38,38,40,33,115,124,124,33,115,46,116,101,115,116,40,116,41,41,38,38,40,33,118,124,124,33,118,46,116,101,115,116,40,116,41,41,41,116,114,121,123,118,97,114,32,110,61,99,46,99,97,108,108,40,101,44,116,41,59,105,102,40,110,124,124,100,46,100,105,115,99,111,110,110,101,99,116,101,100,77,97,116,99,104,124,124,101,46,100,111,99,117,109,101,110,116,38,38,49,49,33,61,61,101,46,100,111,99,117,109,101,110,116,46,110,111,100,101,84,121,112,101,41,114,101,116,117,114,110,32,110,125,99,97,116,99,104,40,101,41,123,65,40,116,44,33,48,41,125,114,101,116,117,114,110,32,48,60,115,101,40,116,44,67,44,110,117,108,108,44,91,101,93,41,46,108,101,110,103,116,104,125,44,115,101,46,99,111,110,116,97,105,110,115,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,33,61,61,67,38,38,84,40,101,41,44,121,40,101,44,116,41,125,44,115,101,46,97,116,116,114,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,33,61,61,67,38,38,84,40,101,41,59,118,97,114,32,110,61,98,46,97,116,116,114,72,97,110,100,108,101,91,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,114,61,110,38,38,106,46,99,97,108,108,40,98,46,97,116,116,114,72,97,110,100,108,101,44,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,63,110,40,101,44,116,44,33,69,41,58,118,111,105,100,32,48,59,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,114,63,114,58,100,46,97,116,116,114,105,98,117,116,101,115,124,124,33,69,63,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,116,41,58,40,114,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,116,41,41,38,38,114,46,115,112,101,99,105,102,105,101,100,63,114,46,118,97,108,117,101,58,110,117,108,108,125,44,115,101,46,101,115,99,97,112,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,40,101,43,34,34,41,46,114,101,112,108,97,99,101,40,114,101,44,105,101,41,125,44,115,101,46,101,114,114,111,114,61,102,117,110,99,116,105,111,110,40,101,41,123,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,83,121,110,116,97,120,32,101,114,114,111,114,44,32,117,110,114,101,99,111,103,110,105,122,101,100,32,101,120,112,114,101,115,115,105,111,110,58,32,34,43,101,41,125,44,115,101,46,117,110,105,113,117,101,83,111,114,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,91,93,44,114,61,48,44,105,61,48,59,105,102,40,108,61,33,100,46,100,101,116,101,99,116,68,117,112,108,105,99,97,116,101,115,44,117,61,33,100,46,115,111,114,116,83,116,97,98,108,101,38,38,101,46,115,108,105,99,101,40,48,41,44,101,46,115,111,114,116,40,68,41,44,108,41,123,119,104,105,108,101,40,116,61,101,91,105,43,43,93,41,116,61,61,61,101,91,105,93,38,38,40,114,61,110,46,112,117,115,104,40,105,41,41,59,119,104,105,108,101,40,114,45,45,41,101,46,115,112,108,105,99,101,40,110,91,114,93,44,49,41,125,114,101,116,117,114,110,32,117,61,110,117,108,108,44,101,125,44,111,61,115,101,46,103,101,116,84,101,120,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,34,34,44,114,61,48,44,105,61,101,46,110,111,100,101,84,121,112,101,59,105,102,40,105,41,123,105,102,40,49,61,61,61,105,124,124,57,61,61,61,105,124,124,49,49,61,61,61,105,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,46,116,101,120,116,67,111,110,116,101,110,116,41,114,101,116,117,114,110,32,101,46,116,101,120,116,67,111,110,116,101,110,116,59,102,111,114,40,101,61,101,46,102,105,114,115,116,67,104,105,108,100,59,101,59,101,61,101,46,110,101,120,116,83,105,98,108,105,110,103,41,110,43,61,111,40,101,41,125,101,108,115,101,32,105,102,40,51,61,61,61,105,124,124,52,61,61,61,105,41,114,101,116,117,114,110,32,101,46,110,111,100,101,86,97,108,117,101,125,101,108,115,101,32,119,104,105,108,101,40,116,61,101,91,114,43,43,93,41,110,43,61,111,40,116,41,59,114,101,116,117,114,110,32,110,125,44,40,98,61,115,101,46,115,101,108,101,99,116,111,114,115,61,123,99,97,99,104,101,76,101,110,103,116,104,58,53,48,44,99,114,101,97,116,101,80,115,101,117,100,111,58,108,101,44,109,97,116,99,104,58,71,44,97,116,116,114,72,97,110,100,108,101,58,123,125,44,102,105,110,100,58,123,125,44,114,101,108,97,116,105,118,101,58,123,34,62,34,58,123,100,105,114,58,34,112,97,114,101,110,116,78,111,100,101,34,44,102,105,114,115,116,58,33,48,125,44,34,32,34,58,123,100,105,114,58,34,112,97,114,101,110,116,78,111,100,101,34,125,44,34,43,34,58,123,100,105,114,58,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,44,102,105,114,115,116,58,33,48,125,44,34,126,34,58,123,100,105,114,58,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,125,125,44,112,114,101,70,105,108,116,101,114,58,123,65,84,84,82,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,91,49,93,61,101,91,49,93,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,101,91,51,93,61,40,101,91,51,93,124,124,101,91,52,93,124,124,101,91,53,93,124,124,34,34,41,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,34,126,61,34,61,61,61,101,91,50,93,38,38,40,101,91,51,93,61,34,32,34,43,101,91,51,93,43,34,32,34,41,44,101,46,115,108,105,99,101,40,48,44,52,41,125,44,67,72,73,76,68,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,91,49,93,61,101,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,34,110,116,104,34,61,61,61,101,91,49,93,46,115,108,105,99,101,40,48,44,51,41,63,40,101,91,51,93,124,124,115,101,46,101,114,114,111,114,40,101,91,48,93,41,44,101,91,52,93,61,43,40,101,91,52,93,63,101,91,53,93,43,40,101,91,54,93,124,124,49,41,58,50,42,40,34,101,118,101,110,34,61,61,61,101,91,51,93,124,124,34,111,100,100,34,61,61,61,101,91,51,93,41,41,44,101,91,53,93,61,43,40,101,91,55,93,43,101,91,56,93,124,124,34,111,100,100,34,61,61,61,101,91,51,93,41,41,58,101,91,51,93,38,38,115,101,46,101,114,114,111,114,40,101,91,48,93,41,44,101,125,44,80,83,69,85,68,79,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,33,101,91,54,93,38,38,101,91,50,93,59,114,101,116,117,114,110,32,71,46,67,72,73,76,68,46,116,101,115,116,40,101,91,48,93,41,63,110,117,108,108,58,40,101,91,51,93,63,101,91,50,93,61,101,91,52,93,124,124,101,91,53,93,124,124,34,34,58,110,38,38,88,46,116,101,115,116,40,110,41,38,38,40,116,61,104,40,110,44,33,48,41,41,38,38,40,116,61,110,46,105,110,100,101,120,79,102,40,34,41,34,44,110,46,108,101,110,103,116,104,45,116,41,45,110,46,108,101,110,103,116,104,41,38,38,40,101,91,48,93,61,101,91,48,93,46,115,108,105,99,101,40,48,44,116,41,44,101,91,50,93,61,110,46,115,108,105,99,101,40,48,44,116,41,41,44,101,46,115,108,105,99,101,40,48,44,51,41,41,125,125,44,102,105,108,116,101,114,58,123,84,65,71,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,34,42,34,61,61,61,101,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,110,111,100,101,78,97,109,101,38,38,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,116,125,125,44,67,76,65,83,83,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,112,91,101,43,34,32,34,93,59,114,101,116,117,114,110,32,116,124,124,40,116,61,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,34,43,77,43,34,41,34,43,101,43,34,40,34,43,77,43,34,124,36,41,34,41,41,38,38,112,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,116,101,115,116,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,46,99,108,97,115,115,78,97,109,101,38,38,101,46,99,108,97,115,115,78,97,109,101,124,124,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,38,38,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,41,124,124,34,34,41,125,41,125,44,65,84,84,82,58,102,117,110,99,116,105,111,110,40,110,44,114,44,105,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,115,101,46,97,116,116,114,40,101,44,110,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,34,33,61,34,61,61,61,114,58,33,114,124,124,40,116,43,61,34,34,44,34,61,34,61,61,61,114,63,116,61,61,61,105,58,34,33,61,34,61,61,61,114,63,116,33,61,61,105,58,34,94,61,34,61,61,61,114,63,105,38,38,48,61,61,61,116,46,105,110,100,101,120,79,102,40,105,41,58,34,42,61,34,61,61,61,114,63,105,38,38,45,49,60,116,46,105,110,100,101,120,79,102,40,105,41,58,34,36,61,34,61,61,61,114,63,105,38,38,116,46,115,108,105,99,101,40,45,105,46,108,101,110,103,116,104,41,61,61,61,105,58,34,126,61,34,61,61,61,114,63,45,49,60,40,34,32,34,43,116,46,114,101,112,108,97,99,101,40,70,44,34,32,34,41,43,34,32,34,41,46,105,110,100,101,120,79,102,40,105,41,58,34,124,61,34,61,61,61,114,38,38,40,116,61,61,61,105,124,124,116,46,115,108,105,99,101,40,48,44,105,46,108,101,110,103,116,104,43,49,41,61,61,61,105,43,34,45,34,41,41,125,125,44,67,72,73,76,68,58,102,117,110,99,116,105,111,110,40,104,44,101,44,116,44,103,44,118,41,123,118,97,114,32,121,61,34,110,116,104,34,33,61,61,104,46,115,108,105,99,101,40,48,44,51,41,44,109,61,34,108,97,115,116,34,33,61,61,104,46,115,108,105,99,101,40,45,52,41,44,120,61,34,111,102,45,116,121,112,101,34,61,61,61,101,59,114,101,116,117,114,110,32,49,61,61,61,103,38,38,48,61,61,61,118,63,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,33,101,46,112,97,114,101,110,116,78,111,100,101,125,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,44,117,44,108,61,121,33,61,61,109,63,34,110,101,120,116,83,105,98,108,105,110,103,34,58,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,44,99,61,101,46,112,97,114,101,110,116,78,111,100,101,44,102,61,120,38,38,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,112,61,33,110,38,38,33,120,44,100,61,33,49,59,105,102,40,99,41,123,105,102,40,121,41,123,119,104,105,108,101,40,108,41,123,97,61,101,59,119,104,105,108,101,40,97,61,97,91,108,93,41,105,102,40,120,63,97,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,102,58,49,61,61,61,97,46,110,111,100,101,84,121,112,101,41,114,101,116,117,114,110,33,49,59,117,61,108,61,34,111,110,108,121,34,61,61,61,104,38,38,33,117,38,38,34,110,101,120,116,83,105,98,108,105,110,103,34,125,114,101,116,117,114,110,33,48,125,105,102,40,117,61,91,109,63,99,46,102,105,114,115,116,67,104,105,108,100,58,99,46,108,97,115,116,67,104,105,108,100,93,44,109,38,38,112,41,123,100,61,40,115,61,40,114,61,40,105,61,40,111,61,40,97,61,99,41,91,107,93,124,124,40,97,91,107,93,61,123,125,41,41,91,97,46,117,110,105,113,117,101,73,68,93,124,124,40,111,91,97,46,117,110,105,113,117,101,73,68,93,61,123,125,41,41,91,104,93,124,124,91,93,41,91,48,93,61,61,61,83,38,38,114,91,49,93,41,38,38,114,91,50,93,44,97,61,115,38,38,99,46,99,104,105,108,100,78,111,100,101,115,91,115,93,59,119,104,105,108,101,40,97,61,43,43,115,38,38,97,38,38,97,91,108,93,124,124,40,100,61,115,61,48,41,124,124,117,46,112,111,112,40,41,41,105,102,40,49,61,61,61,97,46,110,111,100,101,84,121,112,101,38,38,43,43,100,38,38,97,61,61,61,101,41,123,105,91,104,93,61,91,83,44,115,44,100,93,59,98,114,101,97,107,125,125,101,108,115,101,32,105,102,40,112,38,38,40,100,61,115,61,40,114,61,40,105,61,40,111,61,40,97,61,101,41,91,107,93,124,124,40,97,91,107,93,61,123,125,41,41,91,97,46,117,110,105,113,117,101,73,68,93,124,124,40,111,91,97,46,117,110,105,113,117,101,73,68,93,61,123,125,41,41,91,104,93,124,124,91,93,41,91,48,93,61,61,61,83,38,38,114,91,49,93,41,44,33,49,61,61,61,100,41,119,104,105,108,101,40,97,61,43,43,115,38,38,97,38,38,97,91,108,93,124,124,40,100,61,115,61,48,41,124,124,117,46,112,111,112,40,41,41,105,102,40,40,120,63,97,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,102,58,49,61,61,61,97,46,110,111,100,101,84,121,112,101,41,38,38,43,43,100,38,38,40,112,38,38,40,40,105,61,40,111,61,97,91,107,93,124,124,40,97,91,107,93,61,123,125,41,41,91,97,46,117,110,105,113,117,101,73,68,93,124,124,40,111,91,97,46,117,110,105,113,117,101,73,68,93,61,123,125,41,41,91,104,93,61,91,83,44,100,93,41,44,97,61,61,61,101,41,41,98,114,101,97,107,59,114,101,116,117,114,110,40,100,45,61,118,41,61,61,61,103,124,124,100,37,103,61,61,48,38,38,48,60,61,100,47,103,125,125,125,44,80,83,69,85,68,79,58,102,117,110,99,116,105,111,110,40,101,44,111,41,123,118,97,114,32,116,44,97,61,98,46,112,115,101,117,100,111,115,91,101,93,124,124,98,46,115,101,116,70,105,108,116,101,114,115,91,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,124,124,115,101,46,101,114,114,111,114,40,34,117,110,115,117,112,112,111,114,116,101,100,32,112,115,101,117,100,111,58,32,34,43,101,41,59,114,101,116,117,114,110,32,97,91,107,93,63,97,40,111,41,58,49,60,97,46,108,101,110,103,116,104,63,40,116,61,91,101,44,101,44,34,34,44,111,93,44,98,46,115,101,116,70,105,108,116,101,114,115,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,63,108,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,97,40,101,44,111,41,44,105,61,114,46,108,101,110,103,116,104,59,119,104,105,108,101,40,105,45,45,41,101,91,110,61,80,40,101,44,114,91,105,93,41,93,61,33,40,116,91,110,93,61,114,91,105,93,41,125,41,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,40,101,44,48,44,116,41,125,41,58,97,125,125,44,112,115,101,117,100,111,115,58,123,110,111,116,58,108,101,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,91,93,44,105,61,91,93,44,115,61,102,40,101,46,114,101,112,108,97,99,101,40,66,44,34,36,49,34,41,41,59,114,101,116,117,114,110,32,115,91,107,93,63,108,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,61,115,40,101,44,110,117,108,108,44,114,44,91,93,41,44,97,61,101,46,108,101,110,103,116,104,59,119,104,105,108,101,40,97,45,45,41,40,105,61,111,91,97,93,41,38,38,40,101,91,97,93,61,33,40,116,91,97,93,61,105,41,41,125,41,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,114,91,48,93,61,101,44,115,40,114,44,110,117,108,108,44,110,44,105,41,44,114,91,48,93,61,110,117,108,108,44,33,105,46,112,111,112,40,41,125,125,41,44,104,97,115,58,108,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,48,60,115,101,40,116,44,101,41,46,108,101,110,103,116,104,125,125,41,44,99,111,110,116,97,105,110,115,58,108,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,116,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,45,49,60,40,101,46,116,101,120,116,67,111,110,116,101,110,116,124,124,111,40,101,41,41,46,105,110,100,101,120,79,102,40,116,41,125,125,41,44,108,97,110,103,58,108,101,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,86,46,116,101,115,116,40,110,124,124,34,34,41,124,124,115,101,46,101,114,114,111,114,40,34,117,110,115,117,112,112,111,114,116,101,100,32,108,97,110,103,58,32,34,43,110,41,44,110,61,110,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,100,111,123,105,102,40,116,61,69,63,101,46,108,97,110,103,58,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,120,109,108,58,108,97,110,103,34,41,124,124,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,108,97,110,103,34,41,41,114,101,116,117,114,110,40,116,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,61,61,61,110,124,124,48,61,61,61,116,46,105,110,100,101,120,79,102,40,110,43,34,45,34,41,125,119,104,105,108,101,40,40,101,61,101,46,112,97,114,101,110,116,78,111,100,101,41,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,41,59,114,101,116,117,114,110,33,49,125,125,41,44,116,97,114,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,110,46,108,111,99,97,116,105,111,110,38,38,110,46,108,111,99,97,116,105,111,110,46,104,97,115,104,59,114,101,116,117,114,110,32,116,38,38,116,46,115,108,105,99,101,40,49,41,61,61,61,101,46,105,100,125,44,114,111,111,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,61,61,97,125,44,102,111,99,117,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,61,61,67,46,97,99,116,105,118,101,69,108,101,109,101,110,116,38,38,40,33,67,46,104,97,115,70,111,99,117,115,124,124,67,46,104,97,115,70,111,99,117,115,40,41,41,38,38,33,33,40,101,46,116,121,112,101,124,124,101,46,104,114,101,102,124,124,126,101,46,116,97,98,73,110,100,101,120,41,125,44,101,110,97,98,108,101,100,58,103,101,40,33,49,41,44,100,105,115,97,98,108,101,100,58,103,101,40,33,48,41,44,99,104,101,99,107,101,100,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,34,105,110,112,117,116,34,61,61,61,116,38,38,33,33,101,46,99,104,101,99,107,101,100,124,124,34,111,112,116,105,111,110,34,61,61,61,116,38,38,33,33,101,46,115,101,108,101,99,116,101,100,125,44,115,101,108,101,99,116,101,100,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,112,97,114,101,110,116,78,111,100,101,38,38,101,46,112,97,114,101,110,116,78,111,100,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,44,33,48,61,61,61,101,46,115,101,108,101,99,116,101,100,125,44,101,109,112,116,121,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,101,61,101,46,102,105,114,115,116,67,104,105,108,100,59,101,59,101,61,101,46,110,101,120,116,83,105,98,108,105,110,103,41,105,102,40,101,46,110,111,100,101,84,121,112,101,60,54,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,44,112,97,114,101,110,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,98,46,112,115,101,117,100,111,115,46,101,109,112,116,121,40,101,41,125,44,104,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,74,46,116,101,115,116,40,101,46,110,111,100,101,78,97,109,101,41,125,44,105,110,112,117,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,81,46,116,101,115,116,40,101,46,110,111,100,101,78,97,109,101,41,125,44,98,117,116,116,111,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,34,105,110,112,117,116,34,61,61,61,116,38,38,34,98,117,116,116,111,110,34,61,61,61,101,46,116,121,112,101,124,124,34,98,117,116,116,111,110,34,61,61,61,116,125,44,116,101,120,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,114,101,116,117,114,110,34,105,110,112,117,116,34,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,38,38,34,116,101,120,116,34,61,61,61,101,46,116,121,112,101,38,38,40,110,117,108,108,61,61,40,116,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,41,41,124,124,34,116,101,120,116,34,61,61,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,125,44,102,105,114,115,116,58,118,101,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,48,93,125,41,44,108,97,115,116,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,91,116,45,49,93,125,41,44,101,113,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,91,110,60,48,63,110,43,116,58,110,93,125,41,44,101,118,101,110,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,116,59,110,43,61,50,41,101,46,112,117,115,104,40,110,41,59,114,101,116,117,114,110,32,101,125,41,44,111,100,100,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,49,59,110,60,116,59,110,43,61,50,41,101,46,112,117,115,104,40,110,41,59,114,101,116,117,114,110,32,101,125,41,44,108,116,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,61,110,60,48,63,110,43,116,58,116,60,110,63,116,58,110,59,48,60,61,45,45,114,59,41,101,46,112,117,115,104,40,114,41,59,114,101,116,117,114,110,32,101,125,41,44,103,116,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,61,110,60,48,63,110,43,116,58,110,59,43,43,114,60,116,59,41,101,46,112,117,115,104,40,114,41,59,114,101,116,117,114,110,32,101,125,41,125,125,41,46,112,115,101,117,100,111,115,46,110,116,104,61,98,46,112,115,101,117,100,111,115,46,101,113,44,123,114,97,100,105,111,58,33,48,44,99,104,101,99,107,98,111,120,58,33,48,44,102,105,108,101,58,33,48,44,112,97,115,115,119,111,114,100,58,33,48,44,105,109,97,103,101,58,33,48,125,41,98,46,112,115,101,117,100,111,115,91,101,93,61,100,101,40,101,41,59,102,111,114,40,101,32,105,110,123,115,117,98,109,105,116,58,33,48,44,114,101,115,101,116,58,33,48,125,41,98,46,112,115,101,117,100,111,115,91,101,93,61,104,101,40,101,41,59,102,117,110,99,116,105,111,110,32,109,101,40,41,123,125,102,117,110,99,116,105,111,110,32,120,101,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,44,110,61,101,46,108,101,110,103,116,104,44,114,61,34,34,59,116,60,110,59,116,43,43,41,114,43,61,101,91,116,93,46,118,97,108,117,101,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,98,101,40,115,44,101,44,116,41,123,118,97,114,32,117,61,101,46,100,105,114,44,108,61,101,46,110,101,120,116,44,99,61,108,124,124,117,44,102,61,116,38,38,34,112,97,114,101,110,116,78,111,100,101,34,61,61,61,99,44,112,61,114,43,43,59,114,101,116,117,114,110,32,101,46,102,105,114,115,116,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,119,104,105,108,101,40,101,61,101,91,117,93,41,105,102,40,49,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,102,41,114,101,116,117,114,110,32,115,40,101,44,116,44,110,41,59,114,101,116,117,114,110,33,49,125,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,61,91,83,44,112,93,59,105,102,40,110,41,123,119,104,105,108,101,40,101,61,101,91,117,93,41,105,102,40,40,49,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,102,41,38,38,115,40,101,44,116,44,110,41,41,114,101,116,117,114,110,33,48,125,101,108,115,101,32,119,104,105,108,101,40,101,61,101,91,117,93,41,105,102,40,49,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,102,41,105,102,40,105,61,40,111,61,101,91,107,93,124,124,40,101,91,107,93,61,123,125,41,41,91,101,46,117,110,105,113,117,101,73,68,93,124,124,40,111,91,101,46,117,110,105,113,117,101,73,68,93,61,123,125,41,44,108,38,38,108,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,101,61,101,91,117,93,124,124,101,59,101,108,115,101,123,105,102,40,40,114,61,105,91,99,93,41,38,38,114,91,48,93,61,61,61,83,38,38,114,91,49,93,61,61,61,112,41,114,101,116,117,114,110,32,97,91,50,93,61,114,91,50,93,59,105,102,40,40,105,91,99,93,61,97,41,91,50,93,61,115,40,101,44,116,44,110,41,41,114,101,116,117,114,110,33,48,125,114,101,116,117,114,110,33,49,125,125,102,117,110,99,116,105,111,110,32,119,101,40,105,41,123,114,101,116,117,114,110,32,49,60,105,46,108,101,110,103,116,104,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,105,46,108,101,110,103,116,104,59,119,104,105,108,101,40,114,45,45,41,105,102,40,33,105,91,114,93,40,101,44,116,44,110,41,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,58,105,91,48,93,125,102,117,110,99,116,105,111,110,32,84,101,40,101,44,116,44,110,44,114,44,105,41,123,102,111,114,40,118,97,114,32,111,44,97,61,91,93,44,115,61,48,44,117,61,101,46,108,101,110,103,116,104,44,108,61,110,117,108,108,33,61,116,59,115,60,117,59,115,43,43,41,40,111,61,101,91,115,93,41,38,38,40,110,38,38,33,110,40,111,44,114,44,105,41,124,124,40,97,46,112,117,115,104,40,111,41,44,108,38,38,116,46,112,117,115,104,40,115,41,41,41,59,114,101,116,117,114,110,32,97,125,102,117,110,99,116,105,111,110,32,67,101,40,100,44,104,44,103,44,118,44,121,44,101,41,123,114,101,116,117,114,110,32,118,38,38,33,118,91,107,93,38,38,40,118,61,67,101,40,118,41,41,44,121,38,38,33,121,91,107,93,38,38,40,121,61,67,101,40,121,44,101,41,41,44,108,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,61,91,93,44,117,61,91,93,44,108,61,116,46,108,101,110,103,116,104,44,99,61,101,124,124,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,61,48,44,105,61,116,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,115,101,40,101,44,116,91,114,93,44,110,41,59,114,101,116,117,114,110,32,110,125,40,104,124,124,34,42,34,44,110,46,110,111,100,101,84,121,112,101,63,91,110,93,58,110,44,91,93,41,44,102,61,33,100,124,124,33,101,38,38,104,63,99,58,84,101,40,99,44,115,44,100,44,110,44,114,41,44,112,61,103,63,121,124,124,40,101,63,100,58,108,124,124,118,41,63,91,93,58,116,58,102,59,105,102,40,103,38,38,103,40,102,44,112,44,110,44,114,41,44,118,41,123,105,61,84,101,40,112,44,117,41,44,118,40,105,44,91,93,44,110,44,114,41,44,111,61,105,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,40,97,61,105,91,111,93,41,38,38,40,112,91,117,91,111,93,93,61,33,40,102,91,117,91,111,93,93,61,97,41,41,125,105,102,40,101,41,123,105,102,40,121,124,124,100,41,123,105,102,40,121,41,123,105,61,91,93,44,111,61,112,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,40,97,61,112,91,111,93,41,38,38,105,46,112,117,115,104,40,102,91,111,93,61,97,41,59,121,40,110,117,108,108,44,112,61,91,93,44,105,44,114,41,125,111,61,112,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,40,97,61,112,91,111,93,41,38,38,45,49,60,40,105,61,121,63,80,40,101,44,97,41,58,115,91,111,93,41,38,38,40,101,91,105,93,61,33,40,116,91,105,93,61,97,41,41,125,125,101,108,115,101,32,112,61,84,101,40,112,61,61,61,116,63,112,46,115,112,108,105,99,101,40,108,44,112,46,108,101,110,103,116,104,41,58,112,41,44,121,63,121,40,110,117,108,108,44,116,44,112,44,114,41,58,72,46,97,112,112,108,121,40,116,44,112,41,125,41,125,102,117,110,99,116,105,111,110,32,69,101,40,101,41,123,102,111,114,40,118,97,114,32,105,44,116,44,110,44,114,61,101,46,108,101,110,103,116,104,44,111,61,98,46,114,101,108,97,116,105,118,101,91,101,91,48,93,46,116,121,112,101,93,44,97,61,111,124,124,98,46,114,101,108,97,116,105,118,101,91,34,32,34,93,44,115,61,111,63,49,58,48,44,117,61,98,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,61,61,105,125,44,97,44,33,48,41,44,108,61,98,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,45,49,60,80,40,105,44,101,41,125,44,97,44,33,48,41,44,99,61,91,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,33,111,38,38,40,110,124,124,116,33,61,61,119,41,124,124,40,40,105,61,116,41,46,110,111,100,101,84,121,112,101,63,117,40,101,44,116,44,110,41,58,108,40,101,44,116,44,110,41,41,59,114,101,116,117,114,110,32,105,61,110,117,108,108,44,114,125,93,59,115,60,114,59,115,43,43,41,105,102,40,116,61,98,46,114,101,108,97,116,105,118,101,91,101,91,115,93,46,116,121,112,101,93,41,99,61,91,98,101,40,119,101,40,99,41,44,116,41,93,59,101,108,115,101,123,105,102,40,40,116,61,98,46,102,105,108,116,101,114,91,101,91,115,93,46,116,121,112,101,93,46,97,112,112,108,121,40,110,117,108,108,44,101,91,115,93,46,109,97,116,99,104,101,115,41,41,91,107,93,41,123,102,111,114,40,110,61,43,43,115,59,110,60,114,59,110,43,43,41,105,102,40,98,46,114,101,108,97,116,105,118,101,91,101,91,110,93,46,116,121,112,101,93,41,98,114,101,97,107,59,114,101,116,117,114,110,32,67,101,40,49,60,115,38,38,119,101,40,99,41,44,49,60,115,38,38,120,101,40,101,46,115,108,105,99,101,40,48,44,115,45,49,41,46,99,111,110,99,97,116,40,123,118,97,108,117,101,58,34,32,34,61,61,61,101,91,115,45,50,93,46,116,121,112,101,63,34,42,34,58,34,34,125,41,41,46,114,101,112,108,97,99,101,40,66,44,34,36,49,34,41,44,116,44,115,60,110,38,38,69,101,40,101,46,115,108,105,99,101,40,115,44,110,41,41,44,110,60,114,38,38,69,101,40,101,61,101,46,115,108,105,99,101,40,110,41,41,44,110,60,114,38,38,120,101,40,101,41,41,125,99,46,112,117,115,104,40,116,41,125,114,101,116,117,114,110,32,119,101,40,99,41,125,114,101,116,117,114,110,32,109,101,46,112,114,111,116,111,116,121,112,101,61,98,46,102,105,108,116,101,114,115,61,98,46,112,115,101,117,100,111,115,44,98,46,115,101,116,70,105,108,116,101,114,115,61,110,101,119,32,109,101,44,104,61,115,101,46,116,111,107,101,110,105,122,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,44,117,44,108,61,120,91,101,43,34,32,34,93,59,105,102,40,108,41,114,101,116,117,114,110,32,116,63,48,58,108,46,115,108,105,99,101,40,48,41,59,97,61,101,44,115,61,91,93,44,117,61,98,46,112,114,101,70,105,108,116,101,114,59,119,104,105,108,101,40,97,41,123,102,111,114,40,111,32,105,110,32,110,38,38,33,40,114,61,95,46,101,120,101,99,40,97,41,41,124,124,40,114,38,38,40,97,61,97,46,115,108,105,99,101,40,114,91,48,93,46,108,101,110,103,116,104,41,124,124,97,41,44,115,46,112,117,115,104,40,105,61,91,93,41,41,44,110,61,33,49,44,40,114,61,122,46,101,120,101,99,40,97,41,41,38,38,40,110,61,114,46,115,104,105,102,116,40,41,44,105,46,112,117,115,104,40,123,118,97,108,117,101,58,110,44,116,121,112,101,58,114,91,48,93,46,114,101,112,108,97,99,101,40,66,44,34,32,34,41,125,41,44,97,61,97,46,115,108,105,99,101,40,110,46,108,101,110,103,116,104,41,41,44,98,46,102,105,108,116,101,114,41,33,40,114,61,71,91,111,93,46,101,120,101,99,40,97,41,41,124,124,117,91,111,93,38,38,33,40,114,61,117,91,111,93,40,114,41,41,124,124,40,110,61,114,46,115,104,105,102,116,40,41,44,105,46,112,117,115,104,40,123,118,97,108,117,101,58,110,44,116,121,112,101,58,111,44,109,97,116,99,104,101,115,58,114,125,41,44,97,61,97,46,115,108,105,99,101,40,110,46,108,101,110,103,116,104,41,41,59,105,102,40,33,110,41,98,114,101,97,107,125,114,101,116,117,114,110,32,116,63,97,46,108,101,110,103,116,104,58,97,63,115,101,46,101,114,114,111,114,40,101,41,58,120,40,101,44,115,41,46,115,108,105,99,101,40,48,41,125,44,102,61,115,101,46,99,111,109,112,105,108,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,118,44,121,44,109,44,120,44,114,44,105,61,91,93,44,111,61,91,93,44,97,61,78,91,101,43,34,32,34,93,59,105,102,40,33,97,41,123,116,124,124,40,116,61,104,40,101,41,41,44,110,61,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,41,40,97,61,69,101,40,116,91,110,93,41,41,91,107,93,63,105,46,112,117,115,104,40,97,41,58,111,46,112,117,115,104,40,97,41,59,40,97,61,78,40,101,44,40,118,61,111,44,109,61,48,60,40,121,61,105,41,46,108,101,110,103,116,104,44,120,61,48,60,118,46,108,101,110,103,116,104,44,114,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,44,105,41,123,118,97,114,32,111,44,97,44,115,44,117,61,48,44,108,61,34,48,34,44,99,61,101,38,38,91,93,44,102,61,91,93,44,112,61,119,44,100,61,101,124,124,120,38,38,98,46,102,105,110,100,46,84,65,71,40,34,42,34,44,105,41,44,104,61,83,43,61,110,117,108,108,61,61,112,63,49,58,77,97,116,104,46,114,97,110,100,111,109,40,41,124,124,46,49,44,103,61,100,46,108,101,110,103,116,104,59,102,111,114,40,105,38,38,40,119,61,116,61,61,61,67,124,124,116,124,124,105,41,59,108,33,61,61,103,38,38,110,117,108,108,33,61,40,111,61,100,91,108,93,41,59,108,43,43,41,123,105,102,40,120,38,38,111,41,123,97,61,48,44,116,124,124,111,46,111,119,110,101,114,68,111,99,117,109,101,110,116,61,61,61,67,124,124,40,84,40,111,41,44,110,61,33,69,41,59,119,104,105,108,101,40,115,61,118,91,97,43,43,93,41,105,102,40,115,40,111,44,116,124,124,67,44,110,41,41,123,114,46,112,117,115,104,40,111,41,59,98,114,101,97,107,125,105,38,38,40,83,61,104,41,125,109,38,38,40,40,111,61,33,115,38,38,111,41,38,38,117,45,45,44,101,38,38,99,46,112,117,115,104,40,111,41,41,125,105,102,40,117,43,61,108,44,109,38,38,108,33,61,61,117,41,123,97,61,48,59,119,104,105,108,101,40,115,61,121,91,97,43,43,93,41,115,40,99,44,102,44,116,44,110,41,59,105,102,40,101,41,123,105,102,40,48,60,117,41,119,104,105,108,101,40,108,45,45,41,99,91,108,93,124,124,102,91,108,93,124,124,40,102,91,108,93,61,113,46,99,97,108,108,40,114,41,41,59,102,61,84,101,40,102,41,125,72,46,97,112,112,108,121,40,114,44,102,41,44,105,38,38,33,101,38,38,48,60,102,46,108,101,110,103,116,104,38,38,49,60,117,43,121,46,108,101,110,103,116,104,38,38,115,101,46,117,110,105,113,117,101,83,111,114,116,40,114,41,125,114,101,116,117,114,110,32,105,38,38,40,83,61,104,44,119,61,112,41,44,99,125,44,109,63,108,101,40,114,41,58,114,41,41,41,46,115,101,108,101,99,116,111,114,61,101,125,114,101,116,117,114,110,32,97,125,44,103,61,115,101,46,115,101,108,101,99,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,38,38,101,44,99,61,33,114,38,38,104,40,101,61,108,46,115,101,108,101,99,116,111,114,124,124,101,41,59,105,102,40,110,61,110,124,124,91,93,44,49,61,61,61,99,46,108,101,110,103,116,104,41,123,105,102,40,50,60,40,111,61,99,91,48,93,61,99,91,48,93,46,115,108,105,99,101,40,48,41,41,46,108,101,110,103,116,104,38,38,34,73,68,34,61,61,61,40,97,61,111,91,48,93,41,46,116,121,112,101,38,38,57,61,61,61,116,46,110,111,100,101,84,121,112,101,38,38,69,38,38,98,46,114,101,108,97,116,105,118,101,91,111,91,49,93,46,116,121,112,101,93,41,123,105,102,40,33,40,116,61,40,98,46,102,105,110,100,46,73,68,40,97,46,109,97,116,99,104,101,115,91,48,93,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,116,41,124,124,91,93,41,91,48,93,41,41,114,101,116,117,114,110,32,110,59,108,38,38,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,44,101,61,101,46,115,108,105,99,101,40,111,46,115,104,105,102,116,40,41,46,118,97,108,117,101,46,108,101,110,103,116,104,41,125,105,61,71,46,110,101,101,100,115,67,111,110,116,101,120,116,46,116,101,115,116,40,101,41,63,48,58,111,46,108,101,110,103,116,104,59,119,104,105,108,101,40,105,45,45,41,123,105,102,40,97,61,111,91,105,93,44,98,46,114,101,108,97,116,105,118,101,91,115,61,97,46,116,121,112,101,93,41,98,114,101,97,107,59,105,102,40,40,117,61,98,46,102,105,110,100,91,115,93,41,38,38,40,114,61,117,40,97,46,109,97,116,99,104,101,115,91,48,93,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,101,101,46,116,101,115,116,40,111,91,48,93,46,116,121,112,101,41,38,38,121,101,40,116,46,112,97,114,101,110,116,78,111,100,101,41,124,124,116,41,41,41,123,105,102,40,111,46,115,112,108,105,99,101,40,105,44,49,41,44,33,40,101,61,114,46,108,101,110,103,116,104,38,38,120,101,40,111,41,41,41,114,101,116,117,114,110,32,72,46,97,112,112,108,121,40,110,44,114,41,44,110,59,98,114,101,97,107,125,125,125,114,101,116,117,114,110,40,108,124,124,102,40,101,44,99,41,41,40,114,44,116,44,33,69,44,110,44,33,116,124,124,101,101,46,116,101,115,116,40,101,41,38,38,121,101,40,116,46,112,97,114,101,110,116,78,111,100,101,41,124,124,116,41,44,110,125,44,100,46,115,111,114,116,83,116,97,98,108,101,61,107,46,115,112,108,105,116,40,34,34,41,46,115,111,114,116,40,68,41,46,106,111,105,110,40,34,34,41,61,61,61,107,44,100,46,100,101,116,101,99,116,68,117,112,108,105,99,97,116,101,115,61,33,33,108,44,84,40,41,44,100,46,115,111,114,116,68,101,116,97,99,104,101,100,61,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,49,38,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,67,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,102,105,101,108,100,115,101,116,34,41,41,125,41,44,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,105,110,110,101,114,72,84,77,76,61,34,60,97,32,104,114,101,102,61,39,35,39,62,60,47,97,62,34,44,34,35,34,61,61,61,101,46,102,105,114,115,116,67,104,105,108,100,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,41,125,41,124,124,102,101,40,34,116,121,112,101,124,104,114,101,102,124,104,101,105,103,104,116,124,119,105,100,116,104,34,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,33,110,41,114,101,116,117,114,110,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,116,44,34,116,121,112,101,34,61,61,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,49,58,50,41,125,41,44,100,46,97,116,116,114,105,98,117,116,101,115,38,38,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,105,110,110,101,114,72,84,77,76,61,34,60,105,110,112,117,116,47,62,34,44,101,46,102,105,114,115,116,67,104,105,108,100,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,118,97,108,117,101,34,44,34,34,41,44,34,34,61,61,61,101,46,102,105,114,115,116,67,104,105,108,100,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,118,97,108,117,101,34,41,125,41,124,124,102,101,40,34,118,97,108,117,101,34,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,33,110,38,38,34,105,110,112,117,116,34,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,114,101,116,117,114,110,32,101,46,100,101,102,97,117,108,116,86,97,108,117,101,125,41,44,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,105,115,97,98,108,101,100,34,41,125,41,124,124,102,101,40,82,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,59,105,102,40,33,110,41,114,101,116,117,114,110,33,48,61,61,61,101,91,116,93,63,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,58,40,114,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,116,41,41,38,38,114,46,115,112,101,99,105,102,105,101,100,63,114,46,118,97,108,117,101,58,110,117,108,108,125,41,44,115,101,125,40,67,41,59,107,46,102,105,110,100,61,104,44,107,46,101,120,112,114,61,104,46,115,101,108,101,99,116,111,114,115,44,107,46,101,120,112,114,91,34,58,34,93,61,107,46,101,120,112,114,46,112,115,101,117,100,111,115,44,107,46,117,110,105,113,117,101,83,111,114,116,61,107,46,117,110,105,113,117,101,61,104,46,117,110,105,113,117,101,83,111,114,116,44,107,46,116,101,120,116,61,104,46,103,101,116,84,101,120,116,44,107,46,105,115,88,77,76,68,111,99,61,104,46,105,115,88,77,76,44,107,46,99,111,110,116,97,105,110,115,61,104,46,99,111,110,116,97,105,110,115,44,107,46,101,115,99,97,112,101,83,101,108,101,99,116,111,114,61,104,46,101,115,99,97,112,101,59,118,97,114,32,84,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,91,93,44,105,61,118,111,105,100,32,48,33,61,61,110,59,119,104,105,108,101,40,40,101,61,101,91,116,93,41,38,38,57,33,61,61,101,46,110,111,100,101,84,121,112,101,41,105,102,40,49,61,61,61,101,46,110,111,100,101,84,121,112,101,41,123,105,102,40,105,38,38,107,40,101,41,46,105,115,40,110,41,41,98,114,101,97,107,59,114,46,112,117,115,104,40,101,41,125,114,101,116,117,114,110,32,114,125,44,83,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,91,93,59,101,59,101,61,101,46,110,101,120,116,83,105,98,108,105,110,103,41,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,101,33,61,61,116,38,38,110,46,112,117,115,104,40,101,41,59,114,101,116,117,114,110,32,110,125,44,78,61,107,46,101,120,112,114,46,109,97,116,99,104,46,110,101,101,100,115,67,111,110,116,101,120,116,59,102,117,110,99,116,105,111,110,32,65,40,101,44,116,41,123,114,101,116,117,114,110,32,101,46,110,111,100,101,78,97,109,101,38,38,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,118,97,114,32,68,61,47,94,60,40,91,97,45,122,93,91,94,92,47,92,48,62,58,92,120,50,48,92,116,92,114,92,110,92,102,93,42,41,91,92,120,50,48,92,116,92,114,92,110,92,102,93,42,92,47,63,62,40,63,58,60,92,47,92,49,62,124,41,36,47,105,59,102,117,110,99,116,105,111,110,32,106,40,101,44,110,44,114,41,123,114,101,116,117,114,110,32,109,40,110,41,63,107,46,103,114,101,112,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,33,33,110,46,99,97,108,108,40,101,44,116,44,101,41,33,61,61,114,125,41,58,110,46,110,111,100,101,84,121,112,101,63,107,46,103,114,101,112,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,61,61,110,33,61,61,114,125,41,58,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,110,63,107,46,103,114,101,112,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,45,49,60,105,46,99,97,108,108,40,110,44,101,41,33,61,61,114,125,41,58,107,46,102,105,108,116,101,114,40,110,44,101,44,114,41,125,107,46,102,105,108,116,101,114,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,116,91,48,93,59,114,101,116,117,114,110,32,110,38,38,40,101,61,34,58,110,111,116,40,34,43,101,43,34,41,34,41,44,49,61,61,61,116,46,108,101,110,103,116,104,38,38,49,61,61,61,114,46,110,111,100,101,84,121,112,101,63,107,46,102,105,110,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,40,114,44,101,41,63,91,114,93,58,91,93,58,107,46,102,105,110,100,46,109,97,116,99,104,101,115,40,101,44,107,46,103,114,101,112,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,49,61,61,61,101,46,110,111,100,101,84,121,112,101,125,41,41,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,102,105,110,100,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,61,116,104,105,115,46,108,101,110,103,116,104,44,105,61,116,104,105,115,59,105,102,40,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,107,40,101,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,116,61,48,59,116,60,114,59,116,43,43,41,105,102,40,107,46,99,111,110,116,97,105,110,115,40,105,91,116,93,44,116,104,105,115,41,41,114,101,116,117,114,110,33,48,125,41,41,59,102,111,114,40,110,61,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,91,93,41,44,116,61,48,59,116,60,114,59,116,43,43,41,107,46,102,105,110,100,40,101,44,105,91,116,93,44,110,41,59,114,101,116,117,114,110,32,49,60,114,63,107,46,117,110,105,113,117,101,83,111,114,116,40,110,41,58,110,125,44,102,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,106,40,116,104,105,115,44,101,124,124,91,93,44,33,49,41,41,125,44,110,111,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,106,40,116,104,105,115,44,101,124,124,91,93,44,33,48,41,41,125,44,105,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,33,106,40,116,104,105,115,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,78,46,116,101,115,116,40,101,41,63,107,40,101,41,58,101,124,124,91,93,44,33,49,41,46,108,101,110,103,116,104,125,125,41,59,118,97,114,32,113,44,76,61,47,94,40,63,58,92,115,42,40,60,91,92,119,92,87,93,43,62,41,91,94,62,93,42,124,35,40,91,92,119,45,93,43,41,41,36,47,59,40,107,46,102,110,46,105,110,105,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,59,105,102,40,33,101,41,114,101,116,117,114,110,32,116,104,105,115,59,105,102,40,110,61,110,124,124,113,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,41,123,105,102,40,33,40,114,61,34,60,34,61,61,61,101,91,48,93,38,38,34,62,34,61,61,61,101,91,101,46,108,101,110,103,116,104,45,49,93,38,38,51,60,61,101,46,108,101,110,103,116,104,63,91,110,117,108,108,44,101,44,110,117,108,108,93,58,76,46,101,120,101,99,40,101,41,41,124,124,33,114,91,49,93,38,38,116,41,114,101,116,117,114,110,33,116,124,124,116,46,106,113,117,101,114,121,63,40,116,124,124,110,41,46,102,105,110,100,40,101,41,58,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,116,41,46,102,105,110,100,40,101,41,59,105,102,40,114,91,49,93,41,123,105,102,40,116,61,116,32,105,110,115,116,97,110,99,101,111,102,32,107,63,116,91,48,93,58,116,44,107,46,109,101,114,103,101,40,116,104,105,115,44,107,46,112,97,114,115,101,72,84,77,76,40,114,91,49,93,44,116,38,38,116,46,110,111,100,101,84,121,112,101,63,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,116,58,69,44,33,48,41,41,44,68,46,116,101,115,116,40,114,91,49,93,41,38,38,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,116,41,41,102,111,114,40,114,32,105,110,32,116,41,109,40,116,104,105,115,91,114,93,41,63,116,104,105,115,91,114,93,40,116,91,114,93,41,58,116,104,105,115,46,97,116,116,114,40,114,44,116,91,114,93,41,59,114,101,116,117,114,110,32,116,104,105,115,125,114,101,116,117,114,110,40,105,61,69,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,114,91,50,93,41,41,38,38,40,116,104,105,115,91,48,93,61,105,44,116,104,105,115,46,108,101,110,103,116,104,61,49,41,44,116,104,105,115,125,114,101,116,117,114,110,32,101,46,110,111,100,101,84,121,112,101,63,40,116,104,105,115,91,48,93,61,101,44,116,104,105,115,46,108,101,110,103,116,104,61,49,44,116,104,105,115,41,58,109,40,101,41,63,118,111,105,100,32,48,33,61,61,110,46,114,101,97,100,121,63,110,46,114,101,97,100,121,40,101,41,58,101,40,107,41,58,107,46,109,97,107,101,65,114,114,97,121,40,101,44,116,104,105,115,41,125,41,46,112,114,111,116,111,116,121,112,101,61,107,46,102,110,44,113,61,107,40,69,41,59,118,97,114,32,72,61,47,94,40,63,58,112,97,114,101,110,116,115,124,112,114,101,118,40,63,58,85,110,116,105,108,124,65,108,108,41,41,47,44,79,61,123,99,104,105,108,100,114,101,110,58,33,48,44,99,111,110,116,101,110,116,115,58,33,48,44,110,101,120,116,58,33,48,44,112,114,101,118,58,33,48,125,59,102,117,110,99,116,105,111,110,32,80,40,101,44,116,41,123,119,104,105,108,101,40,40,101,61,101,91,116,93,41,38,38,49,33,61,61,101,46,110,111,100,101,84,121,112,101,41,59,114,101,116,117,114,110,32,101,125,107,46,102,110,46,101,120,116,101,110,100,40,123,104,97,115,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,40,101,44,116,104,105,115,41,44,110,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,48,59,101,60,110,59,101,43,43,41,105,102,40,107,46,99,111,110,116,97,105,110,115,40,116,104,105,115,44,116,91,101,93,41,41,114,101,116,117,114,110,33,48,125,41,125,44,99,108,111,115,101,115,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,48,44,105,61,116,104,105,115,46,108,101,110,103,116,104,44,111,61,91,93,44,97,61,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,38,38,107,40,101,41,59,105,102,40,33,78,46,116,101,115,116,40,101,41,41,102,111,114,40,59,114,60,105,59,114,43,43,41,102,111,114,40,110,61,116,104,105,115,91,114,93,59,110,38,38,110,33,61,61,116,59,110,61,110,46,112,97,114,101,110,116,78,111,100,101,41,105,102,40,110,46,110,111,100,101,84,121,112,101,60,49,49,38,38,40,97,63,45,49,60,97,46,105,110,100,101,120,40,110,41,58,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,107,46,102,105,110,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,40,110,44,101,41,41,41,123,111,46,112,117,115,104,40,110,41,59,98,114,101,97,107,125,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,49,60,111,46,108,101,110,103,116,104,63,107,46,117,110,105,113,117,101,83,111,114,116,40,111,41,58,111,41,125,44,105,110,100,101,120,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,63,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,105,46,99,97,108,108,40,107,40,101,41,44,116,104,105,115,91,48,93,41,58,105,46,99,97,108,108,40,116,104,105,115,44,101,46,106,113,117,101,114,121,63,101,91,48,93,58,101,41,58,116,104,105,115,91,48,93,38,38,116,104,105,115,91,48,93,46,112,97,114,101,110,116,78,111,100,101,63,116,104,105,115,46,102,105,114,115,116,40,41,46,112,114,101,118,65,108,108,40,41,46,108,101,110,103,116,104,58,45,49,125,44,97,100,100,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,107,46,117,110,105,113,117,101,83,111,114,116,40,107,46,109,101,114,103,101,40,116,104,105,115,46,103,101,116,40,41,44,107,40,101,44,116,41,41,41,41,125,44,97,100,100,66,97,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,100,100,40,110,117,108,108,61,61,101,63,116,104,105,115,46,112,114,101,118,79,98,106,101,99,116,58,116,104,105,115,46,112,114,101,118,79,98,106,101,99,116,46,102,105,108,116,101,114,40,101,41,41,125,125,41,44,107,46,101,97,99,104,40,123,112,97,114,101,110,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,97,114,101,110,116,78,111,100,101,59,114,101,116,117,114,110,32,116,38,38,49,49,33,61,61,116,46,110,111,100,101,84,121,112,101,63,116,58,110,117,108,108,125,44,112,97,114,101,110,116,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,84,40,101,44,34,112,97,114,101,110,116,78,111,100,101,34,41,125,44,112,97,114,101,110,116,115,85,110,116,105,108,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,84,40,101,44,34,112,97,114,101,110,116,78,111,100,101,34,44,110,41,125,44,110,101,120,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,80,40,101,44,34,110,101,120,116,83,105,98,108,105,110,103,34,41,125,44,112,114,101,118,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,80,40,101,44,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,41,125,44,110,101,120,116,65,108,108,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,84,40,101,44,34,110,101,120,116,83,105,98,108,105,110,103,34,41,125,44,112,114,101,118,65,108,108,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,84,40,101,44,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,41,125,44,110,101,120,116,85,110,116,105,108,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,84,40,101,44,34,110,101,120,116,83,105,98,108,105,110,103,34,44,110,41,125,44,112,114,101,118,85,110,116,105,108,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,84,40,101,44,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,44,110,41,125,44,115,105,98,108,105,110,103,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,83,40,40,101,46,112,97,114,101,110,116,78,111,100,101,124,124,123,125,41,46,102,105,114,115,116,67,104,105,108,100,44,101,41,125,44,99,104,105,108,100,114,101,110,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,83,40,101,46,102,105,114,115,116,67,104,105,108,100,41,125,44,99,111,110,116,101,110,116,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,99,111,110,116,101,110,116,68,111,99,117,109,101,110,116,63,101,46,99,111,110,116,101,110,116,68,111,99,117,109,101,110,116,58,40,65,40,101,44,34,116,101,109,112,108,97,116,101,34,41,38,38,40,101,61,101,46,99,111,110,116,101,110,116,124,124,101,41,44,107,46,109,101,114,103,101,40,91,93,44,101,46,99,104,105,108,100,78,111,100,101,115,41,41,125,125,44,102,117,110,99,116,105,111,110,40,114,44,105,41,123,107,46,102,110,91,114,93,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,107,46,109,97,112,40,116,104,105,115,44,105,44,101,41,59,114,101,116,117,114,110,34,85,110,116,105,108,34,33,61,61,114,46,115,108,105,99,101,40,45,53,41,38,38,40,116,61,101,41,44,116,38,38,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,38,38,40,110,61,107,46,102,105,108,116,101,114,40,116,44,110,41,41,44,49,60,116,104,105,115,46,108,101,110,103,116,104,38,38,40,79,91,114,93,124,124,107,46,117,110,105,113,117,101,83,111,114,116,40,110,41,44,72,46,116,101,115,116,40,114,41,38,38,110,46,114,101,118,101,114,115,101,40,41,41,44,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,110,41,125,125,41,59,118,97,114,32,82,61,47,91,94,92,120,50,48,92,116,92,114,92,110,92,102,93,43,47,103,59,102,117,110,99,116,105,111,110,32,77,40,101,41,123,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,73,40,101,41,123,116,104,114,111,119,32,101,125,102,117,110,99,116,105,111,110,32,87,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,59,116,114,121,123,101,38,38,109,40,105,61,101,46,112,114,111,109,105,115,101,41,63,105,46,99,97,108,108,40,101,41,46,100,111,110,101,40,116,41,46,102,97,105,108,40,110,41,58,101,38,38,109,40,105,61,101,46,116,104,101,110,41,63,105,46,99,97,108,108,40,101,44,116,44,110,41,58,116,46,97,112,112,108,121,40,118,111,105,100,32,48,44,91,101,93,46,115,108,105,99,101,40,114,41,41,125,99,97,116,99,104,40,101,41,123,110,46,97,112,112,108,121,40,118,111,105,100,32,48,44,91,101,93,41,125,125,107,46,67,97,108,108,98,97,99,107,115,61,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,101,44,110,59,114,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,114,63,40,101,61,114,44,110,61,123,125,44,107,46,101,97,99,104,40,101,46,109,97,116,99,104,40,82,41,124,124,91,93,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,110,91,116,93,61,33,48,125,41,44,110,41,58,107,46,101,120,116,101,110,100,40,123,125,44,114,41,59,118,97,114,32,105,44,116,44,111,44,97,44,115,61,91,93,44,117,61,91,93,44,108,61,45,49,44,99,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,97,61,97,124,124,114,46,111,110,99,101,44,111,61,105,61,33,48,59,117,46,108,101,110,103,116,104,59,108,61,45,49,41,123,116,61,117,46,115,104,105,102,116,40,41,59,119,104,105,108,101,40,43,43,108,60,115,46,108,101,110,103,116,104,41,33,49,61,61,61,115,91,108,93,46,97,112,112,108,121,40,116,91,48,93,44,116,91,49,93,41,38,38,114,46,115,116,111,112,79,110,70,97,108,115,101,38,38,40,108,61,115,46,108,101,110,103,116,104,44,116,61,33,49,41,125,114,46,109,101,109,111,114,121,124,124,40,116,61,33,49,41,44,105,61,33,49,44,97,38,38,40,115,61,116,63,91,93,58,34,34,41,125,44,102,61,123,97,100,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,38,38,40,116,38,38,33,105,38,38,40,108,61,115,46,108,101,110,103,116,104,45,49,44,117,46,112,117,115,104,40,116,41,41,44,102,117,110,99,116,105,111,110,32,110,40,101,41,123,107,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,109,40,116,41,63,114,46,117,110,105,113,117,101,38,38,102,46,104,97,115,40,116,41,124,124,115,46,112,117,115,104,40,116,41,58,116,38,38,116,46,108,101,110,103,116,104,38,38,34,115,116,114,105,110,103,34,33,61,61,119,40,116,41,38,38,110,40,116,41,125,41,125,40,97,114,103,117,109,101,110,116,115,41,44,116,38,38,33,105,38,38,99,40,41,41,44,116,104,105,115,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,46,101,97,99,104,40,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,59,119,104,105,108,101,40,45,49,60,40,110,61,107,46,105,110,65,114,114,97,121,40,116,44,115,44,110,41,41,41,115,46,115,112,108,105,99,101,40,110,44,49,41,44,110,60,61,108,38,38,108,45,45,125,41,44,116,104,105,115,125,44,104,97,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,63,45,49,60,107,46,105,110,65,114,114,97,121,40,101,44,115,41,58,48,60,115,46,108,101,110,103,116,104,125,44,101,109,112,116,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,38,38,40,115,61,91,93,41,44,116,104,105,115,125,44,100,105,115,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,61,117,61,91,93,44,115,61,116,61,34,34,44,116,104,105,115,125,44,100,105,115,97,98,108,101,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,115,125,44,108,111,99,107,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,61,117,61,91,93,44,116,124,124,105,124,124,40,115,61,116,61,34,34,41,44,116,104,105,115,125,44,108,111,99,107,101,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,33,97,125,44,102,105,114,101,87,105,116,104,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,97,124,124,40,116,61,91,101,44,40,116,61,116,124,124,91,93,41,46,115,108,105,99,101,63,116,46,115,108,105,99,101,40,41,58,116,93,44,117,46,112,117,115,104,40,116,41,44,105,124,124,99,40,41,41,44,116,104,105,115,125,44,102,105,114,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,46,102,105,114,101,87,105,116,104,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,116,104,105,115,125,44,102,105,114,101,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,33,111,125,125,59,114,101,116,117,114,110,32,102,125,44,107,46,101,120,116,101,110,100,40,123,68,101,102,101,114,114,101,100,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,111,61,91,91,34,110,111,116,105,102,121,34,44,34,112,114,111,103,114,101,115,115,34,44,107,46,67,97,108,108,98,97,99,107,115,40,34,109,101,109,111,114,121,34,41,44,107,46,67,97,108,108,98,97,99,107,115,40,34,109,101,109,111,114,121,34,41,44,50,93,44,91,34,114,101,115,111,108,118,101,34,44,34,100,111,110,101,34,44,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,48,44,34,114,101,115,111,108,118,101,100,34,93,44,91,34,114,101,106,101,99,116,34,44,34,102,97,105,108,34,44,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,49,44,34,114,101,106,101,99,116,101,100,34,93,93,44,105,61,34,112,101,110,100,105,110,103,34,44,97,61,123,115,116,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,125,44,97,108,119,97,121,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,46,100,111,110,101,40,97,114,103,117,109,101,110,116,115,41,46,102,97,105,108,40,97,114,103,117,109,101,110,116,115,41,44,116,104,105,115,125,44,34,99,97,116,99,104,34,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,116,104,101,110,40,110,117,108,108,44,101,41,125,44,112,105,112,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,61,97,114,103,117,109,101,110,116,115,59,114,101,116,117,114,110,32,107,46,68,101,102,101,114,114,101,100,40,102,117,110,99,116,105,111,110,40,114,41,123,107,46,101,97,99,104,40,111,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,109,40,105,91,116,91,52,93,93,41,38,38,105,91,116,91,52,93,93,59,115,91,116,91,49,93,93,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,38,38,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,101,38,38,109,40,101,46,112,114,111,109,105,115,101,41,63,101,46,112,114,111,109,105,115,101,40,41,46,112,114,111,103,114,101,115,115,40,114,46,110,111,116,105,102,121,41,46,100,111,110,101,40,114,46,114,101,115,111,108,118,101,41,46,102,97,105,108,40,114,46,114,101,106,101,99,116,41,58,114,91,116,91,48,93,43,34,87,105,116,104,34,93,40,116,104,105,115,44,110,63,91,101,93,58,97,114,103,117,109,101,110,116,115,41,125,41,125,41,44,105,61,110,117,108,108,125,41,46,112,114,111,109,105,115,101,40,41,125,44,116,104,101,110,58,102,117,110,99,116,105,111,110,40,116,44,110,44,114,41,123,118,97,114,32,117,61,48,59,102,117,110,99,116,105,111,110,32,108,40,105,44,111,44,97,44,115,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,44,114,61,97,114,103,117,109,101,110,116,115,44,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,59,105,102,40,33,40,105,60,117,41,41,123,105,102,40,40,101,61,97,46,97,112,112,108,121,40,110,44,114,41,41,61,61,61,111,46,112,114,111,109,105,115,101,40,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,84,104,101,110,97,98,108,101,32,115,101,108,102,45,114,101,115,111,108,117,116,105,111,110,34,41,59,116,61,101,38,38,40,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,41,38,38,101,46,116,104,101,110,44,109,40,116,41,63,115,63,116,46,99,97,108,108,40,101,44,108,40,117,44,111,44,77,44,115,41,44,108,40,117,44,111,44,73,44,115,41,41,58,40,117,43,43,44,116,46,99,97,108,108,40,101,44,108,40,117,44,111,44,77,44,115,41,44,108,40,117,44,111,44,73,44,115,41,44,108,40,117,44,111,44,77,44,111,46,110,111,116,105,102,121,87,105,116,104,41,41,41,58,40,97,33,61,61,77,38,38,40,110,61,118,111,105,100,32,48,44,114,61,91,101,93,41,44,40,115,124,124,111,46,114,101,115,111,108,118,101,87,105,116,104,41,40,110,44,114,41,41,125,125,44,116,61,115,63,101,58,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,101,40,41,125,99,97,116,99,104,40,101,41,123,107,46,68,101,102,101,114,114,101,100,46,101,120,99,101,112,116,105,111,110,72,111,111,107,38,38,107,46,68,101,102,101,114,114,101,100,46,101,120,99,101,112,116,105,111,110,72,111,111,107,40,101,44,116,46,115,116,97,99,107,84,114,97,99,101,41,44,117,60,61,105,43,49,38,38,40,97,33,61,61,73,38,38,40,110,61,118,111,105,100,32,48,44,114,61,91,101,93,41,44,111,46,114,101,106,101,99,116,87,105,116,104,40,110,44,114,41,41,125,125,59,105,63,116,40,41,58,40,107,46,68,101,102,101,114,114,101,100,46,103,101,116,83,116,97,99,107,72,111,111,107,38,38,40,116,46,115,116,97,99,107,84,114,97,99,101,61,107,46,68,101,102,101,114,114,101,100,46,103,101,116,83,116,97,99,107,72,111,111,107,40,41,41,44,67,46,115,101,116,84,105,109,101,111,117,116,40,116,41,41,125,125,114,101,116,117,114,110,32,107,46,68,101,102,101,114,114,101,100,40,102,117,110,99,116,105,111,110,40,101,41,123,111,91,48,93,91,51,93,46,97,100,100,40,108,40,48,44,101,44,109,40,114,41,63,114,58,77,44,101,46,110,111,116,105,102,121,87,105,116,104,41,41,44,111,91,49,93,91,51,93,46,97,100,100,40,108,40,48,44,101,44,109,40,116,41,63,116,58,77,41,41,44,111,91,50,93,91,51,93,46,97,100,100,40,108,40,48,44,101,44,109,40,110,41,63,110,58,73,41,41,125,41,46,112,114,111,109,105,115,101,40,41,125,44,112,114,111,109,105,115,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,101,63,107,46,101,120,116,101,110,100,40,101,44,97,41,58,97,125,125,44,115,61,123,125,59,114,101,116,117,114,110,32,107,46,101,97,99,104,40,111,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,91,50,93,44,114,61,116,91,53,93,59,97,91,116,91,49,93,93,61,110,46,97,100,100,44,114,38,38,110,46,97,100,100,40,102,117,110,99,116,105,111,110,40,41,123,105,61,114,125,44,111,91,51,45,101,93,91,50,93,46,100,105,115,97,98,108,101,44,111,91,51,45,101,93,91,51,93,46,100,105,115,97,98,108,101,44,111,91,48,93,91,50,93,46,108,111,99,107,44,111,91,48,93,91,51,93,46,108,111,99,107,41,44,110,46,97,100,100,40,116,91,51,93,46,102,105,114,101,41,44,115,91,116,91,48,93,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,91,116,91,48,93,43,34,87,105,116,104,34,93,40,116,104,105,115,61,61,61,115,63,118,111,105,100,32,48,58,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,116,104,105,115,125,44,115,91,116,91,48,93,43,34,87,105,116,104,34,93,61,110,46,102,105,114,101,87,105,116,104,125,41,44,97,46,112,114,111,109,105,115,101,40,115,41,44,101,38,38,101,46,99,97,108,108,40,115,44,115,41,44,115,125,44,119,104,101,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,116,61,110,44,114,61,65,114,114,97,121,40,116,41,44,105,61,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,111,61,107,46,68,101,102,101,114,114,101,100,40,41,44,97,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,91,116,93,61,116,104,105,115,44,105,91,116,93,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,58,101,44,45,45,110,124,124,111,46,114,101,115,111,108,118,101,87,105,116,104,40,114,44,105,41,125,125,59,105,102,40,110,60,61,49,38,38,40,87,40,101,44,111,46,100,111,110,101,40,97,40,116,41,41,46,114,101,115,111,108,118,101,44,111,46,114,101,106,101,99,116,44,33,110,41,44,34,112,101,110,100,105,110,103,34,61,61,61,111,46,115,116,97,116,101,40,41,124,124,109,40,105,91,116,93,38,38,105,91,116,93,46,116,104,101,110,41,41,41,114,101,116,117,114,110,32,111,46,116,104,101,110,40,41,59,119,104,105,108,101,40,116,45,45,41,87,40,105,91,116,93,44,97,40,116,41,44,111,46,114,101,106,101,99,116,41,59,114,101,116,117,114,110,32,111,46,112,114,111,109,105,115,101,40,41,125,125,41,59,118,97,114,32,36,61,47,94,40,69,118,97,108,124,73,110,116,101,114,110,97,108,124,82,97,110,103,101,124,82,101,102,101,114,101,110,99,101,124,83,121,110,116,97,120,124,84,121,112,101,124,85,82,73,41,69,114,114,111,114,36,47,59,107,46,68,101,102,101,114,114,101,100,46,101,120,99,101,112,116,105,111,110,72,111,111,107,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,67,46,99,111,110,115,111,108,101,38,38,67,46,99,111,110,115,111,108,101,46,119,97,114,110,38,38,101,38,38,36,46,116,101,115,116,40,101,46,110,97,109,101,41,38,38,67,46,99,111,110,115,111,108,101,46,119,97,114,110,40,34,106,81,117,101,114,121,46,68,101,102,101,114,114,101,100,32,101,120,99,101,112,116,105,111,110,58,32,34,43,101,46,109,101,115,115,97,103,101,44,101,46,115,116,97,99,107,44,116,41,125,44,107,46,114,101,97,100,121,69,120,99,101,112,116,105,111,110,61,102,117,110,99,116,105,111,110,40,101,41,123,67,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,101,125,41,125,59,118,97,114,32,70,61,107,46,68,101,102,101,114,114,101,100,40,41,59,102,117,110,99,116,105,111,110,32,66,40,41,123,69,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,68,79,77,67,111,110,116,101,110,116,76,111,97,100,101,100,34,44,66,41,44,67,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,108,111,97,100,34,44,66,41,44,107,46,114,101,97,100,121,40,41,125,107,46,102,110,46,114,101,97,100,121,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,70,46,116,104,101,110,40,101,41,91,34,99,97,116,99,104,34,93,40,102,117,110,99,116,105,111,110,40,101,41,123,107,46,114,101,97,100,121,69,120,99,101,112,116,105,111,110,40,101,41,125,41,44,116,104,105,115,125,44,107,46,101,120,116,101,110,100,40,123,105,115,82,101,97,100,121,58,33,49,44,114,101,97,100,121,87,97,105,116,58,49,44,114,101,97,100,121,58,102,117,110,99,116,105,111,110,40,101,41,123,40,33,48,61,61,61,101,63,45,45,107,46,114,101,97,100,121,87,97,105,116,58,107,46,105,115,82,101,97,100,121,41,124,124,40,107,46,105,115,82,101,97,100,121,61,33,48,41,33,61,61,101,38,38,48,60,45,45,107,46,114,101,97,100,121,87,97,105,116,124,124,70,46,114,101,115,111,108,118,101,87,105,116,104,40,69,44,91,107,93,41,125,125,41,44,107,46,114,101,97,100,121,46,116,104,101,110,61,70,46,116,104,101,110,44,34,99,111,109,112,108,101,116,101,34,61,61,61,69,46,114,101,97,100,121,83,116,97,116,101,124,124,34,108,111,97,100,105,110,103,34,33,61,61,69,46,114,101,97,100,121,83,116,97,116,101,38,38,33,69,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,100,111,83,99,114,111,108,108,63,67,46,115,101,116,84,105,109,101,111,117,116,40,107,46,114,101,97,100,121,41,58,40,69,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,68,79,77,67,111,110,116,101,110,116,76,111,97,100,101,100,34,44,66,41,44,67,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,108,111,97,100,34,44,66,41,41,59,118,97,114,32,95,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,44,105,44,111,44,97,41,123,118,97,114,32,115,61,48,44,117,61,101,46,108,101,110,103,116,104,44,108,61,110,117,108,108,61,61,110,59,105,102,40,34,111,98,106,101,99,116,34,61,61,61,119,40,110,41,41,102,111,114,40,115,32,105,110,32,105,61,33,48,44,110,41,95,40,101,44,116,44,115,44,110,91,115,93,44,33,48,44,111,44,97,41,59,101,108,115,101,32,105,102,40,118,111,105,100,32,48,33,61,61,114,38,38,40,105,61,33,48,44,109,40,114,41,124,124,40,97,61,33,48,41,44,108,38,38,40,97,63,40,116,46,99,97,108,108,40,101,44,114,41,44,116,61,110,117,108,108,41,58,40,108,61,116,44,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,108,46,99,97,108,108,40,107,40,101,41,44,110,41,125,41,41,44,116,41,41,102,111,114,40,59,115,60,117,59,115,43,43,41,116,40,101,91,115,93,44,110,44,97,63,114,58,114,46,99,97,108,108,40,101,91,115,93,44,115,44,116,40,101,91,115,93,44,110,41,41,41,59,114,101,116,117,114,110,32,105,63,101,58,108,63,116,46,99,97,108,108,40,101,41,58,117,63,116,40,101,91,48,93,44,110,41,58,111,125,44,122,61,47,94,45,109,115,45,47,44,85,61,47,45,40,91,97,45,122,93,41,47,103,59,102,117,110,99,116,105,111,110,32,88,40,101,44,116,41,123,114,101,116,117,114,110,32,116,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,102,117,110,99,116,105,111,110,32,86,40,101,41,123,114,101,116,117,114,110,32,101,46,114,101,112,108,97,99,101,40,122,44,34,109,115,45,34,41,46,114,101,112,108,97,99,101,40,85,44,88,41,125,118,97,114,32,71,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,49,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,57,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,33,43,101,46,110,111,100,101,84,121,112,101,125,59,102,117,110,99,116,105,111,110,32,89,40,41,123,116,104,105,115,46,101,120,112,97,110,100,111,61,107,46,101,120,112,97,110,100,111,43,89,46,117,105,100,43,43,125,89,46,117,105,100,61,49,44,89,46,112,114,111,116,111,116,121,112,101,61,123,99,97,99,104,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,59,114,101,116,117,114,110,32,116,124,124,40,116,61,123,125,44,71,40,101,41,38,38,40,101,46,110,111,100,101,84,121,112,101,63,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,61,116,58,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,116,104,105,115,46,101,120,112,97,110,100,111,44,123,118,97,108,117,101,58,116,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,41,41,41,44,116,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,61,116,104,105,115,46,99,97,99,104,101,40,101,41,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,41,105,91,86,40,116,41,93,61,110,59,101,108,115,101,32,102,111,114,40,114,32,105,110,32,116,41,105,91,86,40,114,41,93,61,116,91,114,93,59,114,101,116,117,114,110,32,105,125,44,103,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,63,116,104,105,115,46,99,97,99,104,101,40,101,41,58,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,38,38,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,91,86,40,116,41,93,125,44,97,99,99,101,115,115,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,124,124,116,38,38,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,38,38,118,111,105,100,32,48,61,61,61,110,63,116,104,105,115,46,103,101,116,40,101,44,116,41,58,40,116,104,105,115,46,115,101,116,40,101,44,116,44,110,41,44,118,111,105,100,32,48,33,61,61,110,63,110,58,116,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,59,105,102,40,118,111,105,100,32,48,33,61,61,114,41,123,105,102,40,118,111,105,100,32,48,33,61,61,116,41,123,110,61,40,116,61,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,116,46,109,97,112,40,86,41,58,40,116,61,86,40,116,41,41,105,110,32,114,63,91,116,93,58,116,46,109,97,116,99,104,40,82,41,124,124,91,93,41,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,41,100,101,108,101,116,101,32,114,91,116,91,110,93,93,125,40,118,111,105,100,32,48,61,61,61,116,124,124,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,114,41,41,38,38,40,101,46,110,111,100,101,84,121,112,101,63,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,61,118,111,105,100,32,48,58,100,101,108,101,116,101,32,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,41,125,125,44,104,97,115,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,59,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,116,38,38,33,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,116,41,125,125,59,118,97,114,32,81,61,110,101,119,32,89,44,74,61,110,101,119,32,89,44,75,61,47,94,40,63,58,92,123,91,92,119,92,87,93,42,92,125,124,92,91,91,92,119,92,87,93,42,92,93,41,36,47,44,90,61,47,91,65,45,90,93,47,103,59,102,117,110,99,116,105,111,110,32,101,101,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,59,105,102,40,118,111,105,100,32,48,61,61,61,110,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,41,105,102,40,114,61,34,100,97,116,97,45,34,43,116,46,114,101,112,108,97,99,101,40,90,44,34,45,36,38,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,40,110,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,114,41,41,41,123,116,114,121,123,110,61,34,116,114,117,101,34,61,61,61,40,105,61,110,41,124,124,34,102,97,108,115,101,34,33,61,61,105,38,38,40,34,110,117,108,108,34,61,61,61,105,63,110,117,108,108,58,105,61,61,61,43,105,43,34,34,63,43,105,58,75,46,116,101,115,116,40,105,41,63,74,83,79,78,46,112,97,114,115,101,40,105,41,58,105,41,125,99,97,116,99,104,40,101,41,123,125,74,46,115,101,116,40,101,44,116,44,110,41,125,101,108,115,101,32,110,61,118,111,105,100,32,48,59,114,101,116,117,114,110,32,110,125,107,46,101,120,116,101,110,100,40,123,104,97,115,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,74,46,104,97,115,68,97,116,97,40,101,41,124,124,81,46,104,97,115,68,97,116,97,40,101,41,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,74,46,97,99,99,101,115,115,40,101,44,116,44,110,41,125,44,114,101,109,111,118,101,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,74,46,114,101,109,111,118,101,40,101,44,116,41,125,44,95,100,97,116,97,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,81,46,97,99,99,101,115,115,40,101,44,116,44,110,41,125,44,95,114,101,109,111,118,101,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,81,46,114,101,109,111,118,101,40,101,44,116,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,100,97,116,97,58,102,117,110,99,116,105,111,110,40,110,44,101,41,123,118,97,114,32,116,44,114,44,105,44,111,61,116,104,105,115,91,48,93,44,97,61,111,38,38,111,46,97,116,116,114,105,98,117,116,101,115,59,105,102,40,118,111,105,100,32,48,61,61,61,110,41,123,105,102,40,116,104,105,115,46,108,101,110,103,116,104,38,38,40,105,61,74,46,103,101,116,40,111,41,44,49,61,61,61,111,46,110,111,100,101,84,121,112,101,38,38,33,81,46,103,101,116,40,111,44,34,104,97,115,68,97,116,97,65,116,116,114,115,34,41,41,41,123,116,61,97,46,108,101,110,103,116,104,59,119,104,105,108,101,40,116,45,45,41,97,91,116,93,38,38,48,61,61,61,40,114,61,97,91,116,93,46,110,97,109,101,41,46,105,110,100,101,120,79,102,40,34,100,97,116,97,45,34,41,38,38,40,114,61,86,40,114,46,115,108,105,99,101,40,53,41,41,44,101,101,40,111,44,114,44,105,91,114,93,41,41,59,81,46,115,101,116,40,111,44,34,104,97,115,68,97,116,97,65,116,116,114,115,34,44,33,48,41,125,114,101,116,117,114,110,32,105,125,114,101,116,117,114,110,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,63,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,74,46,115,101,116,40,116,104,105,115,44,110,41,125,41,58,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,105,102,40,111,38,38,118,111,105,100,32,48,61,61,61,101,41,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,40,116,61,74,46,103,101,116,40,111,44,110,41,41,63,116,58,118,111,105,100,32,48,33,61,61,40,116,61,101,101,40,111,44,110,41,41,63,116,58,118,111,105,100,32,48,59,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,74,46,115,101,116,40,116,104,105,115,44,110,44,101,41,125,41,125,44,110,117,108,108,44,101,44,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,110,117,108,108,44,33,48,41,125,44,114,101,109,111,118,101,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,74,46,114,101,109,111,118,101,40,116,104,105,115,44,101,41,125,41,125,125,41,44,107,46,101,120,116,101,110,100,40,123,113,117,101,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,59,105,102,40,101,41,114,101,116,117,114,110,32,116,61,40,116,124,124,34,102,120,34,41,43,34,113,117,101,117,101,34,44,114,61,81,46,103,101,116,40,101,44,116,41,44,110,38,38,40,33,114,124,124,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,63,114,61,81,46,97,99,99,101,115,115,40,101,44,116,44,107,46,109,97,107,101,65,114,114,97,121,40,110,41,41,58,114,46,112,117,115,104,40,110,41,41,44,114,124,124,91,93,125,44,100,101,113,117,101,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,61,116,124,124,34,102,120,34,59,118,97,114,32,110,61,107,46,113,117,101,117,101,40,101,44,116,41,44,114,61,110,46,108,101,110,103,116,104,44,105,61,110,46,115,104,105,102,116,40,41,44,111,61,107,46,95,113,117,101,117,101,72,111,111,107,115,40,101,44,116,41,59,34,105,110,112,114,111,103,114,101,115,115,34,61,61,61,105,38,38,40,105,61,110,46,115,104,105,102,116,40,41,44,114,45,45,41,44,105,38,38,40,34,102,120,34,61,61,61,116,38,38,110,46,117,110,115,104,105,102,116,40,34,105,110,112,114,111,103,114,101,115,115,34,41,44,100,101,108,101,116,101,32,111,46,115,116,111,112,44,105,46,99,97,108,108,40,101,44,102,117,110,99,116,105,111,110,40,41,123,107,46,100,101,113,117,101,117,101,40,101,44,116,41,125,44,111,41,41,44,33,114,38,38,111,38,38,111,46,101,109,112,116,121,46,102,105,114,101,40,41,125,44,95,113,117,101,117,101,72,111,111,107,115,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,43,34,113,117,101,117,101,72,111,111,107,115,34,59,114,101,116,117,114,110,32,81,46,103,101,116,40,101,44,110,41,124,124,81,46,97,99,99,101,115,115,40,101,44,110,44,123,101,109,112,116,121,58,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,46,97,100,100,40,102,117,110,99,116,105,111,110,40,41,123,81,46,114,101,109,111,118,101,40,101,44,91,116,43,34,113,117,101,117,101,34,44,110,93,41,125,41,125,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,113,117,101,117,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,50,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,116,38,38,40,110,61,116,44,116,61,34,102,120,34,44,101,45,45,41,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,101,63,107,46,113,117,101,117,101,40,116,104,105,115,91,48,93,44,116,41,58,118,111,105,100,32,48,61,61,61,110,63,116,104,105,115,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,107,46,113,117,101,117,101,40,116,104,105,115,44,116,44,110,41,59,107,46,95,113,117,101,117,101,72,111,111,107,115,40,116,104,105,115,44,116,41,44,34,102,120,34,61,61,61,116,38,38,34,105,110,112,114,111,103,114,101,115,115,34,33,61,61,101,91,48,93,38,38,107,46,100,101,113,117,101,117,101,40,116,104,105,115,44,116,41,125,41,125,44,100,101,113,117,101,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,100,101,113,117,101,117,101,40,116,104,105,115,44,101,41,125,41,125,44,99,108,101,97,114,81,117,101,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,113,117,101,117,101,40,101,124,124,34,102,120,34,44,91,93,41,125,44,112,114,111,109,105,115,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,49,44,105,61,107,46,68,101,102,101,114,114,101,100,40,41,44,111,61,116,104,105,115,44,97,61,116,104,105,115,46,108,101,110,103,116,104,44,115,61,102,117,110,99,116,105,111,110,40,41,123,45,45,114,124,124,105,46,114,101,115,111,108,118,101,87,105,116,104,40,111,44,91,111,93,41,125,59,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,38,38,40,116,61,101,44,101,61,118,111,105,100,32,48,41,44,101,61,101,124,124,34,102,120,34,59,119,104,105,108,101,40,97,45,45,41,40,110,61,81,46,103,101,116,40,111,91,97,93,44,101,43,34,113,117,101,117,101,72,111,111,107,115,34,41,41,38,38,110,46,101,109,112,116,121,38,38,40,114,43,43,44,110,46,101,109,112,116,121,46,97,100,100,40,115,41,41,59,114,101,116,117,114,110,32,115,40,41,44,105,46,112,114,111,109,105,115,101,40,116,41,125,125,41,59,118,97,114,32,116,101,61,47,91,43,45,93,63,40,63,58,92,100,42,92,46,124,41,92,100,43,40,63,58,91,101,69,93,91,43,45,93,63,92,100,43,124,41,47,46,115,111,117,114,99,101,44,110,101,61,110,101,119,32,82,101,103,69,120,112,40,34,94,40,63,58,40,91,43,45,93,41,61,124,41,40,34,43,116,101,43,34,41,40,91,97,45,122,37,93,42,41,36,34,44,34,105,34,41,44,114,101,61,91,34,84,111,112,34,44,34,82,105,103,104,116,34,44,34,66,111,116,116,111,109,34,44,34,76,101,102,116,34,93,44,105,101,61,69,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,111,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,111,110,116,97,105,110,115,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,101,41,125,44,97,101,61,123,99,111,109,112,111,115,101,100,58,33,48,125,59,105,101,46,103,101,116,82,111,111,116,78,111,100,101,38,38,40,111,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,111,110,116,97,105,110,115,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,101,41,124,124,101,46,103,101,116,82,111,111,116,78,111,100,101,40,97,101,41,61,61,61,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,125,41,59,118,97,114,32,115,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,34,110,111,110,101,34,61,61,61,40,101,61,116,124,124,101,41,46,115,116,121,108,101,46,100,105,115,112,108,97,121,124,124,34,34,61,61,61,101,46,115,116,121,108,101,46,100,105,115,112,108,97,121,38,38,111,101,40,101,41,38,38,34,110,111,110,101,34,61,61,61,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,41,125,44,117,101,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,61,123,125,59,102,111,114,40,111,32,105,110,32,116,41,97,91,111,93,61,101,46,115,116,121,108,101,91,111,93,44,101,46,115,116,121,108,101,91,111,93,61,116,91,111,93,59,102,111,114,40,111,32,105,110,32,105,61,110,46,97,112,112,108,121,40,101,44,114,124,124,91,93,41,44,116,41,101,46,115,116,121,108,101,91,111,93,61,97,91,111,93,59,114,101,116,117,114,110,32,105,125,59,102,117,110,99,116,105,111,110,32,108,101,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,61,50,48,44,115,61,114,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,46,99,117,114,40,41,125,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,46,99,115,115,40,101,44,116,44,34,34,41,125,44,117,61,115,40,41,44,108,61,110,38,38,110,91,51,93,124,124,40,107,46,99,115,115,78,117,109,98,101,114,91,116,93,63,34,34,58,34,112,120,34,41,44,99,61,101,46,110,111,100,101,84,121,112,101,38,38,40,107,46,99,115,115,78,117,109,98,101,114,91,116,93,124,124,34,112,120,34,33,61,61,108,38,38,43,117,41,38,38,110,101,46,101,120,101,99,40,107,46,99,115,115,40,101,44,116,41,41,59,105,102,40,99,38,38,99,91,51,93,33,61,61,108,41,123,117,47,61,50,44,108,61,108,124,124,99,91,51,93,44,99,61,43,117,124,124,49,59,119,104,105,108,101,40,97,45,45,41,107,46,115,116,121,108,101,40,101,44,116,44,99,43,108,41,44,40,49,45,111,41,42,40,49,45,40,111,61,115,40,41,47,117,124,124,46,53,41,41,60,61,48,38,38,40,97,61,48,41,44,99,47,61,111,59,99,42,61,50,44,107,46,115,116,121,108,101,40,101,44,116,44,99,43,108,41,44,110,61,110,124,124,91,93,125,114,101,116,117,114,110,32,110,38,38,40,99,61,43,99,124,124,43,117,124,124,48,44,105,61,110,91,49,93,63,99,43,40,110,91,49,93,43,49,41,42,110,91,50,93,58,43,110,91,50,93,44,114,38,38,40,114,46,117,110,105,116,61,108,44,114,46,115,116,97,114,116,61,99,44,114,46,101,110,100,61,105,41,41,44,105,125,118,97,114,32,99,101,61,123,125,59,102,117,110,99,116,105,111,110,32,102,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,44,117,44,108,61,91,93,44,99,61,48,44,102,61,101,46,108,101,110,103,116,104,59,99,60,102,59,99,43,43,41,40,114,61,101,91,99,93,41,46,115,116,121,108,101,38,38,40,110,61,114,46,115,116,121,108,101,46,100,105,115,112,108,97,121,44,116,63,40,34,110,111,110,101,34,61,61,61,110,38,38,40,108,91,99,93,61,81,46,103,101,116,40,114,44,34,100,105,115,112,108,97,121,34,41,124,124,110,117,108,108,44,108,91,99,93,124,124,40,114,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,34,41,41,44,34,34,61,61,61,114,46,115,116,121,108,101,46,100,105,115,112,108,97,121,38,38,115,101,40,114,41,38,38,40,108,91,99,93,61,40,117,61,97,61,111,61,118,111,105,100,32,48,44,97,61,40,105,61,114,41,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,115,61,105,46,110,111,100,101,78,97,109,101,44,40,117,61,99,101,91,115,93,41,124,124,40,111,61,97,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,97,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,115,41,41,44,117,61,107,46,99,115,115,40,111,44,34,100,105,115,112,108,97,121,34,41,44,111,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,111,41,44,34,110,111,110,101,34,61,61,61,117,38,38,40,117,61,34,98,108,111,99,107,34,41,44,99,101,91,115,93,61,117,41,41,41,41,58,34,110,111,110,101,34,33,61,61,110,38,38,40,108,91,99,93,61,34,110,111,110,101,34,44,81,46,115,101,116,40,114,44,34,100,105,115,112,108,97,121,34,44,110,41,41,41,59,102,111,114,40,99,61,48,59,99,60,102,59,99,43,43,41,110,117,108,108,33,61,108,91,99,93,38,38,40,101,91,99,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,108,91,99,93,41,59,114,101,116,117,114,110,32,101,125,107,46,102,110,46,101,120,116,101,110,100,40,123,115,104,111,119,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,101,40,116,104,105,115,44,33,48,41,125,44,104,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,101,40,116,104,105,115,41,125,44,116,111,103,103,108,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,101,63,101,63,116,104,105,115,46,115,104,111,119,40,41,58,116,104,105,115,46,104,105,100,101,40,41,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,115,101,40,116,104,105,115,41,63,107,40,116,104,105,115,41,46,115,104,111,119,40,41,58,107,40,116,104,105,115,41,46,104,105,100,101,40,41,125,41,125,125,41,59,118,97,114,32,112,101,61,47,94,40,63,58,99,104,101,99,107,98,111,120,124,114,97,100,105,111,41,36,47,105,44,100,101,61,47,60,40,91,97,45,122,93,91,94,92,47,92,48,62,92,120,50,48,92,116,92,114,92,110,92,102,93,42,41,47,105,44,104,101,61,47,94,36,124,94,109,111,100,117,108,101,36,124,92,47,40,63,58,106,97,118,97,124,101,99,109,97,41,115,99,114,105,112,116,47,105,44,103,101,61,123,111,112,116,105,111,110,58,91,49,44,34,60,115,101,108,101,99,116,32,109,117,108,116,105,112,108,101,61,39,109,117,108,116,105,112,108,101,39,62,34,44,34,60,47,115,101,108,101,99,116,62,34,93,44,116,104,101,97,100,58,91,49,44,34,60,116,97,98,108,101,62,34,44,34,60,47,116,97,98,108,101,62,34,93,44,99,111,108,58,91,50,44,34,60,116,97,98,108,101,62,60,99,111,108,103,114,111,117,112,62,34,44,34,60,47,99,111,108,103,114,111,117,112,62,60,47,116,97,98,108,101,62,34,93,44,116,114,58,91,50,44,34,60,116,97,98,108,101,62,60,116,98,111,100,121,62,34,44,34,60,47,116,98,111,100,121,62,60,47,116,97,98,108,101,62,34,93,44,116,100,58,91,51,44,34,60,116,97,98,108,101,62,60,116,98,111,100,121,62,60,116,114,62,34,44,34,60,47,116,114,62,60,47,116,98,111,100,121,62,60,47,116,97,98,108,101,62,34,93,44,95,100,101,102,97,117,108,116,58,91,48,44,34,34,44,34,34,93,125,59,102,117,110,99,116,105,111,110,32,118,101,40,101,44,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,110,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,63,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,116,124,124,34,42,34,41,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,63,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,124,124,34,42,34,41,58,91,93,44,118,111,105,100,32,48,61,61,61,116,124,124,116,38,38,65,40,101,44,116,41,63,107,46,109,101,114,103,101,40,91,101,93,44,110,41,58,110,125,102,117,110,99,116,105,111,110,32,121,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,44,114,61,101,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,81,46,115,101,116,40,101,91,110,93,44,34,103,108,111,98,97,108,69,118,97,108,34,44,33,116,124,124,81,46,103,101,116,40,116,91,110,93,44,34,103,108,111,98,97,108,69,118,97,108,34,41,41,125,103,101,46,111,112,116,103,114,111,117,112,61,103,101,46,111,112,116,105,111,110,44,103,101,46,116,98,111,100,121,61,103,101,46,116,102,111,111,116,61,103,101,46,99,111,108,103,114,111,117,112,61,103,101,46,99,97,112,116,105,111,110,61,103,101,46,116,104,101,97,100,44,103,101,46,116,104,61,103,101,46,116,100,59,118,97,114,32,109,101,44,120,101,44,98,101,61,47,60,124,38,35,63,92,119,43,59,47,59,102,117,110,99,116,105,111,110,32,119,101,40,101,44,116,44,110,44,114,44,105,41,123,102,111,114,40,118,97,114,32,111,44,97,44,115,44,117,44,108,44,99,44,102,61,116,46,99,114,101,97,116,101,68,111,99,117,109,101,110,116,70,114,97,103,109,101,110,116,40,41,44,112,61,91,93,44,100,61,48,44,104,61,101,46,108,101,110,103,116,104,59,100,60,104,59,100,43,43,41,105,102,40,40,111,61,101,91,100,93,41,124,124,48,61,61,61,111,41,105,102,40,34,111,98,106,101,99,116,34,61,61,61,119,40,111,41,41,107,46,109,101,114,103,101,40,112,44,111,46,110,111,100,101,84,121,112,101,63,91,111,93,58,111,41,59,101,108,115,101,32,105,102,40,98,101,46,116,101,115,116,40,111,41,41,123,97,61,97,124,124,102,46,97,112,112,101,110,100,67,104,105,108,100,40,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,41,44,115,61,40,100,101,46,101,120,101,99,40,111,41,124,124,91,34,34,44,34,34,93,41,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,117,61,103,101,91,115,93,124,124,103,101,46,95,100,101,102,97,117,108,116,44,97,46,105,110,110,101,114,72,84,77,76,61,117,91,49,93,43,107,46,104,116,109,108,80,114,101,102,105,108,116,101,114,40,111,41,43,117,91,50,93,44,99,61,117,91,48,93,59,119,104,105,108,101,40,99,45,45,41,97,61,97,46,108,97,115,116,67,104,105,108,100,59,107,46,109,101,114,103,101,40,112,44,97,46,99,104,105,108,100,78,111,100,101,115,41,44,40,97,61,102,46,102,105,114,115,116,67,104,105,108,100,41,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,125,101,108,115,101,32,112,46,112,117,115,104,40,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,111,41,41,59,102,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,44,100,61,48,59,119,104,105,108,101,40,111,61,112,91,100,43,43,93,41,105,102,40,114,38,38,45,49,60,107,46,105,110,65,114,114,97,121,40,111,44,114,41,41,105,38,38,105,46,112,117,115,104,40,111,41,59,101,108,115,101,32,105,102,40,108,61,111,101,40,111,41,44,97,61,118,101,40,102,46,97,112,112,101,110,100,67,104,105,108,100,40,111,41,44,34,115,99,114,105,112,116,34,41,44,108,38,38,121,101,40,97,41,44,110,41,123,99,61,48,59,119,104,105,108,101,40,111,61,97,91,99,43,43,93,41,104,101,46,116,101,115,116,40,111,46,116,121,112,101,124,124,34,34,41,38,38,110,46,112,117,115,104,40,111,41,125,114,101,116,117,114,110,32,102,125,109,101,61,69,46,99,114,101,97,116,101,68,111,99,117,109,101,110,116,70,114,97,103,109,101,110,116,40,41,46,97,112,112,101,110,100,67,104,105,108,100,40,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,41,44,40,120,101,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,110,112,117,116,34,41,41,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,34,114,97,100,105,111,34,41,44,120,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,104,101,99,107,101,100,34,44,34,99,104,101,99,107,101,100,34,41,44,120,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,110,97,109,101,34,44,34,116,34,41,44,109,101,46,97,112,112,101,110,100,67,104,105,108,100,40,120,101,41,44,121,46,99,104,101,99,107,67,108,111,110,101,61,109,101,46,99,108,111,110,101,78,111,100,101,40,33,48,41,46,99,108,111,110,101,78,111,100,101,40,33,48,41,46,108,97,115,116,67,104,105,108,100,46,99,104,101,99,107,101,100,44,109,101,46,105,110,110,101,114,72,84,77,76,61,34,60,116,101,120,116,97,114,101,97,62,120,60,47,116,101,120,116,97,114,101,97,62,34,44,121,46,110,111,67,108,111,110,101,67,104,101,99,107,101,100,61,33,33,109,101,46,99,108,111,110,101,78,111,100,101,40,33,48,41,46,108,97,115,116,67,104,105,108,100,46,100,101,102,97,117,108,116,86,97,108,117,101,59,118,97,114,32,84,101,61,47,94,107,101,121,47,44,67,101,61,47,94,40,63,58,109,111,117,115,101,124,112,111,105,110,116,101,114,124,99,111,110,116,101,120,116,109,101,110,117,124,100,114,97,103,124,100,114,111,112,41,124,99,108,105,99,107,47,44,69,101,61,47,94,40,91,94,46,93,42,41,40,63,58,92,46,40,46,43,41,124,41,47,59,102,117,110,99,116,105,111,110,32,107,101,40,41,123,114,101,116,117,114,110,33,48,125,102,117,110,99,116,105,111,110,32,83,101,40,41,123,114,101,116,117,114,110,33,49,125,102,117,110,99,116,105,111,110,32,78,101,40,101,44,116,41,123,114,101,116,117,114,110,32,101,61,61,61,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,114,101,116,117,114,110,32,69,46,97,99,116,105,118,101,69,108,101,109,101,110,116,125,99,97,116,99,104,40,101,41,123,125,125,40,41,61,61,40,34,102,111,99,117,115,34,61,61,61,116,41,125,102,117,110,99,116,105,111,110,32,65,101,40,101,44,116,44,110,44,114,44,105,44,111,41,123,118,97,114,32,97,44,115,59,105,102,40,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,41,123,102,111,114,40,115,32,105,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,110,38,38,40,114,61,114,124,124,110,44,110,61,118,111,105,100,32,48,41,44,116,41,65,101,40,101,44,115,44,110,44,114,44,116,91,115,93,44,111,41,59,114,101,116,117,114,110,32,101,125,105,102,40,110,117,108,108,61,61,114,38,38,110,117,108,108,61,61,105,63,40,105,61,110,44,114,61,110,61,118,111,105,100,32,48,41,58,110,117,108,108,61,61,105,38,38,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,63,40,105,61,114,44,114,61,118,111,105,100,32,48,41,58,40,105,61,114,44,114,61,110,44,110,61,118,111,105,100,32,48,41,41,44,33,49,61,61,61,105,41,105,61,83,101,59,101,108,115,101,32,105,102,40,33,105,41,114,101,116,117,114,110,32,101,59,114,101,116,117,114,110,32,49,61,61,61,111,38,38,40,97,61,105,44,40,105,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,40,41,46,111,102,102,40,101,41,44,97,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,41,46,103,117,105,100,61,97,46,103,117,105,100,124,124,40,97,46,103,117,105,100,61,107,46,103,117,105,100,43,43,41,41,44,101,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,101,118,101,110,116,46,97,100,100,40,116,104,105,115,44,116,44,105,44,114,44,110,41,125,41,125,102,117,110,99,116,105,111,110,32,68,101,40,101,44,105,44,111,41,123,111,63,40,81,46,115,101,116,40,101,44,105,44,33,49,41,44,107,46,101,118,101,110,116,46,97,100,100,40,101,44,105,44,123,110,97,109,101,115,112,97,99,101,58,33,49,44,104,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,61,81,46,103,101,116,40,116,104,105,115,44,105,41,59,105,102,40,49,38,101,46,105,115,84,114,105,103,103,101,114,38,38,116,104,105,115,91,105,93,41,123,105,102,40,114,46,108,101,110,103,116,104,41,40,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,105,93,124,124,123,125,41,46,100,101,108,101,103,97,116,101,84,121,112,101,38,38,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,101,108,115,101,32,105,102,40,114,61,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,81,46,115,101,116,40,116,104,105,115,44,105,44,114,41,44,116,61,111,40,116,104,105,115,44,105,41,44,116,104,105,115,91,105,93,40,41,44,114,33,61,61,40,110,61,81,46,103,101,116,40,116,104,105,115,44,105,41,41,124,124,116,63,81,46,115,101,116,40,116,104,105,115,44,105,44,33,49,41,58,110,61,123,125,44,114,33,61,61,110,41,114,101,116,117,114,110,32,101,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,44,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,110,46,118,97,108,117,101,125,101,108,115,101,32,114,46,108,101,110,103,116,104,38,38,40,81,46,115,101,116,40,116,104,105,115,44,105,44,123,118,97,108,117,101,58,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,107,46,101,120,116,101,110,100,40,114,91,48,93,44,107,46,69,118,101,110,116,46,112,114,111,116,111,116,121,112,101,41,44,114,46,115,108,105,99,101,40,49,41,44,116,104,105,115,41,125,41,44,101,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,41,125,125,41,41,58,118,111,105,100,32,48,61,61,61,81,46,103,101,116,40,101,44,105,41,38,38,107,46,101,118,101,110,116,46,97,100,100,40,101,44,105,44,107,101,41,125,107,46,101,118,101,110,116,61,123,103,108,111,98,97,108,58,123,125,44,97,100,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,44,97,44,115,44,117,44,108,44,99,44,102,44,112,44,100,44,104,44,103,44,118,61,81,46,103,101,116,40,116,41,59,105,102,40,118,41,123,110,46,104,97,110,100,108,101,114,38,38,40,110,61,40,111,61,110,41,46,104,97,110,100,108,101,114,44,105,61,111,46,115,101,108,101,99,116,111,114,41,44,105,38,38,107,46,102,105,110,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,40,105,101,44,105,41,44,110,46,103,117,105,100,124,124,40,110,46,103,117,105,100,61,107,46,103,117,105,100,43,43,41,44,40,117,61,118,46,101,118,101,110,116,115,41,124,124,40,117,61,118,46,101,118,101,110,116,115,61,123,125,41,44,40,97,61,118,46,104,97,110,100,108,101,41,124,124,40,97,61,118,46,104,97,110,100,108,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,107,38,38,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,101,100,33,61,61,101,46,116,121,112,101,63,107,46,101,118,101,110,116,46,100,105,115,112,97,116,99,104,46,97,112,112,108,121,40,116,44,97,114,103,117,109,101,110,116,115,41,58,118,111,105,100,32,48,125,41,44,108,61,40,101,61,40,101,124,124,34,34,41,46,109,97,116,99,104,40,82,41,124,124,91,34,34,93,41,46,108,101,110,103,116,104,59,119,104,105,108,101,40,108,45,45,41,100,61,103,61,40,115,61,69,101,46,101,120,101,99,40,101,91,108,93,41,124,124,91,93,41,91,49,93,44,104,61,40,115,91,50,93,124,124,34,34,41,46,115,112,108,105,116,40,34,46,34,41,46,115,111,114,116,40,41,44,100,38,38,40,102,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,100,93,124,124,123,125,44,100,61,40,105,63,102,46,100,101,108,101,103,97,116,101,84,121,112,101,58,102,46,98,105,110,100,84,121,112,101,41,124,124,100,44,102,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,100,93,124,124,123,125,44,99,61,107,46,101,120,116,101,110,100,40,123,116,121,112,101,58,100,44,111,114,105,103,84,121,112,101,58,103,44,100,97,116,97,58,114,44,104,97,110,100,108,101,114,58,110,44,103,117,105,100,58,110,46,103,117,105,100,44,115,101,108,101,99,116,111,114,58,105,44,110,101,101,100,115,67,111,110,116,101,120,116,58,105,38,38,107,46,101,120,112,114,46,109,97,116,99,104,46,110,101,101,100,115,67,111,110,116,101,120,116,46,116,101,115,116,40,105,41,44,110,97,109,101,115,112,97,99,101,58,104,46,106,111,105,110,40,34,46,34,41,125,44,111,41,44,40,112,61,117,91,100,93,41,124,124,40,40,112,61,117,91,100,93,61,91,93,41,46,100,101,108,101,103,97,116,101,67,111,117,110,116,61,48,44,102,46,115,101,116,117,112,38,38,33,49,33,61,61,102,46,115,101,116,117,112,46,99,97,108,108,40,116,44,114,44,104,44,97,41,124,124,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,38,38,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,100,44,97,41,41,44,102,46,97,100,100,38,38,40,102,46,97,100,100,46,99,97,108,108,40,116,44,99,41,44,99,46,104,97,110,100,108,101,114,46,103,117,105,100,124,124,40,99,46,104,97,110,100,108,101,114,46,103,117,105,100,61,110,46,103,117,105,100,41,41,44,105,63,112,46,115,112,108,105,99,101,40,112,46,100,101,108,101,103,97,116,101,67,111,117,110,116,43,43,44,48,44,99,41,58,112,46,112,117,115,104,40,99,41,44,107,46,101,118,101,110,116,46,103,108,111,98,97,108,91,100,93,61,33,48,41,125,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,44,105,41,123,118,97,114,32,111,44,97,44,115,44,117,44,108,44,99,44,102,44,112,44,100,44,104,44,103,44,118,61,81,46,104,97,115,68,97,116,97,40,101,41,38,38,81,46,103,101,116,40,101,41,59,105,102,40,118,38,38,40,117,61,118,46,101,118,101,110,116,115,41,41,123,108,61,40,116,61,40,116,124,124,34,34,41,46,109,97,116,99,104,40,82,41,124,124,91,34,34,93,41,46,108,101,110,103,116,104,59,119,104,105,108,101,40,108,45,45,41,105,102,40,100,61,103,61,40,115,61,69,101,46,101,120,101,99,40,116,91,108,93,41,124,124,91,93,41,91,49,93,44,104,61,40,115,91,50,93,124,124,34,34,41,46,115,112,108,105,116,40,34,46,34,41,46,115,111,114,116,40,41,44,100,41,123,102,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,100,93,124,124,123,125,44,112,61,117,91,100,61,40,114,63,102,46,100,101,108,101,103,97,116,101,84,121,112,101,58,102,46,98,105,110,100,84,121,112,101,41,124,124,100,93,124,124,91,93,44,115,61,115,91,50,93,38,38,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,92,92,46,41,34,43,104,46,106,111,105,110,40,34,92,92,46,40,63,58,46,42,92,92,46,124,41,34,41,43,34,40,92,92,46,124,36,41,34,41,44,97,61,111,61,112,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,99,61,112,91,111,93,44,33,105,38,38,103,33,61,61,99,46,111,114,105,103,84,121,112,101,124,124,110,38,38,110,46,103,117,105,100,33,61,61,99,46,103,117,105,100,124,124,115,38,38,33,115,46,116,101,115,116,40,99,46,110,97,109,101,115,112,97,99,101,41,124,124,114,38,38,114,33,61,61,99,46,115,101,108,101,99,116,111,114,38,38,40,34,42,42,34,33,61,61,114,124,124,33,99,46,115,101,108,101,99,116,111,114,41,124,124,40,112,46,115,112,108,105,99,101,40,111,44,49,41,44,99,46,115,101,108,101,99,116,111,114,38,38,112,46,100,101,108,101,103,97,116,101,67,111,117,110,116,45,45,44,102,46,114,101,109,111,118,101,38,38,102,46,114,101,109,111,118,101,46,99,97,108,108,40,101,44,99,41,41,59,97,38,38,33,112,46,108,101,110,103,116,104,38,38,40,102,46,116,101,97,114,100,111,119,110,38,38,33,49,33,61,61,102,46,116,101,97,114,100,111,119,110,46,99,97,108,108,40,101,44,104,44,118,46,104,97,110,100,108,101,41,124,124,107,46,114,101,109,111,118,101,69,118,101,110,116,40,101,44,100,44,118,46,104,97,110,100,108,101,41,44,100,101,108,101,116,101,32,117,91,100,93,41,125,101,108,115,101,32,102,111,114,40,100,32,105,110,32,117,41,107,46,101,118,101,110,116,46,114,101,109,111,118,101,40,101,44,100,43,116,91,108,93,44,110,44,114,44,33,48,41,59,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,117,41,38,38,81,46,114,101,109,111,118,101,40,101,44,34,104,97,110,100,108,101,32,101,118,101,110,116,115,34,41,125,125,44,100,105,115,112,97,116,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,44,105,44,111,44,97,44,115,61,107,46,101,118,101,110,116,46,102,105,120,40,101,41,44,117,61,110,101,119,32,65,114,114,97,121,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,44,108,61,40,81,46,103,101,116,40,116,104,105,115,44,34,101,118,101,110,116,115,34,41,124,124,123,125,41,91,115,46,116,121,112,101,93,124,124,91,93,44,99,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,115,46,116,121,112,101,93,124,124,123,125,59,102,111,114,40,117,91,48,93,61,115,44,116,61,49,59,116,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,116,43,43,41,117,91,116,93,61,97,114,103,117,109,101,110,116,115,91,116,93,59,105,102,40,115,46,100,101,108,101,103,97,116,101,84,97,114,103,101,116,61,116,104,105,115,44,33,99,46,112,114,101,68,105,115,112,97,116,99,104,124,124,33,49,33,61,61,99,46,112,114,101,68,105,115,112,97,116,99,104,46,99,97,108,108,40,116,104,105,115,44,115,41,41,123,97,61,107,46,101,118,101,110,116,46,104,97,110,100,108,101,114,115,46,99,97,108,108,40,116,104,105,115,44,115,44,108,41,44,116,61,48,59,119,104,105,108,101,40,40,105,61,97,91,116,43,43,93,41,38,38,33,115,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,41,123,115,46,99,117,114,114,101,110,116,84,97,114,103,101,116,61,105,46,101,108,101,109,44,110,61,48,59,119,104,105,108,101,40,40,111,61,105,46,104,97,110,100,108,101,114,115,91,110,43,43,93,41,38,38,33,115,46,105,115,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,41,115,46,114,110,97,109,101,115,112,97,99,101,38,38,33,49,33,61,61,111,46,110,97,109,101,115,112,97,99,101,38,38,33,115,46,114,110,97,109,101,115,112,97,99,101,46,116,101,115,116,40,111,46,110,97,109,101,115,112,97,99,101,41,124,124,40,115,46,104,97,110,100,108,101,79,98,106,61,111,44,115,46,100,97,116,97,61,111,46,100,97,116,97,44,118,111,105,100,32,48,33,61,61,40,114,61,40,40,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,111,46,111,114,105,103,84,121,112,101,93,124,124,123,125,41,46,104,97,110,100,108,101,124,124,111,46,104,97,110,100,108,101,114,41,46,97,112,112,108,121,40,105,46,101,108,101,109,44,117,41,41,38,38,33,49,61,61,61,40,115,46,114,101,115,117,108,116,61,114,41,38,38,40,115,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,115,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,41,41,125,114,101,116,117,114,110,32,99,46,112,111,115,116,68,105,115,112,97,116,99,104,38,38,99,46,112,111,115,116,68,105,115,112,97,116,99,104,46,99,97,108,108,40,116,104,105,115,44,115,41,44,115,46,114,101,115,117,108,116,125,125,44,104,97,110,100,108,101,114,115,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,61,91,93,44,117,61,116,46,100,101,108,101,103,97,116,101,67,111,117,110,116,44,108,61,101,46,116,97,114,103,101,116,59,105,102,40,117,38,38,108,46,110,111,100,101,84,121,112,101,38,38,33,40,34,99,108,105,99,107,34,61,61,61,101,46,116,121,112,101,38,38,49,60,61,101,46,98,117,116,116,111,110,41,41,102,111,114,40,59,108,33,61,61,116,104,105,115,59,108,61,108,46,112,97,114,101,110,116,78,111,100,101,124,124,116,104,105,115,41,105,102,40,49,61,61,61,108,46,110,111,100,101,84,121,112,101,38,38,40,34,99,108,105,99,107,34,33,61,61,101,46,116,121,112,101,124,124,33,48,33,61,61,108,46,100,105,115,97,98,108,101,100,41,41,123,102,111,114,40,111,61,91,93,44,97,61,123,125,44,110,61,48,59,110,60,117,59,110,43,43,41,118,111,105,100,32,48,61,61,61,97,91,105,61,40,114,61,116,91,110,93,41,46,115,101,108,101,99,116,111,114,43,34,32,34,93,38,38,40,97,91,105,93,61,114,46,110,101,101,100,115,67,111,110,116,101,120,116,63,45,49,60,107,40,105,44,116,104,105,115,41,46,105,110,100,101,120,40,108,41,58,107,46,102,105,110,100,40,105,44,116,104,105,115,44,110,117,108,108,44,91,108,93,41,46,108,101,110,103,116,104,41,44,97,91,105,93,38,38,111,46,112,117,115,104,40,114,41,59,111,46,108,101,110,103,116,104,38,38,115,46,112,117,115,104,40,123,101,108,101,109,58,108,44,104,97,110,100,108,101,114,115,58,111,125,41,125,114,101,116,117,114,110,32,108,61,116,104,105,115,44,117,60,116,46,108,101,110,103,116,104,38,38,115,46,112,117,115,104,40,123,101,108,101,109,58,108,44,104,97,110,100,108,101,114,115,58,116,46,115,108,105,99,101,40,117,41,125,41,44,115,125,44,97,100,100,80,114,111,112,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,107,46,69,118,101,110,116,46,112,114,111,116,111,116,121,112,101,44,116,44,123,101,110,117,109,101,114,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,103,101,116,58,109,40,101,41,63,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,41,114,101,116,117,114,110,32,101,40,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,41,125,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,41,114,101,116,117,114,110,32,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,91,116,93,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,104,105,115,44,116,44,123,101,110,117,109,101,114,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,119,114,105,116,97,98,108,101,58,33,48,44,118,97,108,117,101,58,101,125,41,125,125,41,125,44,102,105,120,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,91,107,46,101,120,112,97,110,100,111,93,63,101,58,110,101,119,32,107,46,69,118,101,110,116,40,101,41,125,44,115,112,101,99,105,97,108,58,123,108,111,97,100,58,123,110,111,66,117,98,98,108,101,58,33,48,125,44,99,108,105,99,107,58,123,115,101,116,117,112,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,124,124,101,59,114,101,116,117,114,110,32,112,101,46,116,101,115,116,40,116,46,116,121,112,101,41,38,38,116,46,99,108,105,99,107,38,38,65,40,116,44,34,105,110,112,117,116,34,41,38,38,68,101,40,116,44,34,99,108,105,99,107,34,44,107,101,41,44,33,49,125,44,116,114,105,103,103,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,124,124,101,59,114,101,116,117,114,110,32,112,101,46,116,101,115,116,40,116,46,116,121,112,101,41,38,38,116,46,99,108,105,99,107,38,38,65,40,116,44,34,105,110,112,117,116,34,41,38,38,68,101,40,116,44,34,99,108,105,99,107,34,41,44,33,48,125,44,95,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,116,97,114,103,101,116,59,114,101,116,117,114,110,32,112,101,46,116,101,115,116,40,116,46,116,121,112,101,41,38,38,116,46,99,108,105,99,107,38,38,65,40,116,44,34,105,110,112,117,116,34,41,38,38,81,46,103,101,116,40,116,44,34,99,108,105,99,107,34,41,124,124,65,40,116,44,34,97,34,41,125,125,44,98,101,102,111,114,101,117,110,108,111,97,100,58,123,112,111,115,116,68,105,115,112,97,116,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,118,111,105,100,32,48,33,61,61,101,46,114,101,115,117,108,116,38,38,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,38,38,40,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,114,101,116,117,114,110,86,97,108,117,101,61,101,46,114,101,115,117,108,116,41,125,125,125,125,44,107,46,114,101,109,111,118,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,101,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,38,38,101,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,44,110,41,125,44,107,46,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,40,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,107,46,69,118,101,110,116,41,41,114,101,116,117,114,110,32,110,101,119,32,107,46,69,118,101,110,116,40,101,44,116,41,59,101,38,38,101,46,116,121,112,101,63,40,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,61,101,44,116,104,105,115,46,116,121,112,101,61,101,46,116,121,112,101,44,116,104,105,115,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,61,101,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,118,111,105,100,32,48,61,61,61,101,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,38,38,33,49,61,61,61,101,46,114,101,116,117,114,110,86,97,108,117,101,63,107,101,58,83,101,44,116,104,105,115,46,116,97,114,103,101,116,61,101,46,116,97,114,103,101,116,38,38,51,61,61,61,101,46,116,97,114,103,101,116,46,110,111,100,101,84,121,112,101,63,101,46,116,97,114,103,101,116,46,112,97,114,101,110,116,78,111,100,101,58,101,46,116,97,114,103,101,116,44,116,104,105,115,46,99,117,114,114,101,110,116,84,97,114,103,101,116,61,101,46,99,117,114,114,101,110,116,84,97,114,103,101,116,44,116,104,105,115,46,114,101,108,97,116,101,100,84,97,114,103,101,116,61,101,46,114,101,108,97,116,101,100,84,97,114,103,101,116,41,58,116,104,105,115,46,116,121,112,101,61,101,44,116,38,38,107,46,101,120,116,101,110,100,40,116,104,105,115,44,116,41,44,116,104,105,115,46,116,105,109,101,83,116,97,109,112,61,101,38,38,101,46,116,105,109,101,83,116,97,109,112,124,124,68,97,116,101,46,110,111,119,40,41,44,116,104,105,115,91,107,46,101,120,112,97,110,100,111,93,61,33,48,125,44,107,46,69,118,101,110,116,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,107,46,69,118,101,110,116,44,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,58,83,101,44,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,58,83,101,44,105,115,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,58,83,101,44,105,115,83,105,109,117,108,97,116,101,100,58,33,49,44,112,114,101,118,101,110,116,68,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,59,116,104,105,115,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,61,107,101,44,101,38,38,33,116,104,105,115,46,105,115,83,105,109,117,108,97,116,101,100,38,38,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,125,44,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,59,116,104,105,115,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,61,107,101,44,101,38,38,33,116,104,105,115,46,105,115,83,105,109,117,108,97,116,101,100,38,38,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,44,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,59,116,104,105,115,46,105,115,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,61,107,101,44,101,38,38,33,116,104,105,115,46,105,115,83,105,109,117,108,97,116,101,100,38,38,101,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,125,44,107,46,101,97,99,104,40,123,97,108,116,75,101,121,58,33,48,44,98,117,98,98,108,101,115,58,33,48,44,99,97,110,99,101,108,97,98,108,101,58,33,48,44,99,104,97,110,103,101,100,84,111,117,99,104,101,115,58,33,48,44,99,116,114,108,75,101,121,58,33,48,44,100,101,116,97,105,108,58,33,48,44,101,118,101,110,116,80,104,97,115,101,58,33,48,44,109,101,116,97,75,101,121,58,33,48,44,112,97,103,101,88,58,33,48,44,112,97,103,101,89,58,33,48,44,115,104,105,102,116,75,101,121,58,33,48,44,118,105,101,119,58,33,48,44,34,99,104,97,114,34,58,33,48,44,99,111,100,101,58,33,48,44,99,104,97,114,67,111,100,101,58,33,48,44,107,101,121,58,33,48,44,107,101,121,67,111,100,101,58,33,48,44,98,117,116,116,111,110,58,33,48,44,98,117,116,116,111,110,115,58,33,48,44,99,108,105,101,110,116,88,58,33,48,44,99,108,105,101,110,116,89,58,33,48,44,111,102,102,115,101,116,88,58,33,48,44,111,102,102,115,101,116,89,58,33,48,44,112,111,105,110,116,101,114,73,100,58,33,48,44,112,111,105,110,116,101,114,84,121,112,101,58,33,48,44,115,99,114,101,101,110,88,58,33,48,44,115,99,114,101,101,110,89,58,33,48,44,116,97,114,103,101,116,84,111,117,99,104,101,115,58,33,48,44,116,111,69,108,101,109,101,110,116,58,33,48,44,116,111,117,99,104,101,115,58,33,48,44,119,104,105,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,98,117,116,116,111,110,59,114,101,116,117,114,110,32,110,117,108,108,61,61,101,46,119,104,105,99,104,38,38,84,101,46,116,101,115,116,40,101,46,116,121,112,101,41,63,110,117,108,108,33,61,101,46,99,104,97,114,67,111,100,101,63,101,46,99,104,97,114,67,111,100,101,58,101,46,107,101,121,67,111,100,101,58,33,101,46,119,104,105,99,104,38,38,118,111,105,100,32,48,33,61,61,116,38,38,67,101,46,116,101,115,116,40,101,46,116,121,112,101,41,63,49,38,116,63,49,58,50,38,116,63,51,58,52,38,116,63,50,58,48,58,101,46,119,104,105,99,104,125,125,44,107,46,101,118,101,110,116,46,97,100,100,80,114,111,112,41,44,107,46,101,97,99,104,40,123,102,111,99,117,115,58,34,102,111,99,117,115,105,110,34,44,98,108,117,114,58,34,102,111,99,117,115,111,117,116,34,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,101,93,61,123,115,101,116,117,112,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,68,101,40,116,104,105,115,44,101,44,78,101,41,44,33,49,125,44,116,114,105,103,103,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,68,101,40,116,104,105,115,44,101,41,44,33,48,125,44,100,101,108,101,103,97,116,101,84,121,112,101,58,116,125,125,41,44,107,46,101,97,99,104,40,123,109,111,117,115,101,101,110,116,101,114,58,34,109,111,117,115,101,111,118,101,114,34,44,109,111,117,115,101,108,101,97,118,101,58,34,109,111,117,115,101,111,117,116,34,44,112,111,105,110,116,101,114,101,110,116,101,114,58,34,112,111,105,110,116,101,114,111,118,101,114,34,44,112,111,105,110,116,101,114,108,101,97,118,101,58,34,112,111,105,110,116,101,114,111,117,116,34,125,44,102,117,110,99,116,105,111,110,40,101,44,105,41,123,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,101,93,61,123,100,101,108,101,103,97,116,101,84,121,112,101,58,105,44,98,105,110,100,84,121,112,101,58,105,44,104,97,110,100,108,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,101,46,114,101,108,97,116,101,100,84,97,114,103,101,116,44,114,61,101,46,104,97,110,100,108,101,79,98,106,59,114,101,116,117,114,110,32,110,38,38,40,110,61,61,61,116,104,105,115,124,124,107,46,99,111,110,116,97,105,110,115,40,116,104,105,115,44,110,41,41,124,124,40,101,46,116,121,112,101,61,114,46,111,114,105,103,84,121,112,101,44,116,61,114,46,104,97,110,100,108,101,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,101,46,116,121,112,101,61,105,41,44,116,125,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,111,110,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,101,44,116,44,110,44,114,41,125,44,111,110,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,101,44,116,44,110,44,114,44,49,41,125,44,111,102,102,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,59,105,102,40,101,38,38,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,38,38,101,46,104,97,110,100,108,101,79,98,106,41,114,101,116,117,114,110,32,114,61,101,46,104,97,110,100,108,101,79,98,106,44,107,40,101,46,100,101,108,101,103,97,116,101,84,97,114,103,101,116,41,46,111,102,102,40,114,46,110,97,109,101,115,112,97,99,101,63,114,46,111,114,105,103,84,121,112,101,43,34,46,34,43,114,46,110,97,109,101,115,112,97,99,101,58,114,46,111,114,105,103,84,121,112,101,44,114,46,115,101,108,101,99,116,111,114,44,114,46,104,97,110,100,108,101,114,41,44,116,104,105,115,59,105,102,40,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,41,123,102,111,114,40,105,32,105,110,32,101,41,116,104,105,115,46,111,102,102,40,105,44,116,44,101,91,105,93,41,59,114,101,116,117,114,110,32,116,104,105,115,125,114,101,116,117,114,110,33,49,33,61,61,116,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,124,124,40,110,61,116,44,116,61,118,111,105,100,32,48,41,44,33,49,61,61,61,110,38,38,40,110,61,83,101,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,101,118,101,110,116,46,114,101,109,111,118,101,40,116,104,105,115,44,101,44,110,44,116,41,125,41,125,125,41,59,118,97,114,32,106,101,61,47,60,40,63,33,97,114,101,97,124,98,114,124,99,111,108,124,101,109,98,101,100,124,104,114,124,105,109,103,124,105,110,112,117,116,124,108,105,110,107,124,109,101,116,97,124,112,97,114,97,109,41,40,40,91,97,45,122,93,91,94,92,47,92,48,62,92,120,50,48,92,116,92,114,92,110,92,102,93,42,41,91,94,62,93,42,41,92,47,62,47,103,105,44,113,101,61,47,60,115,99,114,105,112,116,124,60,115,116,121,108,101,124,60,108,105,110,107,47,105,44,76,101,61,47,99,104,101,99,107,101,100,92,115,42,40,63,58,91,94,61,93,124,61,92,115,42,46,99,104,101,99,107,101,100,46,41,47,105,44,72,101,61,47,94,92,115,42,60,33,40,63,58,92,91,67,68,65,84,65,92,91,124,45,45,41,124,40,63,58,92,93,92,93,124,45,45,41,62,92,115,42,36,47,103,59,102,117,110,99,116,105,111,110,32,79,101,40,101,44,116,41,123,114,101,116,117,114,110,32,65,40,101,44,34,116,97,98,108,101,34,41,38,38,65,40,49,49,33,61,61,116,46,110,111,100,101,84,121,112,101,63,116,58,116,46,102,105,114,115,116,67,104,105,108,100,44,34,116,114,34,41,38,38,107,40,101,41,46,99,104,105,108,100,114,101,110,40,34,116,98,111,100,121,34,41,91,48,93,124,124,101,125,102,117,110,99,116,105,111,110,32,80,101,40,101,41,123,114,101,116,117,114,110,32,101,46,116,121,112,101,61,40,110,117,108,108,33,61,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,41,41,43,34,47,34,43,101,46,116,121,112,101,44,101,125,102,117,110,99,116,105,111,110,32,82,101,40,101,41,123,114,101,116,117,114,110,34,116,114,117,101,47,34,61,61,61,40,101,46,116,121,112,101,124,124,34,34,41,46,115,108,105,99,101,40,48,44,53,41,63,101,46,116,121,112,101,61,101,46,116,121,112,101,46,115,108,105,99,101,40,53,41,58,101,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,41,44,101,125,102,117,110,99,116,105,111,110,32,77,101,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,44,117,44,108,59,105,102,40,49,61,61,61,116,46,110,111,100,101,84,121,112,101,41,123,105,102,40,81,46,104,97,115,68,97,116,97,40,101,41,38,38,40,111,61,81,46,97,99,99,101,115,115,40,101,41,44,97,61,81,46,115,101,116,40,116,44,111,41,44,108,61,111,46,101,118,101,110,116,115,41,41,102,111,114,40,105,32,105,110,32,100,101,108,101,116,101,32,97,46,104,97,110,100,108,101,44,97,46,101,118,101,110,116,115,61,123,125,44,108,41,102,111,114,40,110,61,48,44,114,61,108,91,105,93,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,107,46,101,118,101,110,116,46,97,100,100,40,116,44,105,44,108,91,105,93,91,110,93,41,59,74,46,104,97,115,68,97,116,97,40,101,41,38,38,40,115,61,74,46,97,99,99,101,115,115,40,101,41,44,117,61,107,46,101,120,116,101,110,100,40,123,125,44,115,41,44,74,46,115,101,116,40,116,44,117,41,41,125,125,102,117,110,99,116,105,111,110,32,73,101,40,110,44,114,44,105,44,111,41,123,114,61,103,46,97,112,112,108,121,40,91,93,44,114,41,59,118,97,114,32,101,44,116,44,97,44,115,44,117,44,108,44,99,61,48,44,102,61,110,46,108,101,110,103,116,104,44,112,61,102,45,49,44,100,61,114,91,48,93,44,104,61,109,40,100,41,59,105,102,40,104,124,124,49,60,102,38,38,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,100,38,38,33,121,46,99,104,101,99,107,67,108,111,110,101,38,38,76,101,46,116,101,115,116,40,100,41,41,114,101,116,117,114,110,32,110,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,110,46,101,113,40,101,41,59,104,38,38,40,114,91,48,93,61,100,46,99,97,108,108,40,116,104,105,115,44,101,44,116,46,104,116,109,108,40,41,41,41,44,73,101,40,116,44,114,44,105,44,111,41,125,41,59,105,102,40,102,38,38,40,116,61,40,101,61,119,101,40,114,44,110,91,48,93,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,33,49,44,110,44,111,41,41,46,102,105,114,115,116,67,104,105,108,100,44,49,61,61,61,101,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,38,38,40,101,61,116,41,44,116,124,124,111,41,41,123,102,111,114,40,115,61,40,97,61,107,46,109,97,112,40,118,101,40,101,44,34,115,99,114,105,112,116,34,41,44,80,101,41,41,46,108,101,110,103,116,104,59,99,60,102,59,99,43,43,41,117,61,101,44,99,33,61,61,112,38,38,40,117,61,107,46,99,108,111,110,101,40,117,44,33,48,44,33,48,41,44,115,38,38,107,46,109,101,114,103,101,40,97,44,118,101,40,117,44,34,115,99,114,105,112,116,34,41,41,41,44,105,46,99,97,108,108,40,110,91,99,93,44,117,44,99,41,59,105,102,40,115,41,102,111,114,40,108,61,97,91,97,46,108,101,110,103,116,104,45,49,93,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,107,46,109,97,112,40,97,44,82,101,41,44,99,61,48,59,99,60,115,59,99,43,43,41,117,61,97,91,99,93,44,104,101,46,116,101,115,116,40,117,46,116,121,112,101,124,124,34,34,41,38,38,33,81,46,97,99,99,101,115,115,40,117,44,34,103,108,111,98,97,108,69,118,97,108,34,41,38,38,107,46,99,111,110,116,97,105,110,115,40,108,44,117,41,38,38,40,117,46,115,114,99,38,38,34,109,111,100,117,108,101,34,33,61,61,40,117,46,116,121,112,101,124,124,34,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,107,46,95,101,118,97,108,85,114,108,38,38,33,117,46,110,111,77,111,100,117,108,101,38,38,107,46,95,101,118,97,108,85,114,108,40,117,46,115,114,99,44,123,110,111,110,99,101,58,117,46,110,111,110,99,101,124,124,117,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,110,111,110,99,101,34,41,125,41,58,98,40,117,46,116,101,120,116,67,111,110,116,101,110,116,46,114,101,112,108,97,99,101,40,72,101,44,34,34,41,44,117,44,108,41,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,87,101,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,44,105,61,116,63,107,46,102,105,108,116,101,114,40,116,44,101,41,58,101,44,111,61,48,59,110,117,108,108,33,61,40,114,61,105,91,111,93,41,59,111,43,43,41,110,124,124,49,33,61,61,114,46,110,111,100,101,84,121,112,101,124,124,107,46,99,108,101,97,110,68,97,116,97,40,118,101,40,114,41,41,44,114,46,112,97,114,101,110,116,78,111,100,101,38,38,40,110,38,38,111,101,40,114,41,38,38,121,101,40,118,101,40,114,44,34,115,99,114,105,112,116,34,41,41,44,114,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,114,41,41,59,114,101,116,117,114,110,32,101,125,107,46,101,120,116,101,110,100,40,123,104,116,109,108,80,114,101,102,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,114,101,112,108,97,99,101,40,106,101,44,34,60,36,49,62,60,47,36,50,62,34,41,125,44,99,108,111,110,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,44,117,44,108,44,99,61,101,46,99,108,111,110,101,78,111,100,101,40,33,48,41,44,102,61,111,101,40,101,41,59,105,102,40,33,40,121,46,110,111,67,108,111,110,101,67,104,101,99,107,101,100,124,124,49,33,61,61,101,46,110,111,100,101,84,121,112,101,38,38,49,49,33,61,61,101,46,110,111,100,101,84,121,112,101,124,124,107,46,105,115,88,77,76,68,111,99,40,101,41,41,41,102,111,114,40,97,61,118,101,40,99,41,44,114,61,48,44,105,61,40,111,61,118,101,40,101,41,41,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,115,61,111,91,114,93,44,117,61,97,91,114,93,44,118,111,105,100,32,48,44,34,105,110,112,117,116,34,61,61,61,40,108,61,117,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,38,38,112,101,46,116,101,115,116,40,115,46,116,121,112,101,41,63,117,46,99,104,101,99,107,101,100,61,115,46,99,104,101,99,107,101,100,58,34,105,110,112,117,116,34,33,61,61,108,38,38,34,116,101,120,116,97,114,101,97,34,33,61,61,108,124,124,40,117,46,100,101,102,97,117,108,116,86,97,108,117,101,61,115,46,100,101,102,97,117,108,116,86,97,108,117,101,41,59,105,102,40,116,41,105,102,40,110,41,102,111,114,40,111,61,111,124,124,118,101,40,101,41,44,97,61,97,124,124,118,101,40,99,41,44,114,61,48,44,105,61,111,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,77,101,40,111,91,114,93,44,97,91,114,93,41,59,101,108,115,101,32,77,101,40,101,44,99,41,59,114,101,116,117,114,110,32,48,60,40,97,61,118,101,40,99,44,34,115,99,114,105,112,116,34,41,41,46,108,101,110,103,116,104,38,38,121,101,40,97,44,33,102,38,38,118,101,40,101,44,34,115,99,114,105,112,116,34,41,41,44,99,125,44,99,108,101,97,110,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,44,110,44,114,44,105,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,44,111,61,48,59,118,111,105,100,32,48,33,61,61,40,110,61,101,91,111,93,41,59,111,43,43,41,105,102,40,71,40,110,41,41,123,105,102,40,116,61,110,91,81,46,101,120,112,97,110,100,111,93,41,123,105,102,40,116,46,101,118,101,110,116,115,41,102,111,114,40,114,32,105,110,32,116,46,101,118,101,110,116,115,41,105,91,114,93,63,107,46,101,118,101,110,116,46,114,101,109,111,118,101,40,110,44,114,41,58,107,46,114,101,109,111,118,101,69,118,101,110,116,40,110,44,114,44,116,46,104,97,110,100,108,101,41,59,110,91,81,46,101,120,112,97,110,100,111,93,61,118,111,105,100,32,48,125,110,91,74,46,101,120,112,97,110,100,111,93,38,38,40,110,91,74,46,101,120,112,97,110,100,111,93,61,118,111,105,100,32,48,41,125,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,100,101,116,97,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,87,101,40,116,104,105,115,44,101,44,33,48,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,87,101,40,116,104,105,115,44,101,41,125,44,116,101,120,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,101,63,107,46,116,101,120,116,40,116,104,105,115,41,58,116,104,105,115,46,101,109,112,116,121,40,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,49,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,49,49,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,57,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,124,124,40,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,101,41,125,41,125,44,110,117,108,108,44,101,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,44,97,112,112,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,49,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,49,49,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,57,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,124,124,79,101,40,116,104,105,115,44,101,41,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,125,41,125,44,112,114,101,112,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,49,61,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,124,124,49,49,61,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,124,124,57,61,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,41,123,118,97,114,32,116,61,79,101,40,116,104,105,115,44,101,41,59,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,101,44,116,46,102,105,114,115,116,67,104,105,108,100,41,125,125,41,125,44,98,101,102,111,114,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,38,38,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,101,44,116,104,105,115,41,125,41,125,44,97,102,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,38,38,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,101,44,116,104,105,115,46,110,101,120,116,83,105,98,108,105,110,103,41,125,41,125,44,101,109,112,116,121,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,44,116,61,48,59,110,117,108,108,33,61,40,101,61,116,104,105,115,91,116,93,41,59,116,43,43,41,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,40,107,46,99,108,101,97,110,68,97,116,97,40,118,101,40,101,44,33,49,41,41,44,101,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,99,108,111,110,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,101,61,110,117,108,108,33,61,101,38,38,101,44,116,61,110,117,108,108,61,61,116,63,101,58,116,44,116,104,105,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,46,99,108,111,110,101,40,116,104,105,115,44,101,44,116,41,125,41,125,44,104,116,109,108,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,91,48,93,124,124,123,125,44,110,61,48,44,114,61,116,104,105,115,46,108,101,110,103,116,104,59,105,102,40,118,111,105,100,32,48,61,61,61,101,38,38,49,61,61,61,116,46,110,111,100,101,84,121,112,101,41,114,101,116,117,114,110,32,116,46,105,110,110,101,114,72,84,77,76,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,33,113,101,46,116,101,115,116,40,101,41,38,38,33,103,101,91,40,100,101,46,101,120,101,99,40,101,41,124,124,91,34,34,44,34,34,93,41,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,41,123,101,61,107,46,104,116,109,108,80,114,101,102,105,108,116,101,114,40,101,41,59,116,114,121,123,102,111,114,40,59,110,60,114,59,110,43,43,41,49,61,61,61,40,116,61,116,104,105,115,91,110,93,124,124,123,125,41,46,110,111,100,101,84,121,112,101,38,38,40,107,46,99,108,101,97,110,68,97,116,97,40,118,101,40,116,44,33,49,41,41,44,116,46,105,110,110,101,114,72,84,77,76,61,101,41,59,116,61,48,125,99,97,116,99,104,40,101,41,123,125,125,116,38,38,116,104,105,115,46,101,109,112,116,121,40,41,46,97,112,112,101,110,100,40,101,41,125,44,110,117,108,108,44,101,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,44,114,101,112,108,97,99,101,87,105,116,104,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,91,93,59,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,107,46,105,110,65,114,114,97,121,40,116,104,105,115,44,110,41,60,48,38,38,40,107,46,99,108,101,97,110,68,97,116,97,40,118,101,40,116,104,105,115,41,41,44,116,38,38,116,46,114,101,112,108,97,99,101,67,104,105,108,100,40,101,44,116,104,105,115,41,41,125,44,110,41,125,125,41,44,107,46,101,97,99,104,40,123,97,112,112,101,110,100,84,111,58,34,97,112,112,101,110,100,34,44,112,114,101,112,101,110,100,84,111,58,34,112,114,101,112,101,110,100,34,44,105,110,115,101,114,116,66,101,102,111,114,101,58,34,98,101,102,111,114,101,34,44,105,110,115,101,114,116,65,102,116,101,114,58,34,97,102,116,101,114,34,44,114,101,112,108,97,99,101,65,108,108,58,34,114,101,112,108,97,99,101,87,105,116,104,34,125,44,102,117,110,99,116,105,111,110,40,101,44,97,41,123,107,46,102,110,91,101,93,61,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,44,110,61,91,93,44,114,61,107,40,101,41,44,105,61,114,46,108,101,110,103,116,104,45,49,44,111,61,48,59,111,60,61,105,59,111,43,43,41,116,61,111,61,61,61,105,63,116,104,105,115,58,116,104,105,115,46,99,108,111,110,101,40,33,48,41,44,107,40,114,91,111,93,41,91,97,93,40,116,41,44,117,46,97,112,112,108,121,40,110,44,116,46,103,101,116,40,41,41,59,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,110,41,125,125,41,59,118,97,114,32,36,101,61,110,101,119,32,82,101,103,69,120,112,40,34,94,40,34,43,116,101,43,34,41,40,63,33,112,120,41,91,97,45,122,37,93,43,36,34,44,34,105,34,41,44,70,101,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,59,114,101,116,117,114,110,32,116,38,38,116,46,111,112,101,110,101,114,124,124,40,116,61,67,41,44,116,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,101,41,125,44,66,101,61,110,101,119,32,82,101,103,69,120,112,40,114,101,46,106,111,105,110,40,34,124,34,41,44,34,105,34,41,59,102,117,110,99,116,105,111,110,32,95,101,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,61,101,46,115,116,121,108,101,59,114,101,116,117,114,110,40,110,61,110,124,124,70,101,40,101,41,41,38,38,40,34,34,33,61,61,40,97,61,110,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,116,41,124,124,110,91,116,93,41,124,124,111,101,40,101,41,124,124,40,97,61,107,46,115,116,121,108,101,40,101,44,116,41,41,44,33,121,46,112,105,120,101,108,66,111,120,83,116,121,108,101,115,40,41,38,38,36,101,46,116,101,115,116,40,97,41,38,38,66,101,46,116,101,115,116,40,116,41,38,38,40,114,61,115,46,119,105,100,116,104,44,105,61,115,46,109,105,110,87,105,100,116,104,44,111,61,115,46,109,97,120,87,105,100,116,104,44,115,46,109,105,110,87,105,100,116,104,61,115,46,109,97,120,87,105,100,116,104,61,115,46,119,105,100,116,104,61,97,44,97,61,110,46,119,105,100,116,104,44,115,46,119,105,100,116,104,61,114,44,115,46,109,105,110,87,105,100,116,104,61,105,44,115,46,109,97,120,87,105,100,116,104,61,111,41,41,44,118,111,105,100,32,48,33,61,61,97,63,97,43,34,34,58,97,125,102,117,110,99,116,105,111,110,32,122,101,40,101,44,116,41,123,114,101,116,117,114,110,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,101,40,41,41,114,101,116,117,114,110,40,116,104,105,115,46,103,101,116,61,116,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,100,101,108,101,116,101,32,116,104,105,115,46,103,101,116,125,125,125,33,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,105,102,40,117,41,123,115,46,115,116,121,108,101,46,99,115,115,84,101,120,116,61,34,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,108,101,102,116,58,45,49,49,49,49,49,112,120,59,119,105,100,116,104,58,54,48,112,120,59,109,97,114,103,105,110,45,116,111,112,58,49,112,120,59,112,97,100,100,105,110,103,58,48,59,98,111,114,100,101,114,58,48,34,44,117,46,115,116,121,108,101,46,99,115,115,84,101,120,116,61,34,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,111,118,101,114,102,108,111,119,58,115,99,114,111,108,108,59,109,97,114,103,105,110,58,97,117,116,111,59,98,111,114,100,101,114,58,49,112,120,59,112,97,100,100,105,110,103,58,49,112,120,59,119,105,100,116,104,58,54,48,37,59,116,111,112,58,49,37,34,44,105,101,46,97,112,112,101,110,100,67,104,105,108,100,40,115,41,46,97,112,112,101,110,100,67,104,105,108,100,40,117,41,59,118,97,114,32,101,61,67,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,117,41,59,110,61,34,49,37,34,33,61,61,101,46,116,111,112,44,97,61,49,50,61,61,61,116,40,101,46,109,97,114,103,105,110,76,101,102,116,41,44,117,46,115,116,121,108,101,46,114,105,103,104,116,61,34,54,48,37,34,44,111,61,51,54,61,61,61,116,40,101,46,114,105,103,104,116,41,44,114,61,51,54,61,61,61,116,40,101,46,119,105,100,116,104,41,44,117,46,115,116,121,108,101,46,112,111,115,105,116,105,111,110,61,34,97,98,115,111,108,117,116,101,34,44,105,61,49,50,61,61,61,116,40,117,46,111,102,102,115,101,116,87,105,100,116,104,47,51,41,44,105,101,46,114,101,109,111,118,101,67,104,105,108,100,40,115,41,44,117,61,110,117,108,108,125,125,102,117,110,99,116,105,111,110,32,116,40,101,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,112,97,114,115,101,70,108,111,97,116,40,101,41,41,125,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,44,117,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,117,46,115,116,121,108,101,38,38,40,117,46,115,116,121,108,101,46,98,97,99,107,103,114,111,117,110,100,67,108,105,112,61,34,99,111,110,116,101,110,116,45,98,111,120,34,44,117,46,99,108,111,110,101,78,111,100,101,40,33,48,41,46,115,116,121,108,101,46,98,97,99,107,103,114,111,117,110,100,67,108,105,112,61,34,34,44,121,46,99,108,101,97,114,67,108,111,110,101,83,116,121,108,101,61,34,99,111,110,116,101,110,116,45,98,111,120,34,61,61,61,117,46,115,116,121,108,101,46,98,97,99,107,103,114,111,117,110,100,67,108,105,112,44,107,46,101,120,116,101,110,100,40,121,44,123,98,111,120,83,105,122,105,110,103,82,101,108,105,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,114,125,44,112,105,120,101,108,66,111,120,83,116,121,108,101,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,111,125,44,112,105,120,101,108,80,111,115,105,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,110,125,44,114,101,108,105,97,98,108,101,77,97,114,103,105,110,76,101,102,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,97,125,44,115,99,114,111,108,108,98,111,120,83,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,105,125,125,41,41,125,40,41,59,118,97,114,32,85,101,61,91,34,87,101,98,107,105,116,34,44,34,77,111,122,34,44,34,109,115,34,93,44,88,101,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,46,115,116,121,108,101,44,86,101,61,123,125,59,102,117,110,99,116,105,111,110,32,71,101,40,101,41,123,118,97,114,32,116,61,107,46,99,115,115,80,114,111,112,115,91,101,93,124,124,86,101,91,101,93,59,114,101,116,117,114,110,32,116,124,124,40,101,32,105,110,32,88,101,63,101,58,86,101,91,101,93,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,101,46,115,108,105,99,101,40,49,41,44,110,61,85,101,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,41,105,102,40,40,101,61,85,101,91,110,93,43,116,41,105,110,32,88,101,41,114,101,116,117,114,110,32,101,125,40,101,41,124,124,101,41,125,118,97,114,32,89,101,61,47,94,40,110,111,110,101,124,116,97,98,108,101,40,63,33,45,99,91,101,97,93,41,46,43,41,47,44,81,101,61,47,94,45,45,47,44,74,101,61,123,112,111,115,105,116,105,111,110,58,34,97,98,115,111,108,117,116,101,34,44,118,105,115,105,98,105,108,105,116,121,58,34,104,105,100,100,101,110,34,44,100,105,115,112,108,97,121,58,34,98,108,111,99,107,34,125,44,75,101,61,123,108,101,116,116,101,114,83,112,97,99,105,110,103,58,34,48,34,44,102,111,110,116,87,101,105,103,104,116,58,34,52,48,48,34,125,59,102,117,110,99,116,105,111,110,32,90,101,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,101,46,101,120,101,99,40,116,41,59,114,101,116,117,114,110,32,114,63,77,97,116,104,46,109,97,120,40,48,44,114,91,50,93,45,40,110,124,124,48,41,41,43,40,114,91,51,93,124,124,34,112,120,34,41,58,116,125,102,117,110,99,116,105,111,110,32,101,116,40,101,44,116,44,110,44,114,44,105,44,111,41,123,118,97,114,32,97,61,34,119,105,100,116,104,34,61,61,61,116,63,49,58,48,44,115,61,48,44,117,61,48,59,105,102,40,110,61,61,61,40,114,63,34,98,111,114,100,101,114,34,58,34,99,111,110,116,101,110,116,34,41,41,114,101,116,117,114,110,32,48,59,102,111,114,40,59,97,60,52,59,97,43,61,50,41,34,109,97,114,103,105,110,34,61,61,61,110,38,38,40,117,43,61,107,46,99,115,115,40,101,44,110,43,114,101,91,97,93,44,33,48,44,105,41,41,44,114,63,40,34,99,111,110,116,101,110,116,34,61,61,61,110,38,38,40,117,45,61,107,46,99,115,115,40,101,44,34,112,97,100,100,105,110,103,34,43,114,101,91,97,93,44,33,48,44,105,41,41,44,34,109,97,114,103,105,110,34,33,61,61,110,38,38,40,117,45,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,34,43,114,101,91,97,93,43,34,87,105,100,116,104,34,44,33,48,44,105,41,41,41,58,40,117,43,61,107,46,99,115,115,40,101,44,34,112,97,100,100,105,110,103,34,43,114,101,91,97,93,44,33,48,44,105,41,44,34,112,97,100,100,105,110,103,34,33,61,61,110,63,117,43,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,34,43,114,101,91,97,93,43,34,87,105,100,116,104,34,44,33,48,44,105,41,58,115,43,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,34,43,114,101,91,97,93,43,34,87,105,100,116,104,34,44,33,48,44,105,41,41,59,114,101,116,117,114,110,33,114,38,38,48,60,61,111,38,38,40,117,43,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,99,101,105,108,40,101,91,34,111,102,102,115,101,116,34,43,116,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,116,46,115,108,105,99,101,40,49,41,93,45,111,45,117,45,115,45,46,53,41,41,124,124,48,41,44,117,125,102,117,110,99,116,105,111,110,32,116,116,40,101,44,116,44,110,41,123,118,97,114,32,114,61,70,101,40,101,41,44,105,61,40,33,121,46,98,111,120,83,105,122,105,110,103,82,101,108,105,97,98,108,101,40,41,124,124,110,41,38,38,34,98,111,114,100,101,114,45,98,111,120,34,61,61,61,107,46,99,115,115,40,101,44,34,98,111,120,83,105,122,105,110,103,34,44,33,49,44,114,41,44,111,61,105,44,97,61,95,101,40,101,44,116,44,114,41,44,115,61,34,111,102,102,115,101,116,34,43,116,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,116,46,115,108,105,99,101,40,49,41,59,105,102,40,36,101,46,116,101,115,116,40,97,41,41,123,105,102,40,33,110,41,114,101,116,117,114,110,32,97,59,97,61,34,97,117,116,111,34,125,114,101,116,117,114,110,40,33,121,46,98,111,120,83,105,122,105,110,103,82,101,108,105,97,98,108,101,40,41,38,38,105,124,124,34,97,117,116,111,34,61,61,61,97,124,124,33,112,97,114,115,101,70,108,111,97,116,40,97,41,38,38,34,105,110,108,105,110,101,34,61,61,61,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,44,33,49,44,114,41,41,38,38,101,46,103,101,116,67,108,105,101,110,116,82,101,99,116,115,40,41,46,108,101,110,103,116,104,38,38,40,105,61,34,98,111,114,100,101,114,45,98,111,120,34,61,61,61,107,46,99,115,115,40,101,44,34,98,111,120,83,105,122,105,110,103,34,44,33,49,44,114,41,44,40,111,61,115,32,105,110,32,101,41,38,38,40,97,61,101,91,115,93,41,41,44,40,97,61,112,97,114,115,101,70,108,111,97,116,40,97,41,124,124,48,41,43,101,116,40,101,44,116,44,110,124,124,40,105,63,34,98,111,114,100,101,114,34,58,34,99,111,110,116,101,110,116,34,41,44,111,44,114,44,97,41,43,34,112,120,34,125,102,117,110,99,116,105,111,110,32,110,116,40,101,44,116,44,110,44,114,44,105,41,123,114,101,116,117,114,110,32,110,101,119,32,110,116,46,112,114,111,116,111,116,121,112,101,46,105,110,105,116,40,101,44,116,44,110,44,114,44,105,41,125,107,46,101,120,116,101,110,100,40,123,99,115,115,72,111,111,107,115,58,123,111,112,97,99,105,116,121,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,41,123,118,97,114,32,110,61,95,101,40,101,44,34,111,112,97,99,105,116,121,34,41,59,114,101,116,117,114,110,34,34,61,61,61,110,63,34,49,34,58,110,125,125,125,125,44,99,115,115,78,117,109,98,101,114,58,123,97,110,105,109,97,116,105,111,110,73,116,101,114,97,116,105,111,110,67,111,117,110,116,58,33,48,44,99,111,108,117,109,110,67,111,117,110,116,58,33,48,44,102,105,108,108,79,112,97,99,105,116,121,58,33,48,44,102,108,101,120,71,114,111,119,58,33,48,44,102,108,101,120,83,104,114,105,110,107,58,33,48,44,102,111,110,116,87,101,105,103,104,116,58,33,48,44,103,114,105,100,65,114,101,97,58,33,48,44,103,114,105,100,67,111,108,117,109,110,58,33,48,44,103,114,105,100,67,111,108,117,109,110,69,110,100,58,33,48,44,103,114,105,100,67,111,108,117,109,110,83,116,97,114,116,58,33,48,44,103,114,105,100,82,111,119,58,33,48,44,103,114,105,100,82,111,119,69,110,100,58,33,48,44,103,114,105,100,82,111,119,83,116,97,114,116,58,33,48,44,108,105,110,101,72,101,105,103,104,116,58,33,48,44,111,112,97,99,105,116,121,58,33,48,44,111,114,100,101,114,58,33,48,44,111,114,112,104,97,110,115,58,33,48,44,119,105,100,111,119,115,58,33,48,44,122,73,110,100,101,120,58,33,48,44,122,111,111,109,58,33,48,125,44,99,115,115,80,114,111,112,115,58,123,125,44,115,116,121,108,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,105,102,40,101,38,38,51,33,61,61,101,46,110,111,100,101,84,121,112,101,38,38,56,33,61,61,101,46,110,111,100,101,84,121,112,101,38,38,101,46,115,116,121,108,101,41,123,118,97,114,32,105,44,111,44,97,44,115,61,86,40,116,41,44,117,61,81,101,46,116,101,115,116,40,116,41,44,108,61,101,46,115,116,121,108,101,59,105,102,40,117,124,124,40,116,61,71,101,40,115,41,41,44,97,61,107,46,99,115,115,72,111,111,107,115,91,116,93,124,124,107,46,99,115,115,72,111,111,107,115,91,115,93,44,118,111,105,100,32,48,61,61,61,110,41,114,101,116,117,114,110,32,97,38,38,34,103,101,116,34,105,110,32,97,38,38,118,111,105,100,32,48,33,61,61,40,105,61,97,46,103,101,116,40,101,44,33,49,44,114,41,41,63,105,58,108,91,116,93,59,34,115,116,114,105,110,103,34,61,61,61,40,111,61,116,121,112,101,111,102,32,110,41,38,38,40,105,61,110,101,46,101,120,101,99,40,110,41,41,38,38,105,91,49,93,38,38,40,110,61,108,101,40,101,44,116,44,105,41,44,111,61,34,110,117,109,98,101,114,34,41,44,110,117,108,108,33,61,110,38,38,110,61,61,110,38,38,40,34,110,117,109,98,101,114,34,33,61,61,111,124,124,117,124,124,40,110,43,61,105,38,38,105,91,51,93,124,124,40,107,46,99,115,115,78,117,109,98,101,114,91,115,93,63,34,34,58,34,112,120,34,41,41,44,121,46,99,108,101,97,114,67,108,111,110,101,83,116,121,108,101,124,124,34,34,33,61,61,110,124,124,48,33,61,61,116,46,105,110,100,101,120,79,102,40,34,98,97,99,107,103,114,111,117,110,100,34,41,124,124,40,108,91,116,93,61,34,105,110,104,101,114,105,116,34,41,44,97,38,38,34,115,101,116,34,105,110,32,97,38,38,118,111,105,100,32,48,61,61,61,40,110,61,97,46,115,101,116,40,101,44,110,44,114,41,41,124,124,40,117,63,108,46,115,101,116,80,114,111,112,101,114,116,121,40,116,44,110,41,58,108,91,116,93,61,110,41,41,125,125,44,99,115,115,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,61,86,40,116,41,59,114,101,116,117,114,110,32,81,101,46,116,101,115,116,40,116,41,124,124,40,116,61,71,101,40,115,41,41,44,40,97,61,107,46,99,115,115,72,111,111,107,115,91,116,93,124,124,107,46,99,115,115,72,111,111,107,115,91,115,93,41,38,38,34,103,101,116,34,105,110,32,97,38,38,40,105,61,97,46,103,101,116,40,101,44,33,48,44,110,41,41,44,118,111,105,100,32,48,61,61,61,105,38,38,40,105,61,95,101,40,101,44,116,44,114,41,41,44,34,110,111,114,109,97,108,34,61,61,61,105,38,38,116,32,105,110,32,75,101,38,38,40,105,61,75,101,91,116,93,41,44,34,34,61,61,61,110,124,124,110,63,40,111,61,112,97,114,115,101,70,108,111,97,116,40,105,41,44,33,48,61,61,61,110,124,124,105,115,70,105,110,105,116,101,40,111,41,63,111,124,124,48,58,105,41,58,105,125,125,41,44,107,46,101,97,99,104,40,91,34,104,101,105,103,104,116,34,44,34,119,105,100,116,104,34,93,44,102,117,110,99,116,105,111,110,40,101,44,117,41,123,107,46,99,115,115,72,111,111,107,115,91,117,93,61,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,116,41,114,101,116,117,114,110,33,89,101,46,116,101,115,116,40,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,41,41,124,124,101,46,103,101,116,67,108,105,101,110,116,82,101,99,116,115,40,41,46,108,101,110,103,116,104,38,38,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,119,105,100,116,104,63,116,116,40,101,44,117,44,110,41,58,117,101,40,101,44,74,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,116,40,101,44,117,44,110,41,125,41,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,61,70,101,40,101,41,44,111,61,33,121,46,115,99,114,111,108,108,98,111,120,83,105,122,101,40,41,38,38,34,97,98,115,111,108,117,116,101,34,61,61,61,105,46,112,111,115,105,116,105,111,110,44,97,61,40,111,124,124,110,41,38,38,34,98,111,114,100,101,114,45,98,111,120,34,61,61,61,107,46,99,115,115,40,101,44,34,98,111,120,83,105,122,105,110,103,34,44,33,49,44,105,41,44,115,61,110,63,101,116,40,101,44,117,44,110,44,97,44,105,41,58,48,59,114,101,116,117,114,110,32,97,38,38,111,38,38,40,115,45,61,77,97,116,104,46,99,101,105,108,40,101,91,34,111,102,102,115,101,116,34,43,117,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,117,46,115,108,105,99,101,40,49,41,93,45,112,97,114,115,101,70,108,111,97,116,40,105,91,117,93,41,45,101,116,40,101,44,117,44,34,98,111,114,100,101,114,34,44,33,49,44,105,41,45,46,53,41,41,44,115,38,38,40,114,61,110,101,46,101,120,101,99,40,116,41,41,38,38,34,112,120,34,33,61,61,40,114,91,51,93,124,124,34,112,120,34,41,38,38,40,101,46,115,116,121,108,101,91,117,93,61,116,44,116,61,107,46,99,115,115,40,101,44,117,41,41,44,90,101,40,48,44,116,44,115,41,125,125,125,41,44,107,46,99,115,115,72,111,111,107,115,46,109,97,114,103,105,110,76,101,102,116,61,122,101,40,121,46,114,101,108,105,97,98,108,101,77,97,114,103,105,110,76,101,102,116,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,41,114,101,116,117,114,110,40,112,97,114,115,101,70,108,111,97,116,40,95,101,40,101,44,34,109,97,114,103,105,110,76,101,102,116,34,41,41,124,124,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,108,101,102,116,45,117,101,40,101,44,123,109,97,114,103,105,110,76,101,102,116,58,48,125,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,108,101,102,116,125,41,41,43,34,112,120,34,125,41,44,107,46,101,97,99,104,40,123,109,97,114,103,105,110,58,34,34,44,112,97,100,100,105,110,103,58,34,34,44,98,111,114,100,101,114,58,34,87,105,100,116,104,34,125,44,102,117,110,99,116,105,111,110,40,105,44,111,41,123,107,46,99,115,115,72,111,111,107,115,91,105,43,111,93,61,123,101,120,112,97,110,100,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,44,110,61,123,125,44,114,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,34,32,34,41,58,91,101,93,59,116,60,52,59,116,43,43,41,110,91,105,43,114,101,91,116,93,43,111,93,61,114,91,116,93,124,124,114,91,116,45,50,93,124,124,114,91,48,93,59,114,101,116,117,114,110,32,110,125,125,44,34,109,97,114,103,105,110,34,33,61,61,105,38,38,40,107,46,99,115,115,72,111,111,107,115,91,105,43,111,93,46,115,101,116,61,90,101,41,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,99,115,115,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,123,125,44,97,61,48,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,123,102,111,114,40,114,61,70,101,40,101,41,44,105,61,116,46,108,101,110,103,116,104,59,97,60,105,59,97,43,43,41,111,91,116,91,97,93,93,61,107,46,99,115,115,40,101,44,116,91,97,93,44,33,49,44,114,41,59,114,101,116,117,114,110,32,111,125,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,110,63,107,46,115,116,121,108,101,40,101,44,116,44,110,41,58,107,46,99,115,115,40,101,44,116,41,125,44,101,44,116,44,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,125,41,44,40,40,107,46,84,119,101,101,110,61,110,116,41,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,110,116,44,105,110,105,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,44,105,44,111,41,123,116,104,105,115,46,101,108,101,109,61,101,44,116,104,105,115,46,112,114,111,112,61,110,44,116,104,105,115,46,101,97,115,105,110,103,61,105,124,124,107,46,101,97,115,105,110,103,46,95,100,101,102,97,117,108,116,44,116,104,105,115,46,111,112,116,105,111,110,115,61,116,44,116,104,105,115,46,115,116,97,114,116,61,116,104,105,115,46,110,111,119,61,116,104,105,115,46,99,117,114,40,41,44,116,104,105,115,46,101,110,100,61,114,44,116,104,105,115,46,117,110,105,116,61,111,124,124,40,107,46,99,115,115,78,117,109,98,101,114,91,110,93,63,34,34,58,34,112,120,34,41,125,44,99,117,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,116,46,112,114,111,112,72,111,111,107,115,91,116,104,105,115,46,112,114,111,112,93,59,114,101,116,117,114,110,32,101,38,38,101,46,103,101,116,63,101,46,103,101,116,40,116,104,105,115,41,58,110,116,46,112,114,111,112,72,111,111,107,115,46,95,100,101,102,97,117,108,116,46,103,101,116,40,116,104,105,115,41,125,44,114,117,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,110,116,46,112,114,111,112,72,111,111,107,115,91,116,104,105,115,46,112,114,111,112,93,59,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,100,117,114,97,116,105,111,110,63,116,104,105,115,46,112,111,115,61,116,61,107,46,101,97,115,105,110,103,91,116,104,105,115,46,101,97,115,105,110,103,93,40,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,100,117,114,97,116,105,111,110,42,101,44,48,44,49,44,116,104,105,115,46,111,112,116,105,111,110,115,46,100,117,114,97,116,105,111,110,41,58,116,104,105,115,46,112,111,115,61,116,61,101,44,116,104,105,115,46,110,111,119,61,40,116,104,105,115,46,101,110,100,45,116,104,105,115,46,115,116,97,114,116,41,42,116,43,116,104,105,115,46,115,116,97,114,116,44,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,38,38,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,46,99,97,108,108,40,116,104,105,115,46,101,108,101,109,44,116,104,105,115,46,110,111,119,44,116,104,105,115,41,44,110,38,38,110,46,115,101,116,63,110,46,115,101,116,40,116,104,105,115,41,58,110,116,46,112,114,111,112,72,111,111,107,115,46,95,100,101,102,97,117,108,116,46,115,101,116,40,116,104,105,115,41,44,116,104,105,115,125,125,41,46,105,110,105,116,46,112,114,111,116,111,116,121,112,101,61,110,116,46,112,114,111,116,111,116,121,112,101,44,40,110,116,46,112,114,111,112,72,111,111,107,115,61,123,95,100,101,102,97,117,108,116,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,114,101,116,117,114,110,32,49,33,61,61,101,46,101,108,101,109,46,110,111,100,101,84,121,112,101,124,124,110,117,108,108,33,61,101,46,101,108,101,109,91,101,46,112,114,111,112,93,38,38,110,117,108,108,61,61,101,46,101,108,101,109,46,115,116,121,108,101,91,101,46,112,114,111,112,93,63,101,46,101,108,101,109,91,101,46,112,114,111,112,93,58,40,116,61,107,46,99,115,115,40,101,46,101,108,101,109,44,101,46,112,114,111,112,44,34,34,41,41,38,38,34,97,117,116,111,34,33,61,61,116,63,116,58,48,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,107,46,102,120,46,115,116,101,112,91,101,46,112,114,111,112,93,63,107,46,102,120,46,115,116,101,112,91,101,46,112,114,111,112,93,40,101,41,58,49,33,61,61,101,46,101,108,101,109,46,110,111,100,101,84,121,112,101,124,124,33,107,46,99,115,115,72,111,111,107,115,91,101,46,112,114,111,112,93,38,38,110,117,108,108,61,61,101,46,101,108,101,109,46,115,116,121,108,101,91,71,101,40,101,46,112,114,111,112,41,93,63,101,46,101,108,101,109,91,101,46,112,114,111,112,93,61,101,46,110,111,119,58,107,46,115,116,121,108,101,40,101,46,101,108,101,109,44,101,46,112,114,111,112,44,101,46,110,111,119,43,101,46,117,110,105,116,41,125,125,125,41,46,115,99,114,111,108,108,84,111,112,61,110,116,46,112,114,111,112,72,111,111,107,115,46,115,99,114,111,108,108,76,101,102,116,61,123,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,101,108,101,109,46,110,111,100,101,84,121,112,101,38,38,101,46,101,108,101,109,46,112,97,114,101,110,116,78,111,100,101,38,38,40,101,46,101,108,101,109,91,101,46,112,114,111,112,93,61,101,46,110,111,119,41,125,125,44,107,46,101,97,115,105,110,103,61,123,108,105,110,101,97,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,125,44,115,119,105,110,103,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,46,53,45,77,97,116,104,46,99,111,115,40,101,42,77,97,116,104,46,80,73,41,47,50,125,44,95,100,101,102,97,117,108,116,58,34,115,119,105,110,103,34,125,44,107,46,102,120,61,110,116,46,112,114,111,116,111,116,121,112,101,46,105,110,105,116,44,107,46,102,120,46,115,116,101,112,61,123,125,59,118,97,114,32,114,116,44,105,116,44,111,116,44,97,116,44,115,116,61,47,94,40,63,58,116,111,103,103,108,101,124,115,104,111,119,124,104,105,100,101,41,36,47,44,117,116,61,47,113,117,101,117,101,72,111,111,107,115,36,47,59,102,117,110,99,116,105,111,110,32,108,116,40,41,123,105,116,38,38,40,33,49,61,61,61,69,46,104,105,100,100,101,110,38,38,67,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,63,67,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,108,116,41,58,67,46,115,101,116,84,105,109,101,111,117,116,40,108,116,44,107,46,102,120,46,105,110,116,101,114,118,97,108,41,44,107,46,102,120,46,116,105,99,107,40,41,41,125,102,117,110,99,116,105,111,110,32,99,116,40,41,123,114,101,116,117,114,110,32,67,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,114,116,61,118,111,105,100,32,48,125,41,44,114,116,61,68,97,116,101,46,110,111,119,40,41,125,102,117,110,99,116,105,111,110,32,102,116,40,101,44,116,41,123,118,97,114,32,110,44,114,61,48,44,105,61,123,104,101,105,103,104,116,58,101,125,59,102,111,114,40,116,61,116,63,49,58,48,59,114,60,52,59,114,43,61,50,45,116,41,105,91,34,109,97,114,103,105,110,34,43,40,110,61,114,101,91,114,93,41,93,61,105,91,34,112,97,100,100,105,110,103,34,43,110,93,61,101,59,114,101,116,117,114,110,32,116,38,38,40,105,46,111,112,97,99,105,116,121,61,105,46,119,105,100,116,104,61,101,41,44,105,125,102,117,110,99,116,105,111,110,32,112,116,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,44,105,61,40,100,116,46,116,119,101,101,110,101,114,115,91,116,93,124,124,91,93,41,46,99,111,110,99,97,116,40,100,116,46,116,119,101,101,110,101,114,115,91,34,42,34,93,41,44,111,61,48,44,97,61,105,46,108,101,110,103,116,104,59,111,60,97,59,111,43,43,41,105,102,40,114,61,105,91,111,93,46,99,97,108,108,40,110,44,116,44,101,41,41,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,100,116,40,111,44,101,44,116,41,123,118,97,114,32,110,44,97,44,114,61,48,44,105,61,100,116,46,112,114,101,102,105,108,116,101,114,115,46,108,101,110,103,116,104,44,115,61,107,46,68,101,102,101,114,114,101,100,40,41,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,100,101,108,101,116,101,32,117,46,101,108,101,109,125,41,44,117,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,97,41,114,101,116,117,114,110,33,49,59,102,111,114,40,118,97,114,32,101,61,114,116,124,124,99,116,40,41,44,116,61,77,97,116,104,46,109,97,120,40,48,44,108,46,115,116,97,114,116,84,105,109,101,43,108,46,100,117,114,97,116,105,111,110,45,101,41,44,110,61,49,45,40,116,47,108,46,100,117,114,97,116,105,111,110,124,124,48,41,44,114,61,48,44,105,61,108,46,116,119,101,101,110,115,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,108,46,116,119,101,101,110,115,91,114,93,46,114,117,110,40,110,41,59,114,101,116,117,114,110,32,115,46,110,111,116,105,102,121,87,105,116,104,40,111,44,91,108,44,110,44,116,93,41,44,110,60,49,38,38,105,63,116,58,40,105,124,124,115,46,110,111,116,105,102,121,87,105,116,104,40,111,44,91,108,44,49,44,48,93,41,44,115,46,114,101,115,111,108,118,101,87,105,116,104,40,111,44,91,108,93,41,44,33,49,41,125,44,108,61,115,46,112,114,111,109,105,115,101,40,123,101,108,101,109,58,111,44,112,114,111,112,115,58,107,46,101,120,116,101,110,100,40,123,125,44,101,41,44,111,112,116,115,58,107,46,101,120,116,101,110,100,40,33,48,44,123,115,112,101,99,105,97,108,69,97,115,105,110,103,58,123,125,44,101,97,115,105,110,103,58,107,46,101,97,115,105,110,103,46,95,100,101,102,97,117,108,116,125,44,116,41,44,111,114,105,103,105,110,97,108,80,114,111,112,101,114,116,105,101,115,58,101,44,111,114,105,103,105,110,97,108,79,112,116,105,111,110,115,58,116,44,115,116,97,114,116,84,105,109,101,58,114,116,124,124,99,116,40,41,44,100,117,114,97,116,105,111,110,58,116,46,100,117,114,97,116,105,111,110,44,116,119,101,101,110,115,58,91,93,44,99,114,101,97,116,101,84,119,101,101,110,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,107,46,84,119,101,101,110,40,111,44,108,46,111,112,116,115,44,101,44,116,44,108,46,111,112,116,115,46,115,112,101,99,105,97,108,69,97,115,105,110,103,91,101,93,124,124,108,46,111,112,116,115,46,101,97,115,105,110,103,41,59,114,101,116,117,114,110,32,108,46,116,119,101,101,110,115,46,112,117,115,104,40,110,41,44,110,125,44,115,116,111,112,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,48,44,110,61,101,63,108,46,116,119,101,101,110,115,46,108,101,110,103,116,104,58,48,59,105,102,40,97,41,114,101,116,117,114,110,32,116,104,105,115,59,102,111,114,40,97,61,33,48,59,116,60,110,59,116,43,43,41,108,46,116,119,101,101,110,115,91,116,93,46,114,117,110,40,49,41,59,114,101,116,117,114,110,32,101,63,40,115,46,110,111,116,105,102,121,87,105,116,104,40,111,44,91,108,44,49,44,48,93,41,44,115,46,114,101,115,111,108,118,101,87,105,116,104,40,111,44,91,108,44,101,93,41,41,58,115,46,114,101,106,101,99,116,87,105,116,104,40,111,44,91,108,44,101,93,41,44,116,104,105,115,125,125,41,44,99,61,108,46,112,114,111,112,115,59,102,111,114,40,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,44,111,44,97,59,102,111,114,40,110,32,105,110,32,101,41,105,102,40,105,61,116,91,114,61,86,40,110,41,93,44,111,61,101,91,110,93,44,65,114,114,97,121,46,105,115,65,114,114,97,121,40,111,41,38,38,40,105,61,111,91,49,93,44,111,61,101,91,110,93,61,111,91,48,93,41,44,110,33,61,61,114,38,38,40,101,91,114,93,61,111,44,100,101,108,101,116,101,32,101,91,110,93,41,44,40,97,61,107,46,99,115,115,72,111,111,107,115,91,114,93,41,38,38,34,101,120,112,97,110,100,34,105,110,32,97,41,102,111,114,40,110,32,105,110,32,111,61,97,46,101,120,112,97,110,100,40,111,41,44,100,101,108,101,116,101,32,101,91,114,93,44,111,41,110,32,105,110,32,101,124,124,40,101,91,110,93,61,111,91,110,93,44,116,91,110,93,61,105,41,59,101,108,115,101,32,116,91,114,93,61,105,125,40,99,44,108,46,111,112,116,115,46,115,112,101,99,105,97,108,69,97,115,105,110,103,41,59,114,60,105,59,114,43,43,41,105,102,40,110,61,100,116,46,112,114,101,102,105,108,116,101,114,115,91,114,93,46,99,97,108,108,40,108,44,111,44,99,44,108,46,111,112,116,115,41,41,114,101,116,117,114,110,32,109,40,110,46,115,116,111,112,41,38,38,40,107,46,95,113,117,101,117,101,72,111,111,107,115,40,108,46,101,108,101,109,44,108,46,111,112,116,115,46,113,117,101,117,101,41,46,115,116,111,112,61,110,46,115,116,111,112,46,98,105,110,100,40,110,41,41,44,110,59,114,101,116,117,114,110,32,107,46,109,97,112,40,99,44,112,116,44,108,41,44,109,40,108,46,111,112,116,115,46,115,116,97,114,116,41,38,38,108,46,111,112,116,115,46,115,116,97,114,116,46,99,97,108,108,40,111,44,108,41,44,108,46,112,114,111,103,114,101,115,115,40,108,46,111,112,116,115,46,112,114,111,103,114,101,115,115,41,46,100,111,110,101,40,108,46,111,112,116,115,46,100,111,110,101,44,108,46,111,112,116,115,46,99,111,109,112,108,101,116,101,41,46,102,97,105,108,40,108,46,111,112,116,115,46,102,97,105,108,41,46,97,108,119,97,121,115,40,108,46,111,112,116,115,46,97,108,119,97,121,115,41,44,107,46,102,120,46,116,105,109,101,114,40,107,46,101,120,116,101,110,100,40,117,44,123,101,108,101,109,58,111,44,97,110,105,109,58,108,44,113,117,101,117,101,58,108,46,111,112,116,115,46,113,117,101,117,101,125,41,41,44,108,125,107,46,65,110,105,109,97,116,105,111,110,61,107,46,101,120,116,101,110,100,40,100,116,44,123,116,119,101,101,110,101,114,115,58,123,34,42,34,58,91,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,46,99,114,101,97,116,101,84,119,101,101,110,40,101,44,116,41,59,114,101,116,117,114,110,32,108,101,40,110,46,101,108,101,109,44,101,44,110,101,46,101,120,101,99,40,116,41,44,110,41,44,110,125,93,125,44,116,119,101,101,110,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,109,40,101,41,63,40,116,61,101,44,101,61,91,34,42,34,93,41,58,101,61,101,46,109,97,116,99,104,40,82,41,59,102,111,114,40,118,97,114,32,110,44,114,61,48,44,105,61,101,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,110,61,101,91,114,93,44,100,116,46,116,119,101,101,110,101,114,115,91,110,93,61,100,116,46,116,119,101,101,110,101,114,115,91,110,93,124,124,91,93,44,100,116,46,116,119,101,101,110,101,114,115,91,110,93,46,117,110,115,104,105,102,116,40,116,41,125,44,112,114,101,102,105,108,116,101,114,115,58,91,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,44,117,44,108,44,99,44,102,61,34,119,105,100,116,104,34,105,110,32,116,124,124,34,104,101,105,103,104,116,34,105,110,32,116,44,112,61,116,104,105,115,44,100,61,123,125,44,104,61,101,46,115,116,121,108,101,44,103,61,101,46,110,111,100,101,84,121,112,101,38,38,115,101,40,101,41,44,118,61,81,46,103,101,116,40,101,44,34,102,120,115,104,111,119,34,41,59,102,111,114,40,114,32,105,110,32,110,46,113,117,101,117,101,124,124,40,110,117,108,108,61,61,40,97,61,107,46,95,113,117,101,117,101,72,111,111,107,115,40,101,44,34,102,120,34,41,41,46,117,110,113,117,101,117,101,100,38,38,40,97,46,117,110,113,117,101,117,101,100,61,48,44,115,61,97,46,101,109,112,116,121,46,102,105,114,101,44,97,46,101,109,112,116,121,46,102,105,114,101,61,102,117,110,99,116,105,111,110,40,41,123,97,46,117,110,113,117,101,117,101,100,124,124,115,40,41,125,41,44,97,46,117,110,113,117,101,117,101,100,43,43,44,112,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,112,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,97,46,117,110,113,117,101,117,101,100,45,45,44,107,46,113,117,101,117,101,40,101,44,34,102,120,34,41,46,108,101,110,103,116,104,124,124,97,46,101,109,112,116,121,46,102,105,114,101,40,41,125,41,125,41,41,44,116,41,105,102,40,105,61,116,91,114,93,44,115,116,46,116,101,115,116,40,105,41,41,123,105,102,40,100,101,108,101,116,101,32,116,91,114,93,44,111,61,111,124,124,34,116,111,103,103,108,101,34,61,61,61,105,44,105,61,61,61,40,103,63,34,104,105,100,101,34,58,34,115,104,111,119,34,41,41,123,105,102,40,34,115,104,111,119,34,33,61,61,105,124,124,33,118,124,124,118,111,105,100,32,48,61,61,61,118,91,114,93,41,99,111,110,116,105,110,117,101,59,103,61,33,48,125,100,91,114,93,61,118,38,38,118,91,114,93,124,124,107,46,115,116,121,108,101,40,101,44,114,41,125,105,102,40,40,117,61,33,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,116,41,41,124,124,33,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,100,41,41,102,111,114,40,114,32,105,110,32,102,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,40,110,46,111,118,101,114,102,108,111,119,61,91,104,46,111,118,101,114,102,108,111,119,44,104,46,111,118,101,114,102,108,111,119,88,44,104,46,111,118,101,114,102,108,111,119,89,93,44,110,117,108,108,61,61,40,108,61,118,38,38,118,46,100,105,115,112,108,97,121,41,38,38,40,108,61,81,46,103,101,116,40,101,44,34,100,105,115,112,108,97,121,34,41,41,44,34,110,111,110,101,34,61,61,61,40,99,61,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,41,41,38,38,40,108,63,99,61,108,58,40,102,101,40,91,101,93,44,33,48,41,44,108,61,101,46,115,116,121,108,101,46,100,105,115,112,108,97,121,124,124,108,44,99,61,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,41,44,102,101,40,91,101,93,41,41,41,44,40,34,105,110,108,105,110,101,34,61,61,61,99,124,124,34,105,110,108,105,110,101,45,98,108,111,99,107,34,61,61,61,99,38,38,110,117,108,108,33,61,108,41,38,38,34,110,111,110,101,34,61,61,61,107,46,99,115,115,40,101,44,34,102,108,111,97,116,34,41,38,38,40,117,124,124,40,112,46,100,111,110,101,40,102,117,110,99,116,105,111,110,40,41,123,104,46,100,105,115,112,108,97,121,61,108,125,41,44,110,117,108,108,61,61,108,38,38,40,99,61,104,46,100,105,115,112,108,97,121,44,108,61,34,110,111,110,101,34,61,61,61,99,63,34,34,58,99,41,41,44,104,46,100,105,115,112,108,97,121,61,34,105,110,108,105,110,101,45,98,108,111,99,107,34,41,41,44,110,46,111,118,101,114,102,108,111,119,38,38,40,104,46,111,118,101,114,102,108,111,119,61,34,104,105,100,100,101,110,34,44,112,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,104,46,111,118,101,114,102,108,111,119,61,110,46,111,118,101,114,102,108,111,119,91,48,93,44,104,46,111,118,101,114,102,108,111,119,88,61,110,46,111,118,101,114,102,108,111,119,91,49,93,44,104,46,111,118,101,114,102,108,111,119,89,61,110,46,111,118,101,114,102,108,111,119,91,50,93,125,41,41,44,117,61,33,49,44,100,41,117,124,124,40,118,63,34,104,105,100,100,101,110,34,105,110,32,118,38,38,40,103,61,118,46,104,105,100,100,101,110,41,58,118,61,81,46,97,99,99,101,115,115,40,101,44,34,102,120,115,104,111,119,34,44,123,100,105,115,112,108,97,121,58,108,125,41,44,111,38,38,40,118,46,104,105,100,100,101,110,61,33,103,41,44,103,38,38,102,101,40,91,101,93,44,33,48,41,44,112,46,100,111,110,101,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,114,32,105,110,32,103,124,124,102,101,40,91,101,93,41,44,81,46,114,101,109,111,118,101,40,101,44,34,102,120,115,104,111,119,34,41,44,100,41,107,46,115,116,121,108,101,40,101,44,114,44,100,91,114,93,41,125,41,41,44,117,61,112,116,40,103,63,118,91,114,93,58,48,44,114,44,112,41,44,114,32,105,110,32,118,124,124,40,118,91,114,93,61,117,46,115,116,97,114,116,44,103,38,38,40,117,46,101,110,100,61,117,46,115,116,97,114,116,44,117,46,115,116,97,114,116,61,48,41,41,125,93,44,112,114,101,102,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,63,100,116,46,112,114,101,102,105,108,116,101,114,115,46,117,110,115,104,105,102,116,40,101,41,58,100,116,46,112,114,101,102,105,108,116,101,114,115,46,112,117,115,104,40,101,41,125,125,41,44,107,46,115,112,101,101,100,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,101,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,63,107,46,101,120,116,101,110,100,40,123,125,44,101,41,58,123,99,111,109,112,108,101,116,101,58,110,124,124,33,110,38,38,116,124,124,109,40,101,41,38,38,101,44,100,117,114,97,116,105,111,110,58,101,44,101,97,115,105,110,103,58,110,38,38,116,124,124,116,38,38,33,109,40,116,41,38,38,116,125,59,114,101,116,117,114,110,32,107,46,102,120,46,111,102,102,63,114,46,100,117,114,97,116,105,111,110,61,48,58,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,114,46,100,117,114,97,116,105,111,110,38,38,40,114,46,100,117,114,97,116,105,111,110,32,105,110,32,107,46,102,120,46,115,112,101,101,100,115,63,114,46,100,117,114,97,116,105,111,110,61,107,46,102,120,46,115,112,101,101,100,115,91,114,46,100,117,114,97,116,105,111,110,93,58,114,46,100,117,114,97,116,105,111,110,61,107,46,102,120,46,115,112,101,101,100,115,46,95,100,101,102,97,117,108,116,41,44,110,117,108,108,33,61,114,46,113,117,101,117,101,38,38,33,48,33,61,61,114,46,113,117,101,117,101,124,124,40,114,46,113,117,101,117,101,61,34,102,120,34,41,44,114,46,111,108,100,61,114,46,99,111,109,112,108,101,116,101,44,114,46,99,111,109,112,108,101,116,101,61,102,117,110,99,116,105,111,110,40,41,123,109,40,114,46,111,108,100,41,38,38,114,46,111,108,100,46,99,97,108,108,40,116,104,105,115,41,44,114,46,113,117,101,117,101,38,38,107,46,100,101,113,117,101,117,101,40,116,104,105,115,44,114,46,113,117,101,117,101,41,125,44,114,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,102,97,100,101,84,111,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,115,101,41,46,99,115,115,40,34,111,112,97,99,105,116,121,34,44,48,41,46,115,104,111,119,40,41,46,101,110,100,40,41,46,97,110,105,109,97,116,101,40,123,111,112,97,99,105,116,121,58,116,125,44,101,44,110,44,114,41,125,44,97,110,105,109,97,116,101,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,116,41,44,111,61,107,46,115,112,101,101,100,40,101,44,110,44,114,41,44,97,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,100,116,40,116,104,105,115,44,107,46,101,120,116,101,110,100,40,123,125,44,116,41,44,111,41,59,40,105,124,124,81,46,103,101,116,40,116,104,105,115,44,34,102,105,110,105,115,104,34,41,41,38,38,101,46,115,116,111,112,40,33,48,41,125,59,114,101,116,117,114,110,32,97,46,102,105,110,105,115,104,61,97,44,105,124,124,33,49,61,61,61,111,46,113,117,101,117,101,63,116,104,105,115,46,101,97,99,104,40,97,41,58,116,104,105,115,46,113,117,101,117,101,40,111,46,113,117,101,117,101,44,97,41,125,44,115,116,111,112,58,102,117,110,99,116,105,111,110,40,105,44,101,44,111,41,123,118,97,114,32,97,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,115,116,111,112,59,100,101,108,101,116,101,32,101,46,115,116,111,112,44,116,40,111,41,125,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,105,38,38,40,111,61,101,44,101,61,105,44,105,61,118,111,105,100,32,48,41,44,101,38,38,33,49,33,61,61,105,38,38,116,104,105,115,46,113,117,101,117,101,40,105,124,124,34,102,120,34,44,91,93,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,33,48,44,116,61,110,117,108,108,33,61,105,38,38,105,43,34,113,117,101,117,101,72,111,111,107,115,34,44,110,61,107,46,116,105,109,101,114,115,44,114,61,81,46,103,101,116,40,116,104,105,115,41,59,105,102,40,116,41,114,91,116,93,38,38,114,91,116,93,46,115,116,111,112,38,38,97,40,114,91,116,93,41,59,101,108,115,101,32,102,111,114,40,116,32,105,110,32,114,41,114,91,116,93,38,38,114,91,116,93,46,115,116,111,112,38,38,117,116,46,116,101,115,116,40,116,41,38,38,97,40,114,91,116,93,41,59,102,111,114,40,116,61,110,46,108,101,110,103,116,104,59,116,45,45,59,41,110,91,116,93,46,101,108,101,109,33,61,61,116,104,105,115,124,124,110,117,108,108,33,61,105,38,38,110,91,116,93,46,113,117,101,117,101,33,61,61,105,124,124,40,110,91,116,93,46,97,110,105,109,46,115,116,111,112,40,111,41,44,101,61,33,49,44,110,46,115,112,108,105,99,101,40,116,44,49,41,41,59,33,101,38,38,111,124,124,107,46,100,101,113,117,101,117,101,40,116,104,105,115,44,105,41,125,41,125,44,102,105,110,105,115,104,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,33,49,33,61,61,97,38,38,40,97,61,97,124,124,34,102,120,34,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,61,81,46,103,101,116,40,116,104,105,115,41,44,110,61,116,91,97,43,34,113,117,101,117,101,34,93,44,114,61,116,91,97,43,34,113,117,101,117,101,72,111,111,107,115,34,93,44,105,61,107,46,116,105,109,101,114,115,44,111,61,110,63,110,46,108,101,110,103,116,104,58,48,59,102,111,114,40,116,46,102,105,110,105,115,104,61,33,48,44,107,46,113,117,101,117,101,40,116,104,105,115,44,97,44,91,93,41,44,114,38,38,114,46,115,116,111,112,38,38,114,46,115,116,111,112,46,99,97,108,108,40,116,104,105,115,44,33,48,41,44,101,61,105,46,108,101,110,103,116,104,59,101,45,45,59,41,105,91,101,93,46,101,108,101,109,61,61,61,116,104,105,115,38,38,105,91,101,93,46,113,117,101,117,101,61,61,61,97,38,38,40,105,91,101,93,46,97,110,105,109,46,115,116,111,112,40,33,48,41,44,105,46,115,112,108,105,99,101,40,101,44,49,41,41,59,102,111,114,40,101,61,48,59,101,60,111,59,101,43,43,41,110,91,101,93,38,38,110,91,101,93,46,102,105,110,105,115,104,38,38,110,91,101,93,46,102,105,110,105,115,104,46,99,97,108,108,40,116,104,105,115,41,59,100,101,108,101,116,101,32,116,46,102,105,110,105,115,104,125,41,125,125,41,44,107,46,101,97,99,104,40,91,34,116,111,103,103,108,101,34,44,34,115,104,111,119,34,44,34,104,105,100,101,34,93,44,102,117,110,99,116,105,111,110,40,101,44,114,41,123,118,97,114,32,105,61,107,46,102,110,91,114,93,59,107,46,102,110,91,114,93,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,124,124,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,101,63,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,116,104,105,115,46,97,110,105,109,97,116,101,40,102,116,40,114,44,33,48,41,44,101,44,116,44,110,41,125,125,41,44,107,46,101,97,99,104,40,123,115,108,105,100,101,68,111,119,110,58,102,116,40,34,115,104,111,119,34,41,44,115,108,105,100,101,85,112,58,102,116,40,34,104,105,100,101,34,41,44,115,108,105,100,101,84,111,103,103,108,101,58,102,116,40,34,116,111,103,103,108,101,34,41,44,102,97,100,101,73,110,58,123,111,112,97,99,105,116,121,58,34,115,104,111,119,34,125,44,102,97,100,101,79,117,116,58,123,111,112,97,99,105,116,121,58,34,104,105,100,101,34,125,44,102,97,100,101,84,111,103,103,108,101,58,123,111,112,97,99,105,116,121,58,34,116,111,103,103,108,101,34,125,125,44,102,117,110,99,116,105,111,110,40,101,44,114,41,123,107,46,102,110,91,101,93,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,110,105,109,97,116,101,40,114,44,101,44,116,44,110,41,125,125,41,44,107,46,116,105,109,101,114,115,61,91,93,44,107,46,102,120,46,116,105,99,107,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,61,48,44,110,61,107,46,116,105,109,101,114,115,59,102,111,114,40,114,116,61,68,97,116,101,46,110,111,119,40,41,59,116,60,110,46,108,101,110,103,116,104,59,116,43,43,41,40,101,61,110,91,116,93,41,40,41,124,124,110,91,116,93,33,61,61,101,124,124,110,46,115,112,108,105,99,101,40,116,45,45,44,49,41,59,110,46,108,101,110,103,116,104,124,124,107,46,102,120,46,115,116,111,112,40,41,44,114,116,61,118,111,105,100,32,48,125,44,107,46,102,120,46,116,105,109,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,107,46,116,105,109,101,114,115,46,112,117,115,104,40,101,41,44,107,46,102,120,46,115,116,97,114,116,40,41,125,44,107,46,102,120,46,105,110,116,101,114,118,97,108,61,49,51,44,107,46,102,120,46,115,116,97,114,116,61,102,117,110,99,116,105,111,110,40,41,123,105,116,124,124,40,105,116,61,33,48,44,108,116,40,41,41,125,44,107,46,102,120,46,115,116,111,112,61,102,117,110,99,116,105,111,110,40,41,123,105,116,61,110,117,108,108,125,44,107,46,102,120,46,115,112,101,101,100,115,61,123,115,108,111,119,58,54,48,48,44,102,97,115,116,58,50,48,48,44,95,100,101,102,97,117,108,116,58,52,48,48,125,44,107,46,102,110,46,100,101,108,97,121,61,102,117,110,99,116,105,111,110,40,114,44,101,41,123,114,101,116,117,114,110,32,114,61,107,46,102,120,38,38,107,46,102,120,46,115,112,101,101,100,115,91,114,93,124,124,114,44,101,61,101,124,124,34,102,120,34,44,116,104,105,115,46,113,117,101,117,101,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,67,46,115,101,116,84,105,109,101,111,117,116,40,101,44,114,41,59,116,46,115,116,111,112,61,102,117,110,99,116,105,111,110,40,41,123,67,46,99,108,101,97,114,84,105,109,101,111,117,116,40,110,41,125,125,41,125,44,111,116,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,110,112,117,116,34,41,44,97,116,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,101,108,101,99,116,34,41,46,97,112,112,101,110,100,67,104,105,108,100,40,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,111,112,116,105,111,110,34,41,41,44,111,116,46,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,44,121,46,99,104,101,99,107,79,110,61,34,34,33,61,61,111,116,46,118,97,108,117,101,44,121,46,111,112,116,83,101,108,101,99,116,101,100,61,97,116,46,115,101,108,101,99,116,101,100,44,40,111,116,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,110,112,117,116,34,41,41,46,118,97,108,117,101,61,34,116,34,44,111,116,46,116,121,112,101,61,34,114,97,100,105,111,34,44,121,46,114,97,100,105,111,86,97,108,117,101,61,34,116,34,61,61,61,111,116,46,118,97,108,117,101,59,118,97,114,32,104,116,44,103,116,61,107,46,101,120,112,114,46,97,116,116,114,72,97,110,100,108,101,59,107,46,102,110,46,101,120,116,101,110,100,40,123,97,116,116,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,107,46,97,116,116,114,44,101,44,116,44,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,44,114,101,109,111,118,101,65,116,116,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,114,101,109,111,118,101,65,116,116,114,40,116,104,105,115,44,101,41,125,41,125,125,41,44,107,46,101,120,116,101,110,100,40,123,97,116,116,114,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,101,46,110,111,100,101,84,121,112,101,59,105,102,40,51,33,61,61,111,38,38,56,33,61,61,111,38,38,50,33,61,61,111,41,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,63,107,46,112,114,111,112,40,101,44,116,44,110,41,58,40,49,61,61,61,111,38,38,107,46,105,115,88,77,76,68,111,99,40,101,41,124,124,40,105,61,107,46,97,116,116,114,72,111,111,107,115,91,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,124,124,40,107,46,101,120,112,114,46,109,97,116,99,104,46,98,111,111,108,46,116,101,115,116,40,116,41,63,104,116,58,118,111,105,100,32,48,41,41,44,118,111,105,100,32,48,33,61,61,110,63,110,117,108,108,61,61,61,110,63,118,111,105,100,32,107,46,114,101,109,111,118,101,65,116,116,114,40,101,44,116,41,58,105,38,38,34,115,101,116,34,105,110,32,105,38,38,118,111,105,100,32,48,33,61,61,40,114,61,105,46,115,101,116,40,101,44,110,44,116,41,41,63,114,58,40,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,116,44,110,43,34,34,41,44,110,41,58,105,38,38,34,103,101,116,34,105,110,32,105,38,38,110,117,108,108,33,61,61,40,114,61,105,46,103,101,116,40,101,44,116,41,41,63,114,58,110,117,108,108,61,61,40,114,61,107,46,102,105,110,100,46,97,116,116,114,40,101,44,116,41,41,63,118,111,105,100,32,48,58,114,41,125,44,97,116,116,114,72,111,111,107,115,58,123,116,121,112,101,58,123,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,121,46,114,97,100,105,111,86,97,108,117,101,38,38,34,114,97,100,105,111,34,61,61,61,116,38,38,65,40,101,44,34,105,110,112,117,116,34,41,41,123,118,97,114,32,110,61,101,46,118,97,108,117,101,59,114,101,116,117,114,110,32,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,116,41,44,110,38,38,40,101,46,118,97,108,117,101,61,110,41,44,116,125,125,125,125,44,114,101,109,111,118,101,65,116,116,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,48,44,105,61,116,38,38,116,46,109,97,116,99,104,40,82,41,59,105,102,40,105,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,41,119,104,105,108,101,40,110,61,105,91,114,43,43,93,41,101,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,110,41,125,125,41,44,104,116,61,123,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,33,49,61,61,61,116,63,107,46,114,101,109,111,118,101,65,116,116,114,40,101,44,110,41,58,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,110,44,110,41,44,110,125,125,44,107,46,101,97,99,104,40,107,46,101,120,112,114,46,109,97,116,99,104,46,98,111,111,108,46,115,111,117,114,99,101,46,109,97,116,99,104,40,47,92,119,43,47,103,41,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,97,61,103,116,91,116,93,124,124,107,46,102,105,110,100,46,97,116,116,114,59,103,116,91,116,93,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,32,110,124,124,40,105,61,103,116,91,111,93,44,103,116,91,111,93,61,114,44,114,61,110,117,108,108,33,61,97,40,101,44,116,44,110,41,63,111,58,110,117,108,108,44,103,116,91,111,93,61,105,41,44,114,125,125,41,59,118,97,114,32,118,116,61,47,94,40,63,58,105,110,112,117,116,124,115,101,108,101,99,116,124,116,101,120,116,97,114,101,97,124,98,117,116,116,111,110,41,36,47,105,44,121,116,61,47,94,40,63,58,97,124,97,114,101,97,41,36,47,105,59,102,117,110,99,116,105,111,110,32,109,116,40,101,41,123,114,101,116,117,114,110,40,101,46,109,97,116,99,104,40,82,41,124,124,91,93,41,46,106,111,105,110,40,34,32,34,41,125,102,117,110,99,116,105,111,110,32,120,116,40,101,41,123,114,101,116,117,114,110,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,38,38,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,41,124,124,34,34,125,102,117,110,99,116,105,111,110,32,98,116,40,101,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,63,101,58,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,101,46,109,97,116,99,104,40,82,41,124,124,91,93,125,107,46,102,110,46,101,120,116,101,110,100,40,123,112,114,111,112,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,107,46,112,114,111,112,44,101,44,116,44,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,44,114,101,109,111,118,101,80,114,111,112,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,100,101,108,101,116,101,32,116,104,105,115,91,107,46,112,114,111,112,70,105,120,91,101,93,124,124,101,93,125,41,125,125,41,44,107,46,101,120,116,101,110,100,40,123,112,114,111,112,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,101,46,110,111,100,101,84,121,112,101,59,105,102,40,51,33,61,61,111,38,38,56,33,61,61,111,38,38,50,33,61,61,111,41,114,101,116,117,114,110,32,49,61,61,61,111,38,38,107,46,105,115,88,77,76,68,111,99,40,101,41,124,124,40,116,61,107,46,112,114,111,112,70,105,120,91,116,93,124,124,116,44,105,61,107,46,112,114,111,112,72,111,111,107,115,91,116,93,41,44,118,111,105,100,32,48,33,61,61,110,63,105,38,38,34,115,101,116,34,105,110,32,105,38,38,118,111,105,100,32,48,33,61,61,40,114,61,105,46,115,101,116,40,101,44,110,44,116,41,41,63,114,58,101,91,116,93,61,110,58,105,38,38,34,103,101,116,34,105,110,32,105,38,38,110,117,108,108,33,61,61,40,114,61,105,46,103,101,116,40,101,44,116,41,41,63,114,58,101,91,116,93,125,44,112,114,111,112,72,111,111,107,115,58,123,116,97,98,73,110,100,101,120,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,46,102,105,110,100,46,97,116,116,114,40,101,44,34,116,97,98,105,110,100,101,120,34,41,59,114,101,116,117,114,110,32,116,63,112,97,114,115,101,73,110,116,40,116,44,49,48,41,58,118,116,46,116,101,115,116,40,101,46,110,111,100,101,78,97,109,101,41,124,124,121,116,46,116,101,115,116,40,101,46,110,111,100,101,78,97,109,101,41,38,38,101,46,104,114,101,102,63,48,58,45,49,125,125,125,44,112,114,111,112,70,105,120,58,123,34,102,111,114,34,58,34,104,116,109,108,70,111,114,34,44,34,99,108,97,115,115,34,58,34,99,108,97,115,115,78,97,109,101,34,125,125,41,44,121,46,111,112,116,83,101,108,101,99,116,101,100,124,124,40,107,46,112,114,111,112,72,111,111,107,115,46,115,101,108,101,99,116,101,100,61,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,97,114,101,110,116,78,111,100,101,59,114,101,116,117,114,110,32,116,38,38,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,46,112,97,114,101,110,116,78,111,100,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,44,110,117,108,108,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,97,114,101,110,116,78,111,100,101,59,116,38,38,40,116,46,115,101,108,101,99,116,101,100,73,110,100,101,120,44,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,46,112,97,114,101,110,116,78,111,100,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,41,125,125,41,44,107,46,101,97,99,104,40,91,34,116,97,98,73,110,100,101,120,34,44,34,114,101,97,100,79,110,108,121,34,44,34,109,97,120,76,101,110,103,116,104,34,44,34,99,101,108,108,83,112,97,99,105,110,103,34,44,34,99,101,108,108,80,97,100,100,105,110,103,34,44,34,114,111,119,83,112,97,110,34,44,34,99,111,108,83,112,97,110,34,44,34,117,115,101,77,97,112,34,44,34,102,114,97,109,101,66,111,114,100,101,114,34,44,34,99,111,110,116,101,110,116,69,100,105,116,97,98,108,101,34,93,44,102,117,110,99,116,105,111,110,40,41,123,107,46,112,114,111,112,70,105,120,91,116,104,105,115,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,61,116,104,105,115,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,97,100,100,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,114,44,105,44,111,44,97,44,115,44,117,61,48,59,105,102,40,109,40,116,41,41,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,97,100,100,67,108,97,115,115,40,116,46,99,97,108,108,40,116,104,105,115,44,101,44,120,116,40,116,104,105,115,41,41,41,125,41,59,105,102,40,40,101,61,98,116,40,116,41,41,46,108,101,110,103,116,104,41,119,104,105,108,101,40,110,61,116,104,105,115,91,117,43,43,93,41,105,102,40,105,61,120,116,40,110,41,44,114,61,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,34,32,34,43,109,116,40,105,41,43,34,32,34,41,123,97,61,48,59,119,104,105,108,101,40,111,61,101,91,97,43,43,93,41,114,46,105,110,100,101,120,79,102,40,34,32,34,43,111,43,34,32,34,41,60,48,38,38,40,114,43,61,111,43,34,32,34,41,59,105,33,61,61,40,115,61,109,116,40,114,41,41,38,38,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,115,41,125,114,101,116,117,114,110,32,116,104,105,115,125,44,114,101,109,111,118,101,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,114,44,105,44,111,44,97,44,115,44,117,61,48,59,105,102,40,109,40,116,41,41,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,114,101,109,111,118,101,67,108,97,115,115,40,116,46,99,97,108,108,40,116,104,105,115,44,101,44,120,116,40,116,104,105,115,41,41,41,125,41,59,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,116,104,105,115,46,97,116,116,114,40,34,99,108,97,115,115,34,44,34,34,41,59,105,102,40,40,101,61,98,116,40,116,41,41,46,108,101,110,103,116,104,41,119,104,105,108,101,40,110,61,116,104,105,115,91,117,43,43,93,41,105,102,40,105,61,120,116,40,110,41,44,114,61,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,34,32,34,43,109,116,40,105,41,43,34,32,34,41,123,97,61,48,59,119,104,105,108,101,40,111,61,101,91,97,43,43,93,41,119,104,105,108,101,40,45,49,60,114,46,105,110,100,101,120,79,102,40,34,32,34,43,111,43,34,32,34,41,41,114,61,114,46,114,101,112,108,97,99,101,40,34,32,34,43,111,43,34,32,34,44,34,32,34,41,59,105,33,61,61,40,115,61,109,116,40,114,41,41,38,38,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,115,41,125,114,101,116,117,114,110,32,116,104,105,115,125,44,116,111,103,103,108,101,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,105,44,116,41,123,118,97,114,32,111,61,116,121,112,101,111,102,32,105,44,97,61,34,115,116,114,105,110,103,34,61,61,61,111,124,124,65,114,114,97,121,46,105,115,65,114,114,97,121,40,105,41,59,114,101,116,117,114,110,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,116,38,38,97,63,116,63,116,104,105,115,46,97,100,100,67,108,97,115,115,40,105,41,58,116,104,105,115,46,114,101,109,111,118,101,67,108,97,115,115,40,105,41,58,109,40,105,41,63,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,116,111,103,103,108,101,67,108,97,115,115,40,105,46,99,97,108,108,40,116,104,105,115,44,101,44,120,116,40,116,104,105,115,41,44,116,41,44,116,41,125,41,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,44,110,44,114,59,105,102,40,97,41,123,116,61,48,44,110,61,107,40,116,104,105,115,41,44,114,61,98,116,40,105,41,59,119,104,105,108,101,40,101,61,114,91,116,43,43,93,41,110,46,104,97,115,67,108,97,115,115,40,101,41,63,110,46,114,101,109,111,118,101,67,108,97,115,115,40,101,41,58,110,46,97,100,100,67,108,97,115,115,40,101,41,125,101,108,115,101,32,118,111,105,100,32,48,33,61,61,105,38,38,34,98,111,111,108,101,97,110,34,33,61,61,111,124,124,40,40,101,61,120,116,40,116,104,105,115,41,41,38,38,81,46,115,101,116,40,116,104,105,115,44,34,95,95,99,108,97,115,115,78,97,109,101,95,95,34,44,101,41,44,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,38,38,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,101,124,124,33,49,61,61,61,105,63,34,34,58,81,46,103,101,116,40,116,104,105,115,44,34,95,95,99,108,97,115,115,78,97,109,101,95,95,34,41,124,124,34,34,41,41,125,41,125,44,104,97,115,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,61,48,59,116,61,34,32,34,43,101,43,34,32,34,59,119,104,105,108,101,40,110,61,116,104,105,115,91,114,43,43,93,41,105,102,40,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,45,49,60,40,34,32,34,43,109,116,40,120,116,40,110,41,41,43,34,32,34,41,46,105,110,100,101,120,79,102,40,116,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,125,41,59,118,97,114,32,119,116,61,47,92,114,47,103,59,107,46,102,110,46,101,120,116,101,110,100,40,123,118,97,108,58,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,44,101,44,105,44,116,61,116,104,105,115,91,48,93,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,109,40,110,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,49,61,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,40,110,117,108,108,61,61,40,116,61,105,63,110,46,99,97,108,108,40,116,104,105,115,44,101,44,107,40,116,104,105,115,41,46,118,97,108,40,41,41,58,110,41,63,116,61,34,34,58,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,63,116,43,61,34,34,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,38,38,40,116,61,107,46,109,97,112,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,63,34,34,58,101,43,34,34,125,41,41,44,40,114,61,107,46,118,97,108,72,111,111,107,115,91,116,104,105,115,46,116,121,112,101,93,124,124,107,46,118,97,108,72,111,111,107,115,91,116,104,105,115,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,41,38,38,34,115,101,116,34,105,110,32,114,38,38,118,111,105,100,32,48,33,61,61,114,46,115,101,116,40,116,104,105,115,44,116,44,34,118,97,108,117,101,34,41,124,124,40,116,104,105,115,46,118,97,108,117,101,61,116,41,41,125,41,41,58,116,63,40,114,61,107,46,118,97,108,72,111,111,107,115,91,116,46,116,121,112,101,93,124,124,107,46,118,97,108,72,111,111,107,115,91,116,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,41,38,38,34,103,101,116,34,105,110,32,114,38,38,118,111,105,100,32,48,33,61,61,40,101,61,114,46,103,101,116,40,116,44,34,118,97,108,117,101,34,41,41,63,101,58,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,40,101,61,116,46,118,97,108,117,101,41,63,101,46,114,101,112,108,97,99,101,40,119,116,44,34,34,41,58,110,117,108,108,61,61,101,63,34,34,58,101,58,118,111,105,100,32,48,125,125,41,44,107,46,101,120,116,101,110,100,40,123,118,97,108,72,111,111,107,115,58,123,111,112,116,105,111,110,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,46,102,105,110,100,46,97,116,116,114,40,101,44,34,118,97,108,117,101,34,41,59,114,101,116,117,114,110,32,110,117,108,108,33,61,116,63,116,58,109,116,40,107,46,116,101,120,116,40,101,41,41,125,125,44,115,101,108,101,99,116,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,44,105,61,101,46,111,112,116,105,111,110,115,44,111,61,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,44,97,61,34,115,101,108,101,99,116,45,111,110,101,34,61,61,61,101,46,116,121,112,101,44,115,61,97,63,110,117,108,108,58,91,93,44,117,61,97,63,111,43,49,58,105,46,108,101,110,103,116,104,59,102,111,114,40,114,61,111,60,48,63,117,58,97,63,111,58,48,59,114,60,117,59,114,43,43,41,105,102,40,40,40,110,61,105,91,114,93,41,46,115,101,108,101,99,116,101,100,124,124,114,61,61,61,111,41,38,38,33,110,46,100,105,115,97,98,108,101,100,38,38,40,33,110,46,112,97,114,101,110,116,78,111,100,101,46,100,105,115,97,98,108,101,100,124,124,33,65,40,110,46,112,97,114,101,110,116,78,111,100,101,44,34,111,112,116,103,114,111,117,112,34,41,41,41,123,105,102,40,116,61,107,40,110,41,46,118,97,108,40,41,44,97,41,114,101,116,117,114,110,32,116,59,115,46,112,117,115,104,40,116,41,125,114,101,116,117,114,110,32,115,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,61,101,46,111,112,116,105,111,110,115,44,111,61,107,46,109,97,107,101,65,114,114,97,121,40,116,41,44,97,61,105,46,108,101,110,103,116,104,59,119,104,105,108,101,40,97,45,45,41,40,40,114,61,105,91,97,93,41,46,115,101,108,101,99,116,101,100,61,45,49,60,107,46,105,110,65,114,114,97,121,40,107,46,118,97,108,72,111,111,107,115,46,111,112,116,105,111,110,46,103,101,116,40,114,41,44,111,41,41,38,38,40,110,61,33,48,41,59,114,101,116,117,114,110,32,110,124,124,40,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,61,45,49,41,44,111,125,125,125,125,41,44,107,46,101,97,99,104,40,91,34,114,97,100,105,111,34,44,34,99,104,101,99,107,98,111,120,34,93,44,102,117,110,99,116,105,111,110,40,41,123,107,46,118,97,108,72,111,111,107,115,91,116,104,105,115,93,61,123,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,114,101,116,117,114,110,32,101,46,99,104,101,99,107,101,100,61,45,49,60,107,46,105,110,65,114,114,97,121,40,107,40,101,41,46,118,97,108,40,41,44,116,41,125,125,44,121,46,99,104,101,99,107,79,110,124,124,40,107,46,118,97,108,72,111,111,107,115,91,116,104,105,115,93,46,103,101,116,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,118,97,108,117,101,34,41,63,34,111,110,34,58,101,46,118,97,108,117,101,125,41,125,41,44,121,46,102,111,99,117,115,105,110,61,34,111,110,102,111,99,117,115,105,110,34,105,110,32,67,59,118,97,114,32,84,116,61,47,94,40,63,58,102,111,99,117,115,105,110,102,111,99,117,115,124,102,111,99,117,115,111,117,116,98,108,117,114,41,36,47,44,67,116,61,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,59,107,46,101,120,116,101,110,100,40,107,46,101,118,101,110,116,44,123,116,114,105,103,103,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,44,99,44,102,44,112,61,91,110,124,124,69,93,44,100,61,118,46,99,97,108,108,40,101,44,34,116,121,112,101,34,41,63,101,46,116,121,112,101,58,101,44,104,61,118,46,99,97,108,108,40,101,44,34,110,97,109,101,115,112,97,99,101,34,41,63,101,46,110,97,109,101,115,112,97,99,101,46,115,112,108,105,116,40,34,46,34,41,58,91,93,59,105,102,40,111,61,102,61,97,61,110,61,110,124,124,69,44,51,33,61,61,110,46,110,111,100,101,84,121,112,101,38,38,56,33,61,61,110,46,110,111,100,101,84,121,112,101,38,38,33,84,116,46,116,101,115,116,40,100,43,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,101,100,41,38,38,40,45,49,60,100,46,105,110,100,101,120,79,102,40,34,46,34,41,38,38,40,100,61,40,104,61,100,46,115,112,108,105,116,40,34,46,34,41,41,46,115,104,105,102,116,40,41,44,104,46,115,111,114,116,40,41,41,44,117,61,100,46,105,110,100,101,120,79,102,40,34,58,34,41,60,48,38,38,34,111,110,34,43,100,44,40,101,61,101,91,107,46,101,120,112,97,110,100,111,93,63,101,58,110,101,119,32,107,46,69,118,101,110,116,40,100,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,101,41,41,46,105,115,84,114,105,103,103,101,114,61,114,63,50,58,51,44,101,46,110,97,109,101,115,112,97,99,101,61,104,46,106,111,105,110,40,34,46,34,41,44,101,46,114,110,97,109,101,115,112,97,99,101,61,101,46,110,97,109,101,115,112,97,99,101,63,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,92,92,46,41,34,43,104,46,106,111,105,110,40,34,92,92,46,40,63,58,46,42,92,92,46,124,41,34,41,43,34,40,92,92,46,124,36,41,34,41,58,110,117,108,108,44,101,46,114,101,115,117,108,116,61,118,111,105,100,32,48,44,101,46,116,97,114,103,101,116,124,124,40,101,46,116,97,114,103,101,116,61,110,41,44,116,61,110,117,108,108,61,61,116,63,91,101,93,58,107,46,109,97,107,101,65,114,114,97,121,40,116,44,91,101,93,41,44,99,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,100,93,124,124,123,125,44,114,124,124,33,99,46,116,114,105,103,103,101,114,124,124,33,49,33,61,61,99,46,116,114,105,103,103,101,114,46,97,112,112,108,121,40,110,44,116,41,41,41,123,105,102,40,33,114,38,38,33,99,46,110,111,66,117,98,98,108,101,38,38,33,120,40,110,41,41,123,102,111,114,40,115,61,99,46,100,101,108,101,103,97,116,101,84,121,112,101,124,124,100,44,84,116,46,116,101,115,116,40,115,43,100,41,124,124,40,111,61,111,46,112,97,114,101,110,116,78,111,100,101,41,59,111,59,111,61,111,46,112,97,114,101,110,116,78,111,100,101,41,112,46,112,117,115,104,40,111,41,44,97,61,111,59,97,61,61,61,40,110,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,69,41,38,38,112,46,112,117,115,104,40,97,46,100,101,102,97,117,108,116,86,105,101,119,124,124,97,46,112,97,114,101,110,116,87,105,110,100,111,119,124,124,67,41,125,105,61,48,59,119,104,105,108,101,40,40,111,61,112,91,105,43,43,93,41,38,38,33,101,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,41,102,61,111,44,101,46,116,121,112,101,61,49,60,105,63,115,58,99,46,98,105,110,100,84,121,112,101,124,124,100,44,40,108,61,40,81,46,103,101,116,40,111,44,34,101,118,101,110,116,115,34,41,124,124,123,125,41,91,101,46,116,121,112,101,93,38,38,81,46,103,101,116,40,111,44,34,104,97,110,100,108,101,34,41,41,38,38,108,46,97,112,112,108,121,40,111,44,116,41,44,40,108,61,117,38,38,111,91,117,93,41,38,38,108,46,97,112,112,108,121,38,38,71,40,111,41,38,38,40,101,46,114,101,115,117,108,116,61,108,46,97,112,112,108,121,40,111,44,116,41,44,33,49,61,61,61,101,46,114,101,115,117,108,116,38,38,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,41,59,114,101,116,117,114,110,32,101,46,116,121,112,101,61,100,44,114,124,124,101,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,99,46,95,100,101,102,97,117,108,116,38,38,33,49,33,61,61,99,46,95,100,101,102,97,117,108,116,46,97,112,112,108,121,40,112,46,112,111,112,40,41,44,116,41,124,124,33,71,40,110,41,124,124,117,38,38,109,40,110,91,100,93,41,38,38,33,120,40,110,41,38,38,40,40,97,61,110,91,117,93,41,38,38,40,110,91,117,93,61,110,117,108,108,41,44,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,101,100,61,100,44,101,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,38,38,102,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,100,44,67,116,41,44,110,91,100,93,40,41,44,101,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,38,38,102,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,100,44,67,116,41,44,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,101,100,61,118,111,105,100,32,48,44,97,38,38,40,110,91,117,93,61,97,41,41,44,101,46,114,101,115,117,108,116,125,125,44,115,105,109,117,108,97,116,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,107,46,101,120,116,101,110,100,40,110,101,119,32,107,46,69,118,101,110,116,44,110,44,123,116,121,112,101,58,101,44,105,115,83,105,109,117,108,97,116,101,100,58,33,48,125,41,59,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,114,44,110,117,108,108,44,116,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,116,114,105,103,103,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,101,44,116,44,116,104,105,115,41,125,41,125,44,116,114,105,103,103,101,114,72,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,91,48,93,59,105,102,40,110,41,114,101,116,117,114,110,32,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,101,44,116,44,110,44,33,48,41,125,125,41,44,121,46,102,111,99,117,115,105,110,124,124,107,46,101,97,99,104,40,123,102,111,99,117,115,58,34,102,111,99,117,115,105,110,34,44,98,108,117,114,58,34,102,111,99,117,115,111,117,116,34,125,44,102,117,110,99,116,105,111,110,40,110,44,114,41,123,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,101,41,123,107,46,101,118,101,110,116,46,115,105,109,117,108,97,116,101,40,114,44,101,46,116,97,114,103,101,116,44,107,46,101,118,101,110,116,46,102,105,120,40,101,41,41,125,59,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,114,93,61,123,115,101,116,117,112,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,116,104,105,115,44,116,61,81,46,97,99,99,101,115,115,40,101,44,114,41,59,116,124,124,101,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,110,44,105,44,33,48,41,44,81,46,97,99,99,101,115,115,40,101,44,114,44,40,116,124,124,48,41,43,49,41,125,44,116,101,97,114,100,111,119,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,116,104,105,115,44,116,61,81,46,97,99,99,101,115,115,40,101,44,114,41,45,49,59,116,63,81,46,97,99,99,101,115,115,40,101,44,114,44,116,41,58,40,101,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,110,44,105,44,33,48,41,44,81,46,114,101,109,111,118,101,40,101,44,114,41,41,125,125,125,41,59,118,97,114,32,69,116,61,67,46,108,111,99,97,116,105,111,110,44,107,116,61,68,97,116,101,46,110,111,119,40,41,44,83,116,61,47,92,63,47,59,107,46,112,97,114,115,101,88,77,76,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,105,102,40,33,101,124,124,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,110,117,108,108,59,116,114,121,123,116,61,40,110,101,119,32,67,46,68,79,77,80,97,114,115,101,114,41,46,112,97,114,115,101,70,114,111,109,83,116,114,105,110,103,40,101,44,34,116,101,120,116,47,120,109,108,34,41,125,99,97,116,99,104,40,101,41,123,116,61,118,111,105,100,32,48,125,114,101,116,117,114,110,32,116,38,38,33,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,34,112,97,114,115,101,114,101,114,114,111,114,34,41,46,108,101,110,103,116,104,124,124,107,46,101,114,114,111,114,40,34,73,110,118,97,108,105,100,32,88,77,76,58,32,34,43,101,41,44,116,125,59,118,97,114,32,78,116,61,47,92,91,92,93,36,47,44,65,116,61,47,92,114,63,92,110,47,103,44,68,116,61,47,94,40,63,58,115,117,98,109,105,116,124,98,117,116,116,111,110,124,105,109,97,103,101,124,114,101,115,101,116,124,102,105,108,101,41,36,47,105,44,106,116,61,47,94,40,63,58,105,110,112,117,116,124,115,101,108,101,99,116,124,116,101,120,116,97,114,101,97,124,107,101,121,103,101,110,41,47,105,59,102,117,110,99,116,105,111,110,32,113,116,40,110,44,101,44,114,44,105,41,123,118,97,114,32,116,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,41,107,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,124,124,78,116,46,116,101,115,116,40,110,41,63,105,40,110,44,116,41,58,113,116,40,110,43,34,91,34,43,40,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,110,117,108,108,33,61,116,63,101,58,34,34,41,43,34,93,34,44,116,44,114,44,105,41,125,41,59,101,108,115,101,32,105,102,40,114,124,124,34,111,98,106,101,99,116,34,33,61,61,119,40,101,41,41,105,40,110,44,101,41,59,101,108,115,101,32,102,111,114,40,116,32,105,110,32,101,41,113,116,40,110,43,34,91,34,43,116,43,34,93,34,44,101,91,116,93,44,114,44,105,41,125,107,46,112,97,114,97,109,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,91,93,44,105,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,109,40,116,41,63,116,40,41,58,116,59,114,91,114,46,108,101,110,103,116,104,93,61,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,101,41,43,34,61,34,43,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,110,117,108,108,61,61,110,63,34,34,58,110,41,125,59,105,102,40,110,117,108,108,61,61,101,41,114,101,116,117,114,110,34,34,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,124,124,101,46,106,113,117,101,114,121,38,38,33,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,101,41,41,107,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,41,123,105,40,116,104,105,115,46,110,97,109,101,44,116,104,105,115,46,118,97,108,117,101,41,125,41,59,101,108,115,101,32,102,111,114,40,110,32,105,110,32,101,41,113,116,40,110,44,101,91,110,93,44,116,44,105,41,59,114,101,116,117,114,110,32,114,46,106,111,105,110,40,34,38,34,41,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,115,101,114,105,97,108,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,46,112,97,114,97,109,40,116,104,105,115,46,115,101,114,105,97,108,105,122,101,65,114,114,97,121,40,41,41,125,44,115,101,114,105,97,108,105,122,101,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,107,46,112,114,111,112,40,116,104,105,115,44,34,101,108,101,109,101,110,116,115,34,41,59,114,101,116,117,114,110,32,101,63,107,46,109,97,107,101,65,114,114,97,121,40,101,41,58,116,104,105,115,125,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,116,121,112,101,59,114,101,116,117,114,110,32,116,104,105,115,46,110,97,109,101,38,38,33,107,40,116,104,105,115,41,46,105,115,40,34,58,100,105,115,97,98,108,101,100,34,41,38,38,106,116,46,116,101,115,116,40,116,104,105,115,46,110,111,100,101,78,97,109,101,41,38,38,33,68,116,46,116,101,115,116,40,101,41,38,38,40,116,104,105,115,46,99,104,101,99,107,101,100,124,124,33,112,101,46,116,101,115,116,40,101,41,41,125,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,107,40,116,104,105,115,41,46,118,97,108,40,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,117,108,108,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,63,107,46,109,97,112,40,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,123,110,97,109,101,58,116,46,110,97,109,101,44,118,97,108,117,101,58,101,46,114,101,112,108,97,99,101,40,65,116,44,34,92,114,92,110,34,41,125,125,41,58,123,110,97,109,101,58,116,46,110,97,109,101,44,118,97,108,117,101,58,110,46,114,101,112,108,97,99,101,40,65,116,44,34,92,114,92,110,34,41,125,125,41,46,103,101,116,40,41,125,125,41,59,118,97,114,32,76,116,61,47,37,50,48,47,103,44,72,116,61,47,35,46,42,36,47,44,79,116,61,47,40,91,63,38,93,41,95,61,91,94,38,93,42,47,44,80,116,61,47,94,40,46,42,63,41,58,91,32,92,116,93,42,40,91,94,92,114,92,110,93,42,41,36,47,103,109,44,82,116,61,47,94,40,63,58,71,69,84,124,72,69,65,68,41,36,47,44,77,116,61,47,94,92,47,92,47,47,44,73,116,61,123,125,44,87,116,61,123,125,44,36,116,61,34,42,47,34,46,99,111,110,99,97,116,40,34,42,34,41,44,70,116,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,102,117,110,99,116,105,111,110,32,66,116,40,111,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,38,38,40,116,61,101,44,101,61,34,42,34,41,59,118,97,114,32,110,44,114,61,48,44,105,61,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,109,97,116,99,104,40,82,41,124,124,91,93,59,105,102,40,109,40,116,41,41,119,104,105,108,101,40,110,61,105,91,114,43,43,93,41,34,43,34,61,61,61,110,91,48,93,63,40,110,61,110,46,115,108,105,99,101,40,49,41,124,124,34,42,34,44,40,111,91,110,93,61,111,91,110,93,124,124,91,93,41,46,117,110,115,104,105,102,116,40,116,41,41,58,40,111,91,110,93,61,111,91,110,93,124,124,91,93,41,46,112,117,115,104,40,116,41,125,125,102,117,110,99,116,105,111,110,32,95,116,40,116,44,105,44,111,44,97,41,123,118,97,114,32,115,61,123,125,44,117,61,116,61,61,61,87,116,59,102,117,110,99,116,105,111,110,32,108,40,101,41,123,118,97,114,32,114,59,114,101,116,117,114,110,32,115,91,101,93,61,33,48,44,107,46,101,97,99,104,40,116,91,101,93,124,124,91,93,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,40,105,44,111,44,97,41,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,110,124,124,117,124,124,115,91,110,93,63,117,63,33,40,114,61,110,41,58,118,111,105,100,32,48,58,40,105,46,100,97,116,97,84,121,112,101,115,46,117,110,115,104,105,102,116,40,110,41,44,108,40,110,41,44,33,49,41,125,41,44,114,125,114,101,116,117,114,110,32,108,40,105,46,100,97,116,97,84,121,112,101,115,91,48,93,41,124,124,33,115,91,34,42,34,93,38,38,108,40,34,42,34,41,125,102,117,110,99,116,105,111,110,32,122,116,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,61,107,46,97,106,97,120,83,101,116,116,105,110,103,115,46,102,108,97,116,79,112,116,105,111,110,115,124,124,123,125,59,102,111,114,40,110,32,105,110,32,116,41,118,111,105,100,32,48,33,61,61,116,91,110,93,38,38,40,40,105,91,110,93,63,101,58,114,124,124,40,114,61,123,125,41,41,91,110,93,61,116,91,110,93,41,59,114,101,116,117,114,110,32,114,38,38,107,46,101,120,116,101,110,100,40,33,48,44,101,44,114,41,44,101,125,70,116,46,104,114,101,102,61,69,116,46,104,114,101,102,44,107,46,101,120,116,101,110,100,40,123,97,99,116,105,118,101,58,48,44,108,97,115,116,77,111,100,105,102,105,101,100,58,123,125,44,101,116,97,103,58,123,125,44,97,106,97,120,83,101,116,116,105,110,103,115,58,123,117,114,108,58,69,116,46,104,114,101,102,44,116,121,112,101,58,34,71,69,84,34,44,105,115,76,111,99,97,108,58,47,94,40,63,58,97,98,111,117,116,124,97,112,112,124,97,112,112,45,115,116,111,114,97,103,101,124,46,43,45,101,120,116,101,110,115,105,111,110,124,102,105,108,101,124,114,101,115,124,119,105,100,103,101,116,41,58,36,47,46,116,101,115,116,40,69,116,46,112,114,111,116,111,99,111,108,41,44,103,108,111,98,97,108,58,33,48,44,112,114,111,99,101,115,115,68,97,116,97,58,33,48,44,97,115,121,110,99,58,33,48,44,99,111,110,116,101,110,116,84,121,112,101,58,34,97,112,112,108,105,99,97,116,105,111,110,47,120,45,119,119,119,45,102,111,114,109,45,117,114,108,101,110,99,111,100,101,100,59,32,99,104,97,114,115,101,116,61,85,84,70,45,56,34,44,97,99,99,101,112,116,115,58,123,34,42,34,58,36,116,44,116,101,120,116,58,34,116,101,120,116,47,112,108,97,105,110,34,44,104,116,109,108,58,34,116,101,120,116,47,104,116,109,108,34,44,120,109,108,58,34,97,112,112,108,105,99,97,116,105,111,110,47,120,109,108,44,32,116,101,120,116,47,120,109,108,34,44,106,115,111,110,58,34,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,44,32,116,101,120,116,47,106,97,118,97,115,99,114,105,112,116,34,125,44,99,111,110,116,101,110,116,115,58,123,120,109,108,58,47,92,98,120,109,108,92,98,47,44,104,116,109,108,58,47,92,98,104,116,109,108,47,44,106,115,111,110,58,47,92,98,106,115,111,110,92,98,47,125,44,114,101,115,112,111,110,115,101,70,105,101,108,100,115,58,123,120,109,108,58,34,114,101,115,112,111,110,115,101,88,77,76,34,44,116,101,120,116,58,34,114,101,115,112,111,110,115,101,84,101,120,116,34,44,106,115,111,110,58,34,114,101,115,112,111,110,115,101,74,83,79,78,34,125,44,99,111,110,118,101,114,116,101,114,115,58,123,34,42,32,116,101,120,116,34,58,83,116,114,105,110,103,44,34,116,101,120,116,32,104,116,109,108,34,58,33,48,44,34,116,101,120,116,32,106,115,111,110,34,58,74,83,79,78,46,112,97,114,115,101,44,34,116,101,120,116,32,120,109,108,34,58,107,46,112,97,114,115,101,88,77,76,125,44,102,108,97,116,79,112,116,105,111,110,115,58,123,117,114,108,58,33,48,44,99,111,110,116,101,120,116,58,33,48,125,125,44,97,106,97,120,83,101,116,117,112,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,63,122,116,40,122,116,40,101,44,107,46,97,106,97,120,83,101,116,116,105,110,103,115,41,44,116,41,58,122,116,40,107,46,97,106,97,120,83,101,116,116,105,110,103,115,44,101,41,125,44,97,106,97,120,80,114,101,102,105,108,116,101,114,58,66,116,40,73,116,41,44,97,106,97,120,84,114,97,110,115,112,111,114,116,58,66,116,40,87,116,41,44,97,106,97,120,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,40,116,61,101,44,101,61,118,111,105,100,32,48,41,44,116,61,116,124,124,123,125,59,118,97,114,32,99,44,102,44,112,44,110,44,100,44,114,44,104,44,103,44,105,44,111,44,118,61,107,46,97,106,97,120,83,101,116,117,112,40,123,125,44,116,41,44,121,61,118,46,99,111,110,116,101,120,116,124,124,118,44,109,61,118,46,99,111,110,116,101,120,116,38,38,40,121,46,110,111,100,101,84,121,112,101,124,124,121,46,106,113,117,101,114,121,41,63,107,40,121,41,58,107,46,101,118,101,110,116,44,120,61,107,46,68,101,102,101,114,114,101,100,40,41,44,98,61,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,119,61,118,46,115,116,97,116,117,115,67,111,100,101,124,124,123,125,44,97,61,123,125,44,115,61,123,125,44,117,61,34,99,97,110,99,101,108,101,100,34,44,84,61,123,114,101,97,100,121,83,116,97,116,101,58,48,44,103,101,116,82,101,115,112,111,110,115,101,72,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,105,102,40,104,41,123,105,102,40,33,110,41,123,110,61,123,125,59,119,104,105,108,101,40,116,61,80,116,46,101,120,101,99,40,112,41,41,110,91,116,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,43,34,32,34,93,61,40,110,91,116,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,43,34,32,34,93,124,124,91,93,41,46,99,111,110,99,97,116,40,116,91,50,93,41,125,116,61,110,91,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,43,34,32,34,93,125,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,110,117,108,108,58,116,46,106,111,105,110,40,34,44,32,34,41,125,44,103,101,116,65,108,108,82,101,115,112,111,110,115,101,72,101,97,100,101,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,104,63,112,58,110,117,108,108,125,44,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,104,38,38,40,101,61,115,91,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,61,115,91,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,124,124,101,44,97,91,101,93,61,116,41,44,116,104,105,115,125,44,111,118,101,114,114,105,100,101,77,105,109,101,84,121,112,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,104,38,38,40,118,46,109,105,109,101,84,121,112,101,61,101,41,44,116,104,105,115,125,44,115,116,97,116,117,115,67,111,100,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,105,102,40,101,41,105,102,40,104,41,84,46,97,108,119,97,121,115,40,101,91,84,46,115,116,97,116,117,115,93,41,59,101,108,115,101,32,102,111,114,40,116,32,105,110,32,101,41,119,91,116,93,61,91,119,91,116,93,44,101,91,116,93,93,59,114,101,116,117,114,110,32,116,104,105,115,125,44,97,98,111,114,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,124,124,117,59,114,101,116,117,114,110,32,99,38,38,99,46,97,98,111,114,116,40,116,41,44,108,40,48,44,116,41,44,116,104,105,115,125,125,59,105,102,40,120,46,112,114,111,109,105,115,101,40,84,41,44,118,46,117,114,108,61,40,40,101,124,124,118,46,117,114,108,124,124,69,116,46,104,114,101,102,41,43,34,34,41,46,114,101,112,108,97,99,101,40,77,116,44,69,116,46,112,114,111,116,111,99,111,108,43,34,47,47,34,41,44,118,46,116,121,112,101,61,116,46,109,101,116,104,111,100,124,124,116,46,116,121,112,101,124,124,118,46,109,101,116,104,111,100,124,124,118,46,116,121,112,101,44,118,46,100,97,116,97,84,121,112,101,115,61,40,118,46,100,97,116,97,84,121,112,101,124,124,34,42,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,109,97,116,99,104,40,82,41,124,124,91,34,34,93,44,110,117,108,108,61,61,118,46,99,114,111,115,115,68,111,109,97,105,110,41,123,114,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,116,114,121,123,114,46,104,114,101,102,61,118,46,117,114,108,44,114,46,104,114,101,102,61,114,46,104,114,101,102,44,118,46,99,114,111,115,115,68,111,109,97,105,110,61,70,116,46,112,114,111,116,111,99,111,108,43,34,47,47,34,43,70,116,46,104,111,115,116,33,61,114,46,112,114,111,116,111,99,111,108,43,34,47,47,34,43,114,46,104,111,115,116,125,99,97,116,99,104,40,101,41,123,118,46,99,114,111,115,115,68,111,109,97,105,110,61,33,48,125,125,105,102,40,118,46,100,97,116,97,38,38,118,46,112,114,111,99,101,115,115,68,97,116,97,38,38,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,118,46,100,97,116,97,38,38,40,118,46,100,97,116,97,61,107,46,112,97,114,97,109,40,118,46,100,97,116,97,44,118,46,116,114,97,100,105,116,105,111,110,97,108,41,41,44,95,116,40,73,116,44,118,44,116,44,84,41,44,104,41,114,101,116,117,114,110,32,84,59,102,111,114,40,105,32,105,110,40,103,61,107,46,101,118,101,110,116,38,38,118,46,103,108,111,98,97,108,41,38,38,48,61,61,107,46,97,99,116,105,118,101,43,43,38,38,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,34,97,106,97,120,83,116,97,114,116,34,41,44,118,46,116,121,112,101,61,118,46,116,121,112,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,44,118,46,104,97,115,67,111,110,116,101,110,116,61,33,82,116,46,116,101,115,116,40,118,46,116,121,112,101,41,44,102,61,118,46,117,114,108,46,114,101,112,108,97,99,101,40,72,116,44,34,34,41,44,118,46,104,97,115,67,111,110,116,101,110,116,63,118,46,100,97,116,97,38,38,118,46,112,114,111,99,101,115,115,68,97,116,97,38,38,48,61,61,61,40,118,46,99,111,110,116,101,110,116,84,121,112,101,124,124,34,34,41,46,105,110,100,101,120,79,102,40,34,97,112,112,108,105,99,97,116,105,111,110,47,120,45,119,119,119,45,102,111,114,109,45,117,114,108,101,110,99,111,100,101,100,34,41,38,38,40,118,46,100,97,116,97,61,118,46,100,97,116,97,46,114,101,112,108,97,99,101,40,76,116,44,34,43,34,41,41,58,40,111,61,118,46,117,114,108,46,115,108,105,99,101,40,102,46,108,101,110,103,116,104,41,44,118,46,100,97,116,97,38,38,40,118,46,112,114,111,99,101,115,115,68,97,116,97,124,124,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,118,46,100,97,116,97,41,38,38,40,102,43,61,40,83,116,46,116,101,115,116,40,102,41,63,34,38,34,58,34,63,34,41,43,118,46,100,97,116,97,44,100,101,108,101,116,101,32,118,46,100,97,116,97,41,44,33,49,61,61,61,118,46,99,97,99,104,101,38,38,40,102,61,102,46,114,101,112,108,97,99,101,40,79,116,44,34,36,49,34,41,44,111,61,40,83,116,46,116,101,115,116,40,102,41,63,34,38,34,58,34,63,34,41,43,34,95,61,34,43,107,116,43,43,43,111,41,44,118,46,117,114,108,61,102,43,111,41,44,118,46,105,102,77,111,100,105,102,105,101,100,38,38,40,107,46,108,97,115,116,77,111,100,105,102,105,101,100,91,102,93,38,38,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,34,73,102,45,77,111,100,105,102,105,101,100,45,83,105,110,99,101,34,44,107,46,108,97,115,116,77,111,100,105,102,105,101,100,91,102,93,41,44,107,46,101,116,97,103,91,102,93,38,38,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,34,73,102,45,78,111,110,101,45,77,97,116,99,104,34,44,107,46,101,116,97,103,91,102,93,41,41,44,40,118,46,100,97,116,97,38,38,118,46,104,97,115,67,111,110,116,101,110,116,38,38,33,49,33,61,61,118,46,99,111,110,116,101,110,116,84,121,112,101,124,124,116,46,99,111,110,116,101,110,116,84,121,112,101,41,38,38,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,34,67,111,110,116,101,110,116,45,84,121,112,101,34,44,118,46,99,111,110,116,101,110,116,84,121,112,101,41,44,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,34,65,99,99,101,112,116,34,44,118,46,100,97,116,97,84,121,112,101,115,91,48,93,38,38,118,46,97,99,99,101,112,116,115,91,118,46,100,97,116,97,84,121,112,101,115,91,48,93,93,63,118,46,97,99,99,101,112,116,115,91,118,46,100,97,116,97,84,121,112,101,115,91,48,93,93,43,40,34,42,34,33,61,61,118,46,100,97,116,97,84,121,112,101,115,91,48,93,63,34,44,32,34,43,36,116,43,34,59,32,113,61,48,46,48,49,34,58,34,34,41,58,118,46,97,99,99,101,112,116,115,91,34,42,34,93,41,44,118,46,104,101,97,100,101,114,115,41,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,105,44,118,46,104,101,97,100,101,114,115,91,105,93,41,59,105,102,40,118,46,98,101,102,111,114,101,83,101,110,100,38,38,40,33,49,61,61,61,118,46,98,101,102,111,114,101,83,101,110,100,46,99,97,108,108,40,121,44,84,44,118,41,124,124,104,41,41,114,101,116,117,114,110,32,84,46,97,98,111,114,116,40,41,59,105,102,40,117,61,34,97,98,111,114,116,34,44,98,46,97,100,100,40,118,46,99,111,109,112,108,101,116,101,41,44,84,46,100,111,110,101,40,118,46,115,117,99,99,101,115,115,41,44,84,46,102,97,105,108,40,118,46,101,114,114,111,114,41,44,99,61,95,116,40,87,116,44,118,44,116,44,84,41,41,123,105,102,40,84,46,114,101,97,100,121,83,116,97,116,101,61,49,44,103,38,38,109,46,116,114,105,103,103,101,114,40,34,97,106,97,120,83,101,110,100,34,44,91,84,44,118,93,41,44,104,41,114,101,116,117,114,110,32,84,59,118,46,97,115,121,110,99,38,38,48,60,118,46,116,105,109,101,111,117,116,38,38,40,100,61,67,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,84,46,97,98,111,114,116,40,34,116,105,109,101,111,117,116,34,41,125,44,118,46,116,105,109,101,111,117,116,41,41,59,116,114,121,123,104,61,33,49,44,99,46,115,101,110,100,40,97,44,108,41,125,99,97,116,99,104,40,101,41,123,105,102,40,104,41,116,104,114,111,119,32,101,59,108,40,45,49,44,101,41,125,125,101,108,115,101,32,108,40,45,49,44,34,78,111,32,84,114,97,110,115,112,111,114,116,34,41,59,102,117,110,99,116,105,111,110,32,108,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,61,116,59,104,124,124,40,104,61,33,48,44,100,38,38,67,46,99,108,101,97,114,84,105,109,101,111,117,116,40,100,41,44,99,61,118,111,105,100,32,48,44,112,61,114,124,124,34,34,44,84,46,114,101,97,100,121,83,116,97,116,101,61,48,60,101,63,52,58,48,44,105,61,50,48,48,60,61,101,38,38,101,60,51,48,48,124,124,51,48,52,61,61,61,101,44,110,38,38,40,115,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,61,101,46,99,111,110,116,101,110,116,115,44,117,61,101,46,100,97,116,97,84,121,112,101,115,59,119,104,105,108,101,40,34,42,34,61,61,61,117,91,48,93,41,117,46,115,104,105,102,116,40,41,44,118,111,105,100,32,48,61,61,61,114,38,38,40,114,61,101,46,109,105,109,101,84,121,112,101,124,124,116,46,103,101,116,82,101,115,112,111,110,115,101,72,101,97,100,101,114,40,34,67,111,110,116,101,110,116,45,84,121,112,101,34,41,41,59,105,102,40,114,41,102,111,114,40,105,32,105,110,32,115,41,105,102,40,115,91,105,93,38,38,115,91,105,93,46,116,101,115,116,40,114,41,41,123,117,46,117,110,115,104,105,102,116,40,105,41,59,98,114,101,97,107,125,105,102,40,117,91,48,93,105,110,32,110,41,111,61,117,91,48,93,59,101,108,115,101,123,102,111,114,40,105,32,105,110,32,110,41,123,105,102,40,33,117,91,48,93,124,124,101,46,99,111,110,118,101,114,116,101,114,115,91,105,43,34,32,34,43,117,91,48,93,93,41,123,111,61,105,59,98,114,101,97,107,125,97,124,124,40,97,61,105,41,125,111,61,111,124,124,97,125,105,102,40,111,41,114,101,116,117,114,110,32,111,33,61,61,117,91,48,93,38,38,117,46,117,110,115,104,105,102,116,40,111,41,44,110,91,111,93,125,40,118,44,84,44,110,41,41,44,115,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,61,123,125,44,99,61,101,46,100,97,116,97,84,121,112,101,115,46,115,108,105,99,101,40,41,59,105,102,40,99,91,49,93,41,102,111,114,40,97,32,105,110,32,101,46,99,111,110,118,101,114,116,101,114,115,41,108,91,97,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,61,101,46,99,111,110,118,101,114,116,101,114,115,91,97,93,59,111,61,99,46,115,104,105,102,116,40,41,59,119,104,105,108,101,40,111,41,105,102,40,101,46,114,101,115,112,111,110,115,101,70,105,101,108,100,115,91,111,93,38,38,40,110,91,101,46,114,101,115,112,111,110,115,101,70,105,101,108,100,115,91,111,93,93,61,116,41,44,33,117,38,38,114,38,38,101,46,100,97,116,97,70,105,108,116,101,114,38,38,40,116,61,101,46,100,97,116,97,70,105,108,116,101,114,40,116,44,101,46,100,97,116,97,84,121,112,101,41,41,44,117,61,111,44,111,61,99,46,115,104,105,102,116,40,41,41,105,102,40,34,42,34,61,61,61,111,41,111,61,117,59,101,108,115,101,32,105,102,40,34,42,34,33,61,61,117,38,38,117,33,61,61,111,41,123,105,102,40,33,40,97,61,108,91,117,43,34,32,34,43,111,93,124,124,108,91,34,42,32,34,43,111,93,41,41,102,111,114,40,105,32,105,110,32,108,41,105,102,40,40,115,61,105,46,115,112,108,105,116,40,34,32,34,41,41,91,49,93,61,61,61,111,38,38,40,97,61,108,91,117,43,34,32,34,43,115,91,48,93,93,124,124,108,91,34,42,32,34,43,115,91,48,93,93,41,41,123,33,48,61,61,61,97,63,97,61,108,91,105,93,58,33,48,33,61,61,108,91,105,93,38,38,40,111,61,115,91,48,93,44,99,46,117,110,115,104,105,102,116,40,115,91,49,93,41,41,59,98,114,101,97,107,125,105,102,40,33,48,33,61,61,97,41,105,102,40,97,38,38,101,91,34,116,104,114,111,119,115,34,93,41,116,61,97,40,116,41,59,101,108,115,101,32,116,114,121,123,116,61,97,40,116,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,123,115,116,97,116,101,58,34,112,97,114,115,101,114,101,114,114,111,114,34,44,101,114,114,111,114,58,97,63,101,58,34,78,111,32,99,111,110,118,101,114,115,105,111,110,32,102,114,111,109,32,34,43,117,43,34,32,116,111,32,34,43,111,125,125,125,114,101,116,117,114,110,123,115,116,97,116,101,58,34,115,117,99,99,101,115,115,34,44,100,97,116,97,58,116,125,125,40,118,44,115,44,84,44,105,41,44,105,63,40,118,46,105,102,77,111,100,105,102,105,101,100,38,38,40,40,117,61,84,46,103,101,116,82,101,115,112,111,110,115,101,72,101,97,100,101,114,40,34,76,97,115,116,45,77,111,100,105,102,105,101,100,34,41,41,38,38,40,107,46,108,97,115,116,77,111,100,105,102,105,101,100,91,102,93,61,117,41,44,40,117,61,84,46,103,101,116,82,101,115,112,111,110,115,101,72,101,97,100,101,114,40,34,101,116,97,103,34,41,41,38,38,40,107,46,101,116,97,103,91,102,93,61,117,41,41,44,50,48,52,61,61,61,101,124,124,34,72,69,65,68,34,61,61,61,118,46,116,121,112,101,63,108,61,34,110,111,99,111,110,116,101,110,116,34,58,51,48,52,61,61,61,101,63,108,61,34,110,111,116,109,111,100,105,102,105,101,100,34,58,40,108,61,115,46,115,116,97,116,101,44,111,61,115,46,100,97,116,97,44,105,61,33,40,97,61,115,46,101,114,114,111,114,41,41,41,58,40,97,61,108,44,33,101,38,38,108,124,124,40,108,61,34,101,114,114,111,114,34,44,101,60,48,38,38,40,101,61,48,41,41,41,44,84,46,115,116,97,116,117,115,61,101,44,84,46,115,116,97,116,117,115,84,101,120,116,61,40,116,124,124,108,41,43,34,34,44,105,63,120,46,114,101,115,111,108,118,101,87,105,116,104,40,121,44,91,111,44,108,44,84,93,41,58,120,46,114,101,106,101,99,116,87,105,116,104,40,121,44,91,84,44,108,44,97,93,41,44,84,46,115,116,97,116,117,115,67,111,100,101,40,119,41,44,119,61,118,111,105,100,32,48,44,103,38,38,109,46,116,114,105,103,103,101,114,40,105,63,34,97,106,97,120,83,117,99,99,101,115,115,34,58,34,97,106,97,120,69,114,114,111,114,34,44,91,84,44,118,44,105,63,111,58,97,93,41,44,98,46,102,105,114,101,87,105,116,104,40,121,44,91,84,44,108,93,41,44,103,38,38,40,109,46,116,114,105,103,103,101,114,40,34,97,106,97,120,67,111,109,112,108,101,116,101,34,44,91,84,44,118,93,41,44,45,45,107,46,97,99,116,105,118,101,124,124,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,34,97,106,97,120,83,116,111,112,34,41,41,41,125,114,101,116,117,114,110,32,84,125,44,103,101,116,74,83,79,78,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,107,46,103,101,116,40,101,44,116,44,110,44,34,106,115,111,110,34,41,125,44,103,101,116,83,99,114,105,112,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,107,46,103,101,116,40,101,44,118,111,105,100,32,48,44,116,44,34,115,99,114,105,112,116,34,41,125,125,41,44,107,46,101,97,99,104,40,91,34,103,101,116,34,44,34,112,111,115,116,34,93,44,102,117,110,99,116,105,111,110,40,101,44,105,41,123,107,91,105,93,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,109,40,116,41,38,38,40,114,61,114,124,124,110,44,110,61,116,44,116,61,118,111,105,100,32,48,41,44,107,46,97,106,97,120,40,107,46,101,120,116,101,110,100,40,123,117,114,108,58,101,44,116,121,112,101,58,105,44,100,97,116,97,84,121,112,101,58,114,44,100,97,116,97,58,116,44,115,117,99,99,101,115,115,58,110,125,44,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,101,41,38,38,101,41,41,125,125,41,44,107,46,95,101,118,97,108,85,114,108,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,107,46,97,106,97,120,40,123,117,114,108,58,101,44,116,121,112,101,58,34,71,69,84,34,44,100,97,116,97,84,121,112,101,58,34,115,99,114,105,112,116,34,44,99,97,99,104,101,58,33,48,44,97,115,121,110,99,58,33,49,44,103,108,111,98,97,108,58,33,49,44,99,111,110,118,101,114,116,101,114,115,58,123,34,116,101,120,116,32,115,99,114,105,112,116,34,58,102,117,110,99,116,105,111,110,40,41,123,125,125,44,100,97,116,97,70,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,107,46,103,108,111,98,97,108,69,118,97,108,40,101,44,116,41,125,125,41,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,119,114,97,112,65,108,108,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,114,101,116,117,114,110,32,116,104,105,115,91,48,93,38,38,40,109,40,101,41,38,38,40,101,61,101,46,99,97,108,108,40,116,104,105,115,91,48,93,41,41,44,116,61,107,40,101,44,116,104,105,115,91,48,93,46,111,119,110,101,114,68,111,99,117,109,101,110,116,41,46,101,113,40,48,41,46,99,108,111,110,101,40,33,48,41,44,116,104,105,115,91,48,93,46,112,97,114,101,110,116,78,111,100,101,38,38,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,104,105,115,91,48,93,41,44,116,46,109,97,112,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,119,104,105,108,101,40,101,46,102,105,114,115,116,69,108,101,109,101,110,116,67,104,105,108,100,41,101,61,101,46,102,105,114,115,116,69,108,101,109,101,110,116,67,104,105,108,100,59,114,101,116,117,114,110,32,101,125,41,46,97,112,112,101,110,100,40,116,104,105,115,41,41,44,116,104,105,115,125,44,119,114,97,112,73,110,110,101,114,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,109,40,110,41,63,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,119,114,97,112,73,110,110,101,114,40,110,46,99,97,108,108,40,116,104,105,115,44,101,41,41,125,41,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,107,40,116,104,105,115,41,44,116,61,101,46,99,111,110,116,101,110,116,115,40,41,59,116,46,108,101,110,103,116,104,63,116,46,119,114,97,112,65,108,108,40,110,41,58,101,46,97,112,112,101,110,100,40,110,41,125,41,125,44,119,114,97,112,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,109,40,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,119,114,97,112,65,108,108,40,110,63,116,46,99,97,108,108,40,116,104,105,115,44,101,41,58,116,41,125,41,125,44,117,110,119,114,97,112,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,97,114,101,110,116,40,101,41,46,110,111,116,40,34,98,111,100,121,34,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,40,116,104,105,115,41,46,114,101,112,108,97,99,101,87,105,116,104,40,116,104,105,115,46,99,104,105,108,100,78,111,100,101,115,41,125,41,44,116,104,105,115,125,125,41,44,107,46,101,120,112,114,46,112,115,101,117,100,111,115,46,104,105,100,100,101,110,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,107,46,101,120,112,114,46,112,115,101,117,100,111,115,46,118,105,115,105,98,108,101,40,101,41,125,44,107,46,101,120,112,114,46,112,115,101,117,100,111,115,46,118,105,115,105,98,108,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,33,40,101,46,111,102,102,115,101,116,87,105,100,116,104,124,124,101,46,111,102,102,115,101,116,72,101,105,103,104,116,124,124,101,46,103,101,116,67,108,105,101,110,116,82,101,99,116,115,40,41,46,108,101,110,103,116,104,41,125,44,107,46,97,106,97,120,83,101,116,116,105,110,103,115,46,120,104,114,61,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,114,101,116,117,114,110,32,110,101,119,32,67,46,88,77,76,72,116,116,112,82,101,113,117,101,115,116,125,99,97,116,99,104,40,101,41,123,125,125,59,118,97,114,32,85,116,61,123,48,58,50,48,48,44,49,50,50,51,58,50,48,52,125,44,88,116,61,107,46,97,106,97,120,83,101,116,116,105,110,103,115,46,120,104,114,40,41,59,121,46,99,111,114,115,61,33,33,88,116,38,38,34,119,105,116,104,67,114,101,100,101,110,116,105,97,108,115,34,105,110,32,88,116,44,121,46,97,106,97,120,61,88,116,61,33,33,88,116,44,107,46,97,106,97,120,84,114,97,110,115,112,111,114,116,40,102,117,110,99,116,105,111,110,40,105,41,123,118,97,114,32,111,44,97,59,105,102,40,121,46,99,111,114,115,124,124,88,116,38,38,33,105,46,99,114,111,115,115,68,111,109,97,105,110,41,114,101,116,117,114,110,123,115,101,110,100,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,105,46,120,104,114,40,41,59,105,102,40,114,46,111,112,101,110,40,105,46,116,121,112,101,44,105,46,117,114,108,44,105,46,97,115,121,110,99,44,105,46,117,115,101,114,110,97,109,101,44,105,46,112,97,115,115,119,111,114,100,41,44,105,46,120,104,114,70,105,101,108,100,115,41,102,111,114,40,110,32,105,110,32,105,46,120,104,114,70,105,101,108,100,115,41,114,91,110,93,61,105,46,120,104,114,70,105,101,108,100,115,91,110,93,59,102,111,114,40,110,32,105,110,32,105,46,109,105,109,101,84,121,112,101,38,38,114,46,111,118,101,114,114,105,100,101,77,105,109,101,84,121,112,101,38,38,114,46,111,118,101,114,114,105,100,101,77,105,109,101,84,121,112,101,40,105,46,109,105,109,101,84,121,112,101,41,44,105,46,99,114,111,115,115,68,111,109,97,105,110,124,124,101,91,34,88,45,82,101,113,117,101,115,116,101,100,45,87,105,116,104,34,93,124,124,40,101,91,34,88,45,82,101,113,117,101,115,116,101,100,45,87,105,116,104,34,93,61,34,88,77,76,72,116,116,112,82,101,113,117,101,115,116,34,41,44,101,41,114,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,110,44,101,91,110,93,41,59,111,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,111,38,38,40,111,61,97,61,114,46,111,110,108,111,97,100,61,114,46,111,110,101,114,114,111,114,61,114,46,111,110,97,98,111,114,116,61,114,46,111,110,116,105,109,101,111,117,116,61,114,46,111,110,114,101,97,100,121,115,116,97,116,101,99,104,97,110,103,101,61,110,117,108,108,44,34,97,98,111,114,116,34,61,61,61,101,63,114,46,97,98,111,114,116,40,41,58,34,101,114,114,111,114,34,61,61,61,101,63,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,114,46,115,116,97,116,117,115,63,116,40,48,44,34,101,114,114,111,114,34,41,58,116,40,114,46,115,116,97,116,117,115,44,114,46,115,116,97,116,117,115,84,101,120,116,41,58,116,40,85,116,91,114,46,115,116,97,116,117,115,93,124,124,114,46,115,116,97,116,117,115,44,114,46,115,116,97,116,117,115,84,101,120,116,44,34,116,101,120,116,34,33,61,61,40,114,46,114,101,115,112,111,110,115,101,84,121,112,101,124,124,34,116,101,120,116,34,41,124,124,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,114,46,114,101,115,112,111,110,115,101,84,101,120,116,63,123,98,105,110,97,114,121,58,114,46,114,101,115,112,111,110,115,101,125,58,123,116,101,120,116,58,114,46,114,101,115,112,111,110,115,101,84,101,120,116,125,44,114,46,103,101,116,65,108,108,82,101,115,112,111,110,115,101,72,101,97,100,101,114,115,40,41,41,41,125,125,44,114,46,111,110,108,111,97,100,61,111,40,41,44,97,61,114,46,111,110,101,114,114,111,114,61,114,46,111,110,116,105,109,101,111,117,116,61,111,40,34,101,114,114,111,114,34,41,44,118,111,105,100,32,48,33,61,61,114,46,111,110,97,98,111,114,116,63,114,46,111,110,97,98,111,114,116,61,97,58,114,46,111,110,114,101,97,100,121,115,116,97,116,101,99,104,97,110,103,101,61,102,117,110,99,116,105,111,110,40,41,123,52,61,61,61,114,46,114,101,97,100,121,83,116,97,116,101,38,38,67,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,111,38,38,97,40,41,125,41,125,44,111,61,111,40,34,97,98,111,114,116,34,41,59,116,114,121,123,114,46,115,101,110,100,40,105,46,104,97,115,67,111,110,116,101,110,116,38,38,105,46,100,97,116,97,124,124,110,117,108,108,41,125,99,97,116,99,104,40,101,41,123,105,102,40,111,41,116,104,114,111,119,32,101,125,125,44,97,98,111,114,116,58,102,117,110,99,116,105,111,110,40,41,123,111,38,38,111,40,41,125,125,125,41,44,107,46,97,106,97,120,80,114,101,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,114,111,115,115,68,111,109,97,105,110,38,38,40,101,46,99,111,110,116,101,110,116,115,46,115,99,114,105,112,116,61,33,49,41,125,41,44,107,46,97,106,97,120,83,101,116,117,112,40,123,97,99,99,101,112,116,115,58,123,115,99,114,105,112,116,58,34,116,101,120,116,47,106,97,118,97,115,99,114,105,112,116,44,32,97,112,112,108,105,99,97,116,105,111,110,47,106,97,118,97,115,99,114,105,112,116,44,32,97,112,112,108,105,99,97,116,105,111,110,47,101,99,109,97,115,99,114,105,112,116,44,32,97,112,112,108,105,99,97,116,105,111,110,47,120,45,101,99,109,97,115,99,114,105,112,116,34,125,44,99,111,110,116,101,110,116,115,58,123,115,99,114,105,112,116,58,47,92,98,40,63,58,106,97,118,97,124,101,99,109,97,41,115,99,114,105,112,116,92,98,47,125,44,99,111,110,118,101,114,116,101,114,115,58,123,34,116,101,120,116,32,115,99,114,105,112,116,34,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,103,108,111,98,97,108,69,118,97,108,40,101,41,44,101,125,125,125,41,44,107,46,97,106,97,120,80,114,101,102,105,108,116,101,114,40,34,115,99,114,105,112,116,34,44,102,117,110,99,116,105,111,110,40,101,41,123,118,111,105,100,32,48,61,61,61,101,46,99,97,99,104,101,38,38,40,101,46,99,97,99,104,101,61,33,49,41,44,101,46,99,114,111,115,115,68,111,109,97,105,110,38,38,40,101,46,116,121,112,101,61,34,71,69,84,34,41,125,41,44,107,46,97,106,97,120,84,114,97,110,115,112,111,114,116,40,34,115,99,114,105,112,116,34,44,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,44,105,59,105,102,40,110,46,99,114,111,115,115,68,111,109,97,105,110,124,124,110,46,115,99,114,105,112,116,65,116,116,114,115,41,114,101,116,117,114,110,123,115,101,110,100,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,61,107,40,34,60,115,99,114,105,112,116,62,34,41,46,97,116,116,114,40,110,46,115,99,114,105,112,116,65,116,116,114,115,124,124,123,125,41,46,112,114,111,112,40,123,99,104,97,114,115,101,116,58,110,46,115,99,114,105,112,116,67,104,97,114,115,101,116,44,115,114,99,58,110,46,117,114,108,125,41,46,111,110,40,34,108,111,97,100,32,101,114,114,111,114,34,44,105,61,102,117,110,99,116,105,111,110,40,101,41,123,114,46,114,101,109,111,118,101,40,41,44,105,61,110,117,108,108,44,101,38,38,116,40,34,101,114,114,111,114,34,61,61,61,101,46,116,121,112,101,63,52,48,52,58,50,48,48,44,101,46,116,121,112,101,41,125,41,44,69,46,104,101,97,100,46,97,112,112,101,110,100,67,104,105,108,100,40,114,91,48,93,41,125,44,97,98,111,114,116,58,102,117,110,99,116,105,111,110,40,41,123,105,38,38,105,40,41,125,125,125,41,59,118,97,114,32,86,116,44,71,116,61,91,93,44,89,116,61,47,40,61,41,92,63,40,63,61,38,124,36,41,124,92,63,92,63,47,59,107,46,97,106,97,120,83,101,116,117,112,40,123,106,115,111,110,112,58,34,99,97,108,108,98,97,99,107,34,44,106,115,111,110,112,67,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,71,116,46,112,111,112,40,41,124,124,107,46,101,120,112,97,110,100,111,43,34,95,34,43,107,116,43,43,59,114,101,116,117,114,110,32,116,104,105,115,91,101,93,61,33,48,44,101,125,125,41,44,107,46,97,106,97,120,80,114,101,102,105,108,116,101,114,40,34,106,115,111,110,32,106,115,111,110,112,34,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,61,33,49,33,61,61,101,46,106,115,111,110,112,38,38,40,89,116,46,116,101,115,116,40,101,46,117,114,108,41,63,34,117,114,108,34,58,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,46,100,97,116,97,38,38,48,61,61,61,40,101,46,99,111,110,116,101,110,116,84,121,112,101,124,124,34,34,41,46,105,110,100,101,120,79,102,40,34,97,112,112,108,105,99,97,116,105,111,110,47,120,45,119,119,119,45,102,111,114,109,45,117,114,108,101,110,99,111,100,101,100,34,41,38,38,89,116,46,116,101,115,116,40,101,46,100,97,116,97,41,38,38,34,100,97,116,97,34,41,59,105,102,40,97,124,124,34,106,115,111,110,112,34,61,61,61,101,46,100,97,116,97,84,121,112,101,115,91,48,93,41,114,101,116,117,114,110,32,114,61,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,61,109,40,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,41,63,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,40,41,58,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,44,97,63,101,91,97,93,61,101,91,97,93,46,114,101,112,108,97,99,101,40,89,116,44,34,36,49,34,43,114,41,58,33,49,33,61,61,101,46,106,115,111,110,112,38,38,40,101,46,117,114,108,43,61,40,83,116,46,116,101,115,116,40,101,46,117,114,108,41,63,34,38,34,58,34,63,34,41,43,101,46,106,115,111,110,112,43,34,61,34,43,114,41,44,101,46,99,111,110,118,101,114,116,101,114,115,91,34,115,99,114,105,112,116,32,106,115,111,110,34,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,124,124,107,46,101,114,114,111,114,40,114,43,34,32,119,97,115,32,110,111,116,32,99,97,108,108,101,100,34,41,44,111,91,48,93,125,44,101,46,100,97,116,97,84,121,112,101,115,91,48,93,61,34,106,115,111,110,34,44,105,61,67,91,114,93,44,67,91,114,93,61,102,117,110,99,116,105,111,110,40,41,123,111,61,97,114,103,117,109,101,110,116,115,125,44,110,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,118,111,105,100,32,48,61,61,61,105,63,107,40,67,41,46,114,101,109,111,118,101,80,114,111,112,40,114,41,58,67,91,114,93,61,105,44,101,91,114,93,38,38,40,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,61,116,46,106,115,111,110,112,67,97,108,108,98,97,99,107,44,71,116,46,112,117,115,104,40,114,41,41,44,111,38,38,109,40,105,41,38,38,105,40,111,91,48,93,41,44,111,61,105,61,118,111,105,100,32,48,125,41,44,34,115,99,114,105,112,116,34,125,41,44,121,46,99,114,101,97,116,101,72,84,77,76,68,111,99,117,109,101,110,116,61,40,40,86,116,61,69,46,105,109,112,108,101,109,101,110,116,97,116,105,111,110,46,99,114,101,97,116,101,72,84,77,76,68,111,99,117,109,101,110,116,40,34,34,41,46,98,111,100,121,41,46,105,110,110,101,114,72,84,77,76,61,34,60,102,111,114,109,62,60,47,102,111,114,109,62,60,102,111,114,109,62,60,47,102,111,114,109,62,34,44,50,61,61,61,86,116,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,41,44,107,46,112,97,114,115,101,72,84,77,76,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,63,91,93,58,40,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,116,38,38,40,110,61,116,44,116,61,33,49,41,44,116,124,124,40,121,46,99,114,101,97,116,101,72,84,77,76,68,111,99,117,109,101,110,116,63,40,40,114,61,40,116,61,69,46,105,109,112,108,101,109,101,110,116,97,116,105,111,110,46,99,114,101,97,116,101,72,84,77,76,68,111,99,117,109,101,110,116,40,34,34,41,41,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,98,97,115,101,34,41,41,46,104,114,101,102,61,69,46,108,111,99,97,116,105,111,110,46,104,114,101,102,44,116,46,104,101,97,100,46,97,112,112,101,110,100,67,104,105,108,100,40,114,41,41,58,116,61,69,41,44,111,61,33,110,38,38,91,93,44,40,105,61,68,46,101,120,101,99,40,101,41,41,63,91,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,105,91,49,93,41,93,58,40,105,61,119,101,40,91,101,93,44,116,44,111,41,44,111,38,38,111,46,108,101,110,103,116,104,38,38,107,40,111,41,46,114,101,109,111,118,101,40,41,44,107,46,109,101,114,103,101,40,91,93,44,105,46,99,104,105,108,100,78,111,100,101,115,41,41,41,59,118,97,114,32,114,44,105,44,111,125,44,107,46,102,110,46,108,111,97,100,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,61,116,104,105,115,44,115,61,101,46,105,110,100,101,120,79,102,40,34,32,34,41,59,114,101,116,117,114,110,45,49,60,115,38,38,40,114,61,109,116,40,101,46,115,108,105,99,101,40,115,41,41,44,101,61,101,46,115,108,105,99,101,40,48,44,115,41,41,44,109,40,116,41,63,40,110,61,116,44,116,61,118,111,105,100,32,48,41,58,116,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,40,105,61,34,80,79,83,84,34,41,44,48,60,97,46,108,101,110,103,116,104,38,38,107,46,97,106,97,120,40,123,117,114,108,58,101,44,116,121,112,101,58,105,124,124,34,71,69,84,34,44,100,97,116,97,84,121,112,101,58,34,104,116,109,108,34,44,100,97,116,97,58,116,125,41,46,100,111,110,101,40,102,117,110,99,116,105,111,110,40,101,41,123,111,61,97,114,103,117,109,101,110,116,115,44,97,46,104,116,109,108,40,114,63,107,40,34,60,100,105,118,62,34,41,46,97,112,112,101,110,100,40,107,46,112,97,114,115,101,72,84,77,76,40,101,41,41,46,102,105,110,100,40,114,41,58,101,41,125,41,46,97,108,119,97,121,115,40,110,38,38,102,117,110,99,116,105,111,110,40,101,44,116,41,123,97,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,110,46,97,112,112,108,121,40,116,104,105,115,44,111,124,124,91,101,46,114,101,115,112,111,110,115,101,84,101,120,116,44,116,44,101,93,41,125,41,125,41,44,116,104,105,115,125,44,107,46,101,97,99,104,40,91,34,97,106,97,120,83,116,97,114,116,34,44,34,97,106,97,120,83,116,111,112,34,44,34,97,106,97,120,67,111,109,112,108,101,116,101,34,44,34,97,106,97,120,69,114,114,111,114,34,44,34,97,106,97,120,83,117,99,99,101,115,115,34,44,34,97,106,97,120,83,101,110,100,34,93,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,107,46,102,110,91,116,93,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,110,40,116,44,101,41,125,125,41,44,107,46,101,120,112,114,46,112,115,101,117,100,111,115,46,97,110,105,109,97,116,101,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,107,46,103,114,101,112,40,107,46,116,105,109,101,114,115,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,61,61,61,101,46,101,108,101,109,125,41,46,108,101,110,103,116,104,125,44,107,46,111,102,102,115,101,116,61,123,115,101,116,79,102,102,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,44,117,44,108,61,107,46,99,115,115,40,101,44,34,112,111,115,105,116,105,111,110,34,41,44,99,61,107,40,101,41,44,102,61,123,125,59,34,115,116,97,116,105,99,34,61,61,61,108,38,38,40,101,46,115,116,121,108,101,46,112,111,115,105,116,105,111,110,61,34,114,101,108,97,116,105,118,101,34,41,44,115,61,99,46,111,102,102,115,101,116,40,41,44,111,61,107,46,99,115,115,40,101,44,34,116,111,112,34,41,44,117,61,107,46,99,115,115,40,101,44,34,108,101,102,116,34,41,44,40,34,97,98,115,111,108,117,116,101,34,61,61,61,108,124,124,34,102,105,120,101,100,34,61,61,61,108,41,38,38,45,49,60,40,111,43,117,41,46,105,110,100,101,120,79,102,40,34,97,117,116,111,34,41,63,40,97,61,40,114,61,99,46,112,111,115,105,116,105,111,110,40,41,41,46,116,111,112,44,105,61,114,46,108,101,102,116,41,58,40,97,61,112,97,114,115,101,70,108,111,97,116,40,111,41,124,124,48,44,105,61,112,97,114,115,101,70,108,111,97,116,40,117,41,124,124,48,41,44,109,40,116,41,38,38,40,116,61,116,46,99,97,108,108,40,101,44,110,44,107,46,101,120,116,101,110,100,40,123,125,44,115,41,41,41,44,110,117,108,108,33,61,116,46,116,111,112,38,38,40,102,46,116,111,112,61,116,46,116,111,112,45,115,46,116,111,112,43,97,41,44,110,117,108,108,33,61,116,46,108,101,102,116,38,38,40,102,46,108,101,102,116,61,116,46,108,101,102,116,45,115,46,108,101,102,116,43,105,41,44,34,117,115,105,110,103,34,105,110,32,116,63,116,46,117,115,105,110,103,46,99,97,108,108,40,101,44,102,41,58,99,46,99,115,115,40,102,41,125,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,111,102,102,115,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,63,116,104,105,115,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,46,111,102,102,115,101,116,46,115,101,116,79,102,102,115,101,116,40,116,104,105,115,44,116,44,101,41,125,41,59,118,97,114,32,101,44,110,44,114,61,116,104,105,115,91,48,93,59,114,101,116,117,114,110,32,114,63,114,46,103,101,116,67,108,105,101,110,116,82,101,99,116,115,40,41,46,108,101,110,103,116,104,63,40,101,61,114,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,44,110,61,114,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,44,123,116,111,112,58,101,46,116,111,112,43,110,46,112,97,103,101,89,79,102,102,115,101,116,44,108,101,102,116,58,101,46,108,101,102,116,43,110,46,112,97,103,101,88,79,102,102,115,101,116,125,41,58,123,116,111,112,58,48,44,108,101,102,116,58,48,125,58,118,111,105,100,32,48,125,44,112,111,115,105,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,91,48,93,41,123,118,97,114,32,101,44,116,44,110,44,114,61,116,104,105,115,91,48,93,44,105,61,123,116,111,112,58,48,44,108,101,102,116,58,48,125,59,105,102,40,34,102,105,120,101,100,34,61,61,61,107,46,99,115,115,40,114,44,34,112,111,115,105,116,105,111,110,34,41,41,116,61,114,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,101,108,115,101,123,116,61,116,104,105,115,46,111,102,102,115,101,116,40,41,44,110,61,114,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,101,61,114,46,111,102,102,115,101,116,80,97,114,101,110,116,124,124,110,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,119,104,105,108,101,40,101,38,38,40,101,61,61,61,110,46,98,111,100,121,124,124,101,61,61,61,110,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,41,38,38,34,115,116,97,116,105,99,34,61,61,61,107,46,99,115,115,40,101,44,34,112,111,115,105,116,105,111,110,34,41,41,101,61,101,46,112,97,114,101,110,116,78,111,100,101,59,101,38,38,101,33,61,61,114,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,40,40,105,61,107,40,101,41,46,111,102,102,115,101,116,40,41,41,46,116,111,112,43,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,84,111,112,87,105,100,116,104,34,44,33,48,41,44,105,46,108,101,102,116,43,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,76,101,102,116,87,105,100,116,104,34,44,33,48,41,41,125,114,101,116,117,114,110,123,116,111,112,58,116,46,116,111,112,45,105,46,116,111,112,45,107,46,99,115,115,40,114,44,34,109,97,114,103,105,110,84,111,112,34,44,33,48,41,44,108,101,102,116,58,116,46,108,101,102,116,45,105,46,108,101,102,116,45,107,46,99,115,115,40,114,44,34,109,97,114,103,105,110,76,101,102,116,34,44,33,48,41,125,125,125,44,111,102,102,115,101,116,80,97,114,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,102,102,115,101,116,80,97,114,101,110,116,59,119,104,105,108,101,40,101,38,38,34,115,116,97,116,105,99,34,61,61,61,107,46,99,115,115,40,101,44,34,112,111,115,105,116,105,111,110,34,41,41,101,61,101,46,111,102,102,115,101,116,80,97,114,101,110,116,59,114,101,116,117,114,110,32,101,124,124,105,101,125,41,125,125,41,44,107,46,101,97,99,104,40,123,115,99,114,111,108,108,76,101,102,116,58,34,112,97,103,101,88,79,102,102,115,101,116,34,44,115,99,114,111,108,108,84,111,112,58,34,112,97,103,101,89,79,102,102,115,101,116,34,125,44,102,117,110,99,116,105,111,110,40,116,44,105,41,123,118,97,114,32,111,61,34,112,97,103,101,89,79,102,102,115,101,116,34,61,61,61,105,59,107,46,102,110,91,116,93,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,59,105,102,40,120,40,101,41,63,114,61,101,58,57,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,40,114,61,101,46,100,101,102,97,117,108,116,86,105,101,119,41,44,118,111,105,100,32,48,61,61,61,110,41,114,101,116,117,114,110,32,114,63,114,91,105,93,58,101,91,116,93,59,114,63,114,46,115,99,114,111,108,108,84,111,40,111,63,114,46,112,97,103,101,88,79,102,102,115,101,116,58,110,44,111,63,110,58,114,46,112,97,103,101,89,79,102,102,115,101,116,41,58,101,91,116,93,61,110,125,44,116,44,101,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,125,41,44,107,46,101,97,99,104,40,91,34,116,111,112,34,44,34,108,101,102,116,34,93,44,102,117,110,99,116,105,111,110,40,101,44,110,41,123,107,46,99,115,115,72,111,111,107,115,91,110,93,61,122,101,40,121,46,112,105,120,101,108,80,111,115,105,116,105,111,110,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,41,114,101,116,117,114,110,32,116,61,95,101,40,101,44,110,41,44,36,101,46,116,101,115,116,40,116,41,63,107,40,101,41,46,112,111,115,105,116,105,111,110,40,41,91,110,93,43,34,112,120,34,58,116,125,41,125,41,44,107,46,101,97,99,104,40,123,72,101,105,103,104,116,58,34,104,101,105,103,104,116,34,44,87,105,100,116,104,58,34,119,105,100,116,104,34,125,44,102,117,110,99,116,105,111,110,40,97,44,115,41,123,107,46,101,97,99,104,40,123,112,97,100,100,105,110,103,58,34,105,110,110,101,114,34,43,97,44,99,111,110,116,101,110,116,58,115,44,34,34,58,34,111,117,116,101,114,34,43,97,125,44,102,117,110,99,116,105,111,110,40,114,44,111,41,123,107,46,102,110,91,111,93,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,40,114,124,124,34,98,111,111,108,101,97,110,34,33,61,116,121,112,101,111,102,32,101,41,44,105,61,114,124,124,40,33,48,61,61,61,101,124,124,33,48,61,61,61,116,63,34,109,97,114,103,105,110,34,58,34,98,111,114,100,101,114,34,41,59,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,59,114,101,116,117,114,110,32,120,40,101,41,63,48,61,61,61,111,46,105,110,100,101,120,79,102,40,34,111,117,116,101,114,34,41,63,101,91,34,105,110,110,101,114,34,43,97,93,58,101,46,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,91,34,99,108,105,101,110,116,34,43,97,93,58,57,61,61,61,101,46,110,111,100,101,84,121,112,101,63,40,114,61,101,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,77,97,116,104,46,109,97,120,40,101,46,98,111,100,121,91,34,115,99,114,111,108,108,34,43,97,93,44,114,91,34,115,99,114,111,108,108,34,43,97,93,44,101,46,98,111,100,121,91,34,111,102,102,115,101,116,34,43,97,93,44,114,91,34,111,102,102,115,101,116,34,43,97,93,44,114,91,34,99,108,105,101,110,116,34,43,97,93,41,41,58,118,111,105,100,32,48,61,61,61,110,63,107,46,99,115,115,40,101,44,116,44,105,41,58,107,46,115,116,121,108,101,40,101,44,116,44,110,44,105,41,125,44,115,44,110,63,101,58,118,111,105,100,32,48,44,110,41,125,125,41,125,41,44,107,46,101,97,99,104,40,34,98,108,117,114,32,102,111,99,117,115,32,102,111,99,117,115,105,110,32,102,111,99,117,115,111,117,116,32,114,101,115,105,122,101,32,115,99,114,111,108,108,32,99,108,105,99,107,32,100,98,108,99,108,105,99,107,32,109,111,117,115,101,100,111,119,110,32,109,111,117,115,101,117,112,32,109,111,117,115,101,109,111,118,101,32,109,111,117,115,101,111,118,101,114,32,109,111,117,115,101,111,117,116,32,109,111,117,115,101,101,110,116,101,114,32,109,111,117,115,101,108,101,97,118,101,32,99,104,97,110,103,101,32,115,101,108,101,99,116,32,115,117,98,109,105,116,32,107,101,121,100,111,119,110,32,107,101,121,112,114,101,115,115,32,107,101,121,117,112,32,99,111,110,116,101,120,116,109,101,110,117,34,46,115,112,108,105,116,40,34,32,34,41,44,102,117,110,99,116,105,111,110,40,101,44,110,41,123,107,46,102,110,91,110,93,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,48,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,111,110,40,110,44,110,117,108,108,44,101,44,116,41,58,116,104,105,115,46,116,114,105,103,103,101,114,40,110,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,104,111,118,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,117,115,101,101,110,116,101,114,40,101,41,46,109,111,117,115,101,108,101,97,118,101,40,116,124,124,101,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,98,105,110,100,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,110,40,101,44,110,117,108,108,44,116,44,110,41,125,44,117,110,98,105,110,100,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,102,102,40,101,44,110,117,108,108,44,116,41,125,44,100,101,108,101,103,97,116,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,110,40,116,44,101,44,110,44,114,41,125,44,117,110,100,101,108,101,103,97,116,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,111,102,102,40,101,44,34,42,42,34,41,58,116,104,105,115,46,111,102,102,40,116,44,101,124,124,34,42,42,34,44,110,41,125,125,41,44,107,46,112,114,111,120,121,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,38,38,40,110,61,101,91,116,93,44,116,61,101,44,101,61,110,41,44,109,40,101,41,41,114,101,116,117,114,110,32,114,61,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,44,50,41,44,40,105,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,97,112,112,108,121,40,116,124,124,116,104,105,115,44,114,46,99,111,110,99,97,116,40,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,41,125,41,46,103,117,105,100,61,101,46,103,117,105,100,61,101,46,103,117,105,100,124,124,107,46,103,117,105,100,43,43,44,105,125,44,107,46,104,111,108,100,82,101,97,100,121,61,102,117,110,99,116,105,111,110,40,101,41,123,101,63,107,46,114,101,97,100,121,87,97,105,116,43,43,58,107,46,114,101,97,100,121,40,33,48,41,125,44,107,46,105,115,65,114,114,97,121,61,65,114,114,97,121,46,105,115,65,114,114,97,121,44,107,46,112,97,114,115,101,74,83,79,78,61,74,83,79,78,46,112,97,114,115,101,44,107,46,110,111,100,101,78,97,109,101,61,65,44,107,46,105,115,70,117,110,99,116,105,111,110,61,109,44,107,46,105,115,87,105,110,100,111,119,61,120,44,107,46,99,97,109,101,108,67,97,115,101,61,86,44,107,46,116,121,112,101,61,119,44,107,46,110,111,119,61,68,97,116,101,46,110,111,119,44,107,46,105,115,78,117,109,101,114,105,99,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,46,116,121,112,101,40,101,41,59,114,101,116,117,114,110,40,34,110,117,109,98,101,114,34,61,61,61,116,124,124,34,115,116,114,105,110,103,34,61,61,61,116,41,38,38,33,105,115,78,97,78,40,101,45,112,97,114,115,101,70,108,111,97,116,40,101,41,41,125,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,38,38,100,101,102,105,110,101,40,34,106,113,117,101,114,121,34,44,91,93,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,125,41,59,118,97,114,32,81,116,61,67,46,106,81,117,101,114,121,44,74,116,61,67,46,36,59,114,101,116,117,114,110,32,107,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,67,46,36,61,61,61,107,38,38,40,67,46,36,61,74,116,41,44,101,38,38,67,46,106,81,117,101,114,121,61,61,61,107,38,38,40,67,46,106,81,117,101,114,121,61,81,116,41,44,107,125,44,101,124,124,40,67,46,106,81,117,101,114,121,61,67,46,36,61,107,41,44,107,125,41,59,10,47,42,33,10,32,32,42,32,66,111,111,116,115,116,114,97,112,32,118,52,46,51,46,49,32,40,104,116,116,112,115,58,47,47,103,101,116,98,111,111,116,115,116,114,97,112,46,99,111,109,47,41,10,32,32,42,32,67,111,112,121,114,105,103,104,116,32,50,48,49,49,45,50,48,49,57,32,84,104,101,32,66,111,111,116,115,116,114,97,112,32,65,117,116,104,111,114,115,32,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,119,98,115,47,98,111,111,116,115,116,114,97,112,47,103,114,97,112,104,115,47,99,111,110,116,114,105,98,117,116,111,114,115,41,10,32,32,42,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,32,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,119,98,115,47,98,111,111,116,115,116,114,97,112,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,41,10,32,32,42,47,10,33,102,117,110,99,116,105,111,110,40,116,44,101,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,63,101,40,101,120,112,111,114,116,115,44,114,101,113,117,105,114,101,40,34,106,113,117,101,114,121,34,41,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,101,120,112,111,114,116,115,34,44,34,106,113,117,101,114,121,34,93,44,101,41,58,101,40,40,116,61,116,124,124,115,101,108,102,41,46,98,111,111,116,115,116,114,97,112,61,123,125,44,116,46,106,81,117,101,114,121,41,125,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,116,44,112,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,101,46,108,101,110,103,116,104,59,110,43,43,41,123,118,97,114,32,105,61,101,91,110,93,59,105,46,101,110,117,109,101,114,97,98,108,101,61,105,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,105,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,105,38,38,40,105,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,105,46,107,101,121,44,105,41,125,125,102,117,110,99,116,105,111,110,32,115,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,38,38,105,40,116,46,112,114,111,116,111,116,121,112,101,44,101,41,44,110,38,38,105,40,116,44,110,41,44,116,125,102,117,110,99,116,105,111,110,32,108,40,111,41,123,102,111,114,40,118,97,114,32,116,61,49,59,116,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,116,43,43,41,123,118,97,114,32,114,61,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,116,93,63,97,114,103,117,109,101,110,116,115,91,116,93,58,123,125,44,101,61,79,98,106,101,99,116,46,107,101,121,115,40,114,41,59,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,38,38,40,101,61,101,46,99,111,110,99,97,116,40,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,40,114,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,40,114,44,116,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,101,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,105,59,101,61,111,44,105,61,114,91,110,61,116,93,44,110,32,105,110,32,101,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,110,44,123,118,97,108,117,101,58,105,44,101,110,117,109,101,114,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,119,114,105,116,97,98,108,101,58,33,48,125,41,58,101,91,110,93,61,105,125,41,125,114,101,116,117,114,110,32,111,125,112,61,112,38,38,112,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,100,101,102,97,117,108,116,34,41,63,112,46,100,101,102,97,117,108,116,58,112,59,118,97,114,32,101,61,34,116,114,97,110,115,105,116,105,111,110,101,110,100,34,59,102,117,110,99,116,105,111,110,32,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,33,49,59,114,101,116,117,114,110,32,112,40,116,104,105,115,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,41,123,110,61,33,48,125,41,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,110,124,124,109,46,116,114,105,103,103,101,114,84,114,97,110,115,105,116,105,111,110,69,110,100,40,101,41,125,44,116,41,44,116,104,105,115,125,118,97,114,32,109,61,123,84,82,65,78,83,73,84,73,79,78,95,69,78,68,58,34,98,115,84,114,97,110,115,105,116,105,111,110,69,110,100,34,44,103,101,116,85,73,68,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,59,116,43,61,126,126,40,49,101,54,42,77,97,116,104,46,114,97,110,100,111,109,40,41,41,44,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,116,41,59,41,59,114,101,116,117,114,110,32,116,125,44,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,116,97,114,103,101,116,34,41,59,105,102,40,33,101,124,124,34,35,34,61,61,61,101,41,123,118,97,114,32,110,61,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,41,59,101,61,110,38,38,34,35,34,33,61,61,110,63,110,46,116,114,105,109,40,41,58,34,34,125,116,114,121,123,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,101,41,63,101,58,110,117,108,108,125,99,97,116,99,104,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,125,125,44,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,116,41,114,101,116,117,114,110,32,48,59,118,97,114,32,101,61,112,40,116,41,46,99,115,115,40,34,116,114,97,110,115,105,116,105,111,110,45,100,117,114,97,116,105,111,110,34,41,44,110,61,112,40,116,41,46,99,115,115,40,34,116,114,97,110,115,105,116,105,111,110,45,100,101,108,97,121,34,41,44,105,61,112,97,114,115,101,70,108,111,97,116,40,101,41,44,111,61,112,97,114,115,101,70,108,111,97,116,40,110,41,59,114,101,116,117,114,110,32,105,124,124,111,63,40,101,61,101,46,115,112,108,105,116,40,34,44,34,41,91,48,93,44,110,61,110,46,115,112,108,105,116,40,34,44,34,41,91,48,93,44,49,101,51,42,40,112,97,114,115,101,70,108,111,97,116,40,101,41,43,112,97,114,115,101,70,108,111,97,116,40,110,41,41,41,58,48,125,44,114,101,102,108,111,119,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,111,102,102,115,101,116,72,101,105,103,104,116,125,44,116,114,105,103,103,101,114,84,114,97,110,115,105,116,105,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,41,46,116,114,105,103,103,101,114,40,101,41,125,44,115,117,112,112,111,114,116,115,84,114,97,110,115,105,116,105,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,66,111,111,108,101,97,110,40,101,41,125,44,105,115,69,108,101,109,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,91,48,93,124,124,116,41,46,110,111,100,101,84,121,112,101,125,44,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,102,111,114,40,118,97,114,32,105,32,105,110,32,110,41,105,102,40,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,110,44,105,41,41,123,118,97,114,32,111,61,110,91,105,93,44,114,61,101,91,105,93,44,115,61,114,38,38,109,46,105,115,69,108,101,109,101,110,116,40,114,41,63,34,101,108,101,109,101,110,116,34,58,40,97,61,114,44,123,125,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,97,41,46,109,97,116,99,104,40,47,92,115,40,91,97,45,122,93,43,41,47,105,41,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,59,105,102,40,33,110,101,119,32,82,101,103,69,120,112,40,111,41,46,116,101,115,116,40,115,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,116,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,39,58,32,79,112,116,105,111,110,32,34,39,43,105,43,39,34,32,112,114,111,118,105,100,101,100,32,116,121,112,101,32,34,39,43,115,43,39,34,32,98,117,116,32,101,120,112,101,99,116,101,100,32,116,121,112,101,32,34,39,43,111,43,39,34,46,39,41,125,118,97,114,32,97,125,44,102,105,110,100,83,104,97,100,111,119,82,111,111,116,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,97,116,116,97,99,104,83,104,97,100,111,119,41,114,101,116,117,114,110,32,110,117,108,108,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,82,111,111,116,78,111,100,101,41,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,83,104,97,100,111,119,82,111,111,116,63,116,58,116,46,112,97,114,101,110,116,78,111,100,101,63,109,46,102,105,110,100,83,104,97,100,111,119,82,111,111,116,40,116,46,112,97,114,101,110,116,78,111,100,101,41,58,110,117,108,108,59,118,97,114,32,101,61,116,46,103,101,116,82,111,111,116,78,111,100,101,40,41,59,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,83,104,97,100,111,119,82,111,111,116,63,101,58,110,117,108,108,125,125,59,112,46,102,110,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,61,110,44,112,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,93,61,123,98,105,110,100,84,121,112,101,58,101,44,100,101,108,101,103,97,116,101,84,121,112,101,58,101,44,104,97,110,100,108,101,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,112,40,116,46,116,97,114,103,101,116,41,46,105,115,40,116,104,105,115,41,41,114,101,116,117,114,110,32,116,46,104,97,110,100,108,101,79,98,106,46,104,97,110,100,108,101,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,125,59,118,97,114,32,111,61,34,97,108,101,114,116,34,44,114,61,34,98,115,46,97,108,101,114,116,34,44,97,61,34,46,34,43,114,44,99,61,112,46,102,110,91,111,93,44,104,61,123,67,76,79,83,69,58,34,99,108,111,115,101,34,43,97,44,67,76,79,83,69,68,58,34,99,108,111,115,101,100,34,43,97,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,97,43,34,46,100,97,116,97,45,97,112,105,34,125,44,117,61,34,97,108,101,114,116,34,44,102,61,34,102,97,100,101,34,44,100,61,34,115,104,111,119,34,44,103,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,125,118,97,114,32,116,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,99,108,111,115,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,101,108,101,109,101,110,116,59,116,38,38,40,101,61,116,104,105,115,46,95,103,101,116,82,111,111,116,69,108,101,109,101,110,116,40,116,41,41,44,116,104,105,115,46,95,116,114,105,103,103,101,114,67,108,111,115,101,69,118,101,110,116,40,101,41,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,116,104,105,115,46,95,114,101,109,111,118,101,69,108,101,109,101,110,116,40,101,41,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,114,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,125,44,116,46,95,103,101,116,82,111,111,116,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,41,44,110,61,33,49,59,114,101,116,117,114,110,32,101,38,38,40,110,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,101,41,41,44,110,124,124,40,110,61,112,40,116,41,46,99,108,111,115,101,115,116,40,34,46,34,43,117,41,91,48,93,41,44,110,125,44,116,46,95,116,114,105,103,103,101,114,67,108,111,115,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,112,46,69,118,101,110,116,40,104,46,67,76,79,83,69,41,59,114,101,116,117,114,110,32,112,40,116,41,46,116,114,105,103,103,101,114,40,101,41,44,101,125,44,116,46,95,114,101,109,111,118,101,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,112,40,101,41,46,114,101,109,111,118,101,67,108,97,115,115,40,100,41,44,112,40,101,41,46,104,97,115,67,108,97,115,115,40,102,41,41,123,118,97,114,32,116,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,101,41,59,112,40,101,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,95,100,101,115,116,114,111,121,69,108,101,109,101,110,116,40,101,44,116,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,116,41,125,101,108,115,101,32,116,104,105,115,46,95,100,101,115,116,114,111,121,69,108,101,109,101,110,116,40,101,41,125,44,116,46,95,100,101,115,116,114,111,121,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,41,46,100,101,116,97,99,104,40,41,46,116,114,105,103,103,101,114,40,104,46,67,76,79,83,69,68,41,46,114,101,109,111,118,101,40,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,114,41,59,101,124,124,40,101,61,110,101,119,32,105,40,116,104,105,115,41,44,116,46,100,97,116,97,40,114,44,101,41,41,44,34,99,108,111,115,101,34,61,61,61,110,38,38,101,91,110,93,40,116,104,105,115,41,125,41,125,44,105,46,95,104,97,110,100,108,101,68,105,115,109,105,115,115,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,99,108,111,115,101,40,116,104,105,115,41,125,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,93,41,44,105,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,104,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,39,91,100,97,116,97,45,100,105,115,109,105,115,115,61,34,97,108,101,114,116,34,93,39,44,103,46,95,104,97,110,100,108,101,68,105,115,109,105,115,115,40,110,101,119,32,103,41,41,44,112,46,102,110,91,111,93,61,103,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,111,93,46,67,111,110,115,116,114,117,99,116,111,114,61,103,44,112,46,102,110,91,111,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,111,93,61,99,44,103,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,95,61,34,98,117,116,116,111,110,34,44,118,61,34,98,115,46,98,117,116,116,111,110,34,44,121,61,34,46,34,43,118,44,69,61,34,46,100,97,116,97,45,97,112,105,34,44,98,61,112,46,102,110,91,95,93,44,119,61,34,97,99,116,105,118,101,34,44,67,61,34,98,116,110,34,44,84,61,34,102,111,99,117,115,34,44,83,61,39,91,100,97,116,97,45,116,111,103,103,108,101,94,61,34,98,117,116,116,111,110,34,93,39,44,68,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,98,117,116,116,111,110,115,34,93,39,44,73,61,39,105,110,112,117,116,58,110,111,116,40,91,116,121,112,101,61,34,104,105,100,100,101,110,34,93,41,39,44,65,61,34,46,97,99,116,105,118,101,34,44,79,61,34,46,98,116,110,34,44,78,61,123,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,121,43,69,44,70,79,67,85,83,95,66,76,85,82,95,68,65,84,65,95,65,80,73,58,34,102,111,99,117,115,34,43,121,43,69,43,34,32,98,108,117,114,34,43,121,43,69,125,44,107,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,110,40,116,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,125,118,97,114,32,116,61,110,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,33,48,44,101,61,33,48,44,110,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,68,41,91,48,93,59,105,102,40,110,41,123,118,97,114,32,105,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,73,41,59,105,102,40,105,41,123,105,102,40,34,114,97,100,105,111,34,61,61,61,105,46,116,121,112,101,41,105,102,40,105,46,99,104,101,99,107,101,100,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,119,41,41,116,61,33,49,59,101,108,115,101,123,118,97,114,32,111,61,110,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,65,41,59,111,38,38,112,40,111,41,46,114,101,109,111,118,101,67,108,97,115,115,40,119,41,125,105,102,40,116,41,123,105,102,40,105,46,104,97,115,65,116,116,114,105,98,117,116,101,40,34,100,105,115,97,98,108,101,100,34,41,124,124,110,46,104,97,115,65,116,116,114,105,98,117,116,101,40,34,100,105,115,97,98,108,101,100,34,41,124,124,105,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,34,100,105,115,97,98,108,101,100,34,41,124,124,110,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,34,100,105,115,97,98,108,101,100,34,41,41,114,101,116,117,114,110,59,105,46,99,104,101,99,107,101,100,61,33,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,119,41,44,112,40,105,41,46,116,114,105,103,103,101,114,40,34,99,104,97,110,103,101,34,41,125,105,46,102,111,99,117,115,40,41,44,101,61,33,49,125,125,101,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,112,114,101,115,115,101,100,34,44,33,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,119,41,41,44,116,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,111,103,103,108,101,67,108,97,115,115,40,119,41,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,118,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,125,44,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,118,41,59,116,124,124,40,116,61,110,101,119,32,110,40,116,104,105,115,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,118,44,116,41,41,44,34,116,111,103,103,108,101,34,61,61,61,101,38,38,116,91,101,93,40,41,125,41,125,44,115,40,110,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,93,41,44,110,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,78,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,83,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,101,61,116,46,116,97,114,103,101,116,59,112,40,101,41,46,104,97,115,67,108,97,115,115,40,67,41,124,124,40,101,61,112,40,101,41,46,99,108,111,115,101,115,116,40,79,41,41,44,107,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,101,41,44,34,116,111,103,103,108,101,34,41,125,41,46,111,110,40,78,46,70,79,67,85,83,95,66,76,85,82,95,68,65,84,65,95,65,80,73,44,83,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,112,40,116,46,116,97,114,103,101,116,41,46,99,108,111,115,101,115,116,40,79,41,91,48,93,59,112,40,101,41,46,116,111,103,103,108,101,67,108,97,115,115,40,84,44,47,94,102,111,99,117,115,40,105,110,41,63,36,47,46,116,101,115,116,40,116,46,116,121,112,101,41,41,125,41,44,112,46,102,110,91,95,93,61,107,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,95,93,46,67,111,110,115,116,114,117,99,116,111,114,61,107,44,112,46,102,110,91,95,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,95,93,61,98,44,107,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,76,61,34,99,97,114,111,117,115,101,108,34,44,120,61,34,98,115,46,99,97,114,111,117,115,101,108,34,44,80,61,34,46,34,43,120,44,72,61,34,46,100,97,116,97,45,97,112,105,34,44,106,61,112,46,102,110,91,76,93,44,82,61,123,105,110,116,101,114,118,97,108,58,53,101,51,44,107,101,121,98,111,97,114,100,58,33,48,44,115,108,105,100,101,58,33,49,44,112,97,117,115,101,58,34,104,111,118,101,114,34,44,119,114,97,112,58,33,48,44,116,111,117,99,104,58,33,48,125,44,70,61,123,105,110,116,101,114,118,97,108,58,34,40,110,117,109,98,101,114,124,98,111,111,108,101,97,110,41,34,44,107,101,121,98,111,97,114,100,58,34,98,111,111,108,101,97,110,34,44,115,108,105,100,101,58,34,40,98,111,111,108,101,97,110,124,115,116,114,105,110,103,41,34,44,112,97,117,115,101,58,34,40,115,116,114,105,110,103,124,98,111,111,108,101,97,110,41,34,44,119,114,97,112,58,34,98,111,111,108,101,97,110,34,44,116,111,117,99,104,58,34,98,111,111,108,101,97,110,34,125,44,77,61,34,110,101,120,116,34,44,87,61,34,112,114,101,118,34,44,85,61,34,108,101,102,116,34,44,66,61,34,114,105,103,104,116,34,44,113,61,123,83,76,73,68,69,58,34,115,108,105,100,101,34,43,80,44,83,76,73,68,58,34,115,108,105,100,34,43,80,44,75,69,89,68,79,87,78,58,34,107,101,121,100,111,119,110,34,43,80,44,77,79,85,83,69,69,78,84,69,82,58,34,109,111,117,115,101,101,110,116,101,114,34,43,80,44,77,79,85,83,69,76,69,65,86,69,58,34,109,111,117,115,101,108,101,97,118,101,34,43,80,44,84,79,85,67,72,83,84,65,82,84,58,34,116,111,117,99,104,115,116,97,114,116,34,43,80,44,84,79,85,67,72,77,79,86,69,58,34,116,111,117,99,104,109,111,118,101,34,43,80,44,84,79,85,67,72,69,78,68,58,34,116,111,117,99,104,101,110,100,34,43,80,44,80,79,73,78,84,69,82,68,79,87,78,58,34,112,111,105,110,116,101,114,100,111,119,110,34,43,80,44,80,79,73,78,84,69,82,85,80,58,34,112,111,105,110,116,101,114,117,112,34,43,80,44,68,82,65,71,95,83,84,65,82,84,58,34,100,114,97,103,115,116,97,114,116,34,43,80,44,76,79,65,68,95,68,65,84,65,95,65,80,73,58,34,108,111,97,100,34,43,80,43,72,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,80,43,72,125,44,75,61,34,99,97,114,111,117,115,101,108,34,44,81,61,34,97,99,116,105,118,101,34,44,86,61,34,115,108,105,100,101,34,44,89,61,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,34,44,122,61,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,34,44,88,61,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,34,44,71,61,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,34,44,36,61,34,112,111,105,110,116,101,114,45,101,118,101,110,116,34,44,74,61,34,46,97,99,116,105,118,101,34,44,90,61,34,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,34,44,116,116,61,34,46,99,97,114,111,117,115,101,108,45,105,116,101,109,34,44,101,116,61,34,46,99,97,114,111,117,115,101,108,45,105,116,101,109,32,105,109,103,34,44,110,116,61,34,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,44,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,34,44,105,116,61,34,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,34,44,111,116,61,34,91,100,97,116,97,45,115,108,105,100,101,93,44,32,91,100,97,116,97,45,115,108,105,100,101,45,116,111,93,34,44,114,116,61,39,91,100,97,116,97,45,114,105,100,101,61,34,99,97,114,111,117,115,101,108,34,93,39,44,115,116,61,123,84,79,85,67,72,58,34,116,111,117,99,104,34,44,80,69,78,58,34,112,101,110,34,125,44,97,116,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,114,40,116,44,101,41,123,116,104,105,115,46,95,105,116,101,109,115,61,110,117,108,108,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,110,117,108,108,44,116,104,105,115,46,95,97,99,116,105,118,101,69,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,105,115,80,97,117,115,101,100,61,33,49,44,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,33,49,44,116,104,105,115,46,116,111,117,99,104,84,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,116,111,117,99,104,83,116,97,114,116,88,61,48,44,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,61,48,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,105,116,41,44,116,104,105,115,46,95,116,111,117,99,104,83,117,112,112,111,114,116,101,100,61,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,124,124,48,60,110,97,118,105,103,97,116,111,114,46,109,97,120,84,111,117,99,104,80,111,105,110,116,115,44,116,104,105,115,46,95,112,111,105,110,116,101,114,69,118,101,110,116,61,66,111,111,108,101,97,110,40,119,105,110,100,111,119,46,80,111,105,110,116,101,114,69,118,101,110,116,124,124,119,105,110,100,111,119,46,77,83,80,111,105,110,116,101,114,69,118,101,110,116,41,44,116,104,105,115,46,95,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,125,118,97,114,32,116,61,114,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,110,101,120,116,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,124,124,116,104,105,115,46,95,115,108,105,100,101,40,77,41,125,44,116,46,110,101,120,116,87,104,101,110,86,105,115,105,98,108,101,61,102,117,110,99,116,105,111,110,40,41,123,33,100,111,99,117,109,101,110,116,46,104,105,100,100,101,110,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,105,115,40,34,58,118,105,115,105,98,108,101,34,41,38,38,34,104,105,100,100,101,110,34,33,61,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,99,115,115,40,34,118,105,115,105,98,105,108,105,116,121,34,41,38,38,116,104,105,115,46,110,101,120,116,40,41,125,44,116,46,112,114,101,118,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,124,124,116,104,105,115,46,95,115,108,105,100,101,40,87,41,125,44,116,46,112,97,117,115,101,61,102,117,110,99,116,105,111,110,40,116,41,123,116,124,124,40,116,104,105,115,46,95,105,115,80,97,117,115,101,100,61,33,48,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,110,116,41,38,38,40,109,46,116,114,105,103,103,101,114,84,114,97,110,115,105,116,105,111,110,69,110,100,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,116,104,105,115,46,99,121,99,108,101,40,33,48,41,41,44,99,108,101,97,114,73,110,116,101,114,118,97,108,40,116,104,105,115,46,95,105,110,116,101,114,118,97,108,41,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,110,117,108,108,125,44,116,46,99,121,99,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,116,124,124,40,116,104,105,115,46,95,105,115,80,97,117,115,101,100,61,33,49,41,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,38,38,40,99,108,101,97,114,73,110,116,101,114,118,97,108,40,116,104,105,115,46,95,105,110,116,101,114,118,97,108,41,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,110,117,108,108,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,38,38,33,116,104,105,115,46,95,105,115,80,97,117,115,101,100,38,38,40,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,115,101,116,73,110,116,101,114,118,97,108,40,40,100,111,99,117,109,101,110,116,46,118,105,115,105,98,105,108,105,116,121,83,116,97,116,101,63,116,104,105,115,46,110,101,120,116,87,104,101,110,86,105,115,105,98,108,101,58,116,104,105,115,46,110,101,120,116,41,46,98,105,110,100,40,116,104,105,115,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,41,41,125,44,116,46,116,111,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,97,99,116,105,118,101,69,108,101,109,101,110,116,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,90,41,59,118,97,114,32,110,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,116,104,105,115,46,95,97,99,116,105,118,101,69,108,101,109,101,110,116,41,59,105,102,40,33,40,116,62,116,104,105,115,46,95,105,116,101,109,115,46,108,101,110,103,116,104,45,49,124,124,116,60,48,41,41,105,102,40,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,41,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,113,46,83,76,73,68,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,116,111,40,116,41,125,41,59,101,108,115,101,123,105,102,40,110,61,61,61,116,41,114,101,116,117,114,110,32,116,104,105,115,46,112,97,117,115,101,40,41,44,118,111,105,100,32,116,104,105,115,46,99,121,99,108,101,40,41,59,118,97,114,32,105,61,110,60,116,63,77,58,87,59,116,104,105,115,46,95,115,108,105,100,101,40,105,44,116,104,105,115,46,95,105,116,101,109,115,91,116,93,41,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,80,41,44,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,120,41,44,116,104,105,115,46,95,105,116,101,109,115,61,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,110,117,108,108,44,116,104,105,115,46,95,105,115,80,97,117,115,101,100,61,110,117,108,108,44,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,110,117,108,108,44,116,104,105,115,46,95,97,99,116,105,118,101,69,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,61,110,117,108,108,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,108,40,123,125,44,82,44,116,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,76,44,116,44,70,41,44,116,125,44,116,46,95,104,97,110,100,108,101,83,119,105,112,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,77,97,116,104,46,97,98,115,40,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,41,59,105,102,40,33,40,116,60,61,52,48,41,41,123,118,97,114,32,101,61,116,47,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,59,48,60,101,38,38,116,104,105,115,46,112,114,101,118,40,41,44,101,60,48,38,38,116,104,105,115,46,110,101,120,116,40,41,125,125,44,116,46,95,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,99,111,110,102,105,103,46,107,101,121,98,111,97,114,100,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,75,69,89,68,79,87,78,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,95,107,101,121,100,111,119,110,40,116,41,125,41,44,34,104,111,118,101,114,34,61,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,117,115,101,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,77,79,85,83,69,69,78,84,69,82,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,112,97,117,115,101,40,116,41,125,41,46,111,110,40,113,46,77,79,85,83,69,76,69,65,86,69,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,99,121,99,108,101,40,116,41,125,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,116,111,117,99,104,38,38,116,104,105,115,46,95,97,100,100,84,111,117,99,104,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,125,44,116,46,95,97,100,100,84,111,117,99,104,69,118,101,110,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,116,104,105,115,46,95,116,111,117,99,104,83,117,112,112,111,114,116,101,100,41,123,118,97,114,32,101,61,102,117,110,99,116,105,111,110,40,116,41,123,110,46,95,112,111,105,110,116,101,114,69,118,101,110,116,38,38,115,116,91,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,112,111,105,110,116,101,114,84,121,112,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,93,63,110,46,116,111,117,99,104,83,116,97,114,116,88,61,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,99,108,105,101,110,116,88,58,110,46,95,112,111,105,110,116,101,114,69,118,101,110,116,124,124,40,110,46,116,111,117,99,104,83,116,97,114,116,88,61,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,99,108,105,101,110,116,88,41,125,44,105,61,102,117,110,99,116,105,111,110,40,116,41,123,110,46,95,112,111,105,110,116,101,114,69,118,101,110,116,38,38,115,116,91,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,112,111,105,110,116,101,114,84,121,112,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,93,38,38,40,110,46,116,111,117,99,104,68,101,108,116,97,88,61,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,99,108,105,101,110,116,88,45,110,46,116,111,117,99,104,83,116,97,114,116,88,41,44,110,46,95,104,97,110,100,108,101,83,119,105,112,101,40,41,44,34,104,111,118,101,114,34,61,61,61,110,46,95,99,111,110,102,105,103,46,112,97,117,115,101,38,38,40,110,46,112,97,117,115,101,40,41,44,110,46,116,111,117,99,104,84,105,109,101,111,117,116,38,38,99,108,101,97,114,84,105,109,101,111,117,116,40,110,46,116,111,117,99,104,84,105,109,101,111,117,116,41,44,110,46,116,111,117,99,104,84,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,99,121,99,108,101,40,116,41,125,44,53,48,48,43,110,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,41,41,125,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,101,116,41,41,46,111,110,40,113,46,68,82,65,71,95,83,84,65,82,84,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,125,41,44,116,104,105,115,46,95,112,111,105,110,116,101,114,69,118,101,110,116,63,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,80,79,73,78,84,69,82,68,79,87,78,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,40,116,41,125,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,80,79,73,78,84,69,82,85,80,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,41,125,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,36,41,41,58,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,84,79,85,67,72,83,84,65,82,84,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,40,116,41,125,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,84,79,85,67,72,77,79,86,69,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,59,40,101,61,116,41,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,49,60,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,46,108,101,110,103,116,104,63,110,46,116,111,117,99,104,68,101,108,116,97,88,61,48,58,110,46,116,111,117,99,104,68,101,108,116,97,88,61,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,99,108,105,101,110,116,88,45,110,46,116,111,117,99,104,83,116,97,114,116,88,125,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,84,79,85,67,72,69,78,68,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,41,125,41,41,125,125,44,116,46,95,107,101,121,100,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,47,105,110,112,117,116,124,116,101,120,116,97,114,101,97,47,105,46,116,101,115,116,40,116,46,116,97,114,103,101,116,46,116,97,103,78,97,109,101,41,41,115,119,105,116,99,104,40,116,46,119,104,105,99,104,41,123,99,97,115,101,32,51,55,58,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,112,114,101,118,40,41,59,98,114,101,97,107,59,99,97,115,101,32,51,57,58,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,110,101,120,116,40,41,125,125,44,116,46,95,103,101,116,73,116,101,109,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,105,116,101,109,115,61,116,38,38,116,46,112,97,114,101,110,116,78,111,100,101,63,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,46,112,97,114,101,110,116,78,111,100,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,116,41,41,58,91,93,44,116,104,105,115,46,95,105,116,101,109,115,46,105,110,100,101,120,79,102,40,116,41,125,44,116,46,95,103,101,116,73,116,101,109,66,121,68,105,114,101,99,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,61,61,61,77,44,105,61,116,61,61,61,87,44,111,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,101,41,44,114,61,116,104,105,115,46,95,105,116,101,109,115,46,108,101,110,103,116,104,45,49,59,105,102,40,40,105,38,38,48,61,61,61,111,124,124,110,38,38,111,61,61,61,114,41,38,38,33,116,104,105,115,46,95,99,111,110,102,105,103,46,119,114,97,112,41,114,101,116,117,114,110,32,101,59,118,97,114,32,115,61,40,111,43,40,116,61,61,61,87,63,45,49,58,49,41,41,37,116,104,105,115,46,95,105,116,101,109,115,46,108,101,110,103,116,104,59,114,101,116,117,114,110,45,49,61,61,61,115,63,116,104,105,115,46,95,105,116,101,109,115,91,116,104,105,115,46,95,105,116,101,109,115,46,108,101,110,103,116,104,45,49,93,58,116,104,105,115,46,95,105,116,101,109,115,91,115,93,125,44,116,46,95,116,114,105,103,103,101,114,83,108,105,100,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,116,41,44,105,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,90,41,41,44,111,61,112,46,69,118,101,110,116,40,113,46,83,76,73,68,69,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,44,100,105,114,101,99,116,105,111,110,58,101,44,102,114,111,109,58,105,44,116,111,58,110,125,41,59,114,101,116,117,114,110,32,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,111,41,44,111,125,44,116,46,95,115,101,116,65,99,116,105,118,101,73,110,100,105,99,97,116,111,114,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,41,123,118,97,114,32,101,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,74,41,41,59,112,40,101,41,46,114,101,109,111,118,101,67,108,97,115,115,40,81,41,59,118,97,114,32,110,61,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,46,99,104,105,108,100,114,101,110,91,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,116,41,93,59,110,38,38,112,40,110,41,46,97,100,100,67,108,97,115,115,40,81,41,125,125,44,116,46,95,115,108,105,100,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,105,44,111,44,114,61,116,104,105,115,44,115,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,90,41,44,97,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,115,41,44,108,61,101,124,124,115,38,38,116,104,105,115,46,95,103,101,116,73,116,101,109,66,121,68,105,114,101,99,116,105,111,110,40,116,44,115,41,44,99,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,108,41,44,104,61,66,111,111,108,101,97,110,40,116,104,105,115,46,95,105,110,116,101,114,118,97,108,41,59,105,102,40,111,61,116,61,61,61,77,63,40,110,61,122,44,105,61,88,44,85,41,58,40,110,61,89,44,105,61,71,44,66,41,44,108,38,38,112,40,108,41,46,104,97,115,67,108,97,115,115,40,81,41,41,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,33,49,59,101,108,115,101,32,105,102,40,33,116,104,105,115,46,95,116,114,105,103,103,101,114,83,108,105,100,101,69,118,101,110,116,40,108,44,111,41,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,38,38,115,38,38,108,41,123,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,33,48,44,104,38,38,116,104,105,115,46,112,97,117,115,101,40,41,44,116,104,105,115,46,95,115,101,116,65,99,116,105,118,101,73,110,100,105,99,97,116,111,114,69,108,101,109,101,110,116,40,108,41,59,118,97,114,32,117,61,112,46,69,118,101,110,116,40,113,46,83,76,73,68,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,108,44,100,105,114,101,99,116,105,111,110,58,111,44,102,114,111,109,58,97,44,116,111,58,99,125,41,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,86,41,41,123,112,40,108,41,46,97,100,100,67,108,97,115,115,40,105,41,44,109,46,114,101,102,108,111,119,40,108,41,44,112,40,115,41,46,97,100,100,67,108,97,115,115,40,110,41,44,112,40,108,41,46,97,100,100,67,108,97,115,115,40,110,41,59,118,97,114,32,102,61,112,97,114,115,101,73,110,116,40,108,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,105,110,116,101,114,118,97,108,34,41,44,49,48,41,59,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,61,102,63,40,116,104,105,115,46,95,99,111,110,102,105,103,46,100,101,102,97,117,108,116,73,110,116,101,114,118,97,108,61,116,104,105,115,46,95,99,111,110,102,105,103,46,100,101,102,97,117,108,116,73,110,116,101,114,118,97,108,124,124,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,44,102,41,58,116,104,105,115,46,95,99,111,110,102,105,103,46,100,101,102,97,117,108,116,73,110,116,101,114,118,97,108,124,124,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,59,118,97,114,32,100,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,115,41,59,112,40,115,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,41,123,112,40,108,41,46,114,101,109,111,118,101,67,108,97,115,115,40,110,43,34,32,34,43,105,41,46,97,100,100,67,108,97,115,115,40,81,41,44,112,40,115,41,46,114,101,109,111,118,101,67,108,97,115,115,40,81,43,34,32,34,43,105,43,34,32,34,43,110,41,44,114,46,95,105,115,83,108,105,100,105,110,103,61,33,49,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,40,114,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,117,41,125,44,48,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,100,41,125,101,108,115,101,32,112,40,115,41,46,114,101,109,111,118,101,67,108,97,115,115,40,81,41,44,112,40,108,41,46,97,100,100,67,108,97,115,115,40,81,41,44,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,33,49,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,117,41,59,104,38,38,116,104,105,115,46,99,121,99,108,101,40,41,125,125,44,114,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,105,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,120,41,44,101,61,108,40,123,125,44,82,44,112,40,116,104,105,115,41,46,100,97,116,97,40,41,41,59,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,105,38,38,40,101,61,108,40,123,125,44,101,44,105,41,41,59,118,97,114,32,110,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,105,63,105,58,101,46,115,108,105,100,101,59,105,102,40,116,124,124,40,116,61,110,101,119,32,114,40,116,104,105,115,44,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,120,44,116,41,41,44,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,105,41,116,46,116,111,40,105,41,59,101,108,115,101,32,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,116,91,110,93,40,41,125,101,108,115,101,32,101,46,105,110,116,101,114,118,97,108,38,38,101,46,114,105,100,101,38,38,40,116,46,112,97,117,115,101,40,41,44,116,46,99,121,99,108,101,40,41,41,125,41,125,44,114,46,95,100,97,116,97,65,112,105,67,108,105,99,107,72,97,110,100,108,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,41,59,105,102,40,101,41,123,118,97,114,32,110,61,112,40,101,41,91,48,93,59,105,102,40,110,38,38,112,40,110,41,46,104,97,115,67,108,97,115,115,40,75,41,41,123,118,97,114,32,105,61,108,40,123,125,44,112,40,110,41,46,100,97,116,97,40,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,41,41,44,111,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,115,108,105,100,101,45,116,111,34,41,59,111,38,38,40,105,46,105,110,116,101,114,118,97,108,61,33,49,41,44,114,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,110,41,44,105,41,44,111,38,38,112,40,110,41,46,100,97,116,97,40,120,41,46,116,111,40,111,41,44,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,125,125,125,44,115,40,114,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,82,125,125,93,41,44,114,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,113,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,111,116,44,97,116,46,95,100,97,116,97,65,112,105,67,108,105,99,107,72,97,110,100,108,101,114,41,44,112,40,119,105,110,100,111,119,41,46,111,110,40,113,46,76,79,65,68,95,68,65,84,65,95,65,80,73,44,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,114,116,41,41,44,101,61,48,44,110,61,116,46,108,101,110,103,116,104,59,101,60,110,59,101,43,43,41,123,118,97,114,32,105,61,112,40,116,91,101,93,41,59,97,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,105,44,105,46,100,97,116,97,40,41,41,125,125,41,44,112,46,102,110,91,76,93,61,97,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,76,93,46,67,111,110,115,116,114,117,99,116,111,114,61,97,116,44,112,46,102,110,91,76,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,76,93,61,106,44,97,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,108,116,61,34,99,111,108,108,97,112,115,101,34,44,99,116,61,34,98,115,46,99,111,108,108,97,112,115,101,34,44,104,116,61,34,46,34,43,99,116,44,117,116,61,112,46,102,110,91,108,116,93,44,102,116,61,123,116,111,103,103,108,101,58,33,48,44,112,97,114,101,110,116,58,34,34,125,44,100,116,61,123,116,111,103,103,108,101,58,34,98,111,111,108,101,97,110,34,44,112,97,114,101,110,116,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,125,44,112,116,61,123,83,72,79,87,58,34,115,104,111,119,34,43,104,116,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,104,116,44,72,73,68,69,58,34,104,105,100,101,34,43,104,116,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,104,116,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,104,116,43,34,46,100,97,116,97,45,97,112,105,34,125,44,109,116,61,34,115,104,111,119,34,44,103,116,61,34,99,111,108,108,97,112,115,101,34,44,95,116,61,34,99,111,108,108,97,112,115,105,110,103,34,44,118,116,61,34,99,111,108,108,97,112,115,101,100,34,44,121,116,61,34,119,105,100,116,104,34,44,69,116,61,34,104,101,105,103,104,116,34,44,98,116,61,34,46,115,104,111,119,44,32,46,99,111,108,108,97,112,115,105,110,103,34,44,119,116,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,99,111,108,108,97,112,115,101,34,93,39,44,67,116,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,97,40,101,44,116,41,123,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,101,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,116,41,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,99,111,108,108,97,112,115,101,34,93,91,104,114,101,102,61,34,35,39,43,101,46,105,100,43,39,34,93,44,91,100,97,116,97,45,116,111,103,103,108,101,61,34,99,111,108,108,97,112,115,101,34,93,91,100,97,116,97,45,116,97,114,103,101,116,61,34,35,39,43,101,46,105,100,43,39,34,93,39,41,41,59,102,111,114,40,118,97,114,32,110,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,119,116,41,41,44,105,61,48,44,111,61,110,46,108,101,110,103,116,104,59,105,60,111,59,105,43,43,41,123,118,97,114,32,114,61,110,91,105,93,44,115,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,114,41,44,97,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,115,41,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,61,61,101,125,41,59,110,117,108,108,33,61,61,115,38,38,48,60,97,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,61,115,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,46,112,117,115,104,40,114,41,41,125,116,104,105,115,46,95,112,97,114,101,110,116,61,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,63,116,104,105,115,46,95,103,101,116,80,97,114,101,110,116,40,41,58,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,124,124,116,104,105,115,46,95,97,100,100,65,114,105,97,65,110,100,67,111,108,108,97,112,115,101,100,67,108,97,115,115,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,116,111,103,103,108,101,38,38,116,104,105,115,46,116,111,103,103,108,101,40,41,125,118,97,114,32,116,61,97,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,41,123,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,109,116,41,63,116,104,105,115,46,104,105,100,101,40,41,58,116,104,105,115,46,115,104,111,119,40,41,125,44,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,101,44,110,61,116,104,105,115,59,105,102,40,33,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,38,38,33,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,109,116,41,38,38,40,116,104,105,115,46,95,112,97,114,101,110,116,38,38,48,61,61,61,40,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,104,105,115,46,95,112,97,114,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,98,116,41,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,63,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,112,97,114,101,110,116,34,41,61,61,61,110,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,58,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,103,116,41,125,41,41,46,108,101,110,103,116,104,38,38,40,116,61,110,117,108,108,41,44,33,40,116,38,38,40,101,61,112,40,116,41,46,110,111,116,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,41,46,100,97,116,97,40,99,116,41,41,38,38,101,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,41,41,41,123,118,97,114,32,105,61,112,46,69,118,101,110,116,40,112,116,46,83,72,79,87,41,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,105,41,44,33,105,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,116,38,38,40,97,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,116,41,46,110,111,116,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,41,44,34,104,105,100,101,34,41,44,101,124,124,112,40,116,41,46,100,97,116,97,40,99,116,44,110,117,108,108,41,41,59,118,97,114,32,111,61,116,104,105,115,46,95,103,101,116,68,105,109,101,110,115,105,111,110,40,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,103,116,41,46,97,100,100,67,108,97,115,115,40,95,116,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,111,93,61,48,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,46,108,101,110,103,116,104,38,38,112,40,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,41,46,114,101,109,111,118,101,67,108,97,115,115,40,118,116,41,46,97,116,116,114,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,33,48,41,44,116,104,105,115,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,40,33,48,41,59,118,97,114,32,114,61,34,115,99,114,111,108,108,34,43,40,111,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,111,46,115,108,105,99,101,40,49,41,41,44,115,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,41,123,112,40,110,46,95,101,108,101,109,101,110,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,95,116,41,46,97,100,100,67,108,97,115,115,40,103,116,41,46,97,100,100,67,108,97,115,115,40,109,116,41,44,110,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,111,93,61,34,34,44,110,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,40,33,49,41,44,112,40,110,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,112,116,46,83,72,79,87,78,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,115,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,111,93,61,116,104,105,115,46,95,101,108,101,109,101,110,116,91,114,93,43,34,112,120,34,125,125,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,105,102,40,33,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,109,116,41,41,123,118,97,114,32,101,61,112,46,69,118,101,110,116,40,112,116,46,72,73,68,69,41,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,101,41,44,33,101,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,118,97,114,32,110,61,116,104,105,115,46,95,103,101,116,68,105,109,101,110,115,105,111,110,40,41,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,110,93,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,91,110,93,43,34,112,120,34,44,109,46,114,101,102,108,111,119,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,97,100,100,67,108,97,115,115,40,95,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,103,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,109,116,41,59,118,97,114,32,105,61,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,46,108,101,110,103,116,104,59,105,102,40,48,60,105,41,102,111,114,40,118,97,114,32,111,61,48,59,111,60,105,59,111,43,43,41,123,118,97,114,32,114,61,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,91,111,93,44,115,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,114,41,59,105,102,40,110,117,108,108,33,61,61,115,41,112,40,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,115,41,41,41,46,104,97,115,67,108,97,115,115,40,109,116,41,124,124,112,40,114,41,46,97,100,100,67,108,97,115,115,40,118,116,41,46,97,116,116,114,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,33,49,41,125,116,104,105,115,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,40,33,48,41,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,110,93,61,34,34,59,118,97,114,32,97,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,41,123,116,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,40,33,49,41,44,112,40,116,46,95,101,108,101,109,101,110,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,95,116,41,46,97,100,100,67,108,97,115,115,40,103,116,41,46,116,114,105,103,103,101,114,40,112,116,46,72,73,68,68,69,78,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,97,41,125,125,125,44,116,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,116,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,99,116,41,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,95,112,97,114,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,61,110,117,108,108,44,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,110,117,108,108,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,61,108,40,123,125,44,102,116,44,116,41,41,46,116,111,103,103,108,101,61,66,111,111,108,101,97,110,40,116,46,116,111,103,103,108,101,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,108,116,44,116,44,100,116,41,44,116,125,44,116,46,95,103,101,116,68,105,109,101,110,115,105,111,110,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,121,116,41,63,121,116,58,69,116,125,44,116,46,95,103,101,116,80,97,114,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,61,116,104,105,115,59,109,46,105,115,69,108,101,109,101,110,116,40,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,41,63,40,116,61,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,44,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,46,106,113,117,101,114,121,38,38,40,116,61,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,91,48,93,41,41,58,116,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,41,59,118,97,114,32,101,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,99,111,108,108,97,112,115,101,34,93,91,100,97,116,97,45,112,97,114,101,110,116,61,34,39,43,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,43,39,34,93,39,44,105,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,101,41,41,59,114,101,116,117,114,110,32,112,40,105,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,110,46,95,97,100,100,65,114,105,97,65,110,100,67,111,108,108,97,112,115,101,100,67,108,97,115,115,40,97,46,95,103,101,116,84,97,114,103,101,116,70,114,111,109,69,108,101,109,101,110,116,40,101,41,44,91,101,93,41,125,41,44,116,125,44,116,46,95,97,100,100,65,114,105,97,65,110,100,67,111,108,108,97,112,115,101,100,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,112,40,116,41,46,104,97,115,67,108,97,115,115,40,109,116,41,59,101,46,108,101,110,103,116,104,38,38,112,40,101,41,46,116,111,103,103,108,101,67,108,97,115,115,40,118,116,44,33,110,41,46,97,116,116,114,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,110,41,125,44,97,46,95,103,101,116,84,97,114,103,101,116,70,114,111,109,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,41,59,114,101,116,117,114,110,32,101,63,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,101,41,58,110,117,108,108,125,44,97,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,105,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,99,116,41,44,110,61,108,40,123,125,44,102,116,44,116,46,100,97,116,97,40,41,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,105,38,38,105,63,105,58,123,125,41,59,105,102,40,33,101,38,38,110,46,116,111,103,103,108,101,38,38,47,115,104,111,119,124,104,105,100,101,47,46,116,101,115,116,40,105,41,38,38,40,110,46,116,111,103,103,108,101,61,33,49,41,44,101,124,124,40,101,61,110,101,119,32,97,40,116,104,105,115,44,110,41,44,116,46,100,97,116,97,40,99,116,44,101,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,105,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,101,91,105,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,105,43,39,34,39,41,59,101,91,105,93,40,41,125,125,41,125,44,115,40,97,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,116,125,125,93,41,44,97,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,112,116,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,119,116,44,102,117,110,99,116,105,111,110,40,116,41,123,34,65,34,61,61,61,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,46,116,97,103,78,97,109,101,38,38,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,110,61,112,40,116,104,105,115,41,44,101,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,41,44,105,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,101,41,41,59,112,40,105,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,99,116,41,63,34,116,111,103,103,108,101,34,58,110,46,100,97,116,97,40,41,59,67,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,116,44,101,41,125,41,125,41,44,112,46,102,110,91,108,116,93,61,67,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,108,116,93,46,67,111,110,115,116,114,117,99,116,111,114,61,67,116,44,112,46,102,110,91,108,116,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,108,116,93,61,117,116,44,67,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,102,111,114,40,118,97,114,32,84,116,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,44,83,116,61,91,34,69,100,103,101,34,44,34,84,114,105,100,101,110,116,34,44,34,70,105,114,101,102,111,120,34,93,44,68,116,61,48,44,73,116,61,48,59,73,116,60,83,116,46,108,101,110,103,116,104,59,73,116,43,61,49,41,105,102,40,84,116,38,38,48,60,61,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,46,105,110,100,101,120,79,102,40,83,116,91,73,116,93,41,41,123,68,116,61,49,59,98,114,101,97,107,125,118,97,114,32,65,116,61,84,116,38,38,119,105,110,100,111,119,46,80,114,111,109,105,115,101,63,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,33,49,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,101,124,124,40,101,61,33,48,44,119,105,110,100,111,119,46,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,101,61,33,49,44,116,40,41,125,41,41,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,33,49,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,101,124,124,40,101,61,33,48,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,61,33,49,44,116,40,41,125,44,68,116,41,41,125,125,59,102,117,110,99,116,105,111,110,32,79,116,40,116,41,123,114,101,116,117,114,110,32,116,38,38,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,61,61,61,123,125,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,78,116,40,116,44,101,41,123,105,102,40,49,33,61,61,116,46,110,111,100,101,84,121,112,101,41,114,101,116,117,114,110,91,93,59,118,97,114,32,110,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,116,44,110,117,108,108,41,59,114,101,116,117,114,110,32,101,63,110,91,101,93,58,110,125,102,117,110,99,116,105,111,110,32,107,116,40,116,41,123,114,101,116,117,114,110,34,72,84,77,76,34,61,61,61,116,46,110,111,100,101,78,97,109,101,63,116,58,116,46,112,97,114,101,110,116,78,111,100,101,124,124,116,46,104,111,115,116,125,102,117,110,99,116,105,111,110,32,76,116,40,116,41,123,105,102,40,33,116,41,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,98,111,100,121,59,115,119,105,116,99,104,40,116,46,110,111,100,101,78,97,109,101,41,123,99,97,115,101,34,72,84,77,76,34,58,99,97,115,101,34,66,79,68,89,34,58,114,101,116,117,114,110,32,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,98,111,100,121,59,99,97,115,101,34,35,100,111,99,117,109,101,110,116,34,58,114,101,116,117,114,110,32,116,46,98,111,100,121,125,118,97,114,32,101,61,78,116,40,116,41,44,110,61,101,46,111,118,101,114,102,108,111,119,44,105,61,101,46,111,118,101,114,102,108,111,119,88,44,111,61,101,46,111,118,101,114,102,108,111,119,89,59,114,101,116,117,114,110,47,40,97,117,116,111,124,115,99,114,111,108,108,124,111,118,101,114,108,97,121,41,47,46,116,101,115,116,40,110,43,111,43,105,41,63,116,58,76,116,40,107,116,40,116,41,41,125,118,97,114,32,120,116,61,84,116,38,38,33,40,33,119,105,110,100,111,119,46,77,83,73,110,112,117,116,77,101,116,104,111,100,67,111,110,116,101,120,116,124,124,33,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,77,111,100,101,41,44,80,116,61,84,116,38,38,47,77,83,73,69,32,49,48,47,46,116,101,115,116,40,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,41,59,102,117,110,99,116,105,111,110,32,72,116,40,116,41,123,114,101,116,117,114,110,32,49,49,61,61,61,116,63,120,116,58,49,48,61,61,61,116,63,80,116,58,120,116,124,124,80,116,125,102,117,110,99,116,105,111,110,32,106,116,40,116,41,123,105,102,40,33,116,41,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,102,111,114,40,118,97,114,32,101,61,72,116,40,49,48,41,63,100,111,99,117,109,101,110,116,46,98,111,100,121,58,110,117,108,108,44,110,61,116,46,111,102,102,115,101,116,80,97,114,101,110,116,124,124,110,117,108,108,59,110,61,61,61,101,38,38,116,46,110,101,120,116,69,108,101,109,101,110,116,83,105,98,108,105,110,103,59,41,110,61,40,116,61,116,46,110,101,120,116,69,108,101,109,101,110,116,83,105,98,108,105,110,103,41,46,111,102,102,115,101,116,80,97,114,101,110,116,59,118,97,114,32,105,61,110,38,38,110,46,110,111,100,101,78,97,109,101,59,114,101,116,117,114,110,32,105,38,38,34,66,79,68,89,34,33,61,61,105,38,38,34,72,84,77,76,34,33,61,61,105,63,45,49,33,61,61,91,34,84,72,34,44,34,84,68,34,44,34,84,65,66,76,69,34,93,46,105,110,100,101,120,79,102,40,110,46,110,111,100,101,78,97,109,101,41,38,38,34,115,116,97,116,105,99,34,61,61,61,78,116,40,110,44,34,112,111,115,105,116,105,111,110,34,41,63,106,116,40,110,41,58,110,58,116,63,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,58,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,125,102,117,110,99,116,105,111,110,32,82,116,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,46,112,97,114,101,110,116,78,111,100,101,63,82,116,40,116,46,112,97,114,101,110,116,78,111,100,101,41,58,116,125,102,117,110,99,116,105,111,110,32,70,116,40,116,44,101,41,123,105,102,40,33,40,116,38,38,116,46,110,111,100,101,84,121,112,101,38,38,101,38,38,101,46,110,111,100,101,84,121,112,101,41,41,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,118,97,114,32,110,61,116,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,101,41,38,78,111,100,101,46,68,79,67,85,77,69,78,84,95,80,79,83,73,84,73,79,78,95,70,79,76,76,79,87,73,78,71,44,105,61,110,63,116,58,101,44,111,61,110,63,101,58,116,44,114,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,82,97,110,103,101,40,41,59,114,46,115,101,116,83,116,97,114,116,40,105,44,48,41,44,114,46,115,101,116,69,110,100,40,111,44,48,41,59,118,97,114,32,115,44,97,44,108,61,114,46,99,111,109,109,111,110,65,110,99,101,115,116,111,114,67,111,110,116,97,105,110,101,114,59,105,102,40,116,33,61,61,108,38,38,101,33,61,61,108,124,124,105,46,99,111,110,116,97,105,110,115,40,111,41,41,114,101,116,117,114,110,34,66,79,68,89,34,61,61,61,40,97,61,40,115,61,108,41,46,110,111,100,101,78,97,109,101,41,124,124,34,72,84,77,76,34,33,61,61,97,38,38,106,116,40,115,46,102,105,114,115,116,69,108,101,109,101,110,116,67,104,105,108,100,41,33,61,61,115,63,106,116,40,108,41,58,108,59,118,97,114,32,99,61,82,116,40,116,41,59,114,101,116,117,114,110,32,99,46,104,111,115,116,63,70,116,40,99,46,104,111,115,116,44,101,41,58,70,116,40,116,44,82,116,40,101,41,46,104,111,115,116,41,125,102,117,110,99,116,105,111,110,32,77,116,40,116,41,123,118,97,114,32,101,61,34,116,111,112,34,61,61,61,40,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,34,116,111,112,34,41,63,34,115,99,114,111,108,108,84,111,112,34,58,34,115,99,114,111,108,108,76,101,102,116,34,44,110,61,116,46,110,111,100,101,78,97,109,101,59,105,102,40,34,66,79,68,89,34,33,61,61,110,38,38,34,72,84,77,76,34,33,61,61,110,41,114,101,116,117,114,110,32,116,91,101,93,59,118,97,114,32,105,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,114,101,116,117,114,110,40,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,115,99,114,111,108,108,105,110,103,69,108,101,109,101,110,116,124,124,105,41,91,101,93,125,102,117,110,99,116,105,111,110,32,87,116,40,116,44,101,41,123,118,97,114,32,110,61,34,120,34,61,61,61,101,63,34,76,101,102,116,34,58,34,84,111,112,34,44,105,61,34,76,101,102,116,34,61,61,61,110,63,34,82,105,103,104,116,34,58,34,66,111,116,116,111,109,34,59,114,101,116,117,114,110,32,112,97,114,115,101,70,108,111,97,116,40,116,91,34,98,111,114,100,101,114,34,43,110,43,34,87,105,100,116,104,34,93,44,49,48,41,43,112,97,114,115,101,70,108,111,97,116,40,116,91,34,98,111,114,100,101,114,34,43,105,43,34,87,105,100,116,104,34,93,44,49,48,41,125,102,117,110,99,116,105,111,110,32,85,116,40,116,44,101,44,110,44,105,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,101,91,34,111,102,102,115,101,116,34,43,116,93,44,101,91,34,115,99,114,111,108,108,34,43,116,93,44,110,91,34,99,108,105,101,110,116,34,43,116,93,44,110,91,34,111,102,102,115,101,116,34,43,116,93,44,110,91,34,115,99,114,111,108,108,34,43,116,93,44,72,116,40,49,48,41,63,112,97,114,115,101,73,110,116,40,110,91,34,111,102,102,115,101,116,34,43,116,93,41,43,112,97,114,115,101,73,110,116,40,105,91,34,109,97,114,103,105,110,34,43,40,34,72,101,105,103,104,116,34,61,61,61,116,63,34,84,111,112,34,58,34,76,101,102,116,34,41,93,41,43,112,97,114,115,101,73,110,116,40,105,91,34,109,97,114,103,105,110,34,43,40,34,72,101,105,103,104,116,34,61,61,61,116,63,34,66,111,116,116,111,109,34,58,34,82,105,103,104,116,34,41,93,41,58,48,41,125,102,117,110,99,116,105,111,110,32,66,116,40,116,41,123,118,97,114,32,101,61,116,46,98,111,100,121,44,110,61,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,105,61,72,116,40,49,48,41,38,38,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,110,41,59,114,101,116,117,114,110,123,104,101,105,103,104,116,58,85,116,40,34,72,101,105,103,104,116,34,44,101,44,110,44,105,41,44,119,105,100,116,104,58,85,116,40,34,87,105,100,116,104,34,44,101,44,110,44,105,41,125,125,118,97,114,32,113,116,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,101,46,108,101,110,103,116,104,59,110,43,43,41,123,118,97,114,32,105,61,101,91,110,93,59,105,46,101,110,117,109,101,114,97,98,108,101,61,105,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,105,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,105,38,38,40,105,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,105,46,107,101,121,44,105,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,38,38,105,40,116,46,112,114,111,116,111,116,121,112,101,44,101,41,44,110,38,38,105,40,116,44,110,41,44,116,125,125,40,41,44,75,116,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,32,105,110,32,116,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,101,44,123,118,97,108,117,101,58,110,44,101,110,117,109,101,114,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,119,114,105,116,97,98,108,101,58,33,48,125,41,58,116,91,101,93,61,110,44,116,125,44,81,116,61,79,98,106,101,99,116,46,97,115,115,105,103,110,124,124,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,61,49,59,101,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,101,43,43,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,91,101,93,59,102,111,114,40,118,97,114,32,105,32,105,110,32,110,41,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,110,44,105,41,38,38,40,116,91,105,93,61,110,91,105,93,41,125,114,101,116,117,114,110,32,116,125,59,102,117,110,99,116,105,111,110,32,86,116,40,116,41,123,114,101,116,117,114,110,32,81,116,40,123,125,44,116,44,123,114,105,103,104,116,58,116,46,108,101,102,116,43,116,46,119,105,100,116,104,44,98,111,116,116,111,109,58,116,46,116,111,112,43,116,46,104,101,105,103,104,116,125,41,125,102,117,110,99,116,105,111,110,32,89,116,40,116,41,123,118,97,114,32,101,61,123,125,59,116,114,121,123,105,102,40,72,116,40,49,48,41,41,123,101,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,118,97,114,32,110,61,77,116,40,116,44,34,116,111,112,34,41,44,105,61,77,116,40,116,44,34,108,101,102,116,34,41,59,101,46,116,111,112,43,61,110,44,101,46,108,101,102,116,43,61,105,44,101,46,98,111,116,116,111,109,43,61,110,44,101,46,114,105,103,104,116,43,61,105,125,101,108,115,101,32,101,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,125,99,97,116,99,104,40,116,41,123,125,118,97,114,32,111,61,123,108,101,102,116,58,101,46,108,101,102,116,44,116,111,112,58,101,46,116,111,112,44,119,105,100,116,104,58,101,46,114,105,103,104,116,45,101,46,108,101,102,116,44,104,101,105,103,104,116,58,101,46,98,111,116,116,111,109,45,101,46,116,111,112,125,44,114,61,34,72,84,77,76,34,61,61,61,116,46,110,111,100,101,78,97,109,101,63,66,116,40,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,41,58,123,125,44,115,61,114,46,119,105,100,116,104,124,124,116,46,99,108,105,101,110,116,87,105,100,116,104,124,124,111,46,114,105,103,104,116,45,111,46,108,101,102,116,44,97,61,114,46,104,101,105,103,104,116,124,124,116,46,99,108,105,101,110,116,72,101,105,103,104,116,124,124,111,46,98,111,116,116,111,109,45,111,46,116,111,112,44,108,61,116,46,111,102,102,115,101,116,87,105,100,116,104,45,115,44,99,61,116,46,111,102,102,115,101,116,72,101,105,103,104,116,45,97,59,105,102,40,108,124,124,99,41,123,118,97,114,32,104,61,78,116,40,116,41,59,108,45,61,87,116,40,104,44,34,120,34,41,44,99,45,61,87,116,40,104,44,34,121,34,41,44,111,46,119,105,100,116,104,45,61,108,44,111,46,104,101,105,103,104,116,45,61,99,125,114,101,116,117,114,110,32,86,116,40,111,41,125,102,117,110,99,116,105,111,110,32,122,116,40,116,44,101,41,123,118,97,114,32,110,61,50,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,50,93,38,38,97,114,103,117,109,101,110,116,115,91,50,93,44,105,61,72,116,40,49,48,41,44,111,61,34,72,84,77,76,34,61,61,61,101,46,110,111,100,101,78,97,109,101,44,114,61,89,116,40,116,41,44,115,61,89,116,40,101,41,44,97,61,76,116,40,116,41,44,108,61,78,116,40,101,41,44,99,61,112,97,114,115,101,70,108,111,97,116,40,108,46,98,111,114,100,101,114,84,111,112,87,105,100,116,104,44,49,48,41,44,104,61,112,97,114,115,101,70,108,111,97,116,40,108,46,98,111,114,100,101,114,76,101,102,116,87,105,100,116,104,44,49,48,41,59,110,38,38,111,38,38,40,115,46,116,111,112,61,77,97,116,104,46,109,97,120,40,115,46,116,111,112,44,48,41,44,115,46,108,101,102,116,61,77,97,116,104,46,109,97,120,40,115,46,108,101,102,116,44,48,41,41,59,118,97,114,32,117,61,86,116,40,123,116,111,112,58,114,46,116,111,112,45,115,46,116,111,112,45,99,44,108,101,102,116,58,114,46,108,101,102,116,45,115,46,108,101,102,116,45,104,44,119,105,100,116,104,58,114,46,119,105,100,116,104,44,104,101,105,103,104,116,58,114,46,104,101,105,103,104,116,125,41,59,105,102,40,117,46,109,97,114,103,105,110,84,111,112,61,48,44,117,46,109,97,114,103,105,110,76,101,102,116,61,48,44,33,105,38,38,111,41,123,118,97,114,32,102,61,112,97,114,115,101,70,108,111,97,116,40,108,46,109,97,114,103,105,110,84,111,112,44,49,48,41,44,100,61,112,97,114,115,101,70,108,111,97,116,40,108,46,109,97,114,103,105,110,76,101,102,116,44,49,48,41,59,117,46,116,111,112,45,61,99,45,102,44,117,46,98,111,116,116,111,109,45,61,99,45,102,44,117,46,108,101,102,116,45,61,104,45,100,44,117,46,114,105,103,104,116,45,61,104,45,100,44,117,46,109,97,114,103,105,110,84,111,112,61,102,44,117,46,109,97,114,103,105,110,76,101,102,116,61,100,125,114,101,116,117,114,110,40,105,38,38,33,110,63,101,46,99,111,110,116,97,105,110,115,40,97,41,58,101,61,61,61,97,38,38,34,66,79,68,89,34,33,61,61,97,46,110,111,100,101,78,97,109,101,41,38,38,40,117,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,50,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,50,93,38,38,97,114,103,117,109,101,110,116,115,91,50,93,44,105,61,77,116,40,101,44,34,116,111,112,34,41,44,111,61,77,116,40,101,44,34,108,101,102,116,34,41,44,114,61,110,63,45,49,58,49,59,114,101,116,117,114,110,32,116,46,116,111,112,43,61,105,42,114,44,116,46,98,111,116,116,111,109,43,61,105,42,114,44,116,46,108,101,102,116,43,61,111,42,114,44,116,46,114,105,103,104,116,43,61,111,42,114,44,116,125,40,117,44,101,41,41,44,117,125,102,117,110,99,116,105,111,110,32,88,116,40,116,41,123,105,102,40,33,116,124,124,33,116,46,112,97,114,101,110,116,69,108,101,109,101,110,116,124,124,72,116,40,41,41,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,102,111,114,40,118,97,114,32,101,61,116,46,112,97,114,101,110,116,69,108,101,109,101,110,116,59,101,38,38,34,110,111,110,101,34,61,61,61,78,116,40,101,44,34,116,114,97,110,115,102,111,114,109,34,41,59,41,101,61,101,46,112,97,114,101,110,116,69,108,101,109,101,110,116,59,114,101,116,117,114,110,32,101,124,124,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,125,102,117,110,99,116,105,111,110,32,71,116,40,116,44,101,44,110,44,105,41,123,118,97,114,32,111,61,52,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,52,93,38,38,97,114,103,117,109,101,110,116,115,91,52,93,44,114,61,123,116,111,112,58,48,44,108,101,102,116,58,48,125,44,115,61,111,63,88,116,40,116,41,58,70,116,40,116,44,101,41,59,105,102,40,34,118,105,101,119,112,111,114,116,34,61,61,61,105,41,114,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,38,38,97,114,103,117,109,101,110,116,115,91,49,93,44,110,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,105,61,122,116,40,116,44,110,41,44,111,61,77,97,116,104,46,109,97,120,40,110,46,99,108,105,101,110,116,87,105,100,116,104,44,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,124,124,48,41,44,114,61,77,97,116,104,46,109,97,120,40,110,46,99,108,105,101,110,116,72,101,105,103,104,116,44,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,124,124,48,41,44,115,61,101,63,48,58,77,116,40,110,41,44,97,61,101,63,48,58,77,116,40,110,44,34,108,101,102,116,34,41,59,114,101,116,117,114,110,32,86,116,40,123,116,111,112,58,115,45,105,46,116,111,112,43,105,46,109,97,114,103,105,110,84,111,112,44,108,101,102,116,58,97,45,105,46,108,101,102,116,43,105,46,109,97,114,103,105,110,76,101,102,116,44,119,105,100,116,104,58,111,44,104,101,105,103,104,116,58,114,125,41,125,40,115,44,111,41,59,101,108,115,101,123,118,97,114,32,97,61,118,111,105,100,32,48,59,34,115,99,114,111,108,108,80,97,114,101,110,116,34,61,61,61,105,63,34,66,79,68,89,34,61,61,61,40,97,61,76,116,40,107,116,40,101,41,41,41,46,110,111,100,101,78,97,109,101,38,38,40,97,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,41,58,97,61,34,119,105,110,100,111,119,34,61,61,61,105,63,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,58,105,59,118,97,114,32,108,61,122,116,40,97,44,115,44,111,41,59,105,102,40,34,72,84,77,76,34,33,61,61,97,46,110,111,100,101,78,97,109,101,124,124,102,117,110,99,116,105,111,110,32,116,40,101,41,123,118,97,114,32,110,61,101,46,110,111,100,101,78,97,109,101,59,105,102,40,34,66,79,68,89,34,61,61,61,110,124,124,34,72,84,77,76,34,61,61,61,110,41,114,101,116,117,114,110,33,49,59,105,102,40,34,102,105,120,101,100,34,61,61,61,78,116,40,101,44,34,112,111,115,105,116,105,111,110,34,41,41,114,101,116,117,114,110,33,48,59,118,97,114,32,105,61,107,116,40,101,41,59,114,101,116,117,114,110,33,33,105,38,38,116,40,105,41,125,40,115,41,41,114,61,108,59,101,108,115,101,123,118,97,114,32,99,61,66,116,40,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,41,44,104,61,99,46,104,101,105,103,104,116,44,117,61,99,46,119,105,100,116,104,59,114,46,116,111,112,43,61,108,46,116,111,112,45,108,46,109,97,114,103,105,110,84,111,112,44,114,46,98,111,116,116,111,109,61,104,43,108,46,116,111,112,44,114,46,108,101,102,116,43,61,108,46,108,101,102,116,45,108,46,109,97,114,103,105,110,76,101,102,116,44,114,46,114,105,103,104,116,61,117,43,108,46,108,101,102,116,125,125,118,97,114,32,102,61,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,40,110,61,110,124,124,48,41,59,114,101,116,117,114,110,32,114,46,108,101,102,116,43,61,102,63,110,58,110,46,108,101,102,116,124,124,48,44,114,46,116,111,112,43,61,102,63,110,58,110,46,116,111,112,124,124,48,44,114,46,114,105,103,104,116,45,61,102,63,110,58,110,46,114,105,103,104,116,124,124,48,44,114,46,98,111,116,116,111,109,45,61,102,63,110,58,110,46,98,111,116,116,111,109,124,124,48,44,114,125,102,117,110,99,116,105,111,110,32,36,116,40,116,44,101,44,105,44,110,44,111,41,123,118,97,114,32,114,61,53,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,53,93,63,97,114,103,117,109,101,110,116,115,91,53,93,58,48,59,105,102,40,45,49,61,61,61,116,46,105,110,100,101,120,79,102,40,34,97,117,116,111,34,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,115,61,71,116,40,105,44,110,44,114,44,111,41,44,97,61,123,116,111,112,58,123,119,105,100,116,104,58,115,46,119,105,100,116,104,44,104,101,105,103,104,116,58,101,46,116,111,112,45,115,46,116,111,112,125,44,114,105,103,104,116,58,123,119,105,100,116,104,58,115,46,114,105,103,104,116,45,101,46,114,105,103,104,116,44,104,101,105,103,104,116,58,115,46,104,101,105,103,104,116,125,44,98,111,116,116,111,109,58,123,119,105,100,116,104,58,115,46,119,105,100,116,104,44,104,101,105,103,104,116,58,115,46,98,111,116,116,111,109,45,101,46,98,111,116,116,111,109,125,44,108,101,102,116,58,123,119,105,100,116,104,58,101,46,108,101,102,116,45,115,46,108,101,102,116,44,104,101,105,103,104,116,58,115,46,104,101,105,103,104,116,125,125,44,108,61,79,98,106,101,99,116,46,107,101,121,115,40,97,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,81,116,40,123,107,101,121,58,116,125,44,97,91,116,93,44,123,97,114,101,97,58,40,101,61,97,91,116,93,44,101,46,119,105,100,116,104,42,101,46,104,101,105,103,104,116,41,125,41,59,118,97,114,32,101,125,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,101,46,97,114,101,97,45,116,46,97,114,101,97,125,41,44,99,61,108,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,119,105,100,116,104,44,110,61,116,46,104,101,105,103,104,116,59,114,101,116,117,114,110,32,101,62,61,105,46,99,108,105,101,110,116,87,105,100,116,104,38,38,110,62,61,105,46,99,108,105,101,110,116,72,101,105,103,104,116,125,41,44,104,61,48,60,99,46,108,101,110,103,116,104,63,99,91,48,93,46,107,101,121,58,108,91,48,93,46,107,101,121,44,117,61,116,46,115,112,108,105,116,40,34,45,34,41,91,49,93,59,114,101,116,117,114,110,32,104,43,40,117,63,34,45,34,43,117,58,34,34,41,125,102,117,110,99,116,105,111,110,32,74,116,40,116,44,101,44,110,41,123,118,97,114,32,105,61,51,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,51,93,63,97,114,103,117,109,101,110,116,115,91,51,93,58,110,117,108,108,59,114,101,116,117,114,110,32,122,116,40,110,44,105,63,88,116,40,101,41,58,70,116,40,101,44,110,41,44,105,41,125,102,117,110,99,116,105,111,110,32,90,116,40,116,41,123,118,97,114,32,101,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,116,41,44,110,61,112,97,114,115,101,70,108,111,97,116,40,101,46,109,97,114,103,105,110,84,111,112,124,124,48,41,43,112,97,114,115,101,70,108,111,97,116,40,101,46,109,97,114,103,105,110,66,111,116,116,111,109,124,124,48,41,44,105,61,112,97,114,115,101,70,108,111,97,116,40,101,46,109,97,114,103,105,110,76,101,102,116,124,124,48,41,43,112,97,114,115,101,70,108,111,97,116,40,101,46,109,97,114,103,105,110,82,105,103,104,116,124,124,48,41,59,114,101,116,117,114,110,123,119,105,100,116,104,58,116,46,111,102,102,115,101,116,87,105,100,116,104,43,105,44,104,101,105,103,104,116,58,116,46,111,102,102,115,101,116,72,101,105,103,104,116,43,110,125,125,102,117,110,99,116,105,111,110,32,116,101,40,116,41,123,118,97,114,32,101,61,123,108,101,102,116,58,34,114,105,103,104,116,34,44,114,105,103,104,116,58,34,108,101,102,116,34,44,98,111,116,116,111,109,58,34,116,111,112,34,44,116,111,112,58,34,98,111,116,116,111,109,34,125,59,114,101,116,117,114,110,32,116,46,114,101,112,108,97,99,101,40,47,108,101,102,116,124,114,105,103,104,116,124,98,111,116,116,111,109,124,116,111,112,47,103,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,91,116,93,125,41,125,102,117,110,99,116,105,111,110,32,101,101,40,116,44,101,44,110,41,123,110,61,110,46,115,112,108,105,116,40,34,45,34,41,91,48,93,59,118,97,114,32,105,61,90,116,40,116,41,44,111,61,123,119,105,100,116,104,58,105,46,119,105,100,116,104,44,104,101,105,103,104,116,58,105,46,104,101,105,103,104,116,125,44,114,61,45,49,33,61,61,91,34,114,105,103,104,116,34,44,34,108,101,102,116,34,93,46,105,110,100,101,120,79,102,40,110,41,44,115,61,114,63,34,116,111,112,34,58,34,108,101,102,116,34,44,97,61,114,63,34,108,101,102,116,34,58,34,116,111,112,34,44,108,61,114,63,34,104,101,105,103,104,116,34,58,34,119,105,100,116,104,34,44,99,61,114,63,34,119,105,100,116,104,34,58,34,104,101,105,103,104,116,34,59,114,101,116,117,114,110,32,111,91,115,93,61,101,91,115,93,43,101,91,108,93,47,50,45,105,91,108,93,47,50,44,111,91,97,93,61,110,61,61,61,97,63,101,91,97,93,45,105,91,99,93,58,101,91,116,101,40,97,41,93,44,111,125,102,117,110,99,116,105,111,110,32,110,101,40,116,44,101,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,63,116,46,102,105,110,100,40,101,41,58,116,46,102,105,108,116,101,114,40,101,41,91,48,93,125,102,117,110,99,116,105,111,110,32,105,101,40,116,44,110,44,101,41,123,114,101,116,117,114,110,40,118,111,105,100,32,48,61,61,61,101,63,116,58,116,46,115,108,105,99,101,40,48,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,73,110,100,101,120,41,114,101,116,117,114,110,32,116,46,102,105,110,100,73,110,100,101,120,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,91,101,93,61,61,61,110,125,41,59,118,97,114,32,105,61,110,101,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,91,101,93,61,61,61,110,125,41,59,114,101,116,117,114,110,32,116,46,105,110,100,101,120,79,102,40,105,41,125,40,116,44,34,110,97,109,101,34,44,101,41,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,102,117,110,99,116,105,111,110,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,96,109,111,100,105,102,105,101,114,46,102,117,110,99,116,105,111,110,96,32,105,115,32,100,101,112,114,101,99,97,116,101,100,44,32,117,115,101,32,96,109,111,100,105,102,105,101,114,46,102,110,96,33,34,41,59,118,97,114,32,101,61,116,46,102,117,110,99,116,105,111,110,124,124,116,46,102,110,59,116,46,101,110,97,98,108,101,100,38,38,79,116,40,101,41,38,38,40,110,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,86,116,40,110,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,41,44,110,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,61,86,116,40,110,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,41,44,110,61,101,40,110,44,116,41,41,125,41,44,110,125,102,117,110,99,116,105,111,110,32,111,101,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,115,111,109,101,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,110,97,109,101,59,114,101,116,117,114,110,32,116,46,101,110,97,98,108,101,100,38,38,101,61,61,61,110,125,41,125,102,117,110,99,116,105,111,110,32,114,101,40,116,41,123,102,111,114,40,118,97,114,32,101,61,91,33,49,44,34,109,115,34,44,34,87,101,98,107,105,116,34,44,34,77,111,122,34,44,34,79,34,93,44,110,61,116,46,99,104,97,114,65,116,40,48,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,116,46,115,108,105,99,101,40,49,41,44,105,61,48,59,105,60,101,46,108,101,110,103,116,104,59,105,43,43,41,123,118,97,114,32,111,61,101,91,105,93,44,114,61,111,63,34,34,43,111,43,110,58,116,59,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,116,121,108,101,91,114,93,41,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,32,110,117,108,108,125,102,117,110,99,116,105,111,110,32,115,101,40,116,41,123,118,97,114,32,101,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,59,114,101,116,117,114,110,32,101,63,101,46,100,101,102,97,117,108,116,86,105,101,119,58,119,105,110,100,111,119,125,102,117,110,99,116,105,111,110,32,97,101,40,116,44,101,44,110,44,105,41,123,110,46,117,112,100,97,116,101,66,111,117,110,100,61,105,44,115,101,40,116,41,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,114,101,115,105,122,101,34,44,110,46,117,112,100,97,116,101,66,111,117,110,100,44,123,112,97,115,115,105,118,101,58,33,48,125,41,59,118,97,114,32,111,61,76,116,40,116,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,116,40,101,44,110,44,105,44,111,41,123,118,97,114,32,114,61,34,66,79,68,89,34,61,61,61,101,46,110,111,100,101,78,97,109,101,44,115,61,114,63,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,58,101,59,115,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,110,44,105,44,123,112,97,115,115,105,118,101,58,33,48,125,41,44,114,124,124,116,40,76,116,40,115,46,112,97,114,101,110,116,78,111,100,101,41,44,110,44,105,44,111,41,44,111,46,112,117,115,104,40,115,41,125,40,111,44,34,115,99,114,111,108,108,34,44,110,46,117,112,100,97,116,101,66,111,117,110,100,44,110,46,115,99,114,111,108,108,80,97,114,101,110,116,115,41,44,110,46,115,99,114,111,108,108,69,108,101,109,101,110,116,61,111,44,110,46,101,118,101,110,116,115,69,110,97,98,108,101,100,61,33,48,44,110,125,102,117,110,99,116,105,111,110,32,108,101,40,41,123,118,97,114,32,116,44,101,59,116,104,105,115,46,115,116,97,116,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,38,38,40,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,116,104,105,115,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,41,44,116,104,105,115,46,115,116,97,116,101,61,40,116,61,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,101,61,116,104,105,115,46,115,116,97,116,101,44,115,101,40,116,41,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,114,101,115,105,122,101,34,44,101,46,117,112,100,97,116,101,66,111,117,110,100,41,44,101,46,115,99,114,111,108,108,80,97,114,101,110,116,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,115,99,114,111,108,108,34,44,101,46,117,112,100,97,116,101,66,111,117,110,100,41,125,41,44,101,46,117,112,100,97,116,101,66,111,117,110,100,61,110,117,108,108,44,101,46,115,99,114,111,108,108,80,97,114,101,110,116,115,61,91,93,44,101,46,115,99,114,111,108,108,69,108,101,109,101,110,116,61,110,117,108,108,44,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,61,33,49,44,101,41,41,125,102,117,110,99,116,105,111,110,32,99,101,40,116,41,123,114,101,116,117,114,110,34,34,33,61,61,116,38,38,33,105,115,78,97,78,40,112,97,114,115,101,70,108,111,97,116,40,116,41,41,38,38,105,115,70,105,110,105,116,101,40,116,41,125,102,117,110,99,116,105,111,110,32,104,101,40,110,44,105,41,123,79,98,106,101,99,116,46,107,101,121,115,40,105,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,34,34,59,45,49,33,61,61,91,34,119,105,100,116,104,34,44,34,104,101,105,103,104,116,34,44,34,116,111,112,34,44,34,114,105,103,104,116,34,44,34,98,111,116,116,111,109,34,44,34,108,101,102,116,34,93,46,105,110,100,101,120,79,102,40,116,41,38,38,99,101,40,105,91,116,93,41,38,38,40,101,61,34,112,120,34,41,44,110,46,115,116,121,108,101,91,116,93,61,105,91,116,93,43,101,125,41,125,118,97,114,32,117,101,61,84,116,38,38,47,70,105,114,101,102,111,120,47,105,46,116,101,115,116,40,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,41,59,102,117,110,99,116,105,111,110,32,102,101,40,116,44,101,44,110,41,123,118,97,114,32,105,61,110,101,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,110,97,109,101,61,61,61,101,125,41,44,111,61,33,33,105,38,38,116,46,115,111,109,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,110,97,109,101,61,61,61,110,38,38,116,46,101,110,97,98,108,101,100,38,38,116,46,111,114,100,101,114,60,105,46,111,114,100,101,114,125,41,59,105,102,40,33,111,41,123,118,97,114,32,114,61,34,96,34,43,101,43,34,96,34,44,115,61,34,96,34,43,110,43,34,96,34,59,99,111,110,115,111,108,101,46,119,97,114,110,40,115,43,34,32,109,111,100,105,102,105,101,114,32,105,115,32,114,101,113,117,105,114,101,100,32,98,121,32,34,43,114,43,34,32,109,111,100,105,102,105,101,114,32,105,110,32,111,114,100,101,114,32,116,111,32,119,111,114,107,44,32,98,101,32,115,117,114,101,32,116,111,32,105,110,99,108,117,100,101,32,105,116,32,98,101,102,111,114,101,32,34,43,114,43,34,33,34,41,125,114,101,116,117,114,110,32,111,125,118,97,114,32,100,101,61,91,34,97,117,116,111,45,115,116,97,114,116,34,44,34,97,117,116,111,34,44,34,97,117,116,111,45,101,110,100,34,44,34,116,111,112,45,115,116,97,114,116,34,44,34,116,111,112,34,44,34,116,111,112,45,101,110,100,34,44,34,114,105,103,104,116,45,115,116,97,114,116,34,44,34,114,105,103,104,116,34,44,34,114,105,103,104,116,45,101,110,100,34,44,34,98,111,116,116,111,109,45,101,110,100,34,44,34,98,111,116,116,111,109,34,44,34,98,111,116,116,111,109,45,115,116,97,114,116,34,44,34,108,101,102,116,45,101,110,100,34,44,34,108,101,102,116,34,44,34,108,101,102,116,45,115,116,97,114,116,34,93,44,112,101,61,100,101,46,115,108,105,99,101,40,51,41,59,102,117,110,99,116,105,111,110,32,109,101,40,116,41,123,118,97,114,32,101,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,38,38,97,114,103,117,109,101,110,116,115,91,49,93,44,110,61,112,101,46,105,110,100,101,120,79,102,40,116,41,44,105,61,112,101,46,115,108,105,99,101,40,110,43,49,41,46,99,111,110,99,97,116,40,112,101,46,115,108,105,99,101,40,48,44,110,41,41,59,114,101,116,117,114,110,32,101,63,105,46,114,101,118,101,114,115,101,40,41,58,105,125,118,97,114,32,103,101,61,34,102,108,105,112,34,44,95,101,61,34,99,108,111,99,107,119,105,115,101,34,44,118,101,61,34,99,111,117,110,116,101,114,99,108,111,99,107,119,105,115,101,34,59,102,117,110,99,116,105,111,110,32,121,101,40,116,44,111,44,114,44,101,41,123,118,97,114,32,115,61,91,48,44,48,93,44,97,61,45,49,33,61,61,91,34,114,105,103,104,116,34,44,34,108,101,102,116,34,93,46,105,110,100,101,120,79,102,40,101,41,44,110,61,116,46,115,112,108,105,116,40,47,40,92,43,124,92,45,41,47,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,114,105,109,40,41,125,41,44,105,61,110,46,105,110,100,101,120,79,102,40,110,101,40,110,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,45,49,33,61,61,116,46,115,101,97,114,99,104,40,47,44,124,92,115,47,41,125,41,41,59,110,91,105,93,38,38,45,49,61,61,61,110,91,105,93,46,105,110,100,101,120,79,102,40,34,44,34,41,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,79,102,102,115,101,116,115,32,115,101,112,97,114,97,116,101,100,32,98,121,32,119,104,105,116,101,32,115,112,97,99,101,40,115,41,32,97,114,101,32,100,101,112,114,101,99,97,116,101,100,44,32,117,115,101,32,97,32,99,111,109,109,97,32,40,44,41,32,105,110,115,116,101,97,100,46,34,41,59,118,97,114,32,108,61,47,92,115,42,44,92,115,42,124,92,115,43,47,44,99,61,45,49,33,61,61,105,63,91,110,46,115,108,105,99,101,40,48,44,105,41,46,99,111,110,99,97,116,40,91,110,91,105,93,46,115,112,108,105,116,40,108,41,91,48,93,93,41,44,91,110,91,105,93,46,115,112,108,105,116,40,108,41,91,49,93,93,46,99,111,110,99,97,116,40,110,46,115,108,105,99,101,40,105,43,49,41,41,93,58,91,110,93,59,114,101,116,117,114,110,40,99,61,99,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,40,49,61,61,61,101,63,33,97,58,97,41,63,34,104,101,105,103,104,116,34,58,34,119,105,100,116,104,34,44,105,61,33,49,59,114,101,116,117,114,110,32,116,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,34,34,61,61,61,116,91,116,46,108,101,110,103,116,104,45,49,93,38,38,45,49,33,61,61,91,34,43,34,44,34,45,34,93,46,105,110,100,101,120,79,102,40,101,41,63,40,116,91,116,46,108,101,110,103,116,104,45,49,93,61,101,44,105,61,33,48,44,116,41,58,105,63,40,116,91,116,46,108,101,110,103,116,104,45,49,93,43,61,101,44,105,61,33,49,44,116,41,58,116,46,99,111,110,99,97,116,40,101,41,125,44,91,93,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,105,41,123,118,97,114,32,111,61,116,46,109,97,116,99,104,40,47,40,40,63,58,92,45,124,92,43,41,63,92,100,42,92,46,63,92,100,42,41,40,46,42,41,47,41,44,114,61,43,111,91,49,93,44,115,61,111,91,50,93,59,105,102,40,33,114,41,114,101,116,117,114,110,32,116,59,105,102,40,48,33,61,61,115,46,105,110,100,101,120,79,102,40,34,37,34,41,41,114,101,116,117,114,110,34,118,104,34,33,61,61,115,38,38,34,118,119,34,33,61,61,115,63,114,58,40,34,118,104,34,61,61,61,115,63,77,97,116,104,46,109,97,120,40,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,99,108,105,101,110,116,72,101,105,103,104,116,44,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,124,124,48,41,58,77,97,116,104,46,109,97,120,40,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,99,108,105,101,110,116,87,105,100,116,104,44,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,124,124,48,41,41,47,49,48,48,42,114,59,118,97,114,32,97,61,118,111,105,100,32,48,59,115,119,105,116,99,104,40,115,41,123,99,97,115,101,34,37,112,34,58,97,61,110,59,98,114,101,97,107,59,99,97,115,101,34,37,34,58,99,97,115,101,34,37,114,34,58,100,101,102,97,117,108,116,58,97,61,105,125,114,101,116,117,114,110,32,86,116,40,97,41,91,101,93,47,49,48,48,42,114,125,40,116,44,110,44,111,44,114,41,125,41,125,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,110,44,105,41,123,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,99,101,40,116,41,38,38,40,115,91,105,93,43,61,116,42,40,34,45,34,61,61,61,110,91,101,45,49,93,63,45,49,58,49,41,41,125,41,125,41,44,115,125,118,97,114,32,69,101,61,123,112,108,97,99,101,109,101,110,116,58,34,98,111,116,116,111,109,34,44,112,111,115,105,116,105,111,110,70,105,120,101,100,58,33,49,44,101,118,101,110,116,115,69,110,97,98,108,101,100,58,33,48,44,114,101,109,111,118,101,79,110,68,101,115,116,114,111,121,58,33,49,44,111,110,67,114,101,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,125,44,111,110,85,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,125,44,109,111,100,105,102,105,101,114,115,58,123,115,104,105,102,116,58,123,111,114,100,101,114,58,49,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,112,108,97,99,101,109,101,110,116,44,110,61,101,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,105,61,101,46,115,112,108,105,116,40,34,45,34,41,91,49,93,59,105,102,40,105,41,123,118,97,114,32,111,61,116,46,111,102,102,115,101,116,115,44,114,61,111,46,114,101,102,101,114,101,110,99,101,44,115,61,111,46,112,111,112,112,101,114,44,97,61,45,49,33,61,61,91,34,98,111,116,116,111,109,34,44,34,116,111,112,34,93,46,105,110,100,101,120,79,102,40,110,41,44,108,61,97,63,34,108,101,102,116,34,58,34,116,111,112,34,44,99,61,97,63,34,119,105,100,116,104,34,58,34,104,101,105,103,104,116,34,44,104,61,123,115,116,97,114,116,58,75,116,40,123,125,44,108,44,114,91,108,93,41,44,101,110,100,58,75,116,40,123,125,44,108,44,114,91,108,93,43,114,91,99,93,45,115,91,99,93,41,125,59,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,81,116,40,123,125,44,115,44,104,91,105,93,41,125,114,101,116,117,114,110,32,116,125,125,44,111,102,102,115,101,116,58,123,111,114,100,101,114,58,50,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,111,102,102,115,101,116,44,105,61,116,46,112,108,97,99,101,109,101,110,116,44,111,61,116,46,111,102,102,115,101,116,115,44,114,61,111,46,112,111,112,112,101,114,44,115,61,111,46,114,101,102,101,114,101,110,99,101,44,97,61,105,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,108,61,118,111,105,100,32,48,59,114,101,116,117,114,110,32,108,61,99,101,40,43,110,41,63,91,43,110,44,48,93,58,121,101,40,110,44,114,44,115,44,97,41,44,34,108,101,102,116,34,61,61,61,97,63,40,114,46,116,111,112,43,61,108,91,48,93,44,114,46,108,101,102,116,45,61,108,91,49,93,41,58,34,114,105,103,104,116,34,61,61,61,97,63,40,114,46,116,111,112,43,61,108,91,48,93,44,114,46,108,101,102,116,43,61,108,91,49,93,41,58,34,116,111,112,34,61,61,61,97,63,40,114,46,108,101,102,116,43,61,108,91,48,93,44,114,46,116,111,112,45,61,108,91,49,93,41,58,34,98,111,116,116,111,109,34,61,61,61,97,38,38,40,114,46,108,101,102,116,43,61,108,91,48,93,44,114,46,116,111,112,43,61,108,91,49,93,41,44,116,46,112,111,112,112,101,114,61,114,44,116,125,44,111,102,102,115,101,116,58,48,125,44,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,58,123,111,114,100,101,114,58,51,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,44,105,41,123,118,97,114,32,101,61,105,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,124,124,106,116,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,41,59,116,46,105,110,115,116,97,110,99,101,46,114,101,102,101,114,101,110,99,101,61,61,61,101,38,38,40,101,61,106,116,40,101,41,41,59,118,97,114,32,110,61,114,101,40,34,116,114,97,110,115,102,111,114,109,34,41,44,111,61,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,46,115,116,121,108,101,44,114,61,111,46,116,111,112,44,115,61,111,46,108,101,102,116,44,97,61,111,91,110,93,59,111,46,116,111,112,61,34,34,44,111,46,108,101,102,116,61,34,34,44,111,91,110,93,61,34,34,59,118,97,114,32,108,61,71,116,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,116,46,105,110,115,116,97,110,99,101,46,114,101,102,101,114,101,110,99,101,44,105,46,112,97,100,100,105,110,103,44,101,44,116,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,59,111,46,116,111,112,61,114,44,111,46,108,101,102,116,61,115,44,111,91,110,93,61,97,44,105,46,98,111,117,110,100,97,114,105,101,115,61,108,59,118,97,114,32,99,61,105,46,112,114,105,111,114,105,116,121,44,104,61,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,117,61,123,112,114,105,109,97,114,121,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,104,91,116,93,59,114,101,116,117,114,110,32,104,91,116,93,60,108,91,116,93,38,38,33,105,46,101,115,99,97,112,101,87,105,116,104,82,101,102,101,114,101,110,99,101,38,38,40,101,61,77,97,116,104,46,109,97,120,40,104,91,116,93,44,108,91,116,93,41,41,44,75,116,40,123,125,44,116,44,101,41,125,44,115,101,99,111,110,100,97,114,121,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,34,114,105,103,104,116,34,61,61,61,116,63,34,108,101,102,116,34,58,34,116,111,112,34,44,110,61,104,91,101,93,59,114,101,116,117,114,110,32,104,91,116,93,62,108,91,116,93,38,38,33,105,46,101,115,99,97,112,101,87,105,116,104,82,101,102,101,114,101,110,99,101,38,38,40,110,61,77,97,116,104,46,109,105,110,40,104,91,101,93,44,108,91,116,93,45,40,34,114,105,103,104,116,34,61,61,61,116,63,104,46,119,105,100,116,104,58,104,46,104,101,105,103,104,116,41,41,41,44,75,116,40,123,125,44,101,44,110,41,125,125,59,114,101,116,117,114,110,32,99,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,45,49,33,61,61,91,34,108,101,102,116,34,44,34,116,111,112,34,93,46,105,110,100,101,120,79,102,40,116,41,63,34,112,114,105,109,97,114,121,34,58,34,115,101,99,111,110,100,97,114,121,34,59,104,61,81,116,40,123,125,44,104,44,117,91,101,93,40,116,41,41,125,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,104,44,116,125,44,112,114,105,111,114,105,116,121,58,91,34,108,101,102,116,34,44,34,114,105,103,104,116,34,44,34,116,111,112,34,44,34,98,111,116,116,111,109,34,93,44,112,97,100,100,105,110,103,58,53,44,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,34,115,99,114,111,108,108,80,97,114,101,110,116,34,125,44,107,101,101,112,84,111,103,101,116,104,101,114,58,123,111,114,100,101,114,58,52,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,111,102,102,115,101,116,115,44,110,61,101,46,112,111,112,112,101,114,44,105,61,101,46,114,101,102,101,114,101,110,99,101,44,111,61,116,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,114,61,77,97,116,104,46,102,108,111,111,114,44,115,61,45,49,33,61,61,91,34,116,111,112,34,44,34,98,111,116,116,111,109,34,93,46,105,110,100,101,120,79,102,40,111,41,44,97,61,115,63,34,114,105,103,104,116,34,58,34,98,111,116,116,111,109,34,44,108,61,115,63,34,108,101,102,116,34,58,34,116,111,112,34,44,99,61,115,63,34,119,105,100,116,104,34,58,34,104,101,105,103,104,116,34,59,114,101,116,117,114,110,32,110,91,97,93,60,114,40,105,91,108,93,41,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,108,93,61,114,40,105,91,108,93,41,45,110,91,99,93,41,44,110,91,108,93,62,114,40,105,91,97,93,41,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,108,93,61,114,40,105,91,97,93,41,41,44,116,125,125,44,97,114,114,111,119,58,123,111,114,100,101,114,58,53,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,59,105,102,40,33,102,101,40,116,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,34,97,114,114,111,119,34,44,34,107,101,101,112,84,111,103,101,116,104,101,114,34,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,105,61,101,46,101,108,101,109,101,110,116,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,105,41,123,105,102,40,33,40,105,61,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,105,41,41,41,114,101,116,117,114,110,32,116,125,101,108,115,101,32,105,102,40,33,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,46,99,111,110,116,97,105,110,115,40,105,41,41,114,101,116,117,114,110,32,99,111,110,115,111,108,101,46,119,97,114,110,40,34,87,65,82,78,73,78,71,58,32,96,97,114,114,111,119,46,101,108,101,109,101,110,116,96,32,109,117,115,116,32,98,101,32,99,104,105,108,100,32,111,102,32,105,116,115,32,112,111,112,112,101,114,32,101,108,101,109,101,110,116,33,34,41,44,116,59,118,97,114,32,111,61,116,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,114,61,116,46,111,102,102,115,101,116,115,44,115,61,114,46,112,111,112,112,101,114,44,97,61,114,46,114,101,102,101,114,101,110,99,101,44,108,61,45,49,33,61,61,91,34,108,101,102,116,34,44,34,114,105,103,104,116,34,93,46,105,110,100,101,120,79,102,40,111,41,44,99,61,108,63,34,104,101,105,103,104,116,34,58,34,119,105,100,116,104,34,44,104,61,108,63,34,84,111,112,34,58,34,76,101,102,116,34,44,117,61,104,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,102,61,108,63,34,108,101,102,116,34,58,34,116,111,112,34,44,100,61,108,63,34,98,111,116,116,111,109,34,58,34,114,105,103,104,116,34,44,112,61,90,116,40,105,41,91,99,93,59,97,91,100,93,45,112,60,115,91,117,93,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,117,93,45,61,115,91,117,93,45,40,97,91,100,93,45,112,41,41,44,97,91,117,93,43,112,62,115,91,100,93,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,117,93,43,61,97,91,117,93,43,112,45,115,91,100,93,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,86,116,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,41,59,118,97,114,32,109,61,97,91,117,93,43,97,91,99,93,47,50,45,112,47,50,44,103,61,78,116,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,41,44,95,61,112,97,114,115,101,70,108,111,97,116,40,103,91,34,109,97,114,103,105,110,34,43,104,93,44,49,48,41,44,118,61,112,97,114,115,101,70,108,111,97,116,40,103,91,34,98,111,114,100,101,114,34,43,104,43,34,87,105,100,116,104,34,93,44,49,48,41,44,121,61,109,45,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,117,93,45,95,45,118,59,114,101,116,117,114,110,32,121,61,77,97,116,104,46,109,97,120,40,77,97,116,104,46,109,105,110,40,115,91,99,93,45,112,44,121,41,44,48,41,44,116,46,97,114,114,111,119,69,108,101,109,101,110,116,61,105,44,116,46,111,102,102,115,101,116,115,46,97,114,114,111,119,61,40,75,116,40,110,61,123,125,44,117,44,77,97,116,104,46,114,111,117,110,100,40,121,41,41,44,75,116,40,110,44,102,44,34,34,41,44,110,41,44,116,125,44,101,108,101,109,101,110,116,58,34,91,120,45,97,114,114,111,119,93,34,125,44,102,108,105,112,58,123,111,114,100,101,114,58,54,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,112,44,109,41,123,105,102,40,111,101,40,112,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,34,105,110,110,101,114,34,41,41,114,101,116,117,114,110,32,112,59,105,102,40,112,46,102,108,105,112,112,101,100,38,38,112,46,112,108,97,99,101,109,101,110,116,61,61,61,112,46,111,114,105,103,105,110,97,108,80,108,97,99,101,109,101,110,116,41,114,101,116,117,114,110,32,112,59,118,97,114,32,103,61,71,116,40,112,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,112,46,105,110,115,116,97,110,99,101,46,114,101,102,101,114,101,110,99,101,44,109,46,112,97,100,100,105,110,103,44,109,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,44,112,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,44,95,61,112,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,118,61,116,101,40,95,41,44,121,61,112,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,49,93,124,124,34,34,44,69,61,91,93,59,115,119,105,116,99,104,40,109,46,98,101,104,97,118,105,111,114,41,123,99,97,115,101,32,103,101,58,69,61,91,95,44,118,93,59,98,114,101,97,107,59,99,97,115,101,32,95,101,58,69,61,109,101,40,95,41,59,98,114,101,97,107,59,99,97,115,101,32,118,101,58,69,61,109,101,40,95,44,33,48,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,69,61,109,46,98,101,104,97,118,105,111,114,125,114,101,116,117,114,110,32,69,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,95,33,61,61,116,124,124,69,46,108,101,110,103,116,104,61,61,61,101,43,49,41,114,101,116,117,114,110,32,112,59,95,61,112,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,118,61,116,101,40,95,41,59,118,97,114,32,110,44,105,61,112,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,111,61,112,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,114,61,77,97,116,104,46,102,108,111,111,114,44,115,61,34,108,101,102,116,34,61,61,61,95,38,38,114,40,105,46,114,105,103,104,116,41,62,114,40,111,46,108,101,102,116,41,124,124,34,114,105,103,104,116,34,61,61,61,95,38,38,114,40,105,46,108,101,102,116,41,60,114,40,111,46,114,105,103,104,116,41,124,124,34,116,111,112,34,61,61,61,95,38,38,114,40,105,46,98,111,116,116,111,109,41,62,114,40,111,46,116,111,112,41,124,124,34,98,111,116,116,111,109,34,61,61,61,95,38,38,114,40,105,46,116,111,112,41,60,114,40,111,46,98,111,116,116,111,109,41,44,97,61,114,40,105,46,108,101,102,116,41,60,114,40,103,46,108,101,102,116,41,44,108,61,114,40,105,46,114,105,103,104,116,41,62,114,40,103,46,114,105,103,104,116,41,44,99,61,114,40,105,46,116,111,112,41,60,114,40,103,46,116,111,112,41,44,104,61,114,40,105,46,98,111,116,116,111,109,41,62,114,40,103,46,98,111,116,116,111,109,41,44,117,61,34,108,101,102,116,34,61,61,61,95,38,38,97,124,124,34,114,105,103,104,116,34,61,61,61,95,38,38,108,124,124,34,116,111,112,34,61,61,61,95,38,38,99,124,124,34,98,111,116,116,111,109,34,61,61,61,95,38,38,104,44,102,61,45,49,33,61,61,91,34,116,111,112,34,44,34,98,111,116,116,111,109,34,93,46,105,110,100,101,120,79,102,40,95,41,44,100,61,33,33,109,46,102,108,105,112,86,97,114,105,97,116,105,111,110,115,38,38,40,102,38,38,34,115,116,97,114,116,34,61,61,61,121,38,38,97,124,124,102,38,38,34,101,110,100,34,61,61,61,121,38,38,108,124,124,33,102,38,38,34,115,116,97,114,116,34,61,61,61,121,38,38,99,124,124,33,102,38,38,34,101,110,100,34,61,61,61,121,38,38,104,41,59,40,115,124,124,117,124,124,100,41,38,38,40,112,46,102,108,105,112,112,101,100,61,33,48,44,40,115,124,124,117,41,38,38,40,95,61,69,91,101,43,49,93,41,44,100,38,38,40,121,61,34,101,110,100,34,61,61,61,40,110,61,121,41,63,34,115,116,97,114,116,34,58,34,115,116,97,114,116,34,61,61,61,110,63,34,101,110,100,34,58,110,41,44,112,46,112,108,97,99,101,109,101,110,116,61,95,43,40,121,63,34,45,34,43,121,58,34,34,41,44,112,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,81,116,40,123,125,44,112,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,101,101,40,112,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,112,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,112,46,112,108,97,99,101,109,101,110,116,41,41,44,112,61,105,101,40,112,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,112,44,34,102,108,105,112,34,41,41,125,41,44,112,125,44,98,101,104,97,118,105,111,114,58,34,102,108,105,112,34,44,112,97,100,100,105,110,103,58,53,44,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,34,118,105,101,119,112,111,114,116,34,125,44,105,110,110,101,114,58,123,111,114,100,101,114,58,55,48,48,44,101,110,97,98,108,101,100,58,33,49,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,112,108,97,99,101,109,101,110,116,44,110,61,101,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,105,61,116,46,111,102,102,115,101,116,115,44,111,61,105,46,112,111,112,112,101,114,44,114,61,105,46,114,101,102,101,114,101,110,99,101,44,115,61,45,49,33,61,61,91,34,108,101,102,116,34,44,34,114,105,103,104,116,34,93,46,105,110,100,101,120,79,102,40,110,41,44,97,61,45,49,61,61,61,91,34,116,111,112,34,44,34,108,101,102,116,34,93,46,105,110,100,101,120,79,102,40,110,41,59,114,101,116,117,114,110,32,111,91,115,63,34,108,101,102,116,34,58,34,116,111,112,34,93,61,114,91,110,93,45,40,97,63,111,91,115,63,34,119,105,100,116,104,34,58,34,104,101,105,103,104,116,34,93,58,48,41,44,116,46,112,108,97,99,101,109,101,110,116,61,116,101,40,101,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,86,116,40,111,41,44,116,125,125,44,104,105,100,101,58,123,111,114,100,101,114,58,56,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,102,101,40,116,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,34,104,105,100,101,34,44,34,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,34,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,101,61,116,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,110,61,110,101,40,116,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,34,61,61,61,116,46,110,97,109,101,125,41,46,98,111,117,110,100,97,114,105,101,115,59,105,102,40,101,46,98,111,116,116,111,109,60,110,46,116,111,112,124,124,101,46,108,101,102,116,62,110,46,114,105,103,104,116,124,124,101,46,116,111,112,62,110,46,98,111,116,116,111,109,124,124,101,46,114,105,103,104,116,60,110,46,108,101,102,116,41,123,105,102,40,33,48,61,61,61,116,46,104,105,100,101,41,114,101,116,117,114,110,32,116,59,116,46,104,105,100,101,61,33,48,44,116,46,97,116,116,114,105,98,117,116,101,115,91,34,120,45,111,117,116,45,111,102,45,98,111,117,110,100,97,114,105,101,115,34,93,61,34,34,125,101,108,115,101,123,105,102,40,33,49,61,61,61,116,46,104,105,100,101,41,114,101,116,117,114,110,32,116,59,116,46,104,105,100,101,61,33,49,44,116,46,97,116,116,114,105,98,117,116,101,115,91,34,120,45,111,117,116,45,111,102,45,98,111,117,110,100,97,114,105,101,115,34,93,61,33,49,125,114,101,116,117,114,110,32,116,125,125,44,99,111,109,112,117,116,101,83,116,121,108,101,58,123,111,114,100,101,114,58,56,53,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,120,44,105,61,101,46,121,44,111,61,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,114,61,110,101,40,116,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,97,112,112,108,121,83,116,121,108,101,34,61,61,61,116,46,110,97,109,101,125,41,46,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,59,118,111,105,100,32,48,33,61,61,114,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,87,65,82,78,73,78,71,58,32,96,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,96,32,111,112,116,105,111,110,32,109,111,118,101,100,32,116,111,32,96,99,111,109,112,117,116,101,83,116,121,108,101,96,32,109,111,100,105,102,105,101,114,32,97,110,100,32,119,105,108,108,32,110,111,116,32,98,101,32,115,117,112,112,111,114,116,101,100,32,105,110,32,102,117,116,117,114,101,32,118,101,114,115,105,111,110,115,32,111,102,32,80,111,112,112,101,114,46,106,115,33,34,41,59,118,97,114,32,115,44,97,44,108,44,99,44,104,44,117,44,102,44,100,44,112,44,109,44,103,44,95,44,118,44,121,44,69,61,118,111,105,100,32,48,33,61,61,114,63,114,58,101,46,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,44,98,61,106,116,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,41,44,119,61,89,116,40,98,41,44,67,61,123,112,111,115,105,116,105,111,110,58,111,46,112,111,115,105,116,105,111,110,125,44,84,61,40,115,61,116,44,97,61,119,105,110,100,111,119,46,100,101,118,105,99,101,80,105,120,101,108,82,97,116,105,111,60,50,124,124,33,117,101,44,108,61,115,46,111,102,102,115,101,116,115,44,99,61,108,46,112,111,112,112,101,114,44,104,61,108,46,114,101,102,101,114,101,110,99,101,44,117,61,77,97,116,104,46,114,111,117,110,100,44,102,61,77,97,116,104,46,102,108,111,111,114,44,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,44,112,61,117,40,104,46,119,105,100,116,104,41,44,109,61,117,40,99,46,119,105,100,116,104,41,44,103,61,45,49,33,61,61,91,34,108,101,102,116,34,44,34,114,105,103,104,116,34,93,46,105,110,100,101,120,79,102,40,115,46,112,108,97,99,101,109,101,110,116,41,44,95,61,45,49,33,61,61,115,46,112,108,97,99,101,109,101,110,116,46,105,110,100,101,120,79,102,40,34,45,34,41,44,121,61,97,63,117,58,100,44,123,108,101,102,116,58,40,118,61,97,63,103,124,124,95,124,124,112,37,50,61,61,109,37,50,63,117,58,102,58,100,41,40,112,37,50,61,61,49,38,38,109,37,50,61,61,49,38,38,33,95,38,38,97,63,99,46,108,101,102,116,45,49,58,99,46,108,101,102,116,41,44,116,111,112,58,121,40,99,46,116,111,112,41,44,98,111,116,116,111,109,58,121,40,99,46,98,111,116,116,111,109,41,44,114,105,103,104,116,58,118,40,99,46,114,105,103,104,116,41,125,41,44,83,61,34,98,111,116,116,111,109,34,61,61,61,110,63,34,116,111,112,34,58,34,98,111,116,116,111,109,34,44,68,61,34,114,105,103,104,116,34,61,61,61,105,63,34,108,101,102,116,34,58,34,114,105,103,104,116,34,44,73,61,114,101,40,34,116,114,97,110,115,102,111,114,109,34,41,44,65,61,118,111,105,100,32,48,44,79,61,118,111,105,100,32,48,59,105,102,40,79,61,34,98,111,116,116,111,109,34,61,61,61,83,63,34,72,84,77,76,34,61,61,61,98,46,110,111,100,101,78,97,109,101,63,45,98,46,99,108,105,101,110,116,72,101,105,103,104,116,43,84,46,98,111,116,116,111,109,58,45,119,46,104,101,105,103,104,116,43,84,46,98,111,116,116,111,109,58,84,46,116,111,112,44,65,61,34,114,105,103,104,116,34,61,61,61,68,63,34,72,84,77,76,34,61,61,61,98,46,110,111,100,101,78,97,109,101,63,45,98,46,99,108,105,101,110,116,87,105,100,116,104,43,84,46,114,105,103,104,116,58,45,119,46,119,105,100,116,104,43,84,46,114,105,103,104,116,58,84,46,108,101,102,116,44,69,38,38,73,41,67,91,73,93,61,34,116,114,97,110,115,108,97,116,101,51,100,40,34,43,65,43,34,112,120,44,32,34,43,79,43,34,112,120,44,32,48,41,34,44,67,91,83,93,61,48,44,67,91,68,93,61,48,44,67,46,119,105,108,108,67,104,97,110,103,101,61,34,116,114,97,110,115,102,111,114,109,34,59,101,108,115,101,123,118,97,114,32,78,61,34,98,111,116,116,111,109,34,61,61,61,83,63,45,49,58,49,44,107,61,34,114,105,103,104,116,34,61,61,61,68,63,45,49,58,49,59,67,91,83,93,61,79,42,78,44,67,91,68,93,61,65,42,107,44,67,46,119,105,108,108,67,104,97,110,103,101,61,83,43,34,44,32,34,43,68,125,118,97,114,32,76,61,123,34,120,45,112,108,97,99,101,109,101,110,116,34,58,116,46,112,108,97,99,101,109,101,110,116,125,59,114,101,116,117,114,110,32,116,46,97,116,116,114,105,98,117,116,101,115,61,81,116,40,123,125,44,76,44,116,46,97,116,116,114,105,98,117,116,101,115,41,44,116,46,115,116,121,108,101,115,61,81,116,40,123,125,44,67,44,116,46,115,116,121,108,101,115,41,44,116,46,97,114,114,111,119,83,116,121,108,101,115,61,81,116,40,123,125,44,116,46,111,102,102,115,101,116,115,46,97,114,114,111,119,44,116,46,97,114,114,111,119,83,116,121,108,101,115,41,44,116,125,44,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,58,33,48,44,120,58,34,98,111,116,116,111,109,34,44,121,58,34,114,105,103,104,116,34,125,44,97,112,112,108,121,83,116,121,108,101,58,123,111,114,100,101,114,58,57,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,59,114,101,116,117,114,110,32,104,101,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,116,46,115,116,121,108,101,115,41,44,101,61,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,110,61,116,46,97,116,116,114,105,98,117,116,101,115,44,79,98,106,101,99,116,46,107,101,121,115,40,110,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,33,49,33,61,61,110,91,116,93,63,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,116,44,110,91,116,93,41,58,101,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,41,125,41,44,116,46,97,114,114,111,119,69,108,101,109,101,110,116,38,38,79,98,106,101,99,116,46,107,101,121,115,40,116,46,97,114,114,111,119,83,116,121,108,101,115,41,46,108,101,110,103,116,104,38,38,104,101,40,116,46,97,114,114,111,119,69,108,101,109,101,110,116,44,116,46,97,114,114,111,119,83,116,121,108,101,115,41,44,116,125,44,111,110,76,111,97,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,105,44,111,41,123,118,97,114,32,114,61,74,116,40,111,44,101,44,116,44,110,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,44,115,61,36,116,40,110,46,112,108,97,99,101,109,101,110,116,44,114,44,101,44,116,44,110,46,109,111,100,105,102,105,101,114,115,46,102,108,105,112,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,44,110,46,109,111,100,105,102,105,101,114,115,46,102,108,105,112,46,112,97,100,100,105,110,103,41,59,114,101,116,117,114,110,32,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,120,45,112,108,97,99,101,109,101,110,116,34,44,115,41,44,104,101,40,101,44,123,112,111,115,105,116,105,111,110,58,110,46,112,111,115,105,116,105,111,110,70,105,120,101,100,63,34,102,105,120,101,100,34,58,34,97,98,115,111,108,117,116,101,34,125,41,44,110,125,44,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,58,118,111,105,100,32,48,125,125,125,44,98,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,114,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,44,105,61,50,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,50,93,63,97,114,103,117,109,101,110,116,115,91,50,93,58,123,125,59,33,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,40,116,32,105,110,115,116,97,110,99,101,111,102,32,101,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,40,116,104,105,115,44,114,41,44,116,104,105,115,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,110,46,117,112,100,97,116,101,41,125,44,116,104,105,115,46,117,112,100,97,116,101,61,65,116,40,116,104,105,115,46,117,112,100,97,116,101,46,98,105,110,100,40,116,104,105,115,41,41,44,116,104,105,115,46,111,112,116,105,111,110,115,61,81,116,40,123,125,44,114,46,68,101,102,97,117,108,116,115,44,105,41,44,116,104,105,115,46,115,116,97,116,101,61,123,105,115,68,101,115,116,114,111,121,101,100,58,33,49,44,105,115,67,114,101,97,116,101,100,58,33,49,44,115,99,114,111,108,108,80,97,114,101,110,116,115,58,91,93,125,44,116,104,105,115,46,114,101,102,101,114,101,110,99,101,61,116,38,38,116,46,106,113,117,101,114,121,63,116,91,48,93,58,116,44,116,104,105,115,46,112,111,112,112,101,114,61,101,38,38,101,46,106,113,117,101,114,121,63,101,91,48,93,58,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,61,123,125,44,79,98,106,101,99,116,46,107,101,121,115,40,81,116,40,123,125,44,114,46,68,101,102,97,117,108,116,115,46,109,111,100,105,102,105,101,114,115,44,105,46,109,111,100,105,102,105,101,114,115,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,110,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,91,116,93,61,81,116,40,123,125,44,114,46,68,101,102,97,117,108,116,115,46,109,111,100,105,102,105,101,114,115,91,116,93,124,124,123,125,44,105,46,109,111,100,105,102,105,101,114,115,63,105,46,109,111,100,105,102,105,101,114,115,91,116,93,58,123,125,41,125,41,44,116,104,105,115,46,109,111,100,105,102,105,101,114,115,61,79,98,106,101,99,116,46,107,101,121,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,81,116,40,123,110,97,109,101,58,116,125,44,110,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,91,116,93,41,125,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,111,114,100,101,114,45,101,46,111,114,100,101,114,125,41,44,116,104,105,115,46,109,111,100,105,102,105,101,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,110,97,98,108,101,100,38,38,79,116,40,116,46,111,110,76,111,97,100,41,38,38,116,46,111,110,76,111,97,100,40,110,46,114,101,102,101,114,101,110,99,101,44,110,46,112,111,112,112,101,114,44,110,46,111,112,116,105,111,110,115,44,116,44,110,46,115,116,97,116,101,41,125,41,44,116,104,105,115,46,117,112,100,97,116,101,40,41,59,118,97,114,32,111,61,116,104,105,115,46,111,112,116,105,111,110,115,46,101,118,101,110,116,115,69,110,97,98,108,101,100,59,111,38,38,116,104,105,115,46,101,110,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,44,116,104,105,115,46,115,116,97,116,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,61,111,125,114,101,116,117,114,110,32,113,116,40,114,44,91,123,107,101,121,58,34,117,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,115,116,97,116,101,46,105,115,68,101,115,116,114,111,121,101,100,41,123,118,97,114,32,116,61,123,105,110,115,116,97,110,99,101,58,116,104,105,115,44,115,116,121,108,101,115,58,123,125,44,97,114,114,111,119,83,116,121,108,101,115,58,123,125,44,97,116,116,114,105,98,117,116,101,115,58,123,125,44,102,108,105,112,112,101,100,58,33,49,44,111,102,102,115,101,116,115,58,123,125,125,59,116,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,61,74,116,40,116,104,105,115,46,115,116,97,116,101,44,116,104,105,115,46,112,111,112,112,101,114,44,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,44,116,46,112,108,97,99,101,109,101,110,116,61,36,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,112,108,97,99,101,109,101,110,116,44,116,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,116,104,105,115,46,112,111,112,112,101,114,44,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,46,102,108,105,112,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,46,102,108,105,112,46,112,97,100,100,105,110,103,41,44,116,46,111,114,105,103,105,110,97,108,80,108,97,99,101,109,101,110,116,61,116,46,112,108,97,99,101,109,101,110,116,44,116,46,112,111,115,105,116,105,111,110,70,105,120,101,100,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,70,105,120,101,100,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,101,101,40,116,104,105,115,46,112,111,112,112,101,114,44,116,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,116,46,112,108,97,99,101,109,101,110,116,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,46,112,111,115,105,116,105,111,110,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,70,105,120,101,100,63,34,102,105,120,101,100,34,58,34,97,98,115,111,108,117,116,101,34,44,116,61,105,101,40,116,104,105,115,46,109,111,100,105,102,105,101,114,115,44,116,41,44,116,104,105,115,46,115,116,97,116,101,46,105,115,67,114,101,97,116,101,100,63,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,40,116,41,58,40,116,104,105,115,46,115,116,97,116,101,46,105,115,67,114,101,97,116,101,100,61,33,48,44,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,114,101,97,116,101,40,116,41,41,125,125,46,99,97,108,108,40,116,104,105,115,41,125,125,44,123,107,101,121,58,34,100,101,115,116,114,111,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,46,105,115,68,101,115,116,114,111,121,101,100,61,33,48,44,111,101,40,116,104,105,115,46,109,111,100,105,102,105,101,114,115,44,34,97,112,112,108,121,83,116,121,108,101,34,41,38,38,40,116,104,105,115,46,112,111,112,112,101,114,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,120,45,112,108,97,99,101,109,101,110,116,34,41,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,112,111,115,105,116,105,111,110,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,116,111,112,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,108,101,102,116,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,114,105,103,104,116,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,98,111,116,116,111,109,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,119,105,108,108,67,104,97,110,103,101,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,91,114,101,40,34,116,114,97,110,115,102,111,114,109,34,41,93,61,34,34,41,44,116,104,105,115,46,100,105,115,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,114,101,109,111,118,101,79,110,68,101,115,116,114,111,121,38,38,116,104,105,115,46,112,111,112,112,101,114,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,104,105,115,46,112,111,112,112,101,114,41,44,116,104,105,115,125,46,99,97,108,108,40,116,104,105,115,41,125,125,44,123,107,101,121,58,34,101,110,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,97,116,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,124,124,40,116,104,105,115,46,115,116,97,116,101,61,97,101,40,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,116,104,105,115,46,111,112,116,105,111,110,115,44,116,104,105,115,46,115,116,97,116,101,44,116,104,105,115,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,41,41,125,46,99,97,108,108,40,116,104,105,115,41,125,125,44,123,107,101,121,58,34,100,105,115,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,108,101,46,99,97,108,108,40,116,104,105,115,41,125,125,93,41,44,114,125,40,41,59,98,101,46,85,116,105,108,115,61,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,103,108,111,98,97,108,41,46,80,111,112,112,101,114,85,116,105,108,115,44,98,101,46,112,108,97,99,101,109,101,110,116,115,61,100,101,44,98,101,46,68,101,102,97,117,108,116,115,61,69,101,59,118,97,114,32,119,101,61,34,100,114,111,112,100,111,119,110,34,44,67,101,61,34,98,115,46,100,114,111,112,100,111,119,110,34,44,84,101,61,34,46,34,43,67,101,44,83,101,61,34,46,100,97,116,97,45,97,112,105,34,44,68,101,61,112,46,102,110,91,119,101,93,44,73,101,61,110,101,119,32,82,101,103,69,120,112,40,34,51,56,124,52,48,124,50,55,34,41,44,65,101,61,123,72,73,68,69,58,34,104,105,100,101,34,43,84,101,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,84,101,44,83,72,79,87,58,34,115,104,111,119,34,43,84,101,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,84,101,44,67,76,73,67,75,58,34,99,108,105,99,107,34,43,84,101,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,84,101,43,83,101,44,75,69,89,68,79,87,78,95,68,65,84,65,95,65,80,73,58,34,107,101,121,100,111,119,110,34,43,84,101,43,83,101,44,75,69,89,85,80,95,68,65,84,65,95,65,80,73,58,34,107,101,121,117,112,34,43,84,101,43,83,101,125,44,79,101,61,34,100,105,115,97,98,108,101,100,34,44,78,101,61,34,115,104,111,119,34,44,107,101,61,34,100,114,111,112,117,112,34,44,76,101,61,34,100,114,111,112,114,105,103,104,116,34,44,120,101,61,34,100,114,111,112,108,101,102,116,34,44,80,101,61,34,100,114,111,112,100,111,119,110,45,109,101,110,117,45,114,105,103,104,116,34,44,72,101,61,34,112,111,115,105,116,105,111,110,45,115,116,97,116,105,99,34,44,106,101,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,100,114,111,112,100,111,119,110,34,93,39,44,82,101,61,34,46,100,114,111,112,100,111,119,110,32,102,111,114,109,34,44,70,101,61,34,46,100,114,111,112,100,111,119,110,45,109,101,110,117,34,44,77,101,61,34,46,110,97,118,98,97,114,45,110,97,118,34,44,87,101,61,34,46,100,114,111,112,100,111,119,110,45,109,101,110,117,32,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,34,44,85,101,61,34,116,111,112,45,115,116,97,114,116,34,44,66,101,61,34,116,111,112,45,101,110,100,34,44,113,101,61,34,98,111,116,116,111,109,45,115,116,97,114,116,34,44,75,101,61,34,98,111,116,116,111,109,45,101,110,100,34,44,81,101,61,34,114,105,103,104,116,45,115,116,97,114,116,34,44,86,101,61,34,108,101,102,116,45,115,116,97,114,116,34,44,89,101,61,123,111,102,102,115,101,116,58,48,44,102,108,105,112,58,33,48,44,98,111,117,110,100,97,114,121,58,34,115,99,114,111,108,108,80,97,114,101,110,116,34,44,114,101,102,101,114,101,110,99,101,58,34,116,111,103,103,108,101,34,44,100,105,115,112,108,97,121,58,34,100,121,110,97,109,105,99,34,125,44,122,101,61,123,111,102,102,115,101,116,58,34,40,110,117,109,98,101,114,124,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,41,34,44,102,108,105,112,58,34,98,111,111,108,101,97,110,34,44,98,111,117,110,100,97,114,121,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,44,114,101,102,101,114,101,110,99,101,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,44,100,105,115,112,108,97,121,58,34,115,116,114,105,110,103,34,125,44,88,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,99,40,116,44,101,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,109,101,110,117,61,116,104,105,115,46,95,103,101,116,77,101,110,117,69,108,101,109,101,110,116,40,41,44,116,104,105,115,46,95,105,110,78,97,118,98,97,114,61,116,104,105,115,46,95,100,101,116,101,99,116,78,97,118,98,97,114,40,41,44,116,104,105,115,46,95,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,125,118,97,114,32,116,61,99,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,95,101,108,101,109,101,110,116,46,100,105,115,97,98,108,101,100,38,38,33,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,79,101,41,41,123,118,97,114,32,116,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,101,61,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,78,101,41,59,105,102,40,99,46,95,99,108,101,97,114,77,101,110,117,115,40,41,44,33,101,41,123,118,97,114,32,110,61,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,104,105,115,46,95,101,108,101,109,101,110,116,125,44,105,61,112,46,69,118,101,110,116,40,65,101,46,83,72,79,87,44,110,41,59,105,102,40,112,40,116,41,46,116,114,105,103,103,101,114,40,105,41,44,33,105,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,105,102,40,33,116,104,105,115,46,95,105,110,78,97,118,98,97,114,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,98,101,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,66,111,111,116,115,116,114,97,112,39,115,32,100,114,111,112,100,111,119,110,115,32,114,101,113,117,105,114,101,32,80,111,112,112,101,114,46,106,115,32,40,104,116,116,112,115,58,47,47,112,111,112,112,101,114,46,106,115,46,111,114,103,47,41,34,41,59,118,97,114,32,111,61,116,104,105,115,46,95,101,108,101,109,101,110,116,59,34,112,97,114,101,110,116,34,61,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,63,111,61,116,58,109,46,105,115,69,108,101,109,101,110,116,40,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,41,38,38,40,111,61,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,44,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,46,106,113,117,101,114,121,38,38,40,111,61,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,91,48,93,41,41,44,34,115,99,114,111,108,108,80,97,114,101,110,116,34,33,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,98,111,117,110,100,97,114,121,38,38,112,40,116,41,46,97,100,100,67,108,97,115,115,40,72,101,41,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,101,119,32,98,101,40,111,44,116,104,105,115,46,95,109,101,110,117,44,116,104,105,115,46,95,103,101,116,80,111,112,112,101,114,67,111,110,102,105,103,40,41,41,125,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,48,61,61,61,112,40,116,41,46,99,108,111,115,101,115,116,40,77,101,41,46,108,101,110,103,116,104,38,38,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,104,105,108,100,114,101,110,40,41,46,111,110,40,34,109,111,117,115,101,111,118,101,114,34,44,110,117,108,108,44,112,46,110,111,111,112,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,102,111,99,117,115,40,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,33,48,41,44,112,40,116,104,105,115,46,95,109,101,110,117,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,44,112,40,116,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,46,116,114,105,103,103,101,114,40,112,46,69,118,101,110,116,40,65,101,46,83,72,79,87,78,44,110,41,41,125,125,125,125,44,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,100,105,115,97,98,108,101,100,124,124,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,79,101,41,124,124,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,78,101,41,41,41,123,118,97,114,32,116,61,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,104,105,115,46,95,101,108,101,109,101,110,116,125,44,101,61,112,46,69,118,101,110,116,40,65,101,46,83,72,79,87,44,116,41,44,110,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,110,41,46,116,114,105,103,103,101,114,40,101,41,44,101,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,40,112,40,116,104,105,115,46,95,109,101,110,117,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,44,112,40,110,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,46,116,114,105,103,103,101,114,40,112,46,69,118,101,110,116,40,65,101,46,83,72,79,87,78,44,116,41,41,41,125,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,95,101,108,101,109,101,110,116,46,100,105,115,97,98,108,101,100,38,38,33,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,79,101,41,38,38,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,78,101,41,41,123,118,97,114,32,116,61,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,104,105,115,46,95,101,108,101,109,101,110,116,125,44,101,61,112,46,69,118,101,110,116,40,65,101,46,72,73,68,69,44,116,41,44,110,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,110,41,46,116,114,105,103,103,101,114,40,101,41,44,101,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,40,112,40,116,104,105,115,46,95,109,101,110,117,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,44,112,40,110,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,46,116,114,105,103,103,101,114,40,112,46,69,118,101,110,116,40,65,101,46,72,73,68,68,69,78,44,116,41,41,41,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,67,101,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,84,101,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,40,116,104,105,115,46,95,109,101,110,117,61,110,117,108,108,41,33,61,61,116,104,105,115,46,95,112,111,112,112,101,114,38,38,40,116,104,105,115,46,95,112,111,112,112,101,114,46,100,101,115,116,114,111,121,40,41,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,117,108,108,41,125,44,116,46,117,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,110,78,97,118,98,97,114,61,116,104,105,115,46,95,100,101,116,101,99,116,78,97,118,98,97,114,40,41,44,110,117,108,108,33,61,61,116,104,105,115,46,95,112,111,112,112,101,114,38,38,116,104,105,115,46,95,112,111,112,112,101,114,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,40,41,125,44,116,46,95,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,65,101,46,67,76,73,67,75,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,101,46,116,111,103,103,108,101,40,41,125,41,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,108,40,123,125,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,100,97,116,97,40,41,44,116,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,119,101,44,116,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,84,121,112,101,41,44,116,125,44,116,46,95,103,101,116,77,101,110,117,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,95,109,101,110,117,41,123,118,97,114,32,116,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,116,38,38,40,116,104,105,115,46,95,109,101,110,117,61,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,70,101,41,41,125,114,101,116,117,114,110,32,116,104,105,115,46,95,109,101,110,117,125,44,116,46,95,103,101,116,80,108,97,99,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,41,44,101,61,113,101,59,114,101,116,117,114,110,32,116,46,104,97,115,67,108,97,115,115,40,107,101,41,63,40,101,61,85,101,44,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,80,101,41,38,38,40,101,61,66,101,41,41,58,116,46,104,97,115,67,108,97,115,115,40,76,101,41,63,101,61,81,101,58,116,46,104,97,115,67,108,97,115,115,40,120,101,41,63,101,61,86,101,58,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,80,101,41,38,38,40,101,61,75,101,41,44,101,125,44,116,46,95,100,101,116,101,99,116,78,97,118,98,97,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,60,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,34,46,110,97,118,98,97,114,34,41,46,108,101,110,103,116,104,125,44,116,46,95,103,101,116,79,102,102,115,101,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,44,116,61,123,125,59,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,63,116,46,102,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,111,102,102,115,101,116,115,61,108,40,123,125,44,116,46,111,102,102,115,101,116,115,44,101,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,40,116,46,111,102,102,115,101,116,115,44,101,46,95,101,108,101,109,101,110,116,41,124,124,123,125,41,44,116,125,58,116,46,111,102,102,115,101,116,61,116,104,105,115,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,44,116,125,44,116,46,95,103,101,116,80,111,112,112,101,114,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,112,108,97,99,101,109,101,110,116,58,116,104,105,115,46,95,103,101,116,80,108,97,99,101,109,101,110,116,40,41,44,109,111,100,105,102,105,101,114,115,58,123,111,102,102,115,101,116,58,116,104,105,115,46,95,103,101,116,79,102,102,115,101,116,40,41,44,102,108,105,112,58,123,101,110,97,98,108,101,100,58,116,104,105,115,46,95,99,111,110,102,105,103,46,102,108,105,112,125,44,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,58,123,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,116,104,105,115,46,95,99,111,110,102,105,103,46,98,111,117,110,100,97,114,121,125,125,125,59,114,101,116,117,114,110,34,115,116,97,116,105,99,34,61,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,100,105,115,112,108,97,121,38,38,40,116,46,109,111,100,105,102,105,101,114,115,46,97,112,112,108,121,83,116,121,108,101,61,123,101,110,97,98,108,101,100,58,33,49,125,41,44,116,125,44,99,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,67,101,41,59,105,102,40,116,124,124,40,116,61,110,101,119,32,99,40,116,104,105,115,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,63,101,58,110,117,108,108,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,67,101,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,101,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,101,43,39,34,39,41,59,116,91,101,93,40,41,125,125,41,125,44,99,46,95,99,108,101,97,114,77,101,110,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,116,124,124,51,33,61,61,116,46,119,104,105,99,104,38,38,40,34,107,101,121,117,112,34,33,61,61,116,46,116,121,112,101,124,124,57,61,61,61,116,46,119,104,105,99,104,41,41,102,111,114,40,118,97,114,32,101,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,106,101,41,41,44,110,61,48,44,105,61,101,46,108,101,110,103,116,104,59,110,60,105,59,110,43,43,41,123,118,97,114,32,111,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,101,91,110,93,41,44,114,61,112,40,101,91,110,93,41,46,100,97,116,97,40,67,101,41,44,115,61,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,101,91,110,93,125,59,105,102,40,116,38,38,34,99,108,105,99,107,34,61,61,61,116,46,116,121,112,101,38,38,40,115,46,99,108,105,99,107,69,118,101,110,116,61,116,41,44,114,41,123,118,97,114,32,97,61,114,46,95,109,101,110,117,59,105,102,40,112,40,111,41,46,104,97,115,67,108,97,115,115,40,78,101,41,38,38,33,40,116,38,38,40,34,99,108,105,99,107,34,61,61,61,116,46,116,121,112,101,38,38,47,105,110,112,117,116,124,116,101,120,116,97,114,101,97,47,105,46,116,101,115,116,40,116,46,116,97,114,103,101,116,46,116,97,103,78,97,109,101,41,124,124,34,107,101,121,117,112,34,61,61,61,116,46,116,121,112,101,38,38,57,61,61,61,116,46,119,104,105,99,104,41,38,38,112,46,99,111,110,116,97,105,110,115,40,111,44,116,46,116,97,114,103,101,116,41,41,41,123,118,97,114,32,108,61,112,46,69,118,101,110,116,40,65,101,46,72,73,68,69,44,115,41,59,112,40,111,41,46,116,114,105,103,103,101,114,40,108,41,44,108,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,40,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,104,105,108,100,114,101,110,40,41,46,111,102,102,40,34,109,111,117,115,101,111,118,101,114,34,44,110,117,108,108,44,112,46,110,111,111,112,41,44,101,91,110,93,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,34,102,97,108,115,101,34,41,44,112,40,97,41,46,114,101,109,111,118,101,67,108,97,115,115,40,78,101,41,44,112,40,111,41,46,114,101,109,111,118,101,67,108,97,115,115,40,78,101,41,46,116,114,105,103,103,101,114,40,112,46,69,118,101,110,116,40,65,101,46,72,73,68,68,69,78,44,115,41,41,41,125,125,125,125,44,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,41,59,114,101,116,117,114,110,32,110,38,38,40,101,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,110,41,41,44,101,124,124,116,46,112,97,114,101,110,116,78,111,100,101,125,44,99,46,95,100,97,116,97,65,112,105,75,101,121,100,111,119,110,72,97,110,100,108,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,40,47,105,110,112,117,116,124,116,101,120,116,97,114,101,97,47,105,46,116,101,115,116,40,116,46,116,97,114,103,101,116,46,116,97,103,78,97,109,101,41,63,33,40,51,50,61,61,61,116,46,119,104,105,99,104,124,124,50,55,33,61,61,116,46,119,104,105,99,104,38,38,40,52,48,33,61,61,116,46,119,104,105,99,104,38,38,51,56,33,61,61,116,46,119,104,105,99,104,124,124,112,40,116,46,116,97,114,103,101,116,41,46,99,108,111,115,101,115,116,40,70,101,41,46,108,101,110,103,116,104,41,41,58,73,101,46,116,101,115,116,40,116,46,119,104,105,99,104,41,41,38,38,40,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,33,116,104,105,115,46,100,105,115,97,98,108,101,100,38,38,33,112,40,116,104,105,115,41,46,104,97,115,67,108,97,115,115,40,79,101,41,41,41,123,118,97,114,32,101,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,41,44,110,61,112,40,101,41,46,104,97,115,67,108,97,115,115,40,78,101,41,59,105,102,40,110,38,38,40,33,110,124,124,50,55,33,61,61,116,46,119,104,105,99,104,38,38,51,50,33,61,61,116,46,119,104,105,99,104,41,41,123,118,97,114,32,105,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,87,101,41,41,59,105,102,40,48,33,61,61,105,46,108,101,110,103,116,104,41,123,118,97,114,32,111,61,105,46,105,110,100,101,120,79,102,40,116,46,116,97,114,103,101,116,41,59,51,56,61,61,61,116,46,119,104,105,99,104,38,38,48,60,111,38,38,111,45,45,44,52,48,61,61,61,116,46,119,104,105,99,104,38,38,111,60,105,46,108,101,110,103,116,104,45,49,38,38,111,43,43,44,111,60,48,38,38,40,111,61,48,41,44,105,91,111,93,46,102,111,99,117,115,40,41,125,125,101,108,115,101,123,105,102,40,50,55,61,61,61,116,46,119,104,105,99,104,41,123,118,97,114,32,114,61,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,106,101,41,59,112,40,114,41,46,116,114,105,103,103,101,114,40,34,102,111,99,117,115,34,41,125,112,40,116,104,105,115,41,46,116,114,105,103,103,101,114,40,34,99,108,105,99,107,34,41,125,125,125,44,115,40,99,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,101,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,84,121,112,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,122,101,125,125,93,41,44,99,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,65,101,46,75,69,89,68,79,87,78,95,68,65,84,65,95,65,80,73,44,106,101,44,88,101,46,95,100,97,116,97,65,112,105,75,101,121,100,111,119,110,72,97,110,100,108,101,114,41,46,111,110,40,65,101,46,75,69,89,68,79,87,78,95,68,65,84,65,95,65,80,73,44,70,101,44,88,101,46,95,100,97,116,97,65,112,105,75,101,121,100,111,119,110,72,97,110,100,108,101,114,41,46,111,110,40,65,101,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,43,34,32,34,43,65,101,46,75,69,89,85,80,95,68,65,84,65,95,65,80,73,44,88,101,46,95,99,108,101,97,114,77,101,110,117,115,41,46,111,110,40,65,101,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,106,101,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,88,101,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,116,104,105,115,41,44,34,116,111,103,103,108,101,34,41,125,41,46,111,110,40,65,101,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,82,101,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,41,44,112,46,102,110,91,119,101,93,61,88,101,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,119,101,93,46,67,111,110,115,116,114,117,99,116,111,114,61,88,101,44,112,46,102,110,91,119,101,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,119,101,93,61,68,101,44,88,101,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,71,101,61,34,109,111,100,97,108,34,44,36,101,61,34,98,115,46,109,111,100,97,108,34,44,74,101,61,34,46,34,43,36,101,44,90,101,61,112,46,102,110,91,71,101,93,44,116,110,61,123,98,97,99,107,100,114,111,112,58,33,48,44,107,101,121,98,111,97,114,100,58,33,48,44,102,111,99,117,115,58,33,48,44,115,104,111,119,58,33,48,125,44,101,110,61,123,98,97,99,107,100,114,111,112,58,34,40,98,111,111,108,101,97,110,124,115,116,114,105,110,103,41,34,44,107,101,121,98,111,97,114,100,58,34,98,111,111,108,101,97,110,34,44,102,111,99,117,115,58,34,98,111,111,108,101,97,110,34,44,115,104,111,119,58,34,98,111,111,108,101,97,110,34,125,44,110,110,61,123,72,73,68,69,58,34,104,105,100,101,34,43,74,101,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,74,101,44,83,72,79,87,58,34,115,104,111,119,34,43,74,101,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,74,101,44,70,79,67,85,83,73,78,58,34,102,111,99,117,115,105,110,34,43,74,101,44,82,69,83,73,90,69,58,34,114,101,115,105,122,101,34,43,74,101,44,67,76,73,67,75,95,68,73,83,77,73,83,83,58,34,99,108,105,99,107,46,100,105,115,109,105,115,115,34,43,74,101,44,75,69,89,68,79,87,78,95,68,73,83,77,73,83,83,58,34,107,101,121,100,111,119,110,46,100,105,115,109,105,115,115,34,43,74,101,44,77,79,85,83,69,85,80,95,68,73,83,77,73,83,83,58,34,109,111,117,115,101,117,112,46,100,105,115,109,105,115,115,34,43,74,101,44,77,79,85,83,69,68,79,87,78,95,68,73,83,77,73,83,83,58,34,109,111,117,115,101,100,111,119,110,46,100,105,115,109,105,115,115,34,43,74,101,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,74,101,43,34,46,100,97,116,97,45,97,112,105,34,125,44,111,110,61,34,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,34,44,114,110,61,34,109,111,100,97,108,45,115,99,114,111,108,108,98,97,114,45,109,101,97,115,117,114,101,34,44,115,110,61,34,109,111,100,97,108,45,98,97,99,107,100,114,111,112,34,44,97,110,61,34,109,111,100,97,108,45,111,112,101,110,34,44,108,110,61,34,102,97,100,101,34,44,99,110,61,34,115,104,111,119,34,44,104,110,61,34,46,109,111,100,97,108,45,100,105,97,108,111,103,34,44,117,110,61,34,46,109,111,100,97,108,45,98,111,100,121,34,44,102,110,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,109,111,100,97,108,34,93,39,44,100,110,61,39,91,100,97,116,97,45,100,105,115,109,105,115,115,61,34,109,111,100,97,108,34,93,39,44,112,110,61,34,46,102,105,120,101,100,45,116,111,112,44,32,46,102,105,120,101,100,45,98,111,116,116,111,109,44,32,46,105,115,45,102,105,120,101,100,44,32,46,115,116,105,99,107,121,45,116,111,112,34,44,109,110,61,34,46,115,116,105,99,107,121,45,116,111,112,34,44,103,110,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,111,40,116,44,101,41,123,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,100,105,97,108,111,103,61,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,104,110,41,44,116,104,105,115,46,95,98,97,99,107,100,114,111,112,61,110,117,108,108,44,116,104,105,115,46,95,105,115,83,104,111,119,110,61,33,49,44,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,61,33,49,44,116,104,105,115,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,61,33,49,44,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,61,48,125,118,97,114,32,116,61,111,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,105,115,83,104,111,119,110,63,116,104,105,115,46,104,105,100,101,40,41,58,116,104,105,115,46,115,104,111,119,40,116,41,125,44,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,105,102,40,33,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,33,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,41,123,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,38,38,40,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,48,41,59,118,97,114,32,110,61,112,46,69,118,101,110,116,40,110,110,46,83,72,79,87,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,125,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,110,41,44,116,104,105,115,46,95,105,115,83,104,111,119,110,124,124,110,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,40,116,104,105,115,46,95,105,115,83,104,111,119,110,61,33,48,44,116,104,105,115,46,95,99,104,101,99,107,83,99,114,111,108,108,98,97,114,40,41,44,116,104,105,115,46,95,115,101,116,83,99,114,111,108,108,98,97,114,40,41,44,116,104,105,115,46,95,97,100,106,117,115,116,68,105,97,108,111,103,40,41,44,116,104,105,115,46,95,115,101,116,69,115,99,97,112,101,69,118,101,110,116,40,41,44,116,104,105,115,46,95,115,101,116,82,101,115,105,122,101,69,118,101,110,116,40,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,110,110,46,67,76,73,67,75,95,68,73,83,77,73,83,83,44,100,110,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,104,105,100,101,40,116,41,125,41,44,112,40,116,104,105,115,46,95,100,105,97,108,111,103,41,46,111,110,40,110,110,46,77,79,85,83,69,68,79,87,78,95,68,73,83,77,73,83,83,44,102,117,110,99,116,105,111,110,40,41,123,112,40,101,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,110,110,46,77,79,85,83,69,85,80,95,68,73,83,77,73,83,83,44,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,46,116,97,114,103,101,116,41,46,105,115,40,101,46,95,101,108,101,109,101,110,116,41,38,38,40,101,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,61,33,48,41,125,41,125,41,44,116,104,105,115,46,95,115,104,111,119,66,97,99,107,100,114,111,112,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,95,115,104,111,119,69,108,101,109,101,110,116,40,116,41,125,41,41,125,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,105,102,40,116,38,38,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,33,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,41,123,118,97,114,32,110,61,112,46,69,118,101,110,116,40,110,110,46,72,73,68,69,41,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,110,41,44,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,33,110,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,116,104,105,115,46,95,105,115,83,104,111,119,110,61,33,49,59,118,97,114,32,105,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,59,105,102,40,105,38,38,40,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,48,41,44,116,104,105,115,46,95,115,101,116,69,115,99,97,112,101,69,118,101,110,116,40,41,44,116,104,105,115,46,95,115,101,116,82,101,115,105,122,101,69,118,101,110,116,40,41,44,112,40,100,111,99,117,109,101,110,116,41,46,111,102,102,40,110,110,46,70,79,67,85,83,73,78,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,99,110,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,110,110,46,67,76,73,67,75,95,68,73,83,77,73,83,83,41,44,112,40,116,104,105,115,46,95,100,105,97,108,111,103,41,46,111,102,102,40,110,110,46,77,79,85,83,69,68,79,87,78,95,68,73,83,77,73,83,83,41,44,105,41,123,118,97,114,32,111,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,95,104,105,100,101,77,111,100,97,108,40,116,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,111,41,125,101,108,115,101,32,116,104,105,115,46,95,104,105,100,101,77,111,100,97,108,40,41,125,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,91,119,105,110,100,111,119,44,116,104,105,115,46,95,101,108,101,109,101,110,116,44,116,104,105,115,46,95,100,105,97,108,111,103,93,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,112,40,116,41,46,111,102,102,40,74,101,41,125,41,44,112,40,100,111,99,117,109,101,110,116,41,46,111,102,102,40,110,110,46,70,79,67,85,83,73,78,41,44,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,36,101,41,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,100,105,97,108,111,103,61,110,117,108,108,44,116,104,105,115,46,95,98,97,99,107,100,114,111,112,61,110,117,108,108,44,116,104,105,115,46,95,105,115,83,104,111,119,110,61,110,117,108,108,44,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,61,110,117,108,108,44,116,104,105,115,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,61,110,117,108,108,44,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,110,117,108,108,44,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,61,110,117,108,108,125,44,116,46,104,97,110,100,108,101,85,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,97,100,106,117,115,116,68,105,97,108,111,103,40,41,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,108,40,123,125,44,116,110,44,116,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,71,101,44,116,44,101,110,41,44,116,125,44,116,46,95,115,104,111,119,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,46,110,111,100,101,84,121,112,101,61,61,61,78,111,100,101,46,69,76,69,77,69,78,84,95,78,79,68,69,124,124,100,111,99,117,109,101,110,116,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,98,108,111,99,107,34,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,104,105,100,100,101,110,34,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,109,111,100,97,108,34,44,33,48,41,44,112,40,116,104,105,115,46,95,100,105,97,108,111,103,41,46,104,97,115,67,108,97,115,115,40,111,110,41,63,116,104,105,115,46,95,100,105,97,108,111,103,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,117,110,41,46,115,99,114,111,108,108,84,111,112,61,48,58,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,99,114,111,108,108,84,111,112,61,48,44,110,38,38,109,46,114,101,102,108,111,119,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,97,100,100,67,108,97,115,115,40,99,110,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,102,111,99,117,115,38,38,116,104,105,115,46,95,101,110,102,111,114,99,101,70,111,99,117,115,40,41,59,118,97,114,32,105,61,112,46,69,118,101,110,116,40,110,110,46,83,72,79,87,78,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,125,41,44,111,61,102,117,110,99,116,105,111,110,40,41,123,101,46,95,99,111,110,102,105,103,46,102,111,99,117,115,38,38,101,46,95,101,108,101,109,101,110,116,46,102,111,99,117,115,40,41,44,101,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,112,40,101,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,105,41,125,59,105,102,40,110,41,123,118,97,114,32,114,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,100,105,97,108,111,103,41,59,112,40,116,104,105,115,46,95,100,105,97,108,111,103,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,111,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,114,41,125,101,108,115,101,32,111,40,41,125,44,116,46,95,101,110,102,111,114,99,101,70,111,99,117,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,112,40,100,111,99,117,109,101,110,116,41,46,111,102,102,40,110,110,46,70,79,67,85,83,73,78,41,46,111,110,40,110,110,46,70,79,67,85,83,73,78,44,102,117,110,99,116,105,111,110,40,116,41,123,100,111,99,117,109,101,110,116,33,61,61,116,46,116,97,114,103,101,116,38,38,101,46,95,101,108,101,109,101,110,116,33,61,61,116,46,116,97,114,103,101,116,38,38,48,61,61,61,112,40,101,46,95,101,108,101,109,101,110,116,41,46,104,97,115,40,116,46,116,97,114,103,101,116,41,46,108,101,110,103,116,104,38,38,101,46,95,101,108,101,109,101,110,116,46,102,111,99,117,115,40,41,125,41,125,44,116,46,95,115,101,116,69,115,99,97,112,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,116,104,105,115,46,95,99,111,110,102,105,103,46,107,101,121,98,111,97,114,100,63,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,110,110,46,75,69,89,68,79,87,78,95,68,73,83,77,73,83,83,44,102,117,110,99,116,105,111,110,40,116,41,123,50,55,61,61,61,116,46,119,104,105,99,104,38,38,40,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,104,105,100,101,40,41,41,125,41,58,116,104,105,115,46,95,105,115,83,104,111,119,110,124,124,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,110,110,46,75,69,89,68,79,87,78,95,68,73,83,77,73,83,83,41,125,44,116,46,95,115,101,116,82,101,115,105,122,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,105,115,83,104,111,119,110,63,112,40,119,105,110,100,111,119,41,46,111,110,40,110,110,46,82,69,83,73,90,69,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,104,97,110,100,108,101,85,112,100,97,116,101,40,116,41,125,41,58,112,40,119,105,110,100,111,119,41,46,111,102,102,40,110,110,46,82,69,83,73,90,69,41,125,44,116,46,95,104,105,100,101,77,111,100,97,108,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,104,105,100,100,101,110,34,44,33,48,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,109,111,100,97,108,34,41,44,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,116,104,105,115,46,95,115,104,111,119,66,97,99,107,100,114,111,112,40,102,117,110,99,116,105,111,110,40,41,123,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,114,101,109,111,118,101,67,108,97,115,115,40,97,110,41,44,116,46,95,114,101,115,101,116,65,100,106,117,115,116,109,101,110,116,115,40,41,44,116,46,95,114,101,115,101,116,83,99,114,111,108,108,98,97,114,40,41,44,112,40,116,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,110,110,46,72,73,68,68,69,78,41,125,41,125,44,116,46,95,114,101,109,111,118,101,66,97,99,107,100,114,111,112,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,98,97,99,107,100,114,111,112,38,38,40,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,114,101,109,111,118,101,40,41,44,116,104,105,115,46,95,98,97,99,107,100,114,111,112,61,110,117,108,108,41,125,44,116,46,95,115,104,111,119,66,97,99,107,100,114,111,112,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,63,108,110,58,34,34,59,105,102,40,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,116,104,105,115,46,95,99,111,110,102,105,103,46,98,97,99,107,100,114,111,112,41,123,105,102,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,44,116,104,105,115,46,95,98,97,99,107,100,114,111,112,46,99,108,97,115,115,78,97,109,101,61,115,110,44,110,38,38,116,104,105,115,46,95,98,97,99,107,100,114,111,112,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,110,41,44,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,97,112,112,101,110,100,84,111,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,110,110,46,67,76,73,67,75,95,68,73,83,77,73,83,83,44,102,117,110,99,116,105,111,110,40,116,41,123,101,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,63,101,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,61,33,49,58,116,46,116,97,114,103,101,116,61,61,61,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,38,38,40,34,115,116,97,116,105,99,34,61,61,61,101,46,95,99,111,110,102,105,103,46,98,97,99,107,100,114,111,112,63,101,46,95,101,108,101,109,101,110,116,46,102,111,99,117,115,40,41,58,101,46,104,105,100,101,40,41,41,125,41,44,110,38,38,109,46,114,101,102,108,111,119,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,44,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,97,100,100,67,108,97,115,115,40,99,110,41,44,33,116,41,114,101,116,117,114,110,59,105,102,40,33,110,41,114,101,116,117,114,110,32,118,111,105,100,32,116,40,41,59,118,97,114,32,105,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,59,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,116,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,105,41,125,101,108,115,101,32,105,102,40,33,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,123,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,114,101,109,111,118,101,67,108,97,115,115,40,99,110,41,59,118,97,114,32,111,61,102,117,110,99,116,105,111,110,40,41,123,101,46,95,114,101,109,111,118,101,66,97,99,107,100,114,111,112,40,41,44,116,38,38,116,40,41,125,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,41,123,118,97,114,32,114,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,59,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,111,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,114,41,125,101,108,115,101,32,111,40,41,125,101,108,115,101,32,116,38,38,116,40,41,125,44,116,46,95,97,100,106,117,115,116,68,105,97,108,111,103,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,99,114,111,108,108,72,101,105,103,104,116,62,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,99,108,105,101,110,116,72,101,105,103,104,116,59,33,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,38,38,116,38,38,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,112,97,100,100,105,110,103,76,101,102,116,61,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,44,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,38,38,33,116,38,38,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,61,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,125,44,116,46,95,114,101,115,101,116,65,100,106,117,115,116,109,101,110,116,115,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,112,97,100,100,105,110,103,76,101,102,116,61,34,34,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,61,34,34,125,44,116,46,95,99,104,101,99,107,83,99,114,111,108,108,98,97,114,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,100,111,99,117,109,101,110,116,46,98,111,100,121,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,61,116,46,108,101,102,116,43,116,46,114,105,103,104,116,60,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,44,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,61,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,98,97,114,87,105,100,116,104,40,41,125,44,116,46,95,115,101,116,83,99,114,111,108,108,98,97,114,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,116,104,105,115,59,105,102,40,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,41,123,118,97,114,32,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,112,110,41,41,44,101,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,109,110,41,41,59,112,40,116,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,44,105,61,112,40,101,41,46,99,115,115,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,59,112,40,101,41,46,100,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,44,110,41,46,99,115,115,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,44,112,97,114,115,101,70,108,111,97,116,40,105,41,43,111,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,125,41,44,112,40,101,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,115,116,121,108,101,46,109,97,114,103,105,110,82,105,103,104,116,44,105,61,112,40,101,41,46,99,115,115,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,41,59,112,40,101,41,46,100,97,116,97,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,44,110,41,46,99,115,115,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,44,112,97,114,115,101,70,108,111,97,116,40,105,41,45,111,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,125,41,59,118,97,114,32,110,61,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,44,105,61,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,115,115,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,59,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,100,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,44,110,41,46,99,115,115,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,44,112,97,114,115,101,70,108,111,97,116,40,105,41,43,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,125,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,97,100,100,67,108,97,115,115,40,97,110,41,125,44,116,46,95,114,101,115,101,116,83,99,114,111,108,108,98,97,114,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,112,110,41,41,59,112,40,116,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,112,40,101,41,46,100,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,59,112,40,101,41,46,114,101,109,111,118,101,68,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,44,101,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,61,110,124,124,34,34,125,41,59,118,97,114,32,101,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,34,43,109,110,41,41,59,112,40,101,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,112,40,101,41,46,100,97,116,97,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,41,59,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,110,38,38,112,40,101,41,46,99,115,115,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,44,110,41,46,114,101,109,111,118,101,68,97,116,97,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,41,125,41,59,118,97,114,32,110,61,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,100,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,59,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,114,101,109,111,118,101,68,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,44,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,61,110,124,124,34,34,125,44,116,46,95,103,101,116,83,99,114,111,108,108,98,97,114,87,105,100,116,104,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,116,46,99,108,97,115,115,78,97,109,101,61,114,110,44,100,111,99,117,109,101,110,116,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,116,41,59,118,97,114,32,101,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,119,105,100,116,104,45,116,46,99,108,105,101,110,116,87,105,100,116,104,59,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,98,111,100,121,46,114,101,109,111,118,101,67,104,105,108,100,40,116,41,44,101,125,44,111,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,44,105,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,36,101,41,44,101,61,108,40,123,125,44,116,110,44,112,40,116,104,105,115,41,46,100,97,116,97,40,41,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,38,38,110,63,110,58,123,125,41,59,105,102,40,116,124,124,40,116,61,110,101,119,32,111,40,116,104,105,115,44,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,36,101,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,116,91,110,93,40,105,41,125,101,108,115,101,32,101,46,115,104,111,119,38,38,116,46,115,104,111,119,40,105,41,125,41,125,44,115,40,111,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,110,125,125,93,41,44,111,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,110,110,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,102,110,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,116,104,105,115,44,105,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,41,59,105,38,38,40,101,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,105,41,41,59,118,97,114,32,111,61,112,40,101,41,46,100,97,116,97,40,36,101,41,63,34,116,111,103,103,108,101,34,58,108,40,123,125,44,112,40,101,41,46,100,97,116,97,40,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,41,41,59,34,65,34,33,61,61,116,104,105,115,46,116,97,103,78,97,109,101,38,38,34,65,82,69,65,34,33,61,61,116,104,105,115,46,116,97,103,78,97,109,101,124,124,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,114,61,112,40,101,41,46,111,110,101,40,110,110,46,83,72,79,87,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,114,46,111,110,101,40,110,110,46,72,73,68,68,69,78,44,102,117,110,99,116,105,111,110,40,41,123,112,40,110,41,46,105,115,40,34,58,118,105,115,105,98,108,101,34,41,38,38,110,46,102,111,99,117,115,40,41,125,41,125,41,59,103,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,101,41,44,111,44,116,104,105,115,41,125,41,44,112,46,102,110,91,71,101,93,61,103,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,71,101,93,46,67,111,110,115,116,114,117,99,116,111,114,61,103,110,44,112,46,102,110,91,71,101,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,71,101,93,61,90,101,44,103,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,95,110,61,91,34,98,97,99,107,103,114,111,117,110,100,34,44,34,99,105,116,101,34,44,34,104,114,101,102,34,44,34,105,116,101,109,116,121,112,101,34,44,34,108,111,110,103,100,101,115,99,34,44,34,112,111,115,116,101,114,34,44,34,115,114,99,34,44,34,120,108,105,110,107,58,104,114,101,102,34,93,44,118,110,61,123,34,42,34,58,91,34,99,108,97,115,115,34,44,34,100,105,114,34,44,34,105,100,34,44,34,108,97,110,103,34,44,34,114,111,108,101,34,44,47,94,97,114,105,97,45,91,92,119,45,93,42,36,47,105,93,44,97,58,91,34,116,97,114,103,101,116,34,44,34,104,114,101,102,34,44,34,116,105,116,108,101,34,44,34,114,101,108,34,93,44,97,114,101,97,58,91,93,44,98,58,91,93,44,98,114,58,91,93,44,99,111,108,58,91,93,44,99,111,100,101,58,91,93,44,100,105,118,58,91,93,44,101,109,58,91,93,44,104,114,58,91,93,44,104,49,58,91,93,44,104,50,58,91,93,44,104,51,58,91,93,44,104,52,58,91,93,44,104,53,58,91,93,44,104,54,58,91,93,44,105,58,91,93,44,105,109,103,58,91,34,115,114,99,34,44,34,97,108,116,34,44,34,116,105,116,108,101,34,44,34,119,105,100,116,104,34,44,34,104,101,105,103,104,116,34,93,44,108,105,58,91,93,44,111,108,58,91,93,44,112,58,91,93,44,112,114,101,58,91,93,44,115,58,91,93,44,115,109,97,108,108,58,91,93,44,115,112,97,110,58,91,93,44,115,117,98,58,91,93,44,115,117,112,58,91,93,44,115,116,114,111,110,103,58,91,93,44,117,58,91,93,44,117,108,58,91,93,125,44,121,110,61,47,94,40,63,58,40,63,58,104,116,116,112,115,63,124,109,97,105,108,116,111,124,102,116,112,124,116,101,108,124,102,105,108,101,41,58,124,91,94,38,58,47,63,35,93,42,40,63,58,91,47,63,35,93,124,36,41,41,47,103,105,44,69,110,61,47,94,100,97,116,97,58,40,63,58,105,109,97,103,101,92,47,40,63,58,98,109,112,124,103,105,102,124,106,112,101,103,124,106,112,103,124,112,110,103,124,116,105,102,102,124,119,101,98,112,41,124,118,105,100,101,111,92,47,40,63,58,109,112,101,103,124,109,112,52,124,111,103,103,124,119,101,98,109,41,124,97,117,100,105,111,92,47,40,63,58,109,112,51,124,111,103,97,124,111,103,103,124,111,112,117,115,41,41,59,98,97,115,101,54,52,44,91,97,45,122,48,45,57,43,47,93,43,61,42,36,47,105,59,102,117,110,99,116,105,111,110,32,98,110,40,116,44,115,44,101,41,123,105,102,40,48,61,61,61,116,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,116,59,105,102,40,101,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,101,40,116,41,59,102,111,114,40,118,97,114,32,110,61,40,110,101,119,32,119,105,110,100,111,119,46,68,79,77,80,97,114,115,101,114,41,46,112,97,114,115,101,70,114,111,109,83,116,114,105,110,103,40,116,44,34,116,101,120,116,47,104,116,109,108,34,41,44,97,61,79,98,106,101,99,116,46,107,101,121,115,40,115,41,44,108,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,110,46,98,111,100,121,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,42,34,41,41,44,105,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,108,91,116,93,44,105,61,110,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,105,102,40,45,49,61,61,61,97,46,105,110,100,101,120,79,102,40,110,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,41,114,101,116,117,114,110,32,110,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,110,41,44,34,99,111,110,116,105,110,117,101,34,59,118,97,114,32,111,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,110,46,97,116,116,114,105,98,117,116,101,115,41,44,114,61,91,93,46,99,111,110,99,97,116,40,115,91,34,42,34,93,124,124,91,93,44,115,91,105,93,124,124,91,93,41,59,111,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,105,102,40,45,49,33,61,61,101,46,105,110,100,101,120,79,102,40,110,41,41,114,101,116,117,114,110,45,49,61,61,61,95,110,46,105,110,100,101,120,79,102,40,110,41,124,124,66,111,111,108,101,97,110,40,116,46,110,111,100,101,86,97,108,117,101,46,109,97,116,99,104,40,121,110,41,124,124,116,46,110,111,100,101,86,97,108,117,101,46,109,97,116,99,104,40,69,110,41,41,59,102,111,114,40,118,97,114,32,105,61,101,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,82,101,103,69,120,112,125,41,44,111,61,48,44,114,61,105,46,108,101,110,103,116,104,59,111,60,114,59,111,43,43,41,105,102,40,110,46,109,97,116,99,104,40,105,91,111,93,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,41,40,116,44,114,41,124,124,110,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,46,110,111,100,101,78,97,109,101,41,125,41,125,44,111,61,48,44,114,61,108,46,108,101,110,103,116,104,59,111,60,114,59,111,43,43,41,105,40,111,41,59,114,101,116,117,114,110,32,110,46,98,111,100,121,46,105,110,110,101,114,72,84,77,76,125,118,97,114,32,119,110,61,34,116,111,111,108,116,105,112,34,44,67,110,61,34,98,115,46,116,111,111,108,116,105,112,34,44,84,110,61,34,46,34,43,67,110,44,83,110,61,112,46,102,110,91,119,110,93,44,68,110,61,34,98,115,45,116,111,111,108,116,105,112,34,44,73,110,61,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,92,92,115,41,34,43,68,110,43,34,92,92,83,43,34,44,34,103,34,41,44,65,110,61,91,34,115,97,110,105,116,105,122,101,34,44,34,119,104,105,116,101,76,105,115,116,34,44,34,115,97,110,105,116,105,122,101,70,110,34,93,44,79,110,61,123,97,110,105,109,97,116,105,111,110,58,34,98,111,111,108,101,97,110,34,44,116,101,109,112,108,97,116,101,58,34,115,116,114,105,110,103,34,44,116,105,116,108,101,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,124,102,117,110,99,116,105,111,110,41,34,44,116,114,105,103,103,101,114,58,34,115,116,114,105,110,103,34,44,100,101,108,97,121,58,34,40,110,117,109,98,101,114,124,111,98,106,101,99,116,41,34,44,104,116,109,108,58,34,98,111,111,108,101,97,110,34,44,115,101,108,101,99,116,111,114,58,34,40,115,116,114,105,110,103,124,98,111,111,108,101,97,110,41,34,44,112,108,97,99,101,109,101,110,116,58,34,40,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,41,34,44,111,102,102,115,101,116,58,34,40,110,117,109,98,101,114,124,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,41,34,44,99,111,110,116,97,105,110,101,114,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,124,98,111,111,108,101,97,110,41,34,44,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,58,34,40,115,116,114,105,110,103,124,97,114,114,97,121,41,34,44,98,111,117,110,100,97,114,121,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,44,115,97,110,105,116,105,122,101,58,34,98,111,111,108,101,97,110,34,44,115,97,110,105,116,105,122,101,70,110,58,34,40,110,117,108,108,124,102,117,110,99,116,105,111,110,41,34,44,119,104,105,116,101,76,105,115,116,58,34,111,98,106,101,99,116,34,125,44,78,110,61,123,65,85,84,79,58,34,97,117,116,111,34,44,84,79,80,58,34,116,111,112,34,44,82,73,71,72,84,58,34,114,105,103,104,116,34,44,66,79,84,84,79,77,58,34,98,111,116,116,111,109,34,44,76,69,70,84,58,34,108,101,102,116,34,125,44,107,110,61,123,97,110,105,109,97,116,105,111,110,58,33,48,44,116,101,109,112,108,97,116,101,58,39,60,100,105,118,32,99,108,97,115,115,61,34,116,111,111,108,116,105,112,34,32,114,111,108,101,61,34,116,111,111,108,116,105,112,34,62,60,100,105,118,32,99,108,97,115,115,61,34,97,114,114,111,119,34,62,60,47,100,105,118,62,60,100,105,118,32,99,108,97,115,115,61,34,116,111,111,108,116,105,112,45,105,110,110,101,114,34,62,60,47,100,105,118,62,60,47,100,105,118,62,39,44,116,114,105,103,103,101,114,58,34,104,111,118,101,114,32,102,111,99,117,115,34,44,116,105,116,108,101,58,34,34,44,100,101,108,97,121,58,48,44,104,116,109,108,58,33,49,44,115,101,108,101,99,116,111,114,58,33,49,44,112,108,97,99,101,109,101,110,116,58,34,116,111,112,34,44,111,102,102,115,101,116,58,48,44,99,111,110,116,97,105,110,101,114,58,33,49,44,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,58,34,102,108,105,112,34,44,98,111,117,110,100,97,114,121,58,34,115,99,114,111,108,108,80,97,114,101,110,116,34,44,115,97,110,105,116,105,122,101,58,33,48,44,115,97,110,105,116,105,122,101,70,110,58,110,117,108,108,44,119,104,105,116,101,76,105,115,116,58,118,110,125,44,76,110,61,34,115,104,111,119,34,44,120,110,61,34,111,117,116,34,44,80,110,61,123,72,73,68,69,58,34,104,105,100,101,34,43,84,110,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,84,110,44,83,72,79,87,58,34,115,104,111,119,34,43,84,110,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,84,110,44,73,78,83,69,82,84,69,68,58,34,105,110,115,101,114,116,101,100,34,43,84,110,44,67,76,73,67,75,58,34,99,108,105,99,107,34,43,84,110,44,70,79,67,85,83,73,78,58,34,102,111,99,117,115,105,110,34,43,84,110,44,70,79,67,85,83,79,85,84,58,34,102,111,99,117,115,111,117,116,34,43,84,110,44,77,79,85,83,69,69,78,84,69,82,58,34,109,111,117,115,101,101,110,116,101,114,34,43,84,110,44,77,79,85,83,69,76,69,65,86,69,58,34,109,111,117,115,101,108,101,97,118,101,34,43,84,110,125,44,72,110,61,34,102,97,100,101,34,44,106,110,61,34,115,104,111,119,34,44,82,110,61,34,46,116,111,111,108,116,105,112,45,105,110,110,101,114,34,44,70,110,61,34,46,97,114,114,111,119,34,44,77,110,61,34,104,111,118,101,114,34,44,87,110,61,34,102,111,99,117,115,34,44,85,110,61,34,99,108,105,99,107,34,44,66,110,61,34,109,97,110,117,97,108,34,44,113,110,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,98,101,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,66,111,111,116,115,116,114,97,112,39,115,32,116,111,111,108,116,105,112,115,32,114,101,113,117,105,114,101,32,80,111,112,112,101,114,46,106,115,32,40,104,116,116,112,115,58,47,47,112,111,112,112,101,114,46,106,115,46,111,114,103,47,41,34,41,59,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,33,48,44,116,104,105,115,46,95,116,105,109,101,111,117,116,61,48,44,116,104,105,115,46,95,104,111,118,101,114,83,116,97,116,101,61,34,34,44,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,61,123,125,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,117,108,108,44,116,104,105,115,46,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,116,105,112,61,110,117,108,108,44,116,104,105,115,46,95,115,101,116,76,105,115,116,101,110,101,114,115,40,41,125,118,97,114,32,116,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,101,110,97,98,108,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,33,48,125,44,116,46,100,105,115,97,98,108,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,33,49,125,44,116,46,116,111,103,103,108,101,69,110,97,98,108,101,100,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,33,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,125,44,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,41,105,102,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,44,110,61,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,101,41,59,110,124,124,40,110,61,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,44,116,104,105,115,46,95,103,101,116,68,101,108,101,103,97,116,101,67,111,110,102,105,103,40,41,41,44,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,101,44,110,41,41,44,110,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,46,99,108,105,99,107,61,33,110,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,46,99,108,105,99,107,44,110,46,95,105,115,87,105,116,104,65,99,116,105,118,101,84,114,105,103,103,101,114,40,41,63,110,46,95,101,110,116,101,114,40,110,117,108,108,44,110,41,58,110,46,95,108,101,97,118,101,40,110,117,108,108,44,110,41,125,101,108,115,101,123,105,102,40,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,46,104,97,115,67,108,97,115,115,40,106,110,41,41,114,101,116,117,114,110,32,118,111,105,100,32,116,104,105,115,46,95,108,101,97,118,101,40,110,117,108,108,44,116,104,105,115,41,59,116,104,105,115,46,95,101,110,116,101,114,40,110,117,108,108,44,116,104,105,115,41,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,95,116,105,109,101,111,117,116,41,44,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,101,108,101,109,101,110,116,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,41,44,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,111,102,102,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,86,69,78,84,95,75,69,89,41,44,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,34,46,109,111,100,97,108,34,41,46,111,102,102,40,34,104,105,100,101,46,98,115,46,109,111,100,97,108,34,41,44,116,104,105,115,46,116,105,112,38,38,112,40,116,104,105,115,46,116,105,112,41,46,114,101,109,111,118,101,40,41,44,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,110,117,108,108,44,116,104,105,115,46,95,116,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,95,104,111,118,101,114,83,116,97,116,101,61,110,117,108,108,44,40,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,61,110,117,108,108,41,33,61,61,116,104,105,115,46,95,112,111,112,112,101,114,38,38,116,104,105,115,46,95,112,111,112,112,101,114,46,100,101,115,116,114,111,121,40,41,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,117,108,108,44,116,104,105,115,46,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,116,105,112,61,110,117,108,108,125,44,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,105,102,40,34,110,111,110,101,34,61,61,61,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,99,115,115,40,34,100,105,115,112,108,97,121,34,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,80,108,101,97,115,101,32,117,115,101,32,115,104,111,119,32,111,110,32,118,105,115,105,98,108,101,32,101,108,101,109,101,110,116,115,34,41,59,118,97,114,32,116,61,112,46,69,118,101,110,116,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,83,72,79,87,41,59,105,102,40,116,104,105,115,46,105,115,87,105,116,104,67,111,110,116,101,110,116,40,41,38,38,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,41,123,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,116,41,59,118,97,114,32,110,61,109,46,102,105,110,100,83,104,97,100,111,119,82,111,111,116,40,116,104,105,115,46,101,108,101,109,101,110,116,41,44,105,61,112,46,99,111,110,116,97,105,110,115,40,110,117,108,108,33,61,61,110,63,110,58,116,104,105,115,46,101,108,101,109,101,110,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,116,104,105,115,46,101,108,101,109,101,110,116,41,59,105,102,40,116,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,33,105,41,114,101,116,117,114,110,59,118,97,114,32,111,61,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,44,114,61,109,46,103,101,116,85,73,68,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,78,65,77,69,41,59,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,44,114,41,44,116,104,105,115,46,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,44,114,41,44,116,104,105,115,46,115,101,116,67,111,110,116,101,110,116,40,41,44,116,104,105,115,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,38,38,112,40,111,41,46,97,100,100,67,108,97,115,115,40,72,110,41,59,118,97,114,32,115,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,99,111,110,102,105,103,46,112,108,97,99,101,109,101,110,116,63,116,104,105,115,46,99,111,110,102,105,103,46,112,108,97,99,101,109,101,110,116,46,99,97,108,108,40,116,104,105,115,44,111,44,116,104,105,115,46,101,108,101,109,101,110,116,41,58,116,104,105,115,46,99,111,110,102,105,103,46,112,108,97,99,101,109,101,110,116,44,97,61,116,104,105,115,46,95,103,101,116,65,116,116,97,99,104,109,101,110,116,40,115,41,59,116,104,105,115,46,97,100,100,65,116,116,97,99,104,109,101,110,116,67,108,97,115,115,40,97,41,59,118,97,114,32,108,61,116,104,105,115,46,95,103,101,116,67,111,110,116,97,105,110,101,114,40,41,59,112,40,111,41,46,100,97,116,97,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,44,116,104,105,115,41,44,112,46,99,111,110,116,97,105,110,115,40,116,104,105,115,46,101,108,101,109,101,110,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,116,104,105,115,46,116,105,112,41,124,124,112,40,111,41,46,97,112,112,101,110,100,84,111,40,108,41,44,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,73,78,83,69,82,84,69,68,41,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,101,119,32,98,101,40,116,104,105,115,46,101,108,101,109,101,110,116,44,111,44,123,112,108,97,99,101,109,101,110,116,58,97,44,109,111,100,105,102,105,101,114,115,58,123,111,102,102,115,101,116,58,116,104,105,115,46,95,103,101,116,79,102,102,115,101,116,40,41,44,102,108,105,112,58,123,98,101,104,97,118,105,111,114,58,116,104,105,115,46,99,111,110,102,105,103,46,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,125,44,97,114,114,111,119,58,123,101,108,101,109,101,110,116,58,70,110,125,44,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,58,123,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,116,104,105,115,46,99,111,110,102,105,103,46,98,111,117,110,100,97,114,121,125,125,44,111,110,67,114,101,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,111,114,105,103,105,110,97,108,80,108,97,99,101,109,101,110,116,33,61,61,116,46,112,108,97,99,101,109,101,110,116,38,38,101,46,95,104,97,110,100,108,101,80,111,112,112,101,114,80,108,97,99,101,109,101,110,116,67,104,97,110,103,101,40,116,41,125,44,111,110,85,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,95,104,97,110,100,108,101,80,111,112,112,101,114,80,108,97,99,101,109,101,110,116,67,104,97,110,103,101,40,116,41,125,125,41,44,112,40,111,41,46,97,100,100,67,108,97,115,115,40,106,110,41,44,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,104,105,108,100,114,101,110,40,41,46,111,110,40,34,109,111,117,115,101,111,118,101,114,34,44,110,117,108,108,44,112,46,110,111,111,112,41,59,118,97,114,32,99,61,102,117,110,99,116,105,111,110,40,41,123,101,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,38,38,101,46,95,102,105,120,84,114,97,110,115,105,116,105,111,110,40,41,59,118,97,114,32,116,61,101,46,95,104,111,118,101,114,83,116,97,116,101,59,101,46,95,104,111,118,101,114,83,116,97,116,101,61,110,117,108,108,44,112,40,101,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,101,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,83,72,79,87,78,41,44,116,61,61,61,120,110,38,38,101,46,95,108,101,97,118,101,40,110,117,108,108,44,101,41,125,59,105,102,40,112,40,116,104,105,115,46,116,105,112,41,46,104,97,115,67,108,97,115,115,40,72,110,41,41,123,118,97,114,32,104,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,116,105,112,41,59,112,40,116,104,105,115,46,116,105,112,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,99,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,104,41,125,101,108,115,101,32,99,40,41,125,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,44,105,61,112,46,69,118,101,110,116,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,72,73,68,69,41,44,111,61,102,117,110,99,116,105,111,110,40,41,123,101,46,95,104,111,118,101,114,83,116,97,116,101,33,61,61,76,110,38,38,110,46,112,97,114,101,110,116,78,111,100,101,38,38,110,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,110,41,44,101,46,95,99,108,101,97,110,84,105,112,67,108,97,115,115,40,41,44,101,46,101,108,101,109,101,110,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,41,44,112,40,101,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,101,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,72,73,68,68,69,78,41,44,110,117,108,108,33,61,61,101,46,95,112,111,112,112,101,114,38,38,101,46,95,112,111,112,112,101,114,46,100,101,115,116,114,111,121,40,41,44,116,38,38,116,40,41,125,59,105,102,40,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,105,41,44,33,105,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,105,102,40,112,40,110,41,46,114,101,109,111,118,101,67,108,97,115,115,40,106,110,41,44,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,104,105,108,100,114,101,110,40,41,46,111,102,102,40,34,109,111,117,115,101,111,118,101,114,34,44,110,117,108,108,44,112,46,110,111,111,112,41,44,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,85,110,93,61,33,49,44,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,87,110,93,61,33,49,44,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,77,110,93,61,33,49,44,112,40,116,104,105,115,46,116,105,112,41,46,104,97,115,67,108,97,115,115,40,72,110,41,41,123,118,97,114,32,114,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,110,41,59,112,40,110,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,111,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,114,41,125,101,108,115,101,32,111,40,41,59,116,104,105,115,46,95,104,111,118,101,114,83,116,97,116,101,61,34,34,125,125,44,116,46,117,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,110,117,108,108,33,61,61,116,104,105,115,46,95,112,111,112,112,101,114,38,38,116,104,105,115,46,95,112,111,112,112,101,114,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,40,41,125,44,116,46,105,115,87,105,116,104,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,66,111,111,108,101,97,110,40,116,104,105,115,46,103,101,116,84,105,116,108,101,40,41,41,125,44,116,46,97,100,100,65,116,116,97,99,104,109,101,110,116,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,46,97,100,100,67,108,97,115,115,40,68,110,43,34,45,34,43,116,41,125,44,116,46,103,101,116,84,105,112,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,105,112,61,116,104,105,115,46,116,105,112,124,124,112,40,116,104,105,115,46,99,111,110,102,105,103,46,116,101,109,112,108,97,116,101,41,91,48,93,44,116,104,105,115,46,116,105,112,125,44,116,46,115,101,116,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,59,116,104,105,115,46,115,101,116,69,108,101,109,101,110,116,67,111,110,116,101,110,116,40,112,40,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,82,110,41,41,44,116,104,105,115,46,103,101,116,84,105,116,108,101,40,41,41,44,112,40,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,72,110,43,34,32,34,43,106,110,41,125,44,116,46,115,101,116,69,108,101,109,101,110,116,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,101,124,124,33,101,46,110,111,100,101,84,121,112,101,38,38,33,101,46,106,113,117,101,114,121,63,116,104,105,115,46,99,111,110,102,105,103,46,104,116,109,108,63,40,116,104,105,115,46,99,111,110,102,105,103,46,115,97,110,105,116,105,122,101,38,38,40,101,61,98,110,40,101,44,116,104,105,115,46,99,111,110,102,105,103,46,119,104,105,116,101,76,105,115,116,44,116,104,105,115,46,99,111,110,102,105,103,46,115,97,110,105,116,105,122,101,70,110,41,41,44,116,46,104,116,109,108,40,101,41,41,58,116,46,116,101,120,116,40,101,41,58,116,104,105,115,46,99,111,110,102,105,103,46,104,116,109,108,63,112,40,101,41,46,112,97,114,101,110,116,40,41,46,105,115,40,116,41,124,124,116,46,101,109,112,116,121,40,41,46,97,112,112,101,110,100,40,101,41,58,116,46,116,101,120,116,40,112,40,101,41,46,116,101,120,116,40,41,41,125,44,116,46,103,101,116,84,105,116,108,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,34,41,59,114,101,116,117,114,110,32,116,124,124,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,99,111,110,102,105,103,46,116,105,116,108,101,63,116,104,105,115,46,99,111,110,102,105,103,46,116,105,116,108,101,46,99,97,108,108,40,116,104,105,115,46,101,108,101,109,101,110,116,41,58,116,104,105,115,46,99,111,110,102,105,103,46,116,105,116,108,101,41,44,116,125,44,116,46,95,103,101,116,79,102,102,115,101,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,44,116,61,123,125,59,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,99,111,110,102,105,103,46,111,102,102,115,101,116,63,116,46,102,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,111,102,102,115,101,116,115,61,108,40,123,125,44,116,46,111,102,102,115,101,116,115,44,101,46,99,111,110,102,105,103,46,111,102,102,115,101,116,40,116,46,111,102,102,115,101,116,115,44,101,46,101,108,101,109,101,110,116,41,124,124,123,125,41,44,116,125,58,116,46,111,102,102,115,101,116,61,116,104,105,115,46,99,111,110,102,105,103,46,111,102,102,115,101,116,44,116,125,44,116,46,95,103,101,116,67,111,110,116,97,105,110,101,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,49,61,61,61,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,63,100,111,99,117,109,101,110,116,46,98,111,100,121,58,109,46,105,115,69,108,101,109,101,110,116,40,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,41,63,112,40,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,41,58,112,40,100,111,99,117,109,101,110,116,41,46,102,105,110,100,40,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,41,125,44,116,46,95,103,101,116,65,116,116,97,99,104,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,78,110,91,116,46,116,111,85,112,112,101,114,67,97,115,101,40,41,93,125,44,116,46,95,115,101,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,61,116,104,105,115,59,116,104,105,115,46,99,111,110,102,105,103,46,116,114,105,103,103,101,114,46,115,112,108,105,116,40,34,32,34,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,34,99,108,105,99,107,34,61,61,61,116,41,112,40,105,46,101,108,101,109,101,110,116,41,46,111,110,40,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,67,76,73,67,75,44,105,46,99,111,110,102,105,103,46,115,101,108,101,99,116,111,114,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,46,116,111,103,103,108,101,40,116,41,125,41,59,101,108,115,101,32,105,102,40,116,33,61,61,66,110,41,123,118,97,114,32,101,61,116,61,61,61,77,110,63,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,77,79,85,83,69,69,78,84,69,82,58,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,70,79,67,85,83,73,78,44,110,61,116,61,61,61,77,110,63,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,77,79,85,83,69,76,69,65,86,69,58,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,70,79,67,85,83,79,85,84,59,112,40,105,46,101,108,101,109,101,110,116,41,46,111,110,40,101,44,105,46,99,111,110,102,105,103,46,115,101,108,101,99,116,111,114,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,46,95,101,110,116,101,114,40,116,41,125,41,46,111,110,40,110,44,105,46,99,111,110,102,105,103,46,115,101,108,101,99,116,111,114,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,46,95,108,101,97,118,101,40,116,41,125,41,125,125,41,44,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,34,46,109,111,100,97,108,34,41,46,111,110,40,34,104,105,100,101,46,98,115,46,109,111,100,97,108,34,44,102,117,110,99,116,105,111,110,40,41,123,105,46,101,108,101,109,101,110,116,38,38,105,46,104,105,100,101,40,41,125,41,44,116,104,105,115,46,99,111,110,102,105,103,46,115,101,108,101,99,116,111,114,63,116,104,105,115,46,99,111,110,102,105,103,61,108,40,123,125,44,116,104,105,115,46,99,111,110,102,105,103,44,123,116,114,105,103,103,101,114,58,34,109,97,110,117,97,108,34,44,115,101,108,101,99,116,111,114,58,34,34,125,41,58,116,104,105,115,46,95,102,105,120,84,105,116,108,101,40,41,125,44,116,46,95,102,105,120,84,105,116,108,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,121,112,101,111,102,32,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,34,41,59,40,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,41,124,124,34,115,116,114,105,110,103,34,33,61,61,116,41,38,38,40,116,104,105,115,46,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,34,44,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,41,124,124,34,34,41,44,116,104,105,115,46,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,34,34,41,41,125,44,116,46,95,101,110,116,101,114,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,59,40,101,61,101,124,124,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,110,41,41,124,124,40,101,61,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,44,116,104,105,115,46,95,103,101,116,68,101,108,101,103,97,116,101,67,111,110,102,105,103,40,41,41,44,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,110,44,101,41,41,44,116,38,38,40,101,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,34,102,111,99,117,115,105,110,34,61,61,61,116,46,116,121,112,101,63,87,110,58,77,110,93,61,33,48,41,44,112,40,101,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,46,104,97,115,67,108,97,115,115,40,106,110,41,124,124,101,46,95,104,111,118,101,114,83,116,97,116,101,61,61,61,76,110,63,101,46,95,104,111,118,101,114,83,116,97,116,101,61,76,110,58,40,99,108,101,97,114,84,105,109,101,111,117,116,40,101,46,95,116,105,109,101,111,117,116,41,44,101,46,95,104,111,118,101,114,83,116,97,116,101,61,76,110,44,101,46,99,111,110,102,105,103,46,100,101,108,97,121,38,38,101,46,99,111,110,102,105,103,46,100,101,108,97,121,46,115,104,111,119,63,101,46,95,116,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,46,95,104,111,118,101,114,83,116,97,116,101,61,61,61,76,110,38,38,101,46,115,104,111,119,40,41,125,44,101,46,99,111,110,102,105,103,46,100,101,108,97,121,46,115,104,111,119,41,58,101,46,115,104,111,119,40,41,41,125,44,116,46,95,108,101,97,118,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,59,40,101,61,101,124,124,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,110,41,41,124,124,40,101,61,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,44,116,104,105,115,46,95,103,101,116,68,101,108,101,103,97,116,101,67,111,110,102,105,103,40,41,41,44,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,110,44,101,41,41,44,116,38,38,40,101,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,34,102,111,99,117,115,111,117,116,34,61,61,61,116,46,116,121,112,101,63,87,110,58,77,110,93,61,33,49,41,44,101,46,95,105,115,87,105,116,104,65,99,116,105,118,101,84,114,105,103,103,101,114,40,41,124,124,40,99,108,101,97,114,84,105,109,101,111,117,116,40,101,46,95,116,105,109,101,111,117,116,41,44,101,46,95,104,111,118,101,114,83,116,97,116,101,61,120,110,44,101,46,99,111,110,102,105,103,46,100,101,108,97,121,38,38,101,46,99,111,110,102,105,103,46,100,101,108,97,121,46,104,105,100,101,63,101,46,95,116,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,46,95,104,111,118,101,114,83,116,97,116,101,61,61,61,120,110,38,38,101,46,104,105,100,101,40,41,125,44,101,46,99,111,110,102,105,103,46,100,101,108,97,121,46,104,105,100,101,41,58,101,46,104,105,100,101,40,41,41,125,44,116,46,95,105,115,87,105,116,104,65,99,116,105,118,101,84,114,105,103,103,101,114,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,32,105,110,32,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,41,105,102,40,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,116,93,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,100,97,116,97,40,41,59,114,101,116,117,114,110,32,79,98,106,101,99,116,46,107,101,121,115,40,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,45,49,33,61,61,65,110,46,105,110,100,101,120,79,102,40,116,41,38,38,100,101,108,101,116,101,32,101,91,116,93,125,41,44,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,40,116,61,108,40,123,125,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,44,101,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,116,63,116,58,123,125,41,41,46,100,101,108,97,121,38,38,40,116,46,100,101,108,97,121,61,123,115,104,111,119,58,116,46,100,101,108,97,121,44,104,105,100,101,58,116,46,100,101,108,97,121,125,41,44,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,46,116,105,116,108,101,38,38,40,116,46,116,105,116,108,101,61,116,46,116,105,116,108,101,46,116,111,83,116,114,105,110,103,40,41,41,44,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,46,99,111,110,116,101,110,116,38,38,40,116,46,99,111,110,116,101,110,116,61,116,46,99,111,110,116,101,110,116,46,116,111,83,116,114,105,110,103,40,41,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,119,110,44,116,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,84,121,112,101,41,44,116,46,115,97,110,105,116,105,122,101,38,38,40,116,46,116,101,109,112,108,97,116,101,61,98,110,40,116,46,116,101,109,112,108,97,116,101,44,116,46,119,104,105,116,101,76,105,115,116,44,116,46,115,97,110,105,116,105,122,101,70,110,41,41,44,116,125,44,116,46,95,103,101,116,68,101,108,101,103,97,116,101,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,125,59,105,102,40,116,104,105,115,46,99,111,110,102,105,103,41,102,111,114,40,118,97,114,32,101,32,105,110,32,116,104,105,115,46,99,111,110,102,105,103,41,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,91,101,93,33,61,61,116,104,105,115,46,99,111,110,102,105,103,91,101,93,38,38,40,116,91,101,93,61,116,104,105,115,46,99,111,110,102,105,103,91,101,93,41,59,114,101,116,117,114,110,32,116,125,44,116,46,95,99,108,101,97,110,84,105,112,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,44,101,61,116,46,97,116,116,114,40,34,99,108,97,115,115,34,41,46,109,97,116,99,104,40,73,110,41,59,110,117,108,108,33,61,61,101,38,38,101,46,108,101,110,103,116,104,38,38,116,46,114,101,109,111,118,101,67,108,97,115,115,40,101,46,106,111,105,110,40,34,34,41,41,125,44,116,46,95,104,97,110,100,108,101,80,111,112,112,101,114,80,108,97,99,101,109,101,110,116,67,104,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,105,110,115,116,97,110,99,101,59,116,104,105,115,46,116,105,112,61,101,46,112,111,112,112,101,114,44,116,104,105,115,46,95,99,108,101,97,110,84,105,112,67,108,97,115,115,40,41,44,116,104,105,115,46,97,100,100,65,116,116,97,99,104,109,101,110,116,67,108,97,115,115,40,116,104,105,115,46,95,103,101,116,65,116,116,97,99,104,109,101,110,116,40,116,46,112,108,97,99,101,109,101,110,116,41,41,125,44,116,46,95,102,105,120,84,114,97,110,115,105,116,105,111,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,44,101,61,116,104,105,115,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,59,110,117,108,108,61,61,61,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,120,45,112,108,97,99,101,109,101,110,116,34,41,38,38,40,112,40,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,72,110,41,44,116,104,105,115,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,61,33,49,44,116,104,105,115,46,104,105,100,101,40,41,44,116,104,105,115,46,115,104,111,119,40,41,44,116,104,105,115,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,61,101,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,67,110,41,44,101,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,38,38,110,59,105,102,40,40,116,124,124,33,47,100,105,115,112,111,115,101,124,104,105,100,101,47,46,116,101,115,116,40,110,41,41,38,38,40,116,124,124,40,116,61,110,101,119,32,105,40,116,104,105,115,44,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,67,110,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,116,91,110,93,40,41,125,125,41,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,110,125,125,44,123,107,101,121,58,34,78,65,77,69,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,119,110,125,125,44,123,107,101,121,58,34,68,65,84,65,95,75,69,89,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,67,110,125,125,44,123,107,101,121,58,34,69,118,101,110,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,80,110,125,125,44,123,107,101,121,58,34,69,86,69,78,84,95,75,69,89,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,84,110,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,84,121,112,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,79,110,125,125,93,41,44,105,125,40,41,59,112,46,102,110,91,119,110,93,61,113,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,119,110,93,46,67,111,110,115,116,114,117,99,116,111,114,61,113,110,44,112,46,102,110,91,119,110,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,119,110,93,61,83,110,44,113,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,75,110,61,34,112,111,112,111,118,101,114,34,44,81,110,61,34,98,115,46,112,111,112,111,118,101,114,34,44,86,110,61,34,46,34,43,81,110,44,89,110,61,112,46,102,110,91,75,110,93,44,122,110,61,34,98,115,45,112,111,112,111,118,101,114,34,44,88,110,61,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,92,92,115,41,34,43,122,110,43,34,92,92,83,43,34,44,34,103,34,41,44,71,110,61,108,40,123,125,44,113,110,46,68,101,102,97,117,108,116,44,123,112,108,97,99,101,109,101,110,116,58,34,114,105,103,104,116,34,44,116,114,105,103,103,101,114,58,34,99,108,105,99,107,34,44,99,111,110,116,101,110,116,58,34,34,44,116,101,109,112,108,97,116,101,58,39,60,100,105,118,32,99,108,97,115,115,61,34,112,111,112,111,118,101,114,34,32,114,111,108,101,61,34,116,111,111,108,116,105,112,34,62,60,100,105,118,32,99,108,97,115,115,61,34,97,114,114,111,119,34,62,60,47,100,105,118,62,60,104,51,32,99,108,97,115,115,61,34,112,111,112,111,118,101,114,45,104,101,97,100,101,114,34,62,60,47,104,51,62,60,100,105,118,32,99,108,97,115,115,61,34,112,111,112,111,118,101,114,45,98,111,100,121,34,62,60,47,100,105,118,62,60,47,100,105,118,62,39,125,41,44,36,110,61,108,40,123,125,44,113,110,46,68,101,102,97,117,108,116,84,121,112,101,44,123,99,111,110,116,101,110,116,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,124,102,117,110,99,116,105,111,110,41,34,125,41,44,74,110,61,34,102,97,100,101,34,44,90,110,61,34,115,104,111,119,34,44,116,105,61,34,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,34,44,101,105,61,34,46,112,111,112,111,118,101,114,45,98,111,100,121,34,44,110,105,61,123,72,73,68,69,58,34,104,105,100,101,34,43,86,110,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,86,110,44,83,72,79,87,58,34,115,104,111,119,34,43,86,110,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,86,110,44,73,78,83,69,82,84,69,68,58,34,105,110,115,101,114,116,101,100,34,43,86,110,44,67,76,73,67,75,58,34,99,108,105,99,107,34,43,86,110,44,70,79,67,85,83,73,78,58,34,102,111,99,117,115,105,110,34,43,86,110,44,70,79,67,85,83,79,85,84,58,34,102,111,99,117,115,111,117,116,34,43,86,110,44,77,79,85,83,69,69,78,84,69,82,58,34,109,111,117,115,101,101,110,116,101,114,34,43,86,110,44,77,79,85,83,69,76,69,65,86,69,58,34,109,111,117,115,101,108,101,97,118,101,34,43,86,110,125,44,105,105,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,59,102,117,110,99,116,105,111,110,32,105,40,41,123,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,124,124,116,104,105,115,125,110,61,116,44,40,101,61,105,41,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,46,112,114,111,116,111,116,121,112,101,41,44,40,101,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,101,41,46,95,95,112,114,111,116,111,95,95,61,110,59,118,97,114,32,111,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,111,46,105,115,87,105,116,104,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,103,101,116,84,105,116,108,101,40,41,124,124,116,104,105,115,46,95,103,101,116,67,111,110,116,101,110,116,40,41,125,44,111,46,97,100,100,65,116,116,97,99,104,109,101,110,116,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,46,97,100,100,67,108,97,115,115,40,122,110,43,34,45,34,43,116,41,125,44,111,46,103,101,116,84,105,112,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,105,112,61,116,104,105,115,46,116,105,112,124,124,112,40,116,104,105,115,46,99,111,110,102,105,103,46,116,101,109,112,108,97,116,101,41,91,48,93,44,116,104,105,115,46,116,105,112,125,44,111,46,115,101,116,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,59,116,104,105,115,46,115,101,116,69,108,101,109,101,110,116,67,111,110,116,101,110,116,40,116,46,102,105,110,100,40,116,105,41,44,116,104,105,115,46,103,101,116,84,105,116,108,101,40,41,41,59,118,97,114,32,101,61,116,104,105,115,46,95,103,101,116,67,111,110,116,101,110,116,40,41,59,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,38,38,40,101,61,101,46,99,97,108,108,40,116,104,105,115,46,101,108,101,109,101,110,116,41,41,44,116,104,105,115,46,115,101,116,69,108,101,109,101,110,116,67,111,110,116,101,110,116,40,116,46,102,105,110,100,40,101,105,41,44,101,41,44,116,46,114,101,109,111,118,101,67,108,97,115,115,40,74,110,43,34,32,34,43,90,110,41,125,44,111,46,95,103,101,116,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,99,111,110,116,101,110,116,34,41,124,124,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,101,110,116,125,44,111,46,95,99,108,101,97,110,84,105,112,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,44,101,61,116,46,97,116,116,114,40,34,99,108,97,115,115,34,41,46,109,97,116,99,104,40,88,110,41,59,110,117,108,108,33,61,61,101,38,38,48,60,101,46,108,101,110,103,116,104,38,38,116,46,114,101,109,111,118,101,67,108,97,115,115,40,101,46,106,111,105,110,40,34,34,41,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,81,110,41,44,101,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,63,110,58,110,117,108,108,59,105,102,40,40,116,124,124,33,47,100,105,115,112,111,115,101,124,104,105,100,101,47,46,116,101,115,116,40,110,41,41,38,38,40,116,124,124,40,116,61,110,101,119,32,105,40,116,104,105,115,44,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,81,110,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,116,91,110,93,40,41,125,125,41,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,71,110,125,125,44,123,107,101,121,58,34,78,65,77,69,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,75,110,125,125,44,123,107,101,121,58,34,68,65,84,65,95,75,69,89,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,110,125,125,44,123,107,101,121,58,34,69,118,101,110,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,105,125,125,44,123,107,101,121,58,34,69,86,69,78,84,95,75,69,89,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,110,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,84,121,112,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,110,125,125,93,41,44,105,125,40,113,110,41,59,112,46,102,110,91,75,110,93,61,105,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,75,110,93,46,67,111,110,115,116,114,117,99,116,111,114,61,105,105,44,112,46,102,110,91,75,110,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,75,110,93,61,89,110,44,105,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,111,105,61,34,115,99,114,111,108,108,115,112,121,34,44,114,105,61,34,98,115,46,115,99,114,111,108,108,115,112,121,34,44,115,105,61,34,46,34,43,114,105,44,97,105,61,112,46,102,110,91,111,105,93,44,108,105,61,123,111,102,102,115,101,116,58,49,48,44,109,101,116,104,111,100,58,34,97,117,116,111,34,44,116,97,114,103,101,116,58,34,34,125,44,99,105,61,123,111,102,102,115,101,116,58,34,110,117,109,98,101,114,34,44,109,101,116,104,111,100,58,34,115,116,114,105,110,103,34,44,116,97,114,103,101,116,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,125,44,104,105,61,123,65,67,84,73,86,65,84,69,58,34,97,99,116,105,118,97,116,101,34,43,115,105,44,83,67,82,79,76,76,58,34,115,99,114,111,108,108,34,43,115,105,44,76,79,65,68,95,68,65,84,65,95,65,80,73,58,34,108,111,97,100,34,43,115,105,43,34,46,100,97,116,97,45,97,112,105,34,125,44,117,105,61,34,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,102,105,61,34,97,99,116,105,118,101,34,44,100,105,61,39,91,100,97,116,97,45,115,112,121,61,34,115,99,114,111,108,108,34,93,39,44,112,105,61,34,46,110,97,118,44,32,46,108,105,115,116,45,103,114,111,117,112,34,44,109,105,61,34,46,110,97,118,45,108,105,110,107,34,44,103,105,61,34,46,110,97,118,45,105,116,101,109,34,44,95,105,61,34,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,34,44,118,105,61,34,46,100,114,111,112,100,111,119,110,34,44,121,105,61,34,46,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,69,105,61,34,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,34,44,98,105,61,34,111,102,102,115,101,116,34,44,119,105,61,34,112,111,115,105,116,105,111,110,34,44,67,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,59,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,34,66,79,68,89,34,61,61,61,116,46,116,97,103,78,97,109,101,63,119,105,110,100,111,119,58,116,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,115,101,108,101,99,116,111,114,61,116,104,105,115,46,95,99,111,110,102,105,103,46,116,97,114,103,101,116,43,34,32,34,43,109,105,43,34,44,34,43,116,104,105,115,46,95,99,111,110,102,105,103,46,116,97,114,103,101,116,43,34,32,34,43,95,105,43,34,44,34,43,116,104,105,115,46,95,99,111,110,102,105,103,46,116,97,114,103,101,116,43,34,32,34,43,121,105,44,116,104,105,115,46,95,111,102,102,115,101,116,115,61,91,93,44,116,104,105,115,46,95,116,97,114,103,101,116,115,61,91,93,44,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,61,110,117,108,108,44,116,104,105,115,46,95,115,99,114,111,108,108,72,101,105,103,104,116,61,48,44,112,40,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,41,46,111,110,40,104,105,46,83,67,82,79,76,76,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,95,112,114,111,99,101,115,115,40,116,41,125,41,44,116,104,105,115,46,114,101,102,114,101,115,104,40,41,44,116,104,105,115,46,95,112,114,111,99,101,115,115,40,41,125,118,97,114,32,116,61,110,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,114,101,102,114,101,115,104,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,44,116,61,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,61,61,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,119,105,110,100,111,119,63,98,105,58,119,105,44,111,61,34,97,117,116,111,34,61,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,109,101,116,104,111,100,63,116,58,116,104,105,115,46,95,99,111,110,102,105,103,46,109,101,116,104,111,100,44,114,61,111,61,61,61,119,105,63,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,84,111,112,40,41,58,48,59,116,104,105,115,46,95,111,102,102,115,101,116,115,61,91,93,44,116,104,105,115,46,95,116,97,114,103,101,116,115,61,91,93,44,116,104,105,115,46,95,115,99,114,111,108,108,72,101,105,103,104,116,61,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,72,101,105,103,104,116,40,41,44,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,41,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,41,59,105,102,40,110,38,38,40,101,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,110,41,41,44,101,41,123,118,97,114,32,105,61,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,105,102,40,105,46,119,105,100,116,104,124,124,105,46,104,101,105,103,104,116,41,114,101,116,117,114,110,91,112,40,101,41,91,111,93,40,41,46,116,111,112,43,114,44,110,93,125,114,101,116,117,114,110,32,110,117,108,108,125,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,91,48,93,45,101,91,48,93,125,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,95,111,102,102,115,101,116,115,46,112,117,115,104,40,116,91,48,93,41,44,101,46,95,116,97,114,103,101,116,115,46,112,117,115,104,40,116,91,49,93,41,125,41,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,114,105,41,44,112,40,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,41,46,111,102,102,40,115,105,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,95,115,101,108,101,99,116,111,114,61,110,117,108,108,44,116,104,105,115,46,95,111,102,102,115,101,116,115,61,110,117,108,108,44,116,104,105,115,46,95,116,97,114,103,101,116,115,61,110,117,108,108,44,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,61,110,117,108,108,44,116,104,105,115,46,95,115,99,114,111,108,108,72,101,105,103,104,116,61,110,117,108,108,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,40,116,61,108,40,123,125,44,108,105,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,116,63,116,58,123,125,41,41,46,116,97,114,103,101,116,41,123,118,97,114,32,101,61,112,40,116,46,116,97,114,103,101,116,41,46,97,116,116,114,40,34,105,100,34,41,59,101,124,124,40,101,61,109,46,103,101,116,85,73,68,40,111,105,41,44,112,40,116,46,116,97,114,103,101,116,41,46,97,116,116,114,40,34,105,100,34,44,101,41,41,44,116,46,116,97,114,103,101,116,61,34,35,34,43,101,125,114,101,116,117,114,110,32,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,111,105,44,116,44,99,105,41,44,116,125,44,116,46,95,103,101,116,83,99,114,111,108,108,84,111,112,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,61,61,119,105,110,100,111,119,63,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,112,97,103,101,89,79,102,102,115,101,116,58,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,115,99,114,111,108,108,84,111,112,125,44,116,46,95,103,101,116,83,99,114,111,108,108,72,101,105,103,104,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,115,99,114,111,108,108,72,101,105,103,104,116,124,124,77,97,116,104,46,109,97,120,40,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,99,114,111,108,108,72,101,105,103,104,116,44,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,115,99,114,111,108,108,72,101,105,103,104,116,41,125,44,116,46,95,103,101,116,79,102,102,115,101,116,72,101,105,103,104,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,61,61,119,105,110,100,111,119,63,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,58,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,104,101,105,103,104,116,125,44,116,46,95,112,114,111,99,101,115,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,84,111,112,40,41,43,116,104,105,115,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,44,101,61,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,72,101,105,103,104,116,40,41,44,110,61,116,104,105,115,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,43,101,45,116,104,105,115,46,95,103,101,116,79,102,102,115,101,116,72,101,105,103,104,116,40,41,59,105,102,40,116,104,105,115,46,95,115,99,114,111,108,108,72,101,105,103,104,116,33,61,61,101,38,38,116,104,105,115,46,114,101,102,114,101,115,104,40,41,44,110,60,61,116,41,123,118,97,114,32,105,61,116,104,105,115,46,95,116,97,114,103,101,116,115,91,116,104,105,115,46,95,116,97,114,103,101,116,115,46,108,101,110,103,116,104,45,49,93,59,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,33,61,61,105,38,38,116,104,105,115,46,95,97,99,116,105,118,97,116,101,40,105,41,125,101,108,115,101,123,105,102,40,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,38,38,116,60,116,104,105,115,46,95,111,102,102,115,101,116,115,91,48,93,38,38,48,60,116,104,105,115,46,95,111,102,102,115,101,116,115,91,48,93,41,114,101,116,117,114,110,32,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,61,110,117,108,108,44,118,111,105,100,32,116,104,105,115,46,95,99,108,101,97,114,40,41,59,102,111,114,40,118,97,114,32,111,61,116,104,105,115,46,95,111,102,102,115,101,116,115,46,108,101,110,103,116,104,59,111,45,45,59,41,123,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,33,61,61,116,104,105,115,46,95,116,97,114,103,101,116,115,91,111,93,38,38,116,62,61,116,104,105,115,46,95,111,102,102,115,101,116,115,91,111,93,38,38,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,95,111,102,102,115,101,116,115,91,111,43,49,93,124,124,116,60,116,104,105,115,46,95,111,102,102,115,101,116,115,91,111,43,49,93,41,38,38,116,104,105,115,46,95,97,99,116,105,118,97,116,101,40,116,104,105,115,46,95,116,97,114,103,101,116,115,91,111,93,41,125,125,125,44,116,46,95,97,99,116,105,118,97,116,101,61,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,61,101,44,116,104,105,115,46,95,99,108,101,97,114,40,41,59,118,97,114,32,116,61,116,104,105,115,46,95,115,101,108,101,99,116,111,114,46,115,112,108,105,116,40,34,44,34,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,43,39,91,100,97,116,97,45,116,97,114,103,101,116,61,34,39,43,101,43,39,34,93,44,39,43,116,43,39,91,104,114,101,102,61,34,39,43,101,43,39,34,93,39,125,41,44,110,61,112,40,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,46,106,111,105,110,40,34,44,34,41,41,41,41,59,110,46,104,97,115,67,108,97,115,115,40,117,105,41,63,40,110,46,99,108,111,115,101,115,116,40,118,105,41,46,102,105,110,100,40,69,105,41,46,97,100,100,67,108,97,115,115,40,102,105,41,44,110,46,97,100,100,67,108,97,115,115,40,102,105,41,41,58,40,110,46,97,100,100,67,108,97,115,115,40,102,105,41,44,110,46,112,97,114,101,110,116,115,40,112,105,41,46,112,114,101,118,40,109,105,43,34,44,32,34,43,95,105,41,46,97,100,100,67,108,97,115,115,40,102,105,41,44,110,46,112,97,114,101,110,116,115,40,112,105,41,46,112,114,101,118,40,103,105,41,46,99,104,105,108,100,114,101,110,40,109,105,41,46,97,100,100,67,108,97,115,115,40,102,105,41,41,44,112,40,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,104,105,46,65,67,84,73,86,65,84,69,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,101,125,41,125,44,116,46,95,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,41,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,102,105,41,125,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,102,105,41,125,41,125,44,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,114,105,41,59,105,102,40,116,124,124,40,116,61,110,101,119,32,110,40,116,104,105,115,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,114,105,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,101,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,101,43,39,34,39,41,59,116,91,101,93,40,41,125,125,41,125,44,115,40,110,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,108,105,125,125,93,41,44,110,125,40,41,59,112,40,119,105,110,100,111,119,41,46,111,110,40,104,105,46,76,79,65,68,95,68,65,84,65,95,65,80,73,44,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,100,105,41,41,44,101,61,116,46,108,101,110,103,116,104,59,101,45,45,59,41,123,118,97,114,32,110,61,112,40,116,91,101,93,41,59,67,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,110,44,110,46,100,97,116,97,40,41,41,125,125,41,44,112,46,102,110,91,111,105,93,61,67,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,111,105,93,46,67,111,110,115,116,114,117,99,116,111,114,61,67,105,44,112,46,102,110,91,111,105,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,111,105,93,61,97,105,44,67,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,84,105,61,34,98,115,46,116,97,98,34,44,83,105,61,34,46,34,43,84,105,44,68,105,61,112,46,102,110,46,116,97,98,44,73,105,61,123,72,73,68,69,58,34,104,105,100,101,34,43,83,105,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,83,105,44,83,72,79,87,58,34,115,104,111,119,34,43,83,105,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,83,105,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,83,105,43,34,46,100,97,116,97,45,97,112,105,34,125,44,65,105,61,34,100,114,111,112,100,111,119,110,45,109,101,110,117,34,44,79,105,61,34,97,99,116,105,118,101,34,44,78,105,61,34,100,105,115,97,98,108,101,100,34,44,107,105,61,34,102,97,100,101,34,44,76,105,61,34,115,104,111,119,34,44,120,105,61,34,46,100,114,111,112,100,111,119,110,34,44,80,105,61,34,46,110,97,118,44,32,46,108,105,115,116,45,103,114,111,117,112,34,44,72,105,61,34,46,97,99,116,105,118,101,34,44,106,105,61,34,62,32,108,105,32,62,32,46,97,99,116,105,118,101,34,44,82,105,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,116,97,98,34,93,44,32,91,100,97,116,97,45,116,111,103,103,108,101,61,34,112,105,108,108,34,93,44,32,91,100,97,116,97,45,116,111,103,103,108,101,61,34,108,105,115,116,34,93,39,44,70,105,61,34,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,34,44,77,105,61,34,62,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,32,46,97,99,116,105,118,101,34,44,87,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,125,118,97,114,32,116,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,33,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,46,110,111,100,101,84,121,112,101,61,61,61,78,111,100,101,46,69,76,69,77,69,78,84,95,78,79,68,69,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,79,105,41,124,124,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,78,105,41,41,41,123,118,97,114,32,116,44,105,44,101,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,80,105,41,91,48,93,44,111,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,105,102,40,101,41,123,118,97,114,32,114,61,34,85,76,34,61,61,61,101,46,110,111,100,101,78,97,109,101,124,124,34,79,76,34,61,61,61,101,46,110,111,100,101,78,97,109,101,63,106,105,58,72,105,59,105,61,40,105,61,112,46,109,97,107,101,65,114,114,97,121,40,112,40,101,41,46,102,105,110,100,40,114,41,41,41,91,105,46,108,101,110,103,116,104,45,49,93,125,118,97,114,32,115,61,112,46,69,118,101,110,116,40,73,105,46,72,73,68,69,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,104,105,115,46,95,101,108,101,109,101,110,116,125,41,44,97,61,112,46,69,118,101,110,116,40,73,105,46,83,72,79,87,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,105,125,41,59,105,102,40,105,38,38,112,40,105,41,46,116,114,105,103,103,101,114,40,115,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,97,41,44,33,97,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,38,38,33,115,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,111,38,38,40,116,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,111,41,41,44,116,104,105,115,46,95,97,99,116,105,118,97,116,101,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,101,41,59,118,97,114,32,108,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,46,69,118,101,110,116,40,73,105,46,72,73,68,68,69,78,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,110,46,95,101,108,101,109,101,110,116,125,41,44,101,61,112,46,69,118,101,110,116,40,73,105,46,83,72,79,87,78,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,105,125,41,59,112,40,105,41,46,116,114,105,103,103,101,114,40,116,41,44,112,40,110,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,101,41,125,59,116,63,116,104,105,115,46,95,97,99,116,105,118,97,116,101,40,116,44,116,46,112,97,114,101,110,116,78,111,100,101,44,108,41,58,108,40,41,125,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,84,105,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,125,44,116,46,95,97,99,116,105,118,97,116,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,105,61,116,104,105,115,44,111,61,40,33,101,124,124,34,85,76,34,33,61,61,101,46,110,111,100,101,78,97,109,101,38,38,34,79,76,34,33,61,61,101,46,110,111,100,101,78,97,109,101,63,112,40,101,41,46,99,104,105,108,100,114,101,110,40,72,105,41,58,112,40,101,41,46,102,105,110,100,40,106,105,41,41,91,48,93,44,114,61,110,38,38,111,38,38,112,40,111,41,46,104,97,115,67,108,97,115,115,40,107,105,41,44,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,46,95,116,114,97,110,115,105,116,105,111,110,67,111,109,112,108,101,116,101,40,116,44,111,44,110,41,125,59,105,102,40,111,38,38,114,41,123,118,97,114,32,97,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,111,41,59,112,40,111,41,46,114,101,109,111,118,101,67,108,97,115,115,40,76,105,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,115,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,97,41,125,101,108,115,101,32,115,40,41,125,44,116,46,95,116,114,97,110,115,105,116,105,111,110,67,111,109,112,108,101,116,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,101,41,123,112,40,101,41,46,114,101,109,111,118,101,67,108,97,115,115,40,79,105,41,59,118,97,114,32,105,61,112,40,101,46,112,97,114,101,110,116,78,111,100,101,41,46,102,105,110,100,40,77,105,41,91,48,93,59,105,38,38,112,40,105,41,46,114,101,109,111,118,101,67,108,97,115,115,40,79,105,41,44,34,116,97,98,34,61,61,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,114,111,108,101,34,41,38,38,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,115,101,108,101,99,116,101,100,34,44,33,49,41,125,105,102,40,112,40,116,41,46,97,100,100,67,108,97,115,115,40,79,105,41,44,34,116,97,98,34,61,61,61,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,114,111,108,101,34,41,38,38,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,115,101,108,101,99,116,101,100,34,44,33,48,41,44,109,46,114,101,102,108,111,119,40,116,41,44,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,107,105,41,38,38,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,76,105,41,44,116,46,112,97,114,101,110,116,78,111,100,101,38,38,112,40,116,46,112,97,114,101,110,116,78,111,100,101,41,46,104,97,115,67,108,97,115,115,40,65,105,41,41,123,118,97,114,32,111,61,112,40,116,41,46,99,108,111,115,101,115,116,40,120,105,41,91,48,93,59,105,102,40,111,41,123,118,97,114,32,114,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,111,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,70,105,41,41,59,112,40,114,41,46,97,100,100,67,108,97,115,115,40,79,105,41,125,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,33,48,41,125,110,38,38,110,40,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,84,105,41,59,105,102,40,101,124,124,40,101,61,110,101,119,32,105,40,116,104,105,115,41,44,116,46,100,97,116,97,40,84,105,44,101,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,101,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,101,91,110,93,40,41,125,125,41,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,93,41,44,105,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,73,105,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,82,105,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,87,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,116,104,105,115,41,44,34,115,104,111,119,34,41,125,41,44,112,46,102,110,46,116,97,98,61,87,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,46,116,97,98,46,67,111,110,115,116,114,117,99,116,111,114,61,87,105,44,112,46,102,110,46,116,97,98,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,46,116,97,98,61,68,105,44,87,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,85,105,61,34,116,111,97,115,116,34,44,66,105,61,34,98,115,46,116,111,97,115,116,34,44,113,105,61,34,46,34,43,66,105,44,75,105,61,112,46,102,110,91,85,105,93,44,81,105,61,123,67,76,73,67,75,95,68,73,83,77,73,83,83,58,34,99,108,105,99,107,46,100,105,115,109,105,115,115,34,43,113,105,44,72,73,68,69,58,34,104,105,100,101,34,43,113,105,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,113,105,44,83,72,79,87,58,34,115,104,111,119,34,43,113,105,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,113,105,125,44,86,105,61,34,102,97,100,101,34,44,89,105,61,34,104,105,100,101,34,44,122,105,61,34,115,104,111,119,34,44,88,105,61,34,115,104,111,119,105,110,103,34,44,71,105,61,123,97,110,105,109,97,116,105,111,110,58,34,98,111,111,108,101,97,110,34,44,97,117,116,111,104,105,100,101,58,34,98,111,111,108,101,97,110,34,44,100,101,108,97,121,58,34,110,117,109,98,101,114,34,125,44,36,105,61,123,97,110,105,109,97,116,105,111,110,58,33,48,44,97,117,116,111,104,105,100,101,58,33,48,44,100,101,108,97,121,58,53,48,48,125,44,74,105,61,39,91,100,97,116,97,45,100,105,115,109,105,115,115,61,34,116,111,97,115,116,34,93,39,44,90,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,116,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,95,115,101,116,76,105,115,116,101,110,101,114,115,40,41,125,118,97,114,32,116,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,81,105,46,83,72,79,87,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,86,105,41,59,118,97,114,32,101,61,102,117,110,99,116,105,111,110,40,41,123,116,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,88,105,41,44,116,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,122,105,41,44,112,40,116,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,81,105,46,83,72,79,87,78,41,44,116,46,95,99,111,110,102,105,103,46,97,117,116,111,104,105,100,101,38,38,116,46,104,105,100,101,40,41,125,59,105,102,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,89,105,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,88,105,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,41,123,118,97,114,32,110,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,101,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,110,41,125,101,108,115,101,32,101,40,41,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,122,105,41,38,38,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,81,105,46,72,73,68,69,41,44,116,63,116,104,105,115,46,95,99,108,111,115,101,40,41,58,116,104,105,115,46,95,116,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,46,95,99,108,111,115,101,40,41,125,44,116,104,105,115,46,95,99,111,110,102,105,103,46,100,101,108,97,121,41,41,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,95,116,105,109,101,111,117,116,41,44,116,104,105,115,46,95,116,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,122,105,41,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,122,105,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,81,105,46,67,76,73,67,75,95,68,73,83,77,73,83,83,41,44,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,66,105,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,108,40,123,125,44,36,105,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,100,97,116,97,40,41,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,116,63,116,58,123,125,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,85,105,44,116,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,84,121,112,101,41,44,116,125,44,116,46,95,115,101,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,81,105,46,67,76,73,67,75,95,68,73,83,77,73,83,83,44,74,105,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,46,104,105,100,101,40,33,48,41,125,41,125,44,116,46,95,99,108,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,101,61,102,117,110,99,116,105,111,110,40,41,123,116,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,89,105,41,44,112,40,116,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,81,105,46,72,73,68,68,69,78,41,125,59,105,102,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,122,105,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,41,123,118,97,114,32,110,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,101,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,110,41,125,101,108,115,101,32,101,40,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,66,105,41,59,105,102,40,101,124,124,40,101,61,110,101,119,32,105,40,116,104,105,115,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,38,38,110,41,44,116,46,100,97,116,97,40,66,105,44,101,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,101,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,101,91,110,93,40,116,104,105,115,41,125,125,41,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,84,121,112,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,71,105,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,105,125,125,93,41,44,105,125,40,41,59,112,46,102,110,91,85,105,93,61,90,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,85,105,93,46,67,111,110,115,116,114,117,99,116,111,114,61,90,105,44,112,46,102,110,91,85,105,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,85,105,93,61,75,105,44,90,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,44,102,117,110,99,116,105,111,110,40,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,112,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,66,111,111,116,115,116,114,97,112,39,115,32,74,97,118,97,83,99,114,105,112,116,32,114,101,113,117,105,114,101,115,32,106,81,117,101,114,121,46,32,106,81,117,101,114,121,32,109,117,115,116,32,98,101,32,105,110,99,108,117,100,101,100,32,98,101,102,111,114,101,32,66,111,111,116,115,116,114,97,112,39,115,32,74,97,118,97,83,99,114,105,112,116,46,34,41,59,118,97,114,32,116,61,112,46,102,110,46,106,113,117,101,114,121,46,115,112,108,105,116,40,34,32,34,41,91,48,93,46,115,112,108,105,116,40,34,46,34,41,59,105,102,40,116,91,48,93,60,50,38,38,116,91,49,93,60,57,124,124,49,61,61,61,116,91,48,93,38,38,57,61,61,61,116,91,49,93,38,38,116,91,50,93,60,49,124,124,52,60,61,116,91,48,93,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,66,111,111,116,115,116,114,97,112,39,115,32,74,97,118,97,83,99,114,105,112,116,32,114,101,113,117,105,114,101,115,32,97,116,32,108,101,97,115,116,32,106,81,117,101,114,121,32,118,49,46,57,46,49,32,98,117,116,32,108,101,115,115,32,116,104,97,110,32,118,52,46,48,46,48,34,41,125,40,41,44,116,46,85,116,105,108,61,109,44,116,46,65,108,101,114,116,61,103,44,116,46,66,117,116,116,111,110,61,107,44,116,46,67,97,114,111,117,115,101,108,61,97,116,44,116,46,67,111,108,108,97,112,115,101,61,67,116,44,116,46,68,114,111,112,100,111,119,110,61,88,101,44,116,46,77,111,100,97,108,61,103,110,44,116,46,80,111,112,111,118,101,114,61,105,105,44,116,46,83,99,114,111,108,108,115,112,121,61,67,105,44,116,46,84,97,98,61,87,105,44,116,46,84,111,97,115,116,61,90,105,44,116,46,84,111,111,108,116,105,112,61,113,110,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,125,41,59,10,10,47,42,42,10,32,42,32,64,108,105,99,101,110,115,101,10,32,42,32,76,111,100,97,115,104,32,108,111,100,97,115,104,46,99,111,109,47,108,105,99,101,110,115,101,32,124,32,85,110,100,101,114,115,99,111,114,101,46,106,115,32,49,46,56,46,51,32,117,110,100,101,114,115,99,111,114,101,106,115,46,111,114,103,47,76,73,67,69,78,83,69,10,32,42,47,10,59,40,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,110,40,110,44,116,44,114,41,123,115,119,105,116,99,104,40,114,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,41,59,99,97,115,101,32,49,58,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,44,114,91,48,93,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,44,114,91,48,93,44,114,91,49,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,44,114,91,48,93,44,114,91,49,93,44,114,91,50,93,41,125,114,101,116,117,114,110,32,110,46,97,112,112,108,121,40,116,44,114,41,125,102,117,110,99,116,105,111,110,32,116,40,110,44,116,44,114,44,101,41,123,102,111,114,40,118,97,114,32,117,61,45,49,44,105,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,117,60,105,59,41,123,118,97,114,32,111,61,110,91,117,93,59,116,40,101,44,111,44,114,40,111,41,44,110,41,125,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,114,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,114,60,101,38,38,102,97,108,115,101,33,61,61,116,40,110,91,114,93,44,114,44,110,41,59,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,101,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,45,45,38,38,102,97,108,115,101,33,61,61,116,40,110,91,114,93,44,114,44,110,41,59,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,117,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,114,60,101,59,41,105,102,40,33,116,40,110,91,114,93,44,114,44,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,10,114,101,116,117,114,110,32,116,114,117,101,125,102,117,110,99,116,105,111,110,32,105,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,117,61,48,44,105,61,91,93,59,43,43,114,60,101,59,41,123,118,97,114,32,111,61,110,91,114,93,59,116,40,111,44,114,44,110,41,38,38,40,105,91,117,43,43,93,61,111,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,111,40,110,44,116,41,123,114,101,116,117,114,110,33,40,110,117,108,108,61,61,110,124,124,33,110,46,108,101,110,103,116,104,41,38,38,45,49,60,118,40,110,44,116,44,48,41,125,102,117,110,99,116,105,111,110,32,102,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,101,60,117,59,41,105,102,40,114,40,116,44,110,91,101,93,41,41,114,101,116,117,114,110,32,116,114,117,101,59,114,101,116,117,114,110,32,102,97,108,115,101,125,102,117,110,99,116,105,111,110,32,99,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,117,61,65,114,114,97,121,40,101,41,59,43,43,114,60,101,59,41,117,91,114,93,61,116,40,110,91,114,93,44,114,44,110,41,59,114,101,116,117,114,110,32,117,125,102,117,110,99,116,105,111,110,32,97,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,116,46,108,101,110,103,116,104,44,117,61,110,46,108,101,110,103,116,104,59,43,43,114,60,101,59,41,110,91,117,43,114,93,61,116,91,114,93,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,108,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,101,38,38,105,38,38,40,114,61,110,91,43,43,117,93,41,59,43,43,117,60,105,59,41,114,61,116,40,114,44,110,91,117,93,44,117,44,110,41,59,10,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,115,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,101,38,38,117,38,38,40,114,61,110,91,45,45,117,93,41,59,117,45,45,59,41,114,61,116,40,114,44,110,91,117,93,44,117,44,110,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,104,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,114,60,101,59,41,105,102,40,116,40,110,91,114,93,44,114,44,110,41,41,114,101,116,117,114,110,32,116,114,117,101,59,114,101,116,117,114,110,32,102,97,108,115,101,125,102,117,110,99,116,105,111,110,32,112,40,110,44,116,44,114,41,123,118,97,114,32,101,59,114,101,116,117,114,110,32,114,40,110,44,102,117,110,99,116,105,111,110,40,110,44,114,44,117,41,123,105,102,40,116,40,110,44,114,44,117,41,41,114,101,116,117,114,110,32,101,61,114,44,102,97,108,115,101,125,41,44,101,125,102,117,110,99,116,105,111,110,32,95,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,110,46,108,101,110,103,116,104,59,102,111,114,40,114,43,61,101,63,49,58,45,49,59,101,63,114,45,45,58,43,43,114,60,117,59,41,105,102,40,116,40,110,91,114,93,44,114,44,110,41,41,114,101,116,117,114,110,32,114,59,114,101,116,117,114,110,45,49,125,102,117,110,99,116,105,111,110,32,118,40,110,44,116,44,114,41,123,105,102,40,116,61,61,61,116,41,110,58,123,45,45,114,59,102,111,114,40,118,97,114,32,101,61,110,46,108,101,110,103,116,104,59,43,43,114,60,101,59,41,105,102,40,110,91,114,93,61,61,61,116,41,123,110,61,114,59,98,114,101,97,107,32,110,125,110,61,45,49,125,101,108,115,101,32,110,61,95,40,110,44,100,44,114,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,103,40,110,44,116,44,114,44,101,41,123,10,45,45,114,59,102,111,114,40,118,97,114,32,117,61,110,46,108,101,110,103,116,104,59,43,43,114,60,117,59,41,105,102,40,101,40,110,91,114,93,44,116,41,41,114,101,116,117,114,110,32,114,59,114,101,116,117,114,110,45,49,125,102,117,110,99,116,105,111,110,32,100,40,110,41,123,114,101,116,117,114,110,32,110,33,61,61,110,125,102,117,110,99,116,105,111,110,32,121,40,110,44,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,114,63,109,40,110,44,116,41,47,114,58,70,125,102,117,110,99,116,105,111,110,32,98,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,84,58,116,91,110,93,125,125,102,117,110,99,116,105,111,110,32,120,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,84,58,110,91,116,93,125,125,102,117,110,99,116,105,111,110,32,106,40,110,44,116,44,114,44,101,44,117,41,123,114,101,116,117,114,110,32,117,40,110,44,102,117,110,99,116,105,111,110,40,110,44,117,44,105,41,123,114,61,101,63,40,101,61,102,97,108,115,101,44,110,41,58,116,40,114,44,110,44,117,44,105,41,125,41,44,114,125,102,117,110,99,116,105,111,110,32,119,40,110,44,116,41,123,118,97,114,32,114,61,110,46,108,101,110,103,116,104,59,102,111,114,40,110,46,115,111,114,116,40,116,41,59,114,45,45,59,41,110,91,114,93,61,110,91,114,93,46,99,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,109,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,44,101,61,45,49,44,117,61,110,46,108,101,110,103,116,104,59,43,43,101,60,117,59,41,123,118,97,114,32,105,61,116,40,110,91,101,93,41,59,105,33,61,61,84,38,38,40,114,61,114,61,61,61,84,63,105,58,114,43,105,41,125,114,101,116,117,114,110,32,114,59,10,125,102,117,110,99,116,105,111,110,32,65,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,65,114,114,97,121,40,110,41,59,43,43,114,60,110,59,41,101,91,114,93,61,116,40,114,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,69,40,110,44,116,41,123,114,101,116,117,114,110,32,99,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,91,116,44,110,91,116,93,93,125,41,125,102,117,110,99,116,105,111,110,32,107,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,40,116,41,125,125,102,117,110,99,116,105,111,110,32,83,40,110,44,116,41,123,114,101,116,117,114,110,32,99,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,91,116,93,125,41,125,102,117,110,99,116,105,111,110,32,79,40,110,44,116,41,123,114,101,116,117,114,110,32,110,46,104,97,115,40,116,41,125,102,117,110,99,116,105,111,110,32,73,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,59,43,43,114,60,101,38,38,45,49,60,118,40,116,44,110,91,114,93,44,48,41,59,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,82,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,110,46,108,101,110,103,116,104,59,114,45,45,38,38,45,49,60,118,40,116,44,110,91,114,93,44,48,41,59,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,122,40,110,41,123,114,101,116,117,114,110,34,92,92,34,43,85,110,91,110,93,125,102,117,110,99,116,105,111,110,32,87,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,65,114,114,97,121,40,110,46,115,105,122,101,41,59,114,101,116,117,114,110,32,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,110,44,101,41,123,114,91,43,43,116,93,61,91,101,44,110,93,59,10,125,41,44,114,125,102,117,110,99,116,105,111,110,32,66,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,110,40,116,40,114,41,41,125,125,102,117,110,99,116,105,111,110,32,76,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,44,117,61,48,44,105,61,91,93,59,43,43,114,60,101,59,41,123,118,97,114,32,111,61,110,91,114,93,59,111,33,61,61,116,38,38,34,95,95,108,111,100,97,115,104,95,112,108,97,99,101,104,111,108,100,101,114,95,95,34,33,61,61,111,124,124,40,110,91,114,93,61,34,95,95,108,111,100,97,115,104,95,112,108,97,99,101,104,111,108,100,101,114,95,95,34,44,105,91,117,43,43,93,61,114,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,85,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,65,114,114,97,121,40,110,46,115,105,122,101,41,59,114,101,116,117,114,110,32,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,110,41,123,114,91,43,43,116,93,61,110,125,41,44,114,125,102,117,110,99,116,105,111,110,32,67,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,65,114,114,97,121,40,110,46,115,105,122,101,41,59,114,101,116,117,114,110,32,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,110,41,123,114,91,43,43,116,93,61,91,110,44,110,93,125,41,44,114,125,102,117,110,99,116,105,111,110,32,68,40,110,41,123,105,102,40,82,110,46,116,101,115,116,40,110,41,41,123,102,111,114,40,118,97,114,32,116,61,79,110,46,108,97,115,116,73,110,100,101,120,61,48,59,79,110,46,116,101,115,116,40,110,41,59,41,43,43,116,59,110,61,116,125,101,108,115,101,32,110,61,81,110,40,110,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,77,40,110,41,123,114,101,116,117,114,110,32,82,110,46,116,101,115,116,40,110,41,63,110,46,109,97,116,99,104,40,79,110,41,124,124,91,93,58,110,46,115,112,108,105,116,40,34,34,41,59,10,125,118,97,114,32,84,44,36,61,49,47,48,44,70,61,78,97,78,44,78,61,91,91,34,97,114,121,34,44,49,50,56,93,44,91,34,98,105,110,100,34,44,49,93,44,91,34,98,105,110,100,75,101,121,34,44,50,93,44,91,34,99,117,114,114,121,34,44,56,93,44,91,34,99,117,114,114,121,82,105,103,104,116,34,44,49,54,93,44,91,34,102,108,105,112,34,44,53,49,50,93,44,91,34,112,97,114,116,105,97,108,34,44,51,50,93,44,91,34,112,97,114,116,105,97,108,82,105,103,104,116,34,44,54,52,93,44,91,34,114,101,97,114,103,34,44,50,53,54,93,93,44,80,61,47,92,98,95,95,112,92,43,61,39,39,59,47,103,44,90,61,47,92,98,40,95,95,112,92,43,61,41,39,39,92,43,47,103,44,113,61,47,40,95,95,101,92,40,46,42,63,92,41,124,92,98,95,95,116,92,41,41,92,43,39,39,59,47,103,44,86,61,47,38,40,63,58,97,109,112,124,108,116,124,103,116,124,113,117,111,116,124,35,51,57,41,59,47,103,44,75,61,47,91,38,60,62,34,39,93,47,103,44,71,61,82,101,103,69,120,112,40,86,46,115,111,117,114,99,101,41,44,72,61,82,101,103,69,120,112,40,75,46,115,111,117,114,99,101,41,44,74,61,47,60,37,45,40,91,92,115,92,83,93,43,63,41,37,62,47,103,44,89,61,47,60,37,40,91,92,115,92,83,93,43,63,41,37,62,47,103,44,81,61,47,60,37,61,40,91,92,115,92,83,93,43,63,41,37,62,47,103,44,88,61,47,92,46,124,92,91,40,63,58,91,94,91,92,93,93,42,124,40,91,34,39,93,41,40,63,58,40,63,33,92,49,41,91,94,92,92,93,124,92,92,46,41,42,63,92,49,41,92,93,47,44,110,110,61,47,94,92,119,42,36,47,44,116,110,61,47,91,94,46,91,92,93,93,43,124,92,91,40,63,58,40,45,63,92,100,43,40,63,58,92,46,92,100,43,41,63,41,124,40,91,34,39,93,41,40,40,63,58,40,63,33,92,50,41,91,94,92,92,93,124,92,92,46,41,42,63,41,92,50,41,92,93,124,40,63,61,40,63,58,92,46,124,92,91,92,93,41,40,63,58,92,46,124,92,91,92,93,124,36,41,41,47,103,44,114,110,61,47,91,92,92,94,36,46,42,43,63,40,41,91,92,93,123,125,124,93,47,103,44,101,110,61,82,101,103,69,120,112,40,114,110,46,115,111,117,114,99,101,41,44,117,110,61,47,94,92,115,43,124,92,115,43,36,47,103,44,111,110,61,47,94,92,115,43,47,44,102,110,61,47,92,115,43,36,47,44,99,110,61,47,92,123,40,63,58,92,110,92,47,92,42,32,92,91,119,114,97,112,112,101,100,32,119,105,116,104,32,46,43,92,93,32,92,42,92,47,41,63,92,110,63,47,44,97,110,61,47,92,123,92,110,92,47,92,42,32,92,91,119,114,97,112,112,101,100,32,119,105,116,104,32,40,46,43,41,92,93,32,92,42,47,44,108,110,61,47,44,63,32,38,32,47,44,115,110,61,47,91,94,92,120,48,48,45,92,120,50,102,92,120,51,97,45,92,120,52,48,92,120,53,98,45,92,120,54,48,92,120,55,98,45,92,120,55,102,93,43,47,103,44,104,110,61,47,92,92,40,92,92,41,63,47,103,44,112,110,61,47,92,36,92,123,40,91,94,92,92,125,93,42,40,63,58,92,92,46,91,94,92,92,125,93,42,41,42,41,92,125,47,103,44,95,110,61,47,92,119,42,36,47,44,118,110,61,47,94,91,45,43,93,48,120,91,48,45,57,97,45,102,93,43,36,47,105,44,103,110,61,47,94,48,98,91,48,49,93,43,36,47,105,44,100,110,61,47,94,92,91,111,98,106,101,99,116,32,46,43,63,67,111,110,115,116,114,117,99,116,111,114,92,93,36,47,44,121,110,61,47,94,48,111,91,48,45,55,93,43,36,47,105,44,98,110,61,47,94,40,63,58,48,124,91,49,45,57,93,92,100,42,41,36,47,44,120,110,61,47,91,92,120,99,48,45,92,120,100,54,92,120,100,56,45,92,120,102,54,92,120,102,56,45,92,120,102,102,92,117,48,49,48,48,45,92,117,48,49,55,102,93,47,103,44,106,110,61,47,40,36,94,41,47,44,119,110,61,47,91,39,92,110,92,114,92,117,50,48,50,56,92,117,50,48,50,57,92,92,93,47,103,44,109,110,61,34,91,92,92,117,102,101,48,101,92,92,117,102,101,48,102,93,63,40,63,58,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,124,92,92,117,100,56,51,99,91,92,92,117,100,102,102,98,45,92,92,117,100,102,102,102,93,41,63,40,63,58,92,92,117,50,48,48,100,40,63,58,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,93,124,40,63,58,92,92,117,100,56,51,99,91,92,92,117,100,100,101,54,45,92,92,117,100,100,102,102,93,41,123,50,125,124,91,92,92,117,100,56,48,48,45,92,92,117,100,98,102,102,93,91,92,92,117,100,99,48,48,45,92,92,117,100,102,102,102,93,41,91,92,92,117,102,101,48,101,92,92,117,102,101,48,102,93,63,40,63,58,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,124,92,92,117,100,56,51,99,91,92,92,117,100,102,102,98,45,92,92,117,100,102,102,102,93,41,63,41,42,34,44,65,110,61,34,40,63,58,91,92,92,117,50,55,48,48,45,92,92,117,50,55,98,102,93,124,40,63,58,92,92,117,100,56,51,99,91,92,92,117,100,100,101,54,45,92,92,117,100,100,102,102,93,41,123,50,125,124,91,92,92,117,100,56,48,48,45,92,92,117,100,98,102,102,93,91,92,92,117,100,99,48,48,45,92,92,117,100,102,102,102,93,41,34,43,109,110,44,69,110,61,34,40,63,58,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,93,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,63,124,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,124,40,63,58,92,92,117,100,56,51,99,91,92,92,117,100,100,101,54,45,92,92,117,100,100,102,102,93,41,123,50,125,124,91,92,92,117,100,56,48,48,45,92,92,117,100,98,102,102,93,91,92,92,117,100,99,48,48,45,92,92,117,100,102,102,102,93,124,91,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,93,41,34,44,107,110,61,82,101,103,69,120,112,40,34,91,39,92,117,50,48,49,57,93,34,44,34,103,34,41,44,83,110,61,82,101,103,69,120,112,40,34,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,34,44,34,103,34,41,44,79,110,61,82,101,103,69,120,112,40,34,92,92,117,100,56,51,99,91,92,92,117,100,102,102,98,45,92,92,117,100,102,102,102,93,40,63,61,92,92,117,100,56,51,99,91,92,92,117,100,102,102,98,45,92,92,117,100,102,102,102,93,41,124,34,43,69,110,43,109,110,44,34,103,34,41,44,73,110,61,82,101,103,69,120,112,40,91,34,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,63,91,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,93,43,40,63,58,91,39,92,117,50,48,49,57,93,40,63,58,100,124,108,108,124,109,124,114,101,124,115,124,116,124,118,101,41,41,63,40,63,61,91,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,93,124,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,124,36,41,124,40,63,58,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,124,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,92,92,100,43,92,92,117,50,55,48,48,45,92,92,117,50,55,98,102,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,41,43,40,63,58,91,39,92,117,50,48,49,57,93,40,63,58,68,124,76,76,124,77,124,82,69,124,83,124,84,124,86,69,41,41,63,40,63,61,91,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,93,124,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,40,63,58,91,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,93,124,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,92,92,100,43,92,92,117,50,55,48,48,45,92,92,117,50,55,98,102,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,41,124,36,41,124,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,63,40,63,58,91,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,93,124,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,92,92,100,43,92,92,117,50,55,48,48,45,92,92,117,50,55,98,102,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,41,43,40,63,58,91,39,92,117,50,48,49,57,93,40,63,58,100,124,108,108,124,109,124,114,101,124,115,124,116,124,118,101,41,41,63,124,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,43,40,63,58,91,39,92,117,50,48,49,57,93,40,63,58,68,124,76,76,124,77,124,82,69,124,83,124,84,124,86,69,41,41,63,124,92,92,100,42,40,63,58,49,83,84,124,50,78,68,124,51,82,68,124,40,63,33,91,49,50,51,93,41,92,92,100,84,72,41,40,63,61,92,92,98,124,91,97,45,122,95,93,41,124,92,92,100,42,40,63,58,49,115,116,124,50,110,100,124,51,114,100,124,40,63,33,91,49,50,51,93,41,92,92,100,116,104,41,40,63,61,92,92,98,124,91,65,45,90,95,93,41,124,92,92,100,43,34,44,65,110,93,46,106,111,105,110,40,34,124,34,41,44,34,103,34,41,44,82,110,61,82,101,103,69,120,112,40,34,91,92,92,117,50,48,48,100,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,92,92,117,102,101,48,101,92,92,117,102,101,48,102,93,34,41,44,122,110,61,47,91,97,45,122,93,91,65,45,90,93,124,91,65,45,90,93,123,50,125,91,97,45,122,93,124,91,48,45,57,93,91,97,45,122,65,45,90,93,124,91,97,45,122,65,45,90,93,91,48,45,57,93,124,91,94,97,45,122,65,45,90,48,45,57,32,93,47,44,87,110,61,34,65,114,114,97,121,32,66,117,102,102,101,114,32,68,97,116,97,86,105,101,119,32,68,97,116,101,32,69,114,114,111,114,32,70,108,111,97,116,51,50,65,114,114,97,121,32,70,108,111,97,116,54,52,65,114,114,97,121,32,70,117,110,99,116,105,111,110,32,73,110,116,56,65,114,114,97,121,32,73,110,116,49,54,65,114,114,97,121,32,73,110,116,51,50,65,114,114,97,121,32,77,97,112,32,77,97,116,104,32,79,98,106,101,99,116,32,80,114,111,109,105,115,101,32,82,101,103,69,120,112,32,83,101,116,32,83,116,114,105,110,103,32,83,121,109,98,111,108,32,84,121,112,101,69,114,114,111,114,32,85,105,110,116,56,65,114,114,97,121,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,32,85,105,110,116,49,54,65,114,114,97,121,32,85,105,110,116,51,50,65,114,114,97,121,32,87,101,97,107,77,97,112,32,95,32,99,108,101,97,114,84,105,109,101,111,117,116,32,105,115,70,105,110,105,116,101,32,112,97,114,115,101,73,110,116,32,115,101,116,84,105,109,101,111,117,116,34,46,115,112,108,105,116,40,34,32,34,41,44,66,110,61,123,125,59,10,66,110,91,34,91,111,98,106,101,99,116,32,70,108,111,97,116,51,50,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,70,108,111,97,116,54,52,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,73,110,116,56,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,73,110,116,49,54,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,73,110,116,51,50,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,56,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,49,54,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,51,50,65,114,114,97,121,93,34,93,61,116,114,117,101,44,66,110,91,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,69,114,114,111,114,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,77,97,112,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,83,101,116,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,93,61,102,97,108,115,101,59,10,118,97,114,32,76,110,61,123,125,59,76,110,91,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,70,108,111,97,116,51,50,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,70,108,111,97,116,54,52,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,73,110,116,56,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,73,110,116,49,54,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,73,110,116,51,50,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,77,97,112,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,83,101,116,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,56,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,49,54,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,51,50,65,114,114,97,121,93,34,93,61,116,114,117,101,44,10,76,110,91,34,91,111,98,106,101,99,116,32,69,114,114,111,114,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,93,61,102,97,108,115,101,59,118,97,114,32,85,110,61,123,34,92,92,34,58,34,92,92,34,44,34,39,34,58,34,39,34,44,34,92,110,34,58,34,110,34,44,34,92,114,34,58,34,114,34,44,34,92,117,50,48,50,56,34,58,34,117,50,48,50,56,34,44,34,92,117,50,48,50,57,34,58,34,117,50,48,50,57,34,125,44,67,110,61,112,97,114,115,101,70,108,111,97,116,44,68,110,61,112,97,114,115,101,73,110,116,44,77,110,61,116,121,112,101,111,102,32,103,108,111,98,97,108,61,61,34,111,98,106,101,99,116,34,38,38,103,108,111,98,97,108,38,38,103,108,111,98,97,108,46,79,98,106,101,99,116,61,61,61,79,98,106,101,99,116,38,38,103,108,111,98,97,108,44,84,110,61,116,121,112,101,111,102,32,115,101,108,102,61,61,34,111,98,106,101,99,116,34,38,38,115,101,108,102,38,38,115,101,108,102,46,79,98,106,101,99,116,61,61,61,79,98,106,101,99,116,38,38,115,101,108,102,44,36,110,61,77,110,124,124,84,110,124,124,70,117,110,99,116,105,111,110,40,34,114,101,116,117,114,110,32,116,104,105,115,34,41,40,41,44,70,110,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,61,61,34,111,98,106,101,99,116,34,38,38,101,120,112,111,114,116,115,38,38,33,101,120,112,111,114,116,115,46,110,111,100,101,84,121,112,101,38,38,101,120,112,111,114,116,115,44,78,110,61,70,110,38,38,116,121,112,101,111,102,32,109,111,100,117,108,101,61,61,34,111,98,106,101,99,116,34,38,38,109,111,100,117,108,101,38,38,33,109,111,100,117,108,101,46,110,111,100,101,84,121,112,101,38,38,109,111,100,117,108,101,44,80,110,61,78,110,38,38,78,110,46,101,120,112,111,114,116,115,61,61,61,70,110,44,90,110,61,80,110,38,38,77,110,46,112,114,111,99,101,115,115,44,113,110,61,102,117,110,99,116,105,111,110,40,41,123,10,116,114,121,123,118,97,114,32,110,61,78,110,38,38,78,110,46,102,38,38,78,110,46,102,40,34,117,116,105,108,34,41,46,116,121,112,101,115,59,114,101,116,117,114,110,32,110,63,110,58,90,110,38,38,90,110,46,98,105,110,100,105,110,103,38,38,90,110,46,98,105,110,100,105,110,103,40,34,117,116,105,108,34,41,125,99,97,116,99,104,40,110,41,123,125,125,40,41,44,86,110,61,113,110,38,38,113,110,46,105,115,65,114,114,97,121,66,117,102,102,101,114,44,75,110,61,113,110,38,38,113,110,46,105,115,68,97,116,101,44,71,110,61,113,110,38,38,113,110,46,105,115,77,97,112,44,72,110,61,113,110,38,38,113,110,46,105,115,82,101,103,69,120,112,44,74,110,61,113,110,38,38,113,110,46,105,115,83,101,116,44,89,110,61,113,110,38,38,113,110,46,105,115,84,121,112,101,100,65,114,114,97,121,44,81,110,61,98,40,34,108,101,110,103,116,104,34,41,44,88,110,61,120,40,123,34,92,120,99,48,34,58,34,65,34,44,34,92,120,99,49,34,58,34,65,34,44,34,92,120,99,50,34,58,34,65,34,44,34,92,120,99,51,34,58,34,65,34,44,34,92,120,99,52,34,58,34,65,34,44,34,92,120,99,53,34,58,34,65,34,44,34,92,120,101,48,34,58,34,97,34,44,34,92,120,101,49,34,58,34,97,34,44,34,92,120,101,50,34,58,34,97,34,44,34,92,120,101,51,34,58,34,97,34,44,34,92,120,101,52,34,58,34,97,34,44,34,92,120,101,53,34,58,34,97,34,44,34,92,120,99,55,34,58,34,67,34,44,34,92,120,101,55,34,58,34,99,34,44,34,92,120,100,48,34,58,34,68,34,44,34,92,120,102,48,34,58,34,100,34,44,34,92,120,99,56,34,58,34,69,34,44,34,92,120,99,57,34,58,34,69,34,44,34,92,120,99,97,34,58,34,69,34,44,34,92,120,99,98,34,58,34,69,34,44,34,92,120,101,56,34,58,34,101,34,44,34,92,120,101,57,34,58,34,101,34,44,34,92,120,101,97,34,58,34,101,34,44,34,92,120,101,98,34,58,34,101,34,44,34,92,120,99,99,34,58,34,73,34,44,10,34,92,120,99,100,34,58,34,73,34,44,34,92,120,99,101,34,58,34,73,34,44,34,92,120,99,102,34,58,34,73,34,44,34,92,120,101,99,34,58,34,105,34,44,34,92,120,101,100,34,58,34,105,34,44,34,92,120,101,101,34,58,34,105,34,44,34,92,120,101,102,34,58,34,105,34,44,34,92,120,100,49,34,58,34,78,34,44,34,92,120,102,49,34,58,34,110,34,44,34,92,120,100,50,34,58,34,79,34,44,34,92,120,100,51,34,58,34,79,34,44,34,92,120,100,52,34,58,34,79,34,44,34,92,120,100,53,34,58,34,79,34,44,34,92,120,100,54,34,58,34,79,34,44,34,92,120,100,56,34,58,34,79,34,44,34,92,120,102,50,34,58,34,111,34,44,34,92,120,102,51,34,58,34,111,34,44,34,92,120,102,52,34,58,34,111,34,44,34,92,120,102,53,34,58,34,111,34,44,34,92,120,102,54,34,58,34,111,34,44,34,92,120,102,56,34,58,34,111,34,44,34,92,120,100,57,34,58,34,85,34,44,34,92,120,100,97,34,58,34,85,34,44,34,92,120,100,98,34,58,34,85,34,44,34,92,120,100,99,34,58,34,85,34,44,34,92,120,102,57,34,58,34,117,34,44,34,92,120,102,97,34,58,34,117,34,44,34,92,120,102,98,34,58,34,117,34,44,34,92,120,102,99,34,58,34,117,34,44,34,92,120,100,100,34,58,34,89,34,44,34,92,120,102,100,34,58,34,121,34,44,34,92,120,102,102,34,58,34,121,34,44,34,92,120,99,54,34,58,34,65,101,34,44,34,92,120,101,54,34,58,34,97,101,34,44,34,92,120,100,101,34,58,34,84,104,34,44,34,92,120,102,101,34,58,34,116,104,34,44,34,92,120,100,102,34,58,34,115,115,34,44,34,92,117,48,49,48,48,34,58,34,65,34,44,34,92,117,48,49,48,50,34,58,34,65,34,44,34,92,117,48,49,48,52,34,58,34,65,34,44,34,92,117,48,49,48,49,34,58,34,97,34,44,34,92,117,48,49,48,51,34,58,34,97,34,44,34,92,117,48,49,48,53,34,58,34,97,34,44,34,92,117,48,49,48,54,34,58,34,67,34,44,10,34,92,117,48,49,48,56,34,58,34,67,34,44,34,92,117,48,49,48,97,34,58,34,67,34,44,34,92,117,48,49,48,99,34,58,34,67,34,44,34,92,117,48,49,48,55,34,58,34,99,34,44,34,92,117,48,49,48,57,34,58,34,99,34,44,34,92,117,48,49,48,98,34,58,34,99,34,44,34,92,117,48,49,48,100,34,58,34,99,34,44,34,92,117,48,49,48,101,34,58,34,68,34,44,34,92,117,48,49,49,48,34,58,34,68,34,44,34,92,117,48,49,48,102,34,58,34,100,34,44,34,92,117,48,49,49,49,34,58,34,100,34,44,34,92,117,48,49,49,50,34,58,34,69,34,44,34,92,117,48,49,49,52,34,58,34,69,34,44,34,92,117,48,49,49,54,34,58,34,69,34,44,34,92,117,48,49,49,56,34,58,34,69,34,44,34,92,117,48,49,49,97,34,58,34,69,34,44,34,92,117,48,49,49,51,34,58,34,101,34,44,34,92,117,48,49,49,53,34,58,34,101,34,44,34,92,117,48,49,49,55,34,58,34,101,34,44,34,92,117,48,49,49,57,34,58,34,101,34,44,34,92,117,48,49,49,98,34,58,34,101,34,44,34,92,117,48,49,49,99,34,58,34,71,34,44,34,92,117,48,49,49,101,34,58,34,71,34,44,34,92,117,48,49,50,48,34,58,34,71,34,44,34,92,117,48,49,50,50,34,58,34,71,34,44,34,92,117,48,49,49,100,34,58,34,103,34,44,34,92,117,48,49,49,102,34,58,34,103,34,44,34,92,117,48,49,50,49,34,58,34,103,34,44,34,92,117,48,49,50,51,34,58,34,103,34,44,34,92,117,48,49,50,52,34,58,34,72,34,44,34,92,117,48,49,50,54,34,58,34,72,34,44,34,92,117,48,49,50,53,34,58,34,104,34,44,34,92,117,48,49,50,55,34,58,34,104,34,44,34,92,117,48,49,50,56,34,58,34,73,34,44,34,92,117,48,49,50,97,34,58,34,73,34,44,34,92,117,48,49,50,99,34,58,34,73,34,44,34,92,117,48,49,50,101,34,58,34,73,34,44,34,92,117,48,49,51,48,34,58,34,73,34,44,34,92,117,48,49,50,57,34,58,34,105,34,44,10,34,92,117,48,49,50,98,34,58,34,105,34,44,34,92,117,48,49,50,100,34,58,34,105,34,44,34,92,117,48,49,50,102,34,58,34,105,34,44,34,92,117,48,49,51,49,34,58,34,105,34,44,34,92,117,48,49,51,52,34,58,34,74,34,44,34,92,117,48,49,51,53,34,58,34,106,34,44,34,92,117,48,49,51,54,34,58,34,75,34,44,34,92,117,48,49,51,55,34,58,34,107,34,44,34,92,117,48,49,51,56,34,58,34,107,34,44,34,92,117,48,49,51,57,34,58,34,76,34,44,34,92,117,48,49,51,98,34,58,34,76,34,44,34,92,117,48,49,51,100,34,58,34,76,34,44,34,92,117,48,49,51,102,34,58,34,76,34,44,34,92,117,48,49,52,49,34,58,34,76,34,44,34,92,117,48,49,51,97,34,58,34,108,34,44,34,92,117,48,49,51,99,34,58,34,108,34,44,34,92,117,48,49,51,101,34,58,34,108,34,44,34,92,117,48,49,52,48,34,58,34,108,34,44,34,92,117,48,49,52,50,34,58,34,108,34,44,34,92,117,48,49,52,51,34,58,34,78,34,44,34,92,117,48,49,52,53,34,58,34,78,34,44,34,92,117,48,49,52,55,34,58,34,78,34,44,34,92,117,48,49,52,97,34,58,34,78,34,44,34,92,117,48,49,52,52,34,58,34,110,34,44,34,92,117,48,49,52,54,34,58,34,110,34,44,34,92,117,48,49,52,56,34,58,34,110,34,44,34,92,117,48,49,52,98,34,58,34,110,34,44,34,92,117,48,49,52,99,34,58,34,79,34,44,34,92,117,48,49,52,101,34,58,34,79,34,44,34,92,117,48,49,53,48,34,58,34,79,34,44,34,92,117,48,49,52,100,34,58,34,111,34,44,34,92,117,48,49,52,102,34,58,34,111,34,44,34,92,117,48,49,53,49,34,58,34,111,34,44,34,92,117,48,49,53,52,34,58,34,82,34,44,34,92,117,48,49,53,54,34,58,34,82,34,44,34,92,117,48,49,53,56,34,58,34,82,34,44,34,92,117,48,49,53,53,34,58,34,114,34,44,34,92,117,48,49,53,55,34,58,34,114,34,44,34,92,117,48,49,53,57,34,58,34,114,34,44,10,34,92,117,48,49,53,97,34,58,34,83,34,44,34,92,117,48,49,53,99,34,58,34,83,34,44,34,92,117,48,49,53,101,34,58,34,83,34,44,34,92,117,48,49,54,48,34,58,34,83,34,44,34,92,117,48,49,53,98,34,58,34,115,34,44,34,92,117,48,49,53,100,34,58,34,115,34,44,34,92,117,48,49,53,102,34,58,34,115,34,44,34,92,117,48,49,54,49,34,58,34,115,34,44,34,92,117,48,49,54,50,34,58,34,84,34,44,34,92,117,48,49,54,52,34,58,34,84,34,44,34,92,117,48,49,54,54,34,58,34,84,34,44,34,92,117,48,49,54,51,34,58,34,116,34,44,34,92,117,48,49,54,53,34,58,34,116,34,44,34,92,117,48,49,54,55,34,58,34,116,34,44,34,92,117,48,49,54,56,34,58,34,85,34,44,34,92,117,48,49,54,97,34,58,34,85,34,44,34,92,117,48,49,54,99,34,58,34,85,34,44,34,92,117,48,49,54,101,34,58,34,85,34,44,34,92,117,48,49,55,48,34,58,34,85,34,44,34,92,117,48,49,55,50,34,58,34,85,34,44,34,92,117,48,49,54,57,34,58,34,117,34,44,34,92,117,48,49,54,98,34,58,34,117,34,44,34,92,117,48,49,54,100,34,58,34,117,34,44,34,92,117,48,49,54,102,34,58,34,117,34,44,34,92,117,48,49,55,49,34,58,34,117,34,44,34,92,117,48,49,55,51,34,58,34,117,34,44,34,92,117,48,49,55,52,34,58,34,87,34,44,34,92,117,48,49,55,53,34,58,34,119,34,44,34,92,117,48,49,55,54,34,58,34,89,34,44,34,92,117,48,49,55,55,34,58,34,121,34,44,34,92,117,48,49,55,56,34,58,34,89,34,44,34,92,117,48,49,55,57,34,58,34,90,34,44,34,92,117,48,49,55,98,34,58,34,90,34,44,34,92,117,48,49,55,100,34,58,34,90,34,44,34,92,117,48,49,55,97,34,58,34,122,34,44,34,92,117,48,49,55,99,34,58,34,122,34,44,34,92,117,48,49,55,101,34,58,34,122,34,44,34,92,117,48,49,51,50,34,58,34,73,74,34,44,34,92,117,48,49,51,51,34,58,34,105,106,34,44,10,34,92,117,48,49,53,50,34,58,34,79,101,34,44,34,92,117,48,49,53,51,34,58,34,111,101,34,44,34,92,117,48,49,52,57,34,58,34,39,110,34,44,34,92,117,48,49,55,102,34,58,34,115,34,125,41,44,110,116,61,120,40,123,34,38,34,58,34,38,97,109,112,59,34,44,34,60,34,58,34,38,108,116,59,34,44,34,62,34,58,34,38,103,116,59,34,44,39,34,39,58,34,38,113,117,111,116,59,34,44,34,39,34,58,34,38,35,51,57,59,34,125,41,44,116,116,61,120,40,123,34,38,97,109,112,59,34,58,34,38,34,44,34,38,108,116,59,34,58,34,60,34,44,34,38,103,116,59,34,58,34,62,34,44,34,38,113,117,111,116,59,34,58,39,34,39,44,34,38,35,51,57,59,34,58,34,39,34,125,41,44,114,116,61,102,117,110,99,116,105,111,110,32,120,40,109,110,41,123,102,117,110,99,116,105,111,110,32,65,110,40,110,41,123,105,102,40,121,117,40,110,41,38,38,33,102,102,40,110,41,38,38,33,40,110,32,105,110,115,116,97,110,99,101,111,102,32,85,110,41,41,123,105,102,40,110,32,105,110,115,116,97,110,99,101,111,102,32,79,110,41,114,101,116,117,114,110,32,110,59,105,102,40,111,105,46,99,97,108,108,40,110,44,34,95,95,119,114,97,112,112,101,100,95,95,34,41,41,114,101,116,117,114,110,32,70,101,40,110,41,125,114,101,116,117,114,110,32,110,101,119,32,79,110,40,110,41,125,102,117,110,99,116,105,111,110,32,69,110,40,41,123,125,102,117,110,99,116,105,111,110,32,79,110,40,110,44,116,41,123,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,61,110,44,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,61,91,93,44,116,104,105,115,46,95,95,99,104,97,105,110,95,95,61,33,33,116,44,116,104,105,115,46,95,95,105,110,100,101,120,95,95,61,48,44,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,61,84,125,102,117,110,99,116,105,111,110,32,85,110,40,110,41,123,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,61,110,44,10,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,61,91,93,44,116,104,105,115,46,95,95,100,105,114,95,95,61,49,44,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,61,102,97,108,115,101,44,116,104,105,115,46,95,95,105,116,101,114,97,116,101,101,115,95,95,61,91,93,44,116,104,105,115,46,95,95,116,97,107,101,67,111,117,110,116,95,95,61,52,50,57,52,57,54,55,50,57,53,44,116,104,105,115,46,95,95,118,105,101,119,115,95,95,61,91,93,125,102,117,110,99,116,105,111,110,32,77,110,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,116,104,105,115,46,99,108,101,97,114,40,41,59,43,43,116,60,114,59,41,123,118,97,114,32,101,61,110,91,116,93,59,116,104,105,115,46,115,101,116,40,101,91,48,93,44,101,91,49,93,41,125,125,102,117,110,99,116,105,111,110,32,84,110,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,116,104,105,115,46,99,108,101,97,114,40,41,59,43,43,116,60,114,59,41,123,118,97,114,32,101,61,110,91,116,93,59,116,104,105,115,46,115,101,116,40,101,91,48,93,44,101,91,49,93,41,125,125,102,117,110,99,116,105,111,110,32,70,110,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,116,104,105,115,46,99,108,101,97,114,40,41,59,43,43,116,60,114,59,41,123,118,97,114,32,101,61,110,91,116,93,59,116,104,105,115,46,115,101,116,40,101,91,48,93,44,101,91,49,93,41,125,125,102,117,110,99,116,105,111,110,32,78,110,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,70,110,59,43,43,116,60,114,59,41,116,104,105,115,46,97,100,100,40,110,91,116,93,41,59,10,125,102,117,110,99,116,105,111,110,32,90,110,40,110,41,123,116,104,105,115,46,115,105,122,101,61,40,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,84,110,40,110,41,41,46,115,105,122,101,125,102,117,110,99,116,105,111,110,32,113,110,40,110,44,116,41,123,118,97,114,32,114,44,101,61,102,102,40,110,41,44,117,61,33,101,38,38,111,102,40,110,41,44,105,61,33,101,38,38,33,117,38,38,97,102,40,110,41,44,111,61,33,101,38,38,33,117,38,38,33,105,38,38,95,102,40,110,41,44,117,61,40,101,61,101,124,124,117,124,124,105,124,124,111,41,63,65,40,110,46,108,101,110,103,116,104,44,110,105,41,58,91,93,44,102,61,117,46,108,101,110,103,116,104,59,102,111,114,40,114,32,105,110,32,110,41,33,116,38,38,33,111,105,46,99,97,108,108,40,110,44,114,41,124,124,101,38,38,40,34,108,101,110,103,116,104,34,61,61,114,124,124,105,38,38,40,34,111,102,102,115,101,116,34,61,61,114,124,124,34,112,97,114,101,110,116,34,61,61,114,41,124,124,111,38,38,40,34,98,117,102,102,101,114,34,61,61,114,124,124,34,98,121,116,101,76,101,110,103,116,104,34,61,61,114,124,124,34,98,121,116,101,79,102,102,115,101,116,34,61,61,114,41,124,124,83,101,40,114,44,102,41,41,124,124,117,46,112,117,115,104,40,114,41,59,114,101,116,117,114,110,32,117,125,102,117,110,99,116,105,111,110,32,81,110,40,110,41,123,118,97,114,32,116,61,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,63,110,91,105,114,40,48,44,116,45,49,41,93,58,84,125,102,117,110,99,116,105,111,110,32,101,116,40,110,44,116,41,123,114,101,116,117,114,110,32,68,101,40,85,114,40,110,41,44,112,116,40,116,44,48,44,110,46,108,101,110,103,116,104,41,41,125,102,117,110,99,116,105,111,110,32,117,116,40,110,41,123,114,101,116,117,114,110,32,68,101,40,85,114,40,110,41,41,125,102,117,110,99,116,105,111,110,32,105,116,40,110,44,116,44,114,41,123,40,114,61,61,61,84,124,124,108,117,40,110,91,116,93,44,114,41,41,38,38,40,114,33,61,61,84,124,124,116,32,105,110,32,110,41,124,124,115,116,40,110,44,116,44,114,41,59,10,125,102,117,110,99,116,105,111,110,32,111,116,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,91,116,93,59,111,105,46,99,97,108,108,40,110,44,116,41,38,38,108,117,40,101,44,114,41,38,38,40,114,33,61,61,84,124,124,116,32,105,110,32,110,41,124,124,115,116,40,110,44,116,44,114,41,125,102,117,110,99,116,105,111,110,32,102,116,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,110,46,108,101,110,103,116,104,59,114,45,45,59,41,105,102,40,108,117,40,110,91,114,93,91,48,93,44,116,41,41,114,101,116,117,114,110,32,114,59,114,101,116,117,114,110,45,49,125,102,117,110,99,116,105,111,110,32,99,116,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,117,44,105,41,123,116,40,101,44,110,44,114,40,110,41,44,105,41,125,41,44,101,125,102,117,110,99,116,105,111,110,32,97,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,67,114,40,116,44,87,117,40,116,41,44,110,41,125,102,117,110,99,116,105,111,110,32,108,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,67,114,40,116,44,66,117,40,116,41,44,110,41,125,102,117,110,99,116,105,111,110,32,115,116,40,110,44,116,44,114,41,123,34,95,95,112,114,111,116,111,95,95,34,61,61,116,38,38,65,105,63,65,105,40,110,44,116,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,116,114,117,101,44,101,110,117,109,101,114,97,98,108,101,58,116,114,117,101,44,118,97,108,117,101,58,114,44,119,114,105,116,97,98,108,101,58,116,114,117,101,125,41,58,110,91,116,93,61,114,125,102,117,110,99,116,105,111,110,32,104,116,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,116,46,108,101,110,103,116,104,44,117,61,75,117,40,101,41,44,105,61,110,117,108,108,61,61,110,59,43,43,114,60,101,59,41,117,91,114,93,61,105,63,84,58,82,117,40,110,44,116,91,114,93,41,59,114,101,116,117,114,110,32,117,59,10,125,102,117,110,99,116,105,111,110,32,112,116,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,61,61,61,110,38,38,40,114,33,61,61,84,38,38,40,110,61,110,60,61,114,63,110,58,114,41,44,116,33,61,61,84,38,38,40,110,61,110,62,61,116,63,110,58,116,41,41,44,110,125,102,117,110,99,116,105,111,110,32,95,116,40,110,44,116,44,101,44,117,44,105,44,111,41,123,118,97,114,32,102,44,99,61,49,38,116,44,97,61,50,38,116,44,108,61,52,38,116,59,105,102,40,101,38,38,40,102,61,105,63,101,40,110,44,117,44,105,44,111,41,58,101,40,110,41,41,44,102,33,61,61,84,41,114,101,116,117,114,110,32,102,59,105,102,40,33,100,117,40,110,41,41,114,101,116,117,114,110,32,110,59,105,102,40,117,61,102,102,40,110,41,41,123,105,102,40,102,61,109,101,40,110,41,44,33,99,41,114,101,116,117,114,110,32,85,114,40,110,44,102,41,125,101,108,115,101,123,118,97,114,32,115,61,118,111,40,110,41,44,104,61,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,61,61,115,124,124,34,91,111,98,106,101,99,116,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,93,34,61,61,115,59,105,102,40,97,102,40,110,41,41,114,101,116,117,114,110,32,73,114,40,110,44,99,41,59,105,102,40,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,61,61,115,124,124,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,115,124,124,104,38,38,33,105,41,123,105,102,40,102,61,97,124,124,104,63,123,125,58,65,101,40,110,41,44,33,99,41,114,101,116,117,114,110,32,97,63,77,114,40,110,44,108,116,40,102,44,110,41,41,58,68,114,40,110,44,97,116,40,102,44,110,41,41,125,101,108,115,101,123,105,102,40,33,76,110,91,115,93,41,114,101,116,117,114,110,32,105,63,110,58,123,125,59,102,61,69,101,40,110,44,115,44,99,41,125,125,105,102,40,111,124,124,40,111,61,110,101,119,32,90,110,41,44,10,105,61,111,46,103,101,116,40,110,41,41,114,101,116,117,114,110,32,105,59,111,46,115,101,116,40,110,44,102,41,44,112,102,40,110,41,63,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,114,41,123,102,46,97,100,100,40,95,116,40,114,44,116,44,101,44,114,44,110,44,111,41,41,125,41,58,115,102,40,110,41,38,38,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,114,44,117,41,123,102,46,115,101,116,40,117,44,95,116,40,114,44,116,44,101,44,117,44,110,44,111,41,41,125,41,59,118,97,114,32,97,61,108,63,97,63,118,101,58,95,101,58,97,63,66,117,58,87,117,44,112,61,117,63,84,58,97,40,110,41,59,114,101,116,117,114,110,32,114,40,112,124,124,110,44,102,117,110,99,116,105,111,110,40,114,44,117,41,123,112,38,38,40,117,61,114,44,114,61,110,91,117,93,41,44,111,116,40,102,44,117,44,95,116,40,114,44,116,44,101,44,117,44,110,44,111,41,41,125,41,44,102,125,102,117,110,99,116,105,111,110,32,118,116,40,110,41,123,118,97,114,32,116,61,87,117,40,110,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,103,116,40,114,44,110,44,116,41,125,125,102,117,110,99,116,105,111,110,32,103,116,40,110,44,116,44,114,41,123,118,97,114,32,101,61,114,46,108,101,110,103,116,104,59,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,33,101,59,102,111,114,40,110,61,81,117,40,110,41,59,101,45,45,59,41,123,118,97,114,32,117,61,114,91,101,93,44,105,61,116,91,117,93,44,111,61,110,91,117,93,59,105,102,40,111,61,61,61,84,38,38,33,40,117,32,105,110,32,110,41,124,124,33,105,40,111,41,41,114,101,116,117,114,110,32,102,97,108,115,101,125,114,101,116,117,114,110,32,116,114,117,101,125,102,117,110,99,116,105,111,110,32,100,116,40,110,44,116,44,114,41,123,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,10,114,101,116,117,114,110,32,98,111,40,102,117,110,99,116,105,111,110,40,41,123,110,46,97,112,112,108,121,40,84,44,114,41,125,44,116,41,125,102,117,110,99,116,105,111,110,32,121,116,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,111,44,97,61,116,114,117,101,44,108,61,110,46,108,101,110,103,116,104,44,115,61,91,93,44,104,61,116,46,108,101,110,103,116,104,59,105,102,40,33,108,41,114,101,116,117,114,110,32,115,59,114,38,38,40,116,61,99,40,116,44,107,40,114,41,41,41,44,101,63,40,105,61,102,44,97,61,102,97,108,115,101,41,58,50,48,48,60,61,116,46,108,101,110,103,116,104,38,38,40,105,61,79,44,97,61,102,97,108,115,101,44,116,61,110,101,119,32,78,110,40,116,41,41,59,110,58,102,111,114,40,59,43,43,117,60,108,59,41,123,118,97,114,32,112,61,110,91,117,93,44,95,61,110,117,108,108,61,61,114,63,112,58,114,40,112,41,44,112,61,101,124,124,48,33,61,61,112,63,112,58,48,59,105,102,40,97,38,38,95,61,61,61,95,41,123,102,111,114,40,118,97,114,32,118,61,104,59,118,45,45,59,41,105,102,40,116,91,118,93,61,61,61,95,41,99,111,110,116,105,110,117,101,32,110,59,115,46,112,117,115,104,40,112,41,125,101,108,115,101,32,105,40,116,44,95,44,101,41,124,124,115,46,112,117,115,104,40,112,41,125,114,101,116,117,114,110,32,115,125,102,117,110,99,116,105,111,110,32,98,116,40,110,44,116,41,123,118,97,114,32,114,61,116,114,117,101,59,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,114,101,116,117,114,110,32,114,61,33,33,116,40,110,44,101,44,117,41,125,41,44,114,125,102,117,110,99,116,105,111,110,32,120,116,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,110,46,108,101,110,103,116,104,59,43,43,101,60,117,59,41,123,118,97,114,32,105,61,110,91,101,93,44,111,61,116,40,105,41,59,105,102,40,110,117,108,108,33,61,111,38,38,40,102,61,61,61,84,63,111,61,61,61,111,38,38,33,119,117,40,111,41,58,114,40,111,44,102,41,41,41,118,97,114,32,102,61,111,44,99,61,105,59,10,125,114,101,116,117,114,110,32,99,125,102,117,110,99,116,105,111,110,32,106,116,40,110,44,116,41,123,118,97,114,32,114,61,91,93,59,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,116,40,110,44,101,44,117,41,38,38,114,46,112,117,115,104,40,110,41,125,41,44,114,125,102,117,110,99,116,105,111,110,32,119,116,40,110,44,116,44,114,44,101,44,117,41,123,118,97,114,32,105,61,45,49,44,111,61,110,46,108,101,110,103,116,104,59,102,111,114,40,114,124,124,40,114,61,107,101,41,44,117,124,124,40,117,61,91,93,41,59,43,43,105,60,111,59,41,123,118,97,114,32,102,61,110,91,105,93,59,48,60,116,38,38,114,40,102,41,63,49,60,116,63,119,116,40,102,44,116,45,49,44,114,44,101,44,117,41,58,97,40,117,44,102,41,58,101,124,124,40,117,91,117,46,108,101,110,103,116,104,93,61,102,41,125,114,101,116,117,114,110,32,117,125,102,117,110,99,116,105,111,110,32,109,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,111,111,40,110,44,116,44,87,117,41,125,102,117,110,99,116,105,111,110,32,65,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,102,111,40,110,44,116,44,87,117,41,125,102,117,110,99,116,105,111,110,32,69,116,40,110,44,116,41,123,114,101,116,117,114,110,32,105,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,95,117,40,110,91,116,93,41,125,41,125,102,117,110,99,116,105,111,110,32,107,116,40,110,44,116,41,123,116,61,83,114,40,116,44,110,41,59,102,111,114,40,118,97,114,32,114,61,48,44,101,61,116,46,108,101,110,103,116,104,59,110,117,108,108,33,61,110,38,38,114,60,101,59,41,110,61,110,91,77,101,40,116,91,114,43,43,93,41,93,59,114,101,116,117,114,110,32,114,38,38,114,61,61,101,63,110,58,84,125,102,117,110,99,116,105,111,110,32,83,116,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,116,40,110,41,44,10,102,102,40,110,41,63,116,58,97,40,116,44,114,40,110,41,41,125,102,117,110,99,116,105,111,110,32,79,116,40,110,41,123,105,102,40,110,117,108,108,61,61,110,41,110,61,110,61,61,61,84,63,34,91,111,98,106,101,99,116,32,85,110,100,101,102,105,110,101,100,93,34,58,34,91,111,98,106,101,99,116,32,78,117,108,108,93,34,59,101,108,115,101,32,105,102,40,109,105,38,38,109,105,32,105,110,32,81,117,40,110,41,41,123,118,97,114,32,116,61,111,105,46,99,97,108,108,40,110,44,109,105,41,44,114,61,110,91,109,105,93,59,116,114,121,123,110,91,109,105,93,61,84,59,118,97,114,32,101,61,116,114,117,101,125,99,97,116,99,104,40,110,41,123,125,118,97,114,32,117,61,97,105,46,99,97,108,108,40,110,41,59,101,38,38,40,116,63,110,91,109,105,93,61,114,58,100,101,108,101,116,101,32,110,91,109,105,93,41,44,110,61,117,125,101,108,115,101,32,110,61,97,105,46,99,97,108,108,40,110,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,73,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,62,116,125,102,117,110,99,116,105,111,110,32,82,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,111,105,46,99,97,108,108,40,110,44,116,41,125,102,117,110,99,116,105,111,110,32,122,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,116,32,105,110,32,81,117,40,110,41,125,102,117,110,99,116,105,111,110,32,87,116,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,114,63,102,58,111,44,117,61,110,91,48,93,46,108,101,110,103,116,104,44,105,61,110,46,108,101,110,103,116,104,44,97,61,105,44,108,61,75,117,40,105,41,44,115,61,49,47,48,44,104,61,91,93,59,97,45,45,59,41,123,118,97,114,32,112,61,110,91,97,93,59,97,38,38,116,38,38,40,112,61,99,40,112,44,107,40,116,41,41,41,44,115,61,67,105,40,112,46,108,101,110,103,116,104,44,115,41,44,10,108,91,97,93,61,33,114,38,38,40,116,124,124,49,50,48,60,61,117,38,38,49,50,48,60,61,112,46,108,101,110,103,116,104,41,63,110,101,119,32,78,110,40,97,38,38,112,41,58,84,125,118,97,114,32,112,61,110,91,48,93,44,95,61,45,49,44,118,61,108,91,48,93,59,110,58,102,111,114,40,59,43,43,95,60,117,38,38,104,46,108,101,110,103,116,104,60,115,59,41,123,118,97,114,32,103,61,112,91,95,93,44,100,61,116,63,116,40,103,41,58,103,44,103,61,114,124,124,48,33,61,61,103,63,103,58,48,59,105,102,40,118,63,33,79,40,118,44,100,41,58,33,101,40,104,44,100,44,114,41,41,123,102,111,114,40,97,61,105,59,45,45,97,59,41,123,118,97,114,32,121,61,108,91,97,93,59,105,102,40,121,63,33,79,40,121,44,100,41,58,33,101,40,110,91,97,93,44,100,44,114,41,41,99,111,110,116,105,110,117,101,32,110,125,118,38,38,118,46,112,117,115,104,40,100,41,44,104,46,112,117,115,104,40,103,41,125,125,114,101,116,117,114,110,32,104,125,102,117,110,99,116,105,111,110,32,66,116,40,110,44,116,44,114,41,123,118,97,114,32,101,61,123,125,59,114,101,116,117,114,110,32,109,116,40,110,44,102,117,110,99,116,105,111,110,40,110,44,117,44,105,41,123,116,40,101,44,114,40,110,41,44,117,44,105,41,125,41,44,101,125,102,117,110,99,116,105,111,110,32,76,116,40,116,44,114,44,101,41,123,114,101,116,117,114,110,32,114,61,83,114,40,114,44,116,41,44,116,61,50,62,114,46,108,101,110,103,116,104,63,116,58,107,116,40,116,44,104,114,40,114,44,48,44,45,49,41,41,44,114,61,110,117,108,108,61,61,116,63,116,58,116,91,77,101,40,86,101,40,114,41,41,93,44,110,117,108,108,61,61,114,63,84,58,110,40,114,44,116,44,101,41,125,102,117,110,99,116,105,111,110,32,85,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,67,116,40,110,41,123,10,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,68,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,77,116,40,110,44,116,44,114,44,101,44,117,41,123,105,102,40,110,61,61,61,116,41,116,61,116,114,117,101,59,101,108,115,101,32,105,102,40,110,117,108,108,61,61,110,124,124,110,117,108,108,61,61,116,124,124,33,121,117,40,110,41,38,38,33,121,117,40,116,41,41,116,61,110,33,61,61,110,38,38,116,33,61,61,116,59,101,108,115,101,32,110,58,123,118,97,114,32,105,61,102,102,40,110,41,44,111,61,102,102,40,116,41,44,102,61,105,63,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,58,118,111,40,110,41,44,99,61,111,63,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,58,118,111,40,116,41,44,102,61,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,102,63,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,58,102,44,99,61,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,99,63,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,58,99,44,97,61,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,61,61,102,44,111,61,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,61,61,99,59,105,102,40,40,99,61,102,61,61,99,41,38,38,97,102,40,110,41,41,123,105,102,40,33,97,102,40,116,41,41,123,116,61,102,97,108,115,101,59,98,114,101,97,107,32,110,125,105,61,116,114,117,101,44,97,61,102,97,108,115,101,125,105,102,40,99,38,38,33,97,41,117,124,124,40,117,61,110,101,119,32,90,110,41,44,116,61,105,124,124,95,102,40,110,41,63,115,101,40,110,44,116,44,114,44,101,44,77,116,44,117,41,58,104,101,40,110,44,116,44,102,44,114,44,101,44,77,116,44,117,41,59,101,108,115,101,123,10,105,102,40,33,40,49,38,114,41,38,38,40,105,61,97,38,38,111,105,46,99,97,108,108,40,110,44,34,95,95,119,114,97,112,112,101,100,95,95,34,41,44,102,61,111,38,38,111,105,46,99,97,108,108,40,116,44,34,95,95,119,114,97,112,112,101,100,95,95,34,41,44,105,124,124,102,41,41,123,110,61,105,63,110,46,118,97,108,117,101,40,41,58,110,44,116,61,102,63,116,46,118,97,108,117,101,40,41,58,116,44,117,124,124,40,117,61,110,101,119,32,90,110,41,44,116,61,77,116,40,110,44,116,44,114,44,101,44,117,41,59,98,114,101,97,107,32,110,125,105,102,40,99,41,116,58,105,102,40,117,124,124,40,117,61,110,101,119,32,90,110,41,44,105,61,49,38,114,44,102,61,95,101,40,110,41,44,111,61,102,46,108,101,110,103,116,104,44,99,61,95,101,40,116,41,46,108,101,110,103,116,104,44,111,61,61,99,124,124,105,41,123,102,111,114,40,97,61,111,59,97,45,45,59,41,123,118,97,114,32,108,61,102,91,97,93,59,105,102,40,33,40,105,63,108,32,105,110,32,116,58,111,105,46,99,97,108,108,40,116,44,108,41,41,41,123,116,61,102,97,108,115,101,59,98,114,101,97,107,32,116,125,125,105,102,40,40,99,61,117,46,103,101,116,40,110,41,41,38,38,117,46,103,101,116,40,116,41,41,116,61,99,61,61,116,59,101,108,115,101,123,99,61,116,114,117,101,44,117,46,115,101,116,40,110,44,116,41,44,117,46,115,101,116,40,116,44,110,41,59,102,111,114,40,118,97,114,32,115,61,105,59,43,43,97,60,111,59,41,123,118,97,114,32,108,61,102,91,97,93,44,104,61,110,91,108,93,44,112,61,116,91,108,93,59,105,102,40,101,41,118,97,114,32,95,61,105,63,101,40,112,44,104,44,108,44,116,44,110,44,117,41,58,101,40,104,44,112,44,108,44,110,44,116,44,117,41,59,105,102,40,95,61,61,61,84,63,104,33,61,61,112,38,38,33,77,116,40,104,44,112,44,114,44,101,44,117,41,58,33,95,41,123,99,61,102,97,108,115,101,59,98,114,101,97,107,125,115,124,124,40,115,61,34,99,111,110,115,116,114,117,99,116,111,114,34,61,61,108,41,59,10,125,99,38,38,33,115,38,38,40,114,61,110,46,99,111,110,115,116,114,117,99,116,111,114,44,101,61,116,46,99,111,110,115,116,114,117,99,116,111,114,44,114,33,61,101,38,38,34,99,111,110,115,116,114,117,99,116,111,114,34,105,110,32,110,38,38,34,99,111,110,115,116,114,117,99,116,111,114,34,105,110,32,116,38,38,33,40,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,38,38,114,32,105,110,115,116,97,110,99,101,111,102,32,114,38,38,116,121,112,101,111,102,32,101,61,61,34,102,117,110,99,116,105,111,110,34,38,38,101,32,105,110,115,116,97,110,99,101,111,102,32,101,41,38,38,40,99,61,102,97,108,115,101,41,41,44,117,46,100,101,108,101,116,101,40,110,41,44,117,46,100,101,108,101,116,101,40,116,41,44,116,61,99,125,125,101,108,115,101,32,116,61,102,97,108,115,101,59,101,108,115,101,32,116,61,102,97,108,115,101,125,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,84,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,118,111,40,110,41,125,102,117,110,99,116,105,111,110,32,36,116,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,114,46,108,101,110,103,116,104,44,105,61,117,44,111,61,33,101,59,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,33,105,59,102,111,114,40,110,61,81,117,40,110,41,59,117,45,45,59,41,123,118,97,114,32,102,61,114,91,117,93,59,105,102,40,111,38,38,102,91,50,93,63,102,91,49,93,33,61,61,110,91,102,91,48,93,93,58,33,40,102,91,48,93,105,110,32,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,125,102,111,114,40,59,43,43,117,60,105,59,41,123,118,97,114,32,102,61,114,91,117,93,44,99,61,102,91,48,93,44,97,61,110,91,99,93,44,108,61,102,91,49,93,59,105,102,40,111,38,38,102,91,50,93,41,123,105,102,40,97,61,61,61,84,38,38,33,40,99,32,105,110,32,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,10,125,101,108,115,101,123,105,102,40,102,61,110,101,119,32,90,110,44,101,41,118,97,114,32,115,61,101,40,97,44,108,44,99,44,110,44,116,44,102,41,59,105,102,40,115,61,61,61,84,63,33,77,116,40,108,44,97,44,51,44,101,44,102,41,58,33,115,41,114,101,116,117,114,110,32,102,97,108,115,101,125,125,114,101,116,117,114,110,32,116,114,117,101,125,102,117,110,99,116,105,111,110,32,70,116,40,110,41,123,114,101,116,117,114,110,33,40,33,100,117,40,110,41,124,124,99,105,38,38,99,105,32,105,110,32,110,41,38,38,40,95,117,40,110,41,63,104,105,58,100,110,41,46,116,101,115,116,40,84,101,40,110,41,41,125,102,117,110,99,116,105,111,110,32,78,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,80,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,118,111,40,110,41,125,102,117,110,99,116,105,111,110,32,90,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,103,117,40,110,46,108,101,110,103,116,104,41,38,38,33,33,66,110,91,79,116,40,110,41,93,125,102,117,110,99,116,105,111,110,32,113,116,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,63,110,58,110,117,108,108,61,61,110,63,36,117,58,116,121,112,101,111,102,32,110,61,61,34,111,98,106,101,99,116,34,63,102,102,40,110,41,63,74,116,40,110,91,48,93,44,110,91,49,93,41,58,72,116,40,110,41,58,90,117,40,110,41,125,102,117,110,99,116,105,111,110,32,86,116,40,110,41,123,105,102,40,33,122,101,40,110,41,41,114,101,116,117,114,110,32,76,105,40,110,41,59,118,97,114,32,116,44,114,61,91,93,59,102,111,114,40,116,32,105,110,32,81,117,40,110,41,41,111,105,46,99,97,108,108,40,110,44,116,41,38,38,34,99,111,110,115,116,114,117,99,116,111,114,34,33,61,116,38,38,114,46,112,117,115,104,40,116,41,59,10,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,75,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,60,116,125,102,117,110,99,116,105,111,110,32,71,116,40,110,44,116,41,123,118,97,114,32,114,61,45,49,44,101,61,115,117,40,110,41,63,75,117,40,110,46,108,101,110,103,116,104,41,58,91,93,59,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,117,44,105,41,123,101,91,43,43,114,93,61,116,40,110,44,117,44,105,41,125,41,44,101,125,102,117,110,99,116,105,111,110,32,72,116,40,110,41,123,118,97,114,32,116,61,120,101,40,110,41,59,114,101,116,117,114,110,32,49,61,61,116,46,108,101,110,103,116,104,38,38,116,91,48,93,91,50,93,63,87,101,40,116,91,48,93,91,48,93,44,116,91,48,93,91,49,93,41,58,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,114,61,61,61,110,124,124,36,116,40,114,44,110,44,116,41,125,125,102,117,110,99,116,105,111,110,32,74,116,40,110,44,116,41,123,114,101,116,117,114,110,32,73,101,40,110,41,38,38,116,61,61,61,116,38,38,33,100,117,40,116,41,63,87,101,40,77,101,40,110,41,44,116,41,58,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,101,61,82,117,40,114,44,110,41,59,114,101,116,117,114,110,32,101,61,61,61,84,38,38,101,61,61,61,116,63,122,117,40,114,44,110,41,58,77,116,40,116,44,101,44,51,41,125,125,102,117,110,99,116,105,111,110,32,89,116,40,110,44,116,44,114,44,101,44,117,41,123,110,33,61,61,116,38,38,111,111,40,116,44,102,117,110,99,116,105,111,110,40,105,44,111,41,123,105,102,40,117,124,124,40,117,61,110,101,119,32,90,110,41,44,100,117,40,105,41,41,123,118,97,114,32,102,61,117,44,99,61,76,101,40,110,44,111,41,44,97,61,76,101,40,116,44,111,41,44,108,61,102,46,103,101,116,40,97,41,59,105,102,40,108,41,105,116,40,110,44,111,44,108,41,59,101,108,115,101,123,10,118,97,114,32,108,61,101,63,101,40,99,44,97,44,111,43,34,34,44,110,44,116,44,102,41,58,84,44,115,61,108,61,61,61,84,59,105,102,40,115,41,123,118,97,114,32,104,61,102,102,40,97,41,44,112,61,33,104,38,38,97,102,40,97,41,44,95,61,33,104,38,38,33,112,38,38,95,102,40,97,41,44,108,61,97,59,104,124,124,112,124,124,95,63,102,102,40,99,41,63,108,61,99,58,104,117,40,99,41,63,108,61,85,114,40,99,41,58,112,63,40,115,61,102,97,108,115,101,44,108,61,73,114,40,97,44,116,114,117,101,41,41,58,95,63,40,115,61,102,97,108,115,101,44,108,61,122,114,40,97,44,116,114,117,101,41,41,58,108,61,91,93,58,120,117,40,97,41,124,124,111,102,40,97,41,63,40,108,61,99,44,111,102,40,99,41,63,108,61,79,117,40,99,41,58,100,117,40,99,41,38,38,33,95,117,40,99,41,124,124,40,108,61,65,101,40,97,41,41,41,58,115,61,102,97,108,115,101,125,115,38,38,40,102,46,115,101,116,40,97,44,108,41,44,89,116,40,108,44,97,44,114,44,101,44,102,41,44,102,46,100,101,108,101,116,101,40,97,41,41,44,105,116,40,110,44,111,44,108,41,125,125,101,108,115,101,32,102,61,101,63,101,40,76,101,40,110,44,111,41,44,105,44,111,43,34,34,44,110,44,116,44,117,41,58,84,44,102,61,61,61,84,38,38,40,102,61,105,41,44,105,116,40,110,44,111,44,102,41,125,44,66,117,41,125,102,117,110,99,116,105,111,110,32,81,116,40,110,44,116,41,123,118,97,114,32,114,61,110,46,108,101,110,103,116,104,59,105,102,40,114,41,114,101,116,117,114,110,32,116,43,61,48,62,116,63,114,58,48,44,83,101,40,116,44,114,41,63,110,91,116,93,58,84,125,102,117,110,99,116,105,111,110,32,88,116,40,110,44,116,44,114,41,123,118,97,114,32,101,61,45,49,59,114,101,116,117,114,110,32,116,61,99,40,116,46,108,101,110,103,116,104,63,116,58,91,36,117,93,44,107,40,121,101,40,41,41,41,44,110,61,71,116,40,110,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,123,10,97,58,99,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,40,110,41,125,41,44,98,58,43,43,101,44,99,58,110,125,125,41,44,119,40,110,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,101,59,110,58,123,101,61,45,49,59,102,111,114,40,118,97,114,32,117,61,110,46,97,44,105,61,116,46,97,44,111,61,117,46,108,101,110,103,116,104,44,102,61,114,46,108,101,110,103,116,104,59,43,43,101,60,111,59,41,123,118,97,114,32,99,61,87,114,40,117,91,101,93,44,105,91,101,93,41,59,105,102,40,99,41,123,101,61,101,62,61,102,63,99,58,99,42,40,34,100,101,115,99,34,61,61,114,91,101,93,63,45,49,58,49,41,59,98,114,101,97,107,32,110,125,125,101,61,110,46,98,45,116,46,98,125,114,101,116,117,114,110,32,101,125,41,125,102,117,110,99,116,105,111,110,32,110,114,40,110,44,116,41,123,114,101,116,117,114,110,32,116,114,40,110,44,116,44,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,101,116,117,114,110,32,122,117,40,110,44,114,41,125,41,125,102,117,110,99,116,105,111,110,32,116,114,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,116,46,108,101,110,103,116,104,44,105,61,123,125,59,43,43,101,60,117,59,41,123,118,97,114,32,111,61,116,91,101,93,44,102,61,107,116,40,110,44,111,41,59,114,40,102,44,111,41,38,38,108,114,40,105,44,83,114,40,111,44,110,41,44,102,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,114,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,107,116,40,116,44,110,41,125,125,102,117,110,99,116,105,111,110,32,101,114,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,101,63,103,58,118,44,105,61,45,49,44,111,61,116,46,108,101,110,103,116,104,44,102,61,110,59,102,111,114,40,110,61,61,61,116,38,38,40,116,61,85,114,40,116,41,41,44,10,114,38,38,40,102,61,99,40,110,44,107,40,114,41,41,41,59,43,43,105,60,111,59,41,102,111,114,40,118,97,114,32,97,61,48,44,108,61,116,91,105,93,44,108,61,114,63,114,40,108,41,58,108,59,45,49,60,40,97,61,117,40,102,44,108,44,97,44,101,41,41,59,41,102,33,61,61,110,38,38,120,105,46,99,97,108,108,40,102,44,97,44,49,41,44,120,105,46,99,97,108,108,40,110,44,97,44,49,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,117,114,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,110,63,116,46,108,101,110,103,116,104,58,48,44,101,61,114,45,49,59,114,45,45,59,41,123,118,97,114,32,117,61,116,91,114,93,59,105,102,40,114,61,61,101,124,124,117,33,61,61,105,41,123,118,97,114,32,105,61,117,59,83,101,40,117,41,63,120,105,46,99,97,108,108,40,110,44,117,44,49,41,58,120,114,40,110,44,117,41,125,125,125,102,117,110,99,116,105,111,110,32,105,114,40,110,44,116,41,123,114,101,116,117,114,110,32,110,43,73,105,40,84,105,40,41,42,40,116,45,110,43,49,41,41,125,102,117,110,99,116,105,111,110,32,111,114,40,110,44,116,41,123,118,97,114,32,114,61,34,34,59,105,102,40,33,110,124,124,49,62,116,124,124,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,60,116,41,114,101,116,117,114,110,32,114,59,100,111,32,116,37,50,38,38,40,114,43,61,110,41,44,40,116,61,73,105,40,116,47,50,41,41,38,38,40,110,43,61,110,41,59,119,104,105,108,101,40,116,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,102,114,40,110,44,116,41,123,114,101,116,117,114,110,32,120,111,40,66,101,40,110,44,116,44,36,117,41,44,110,43,34,34,41,125,102,117,110,99,116,105,111,110,32,99,114,40,110,41,123,114,101,116,117,114,110,32,81,110,40,85,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,97,114,40,110,44,116,41,123,118,97,114,32,114,61,85,117,40,110,41,59,10,114,101,116,117,114,110,32,68,101,40,114,44,112,116,40,116,44,48,44,114,46,108,101,110,103,116,104,41,41,125,102,117,110,99,116,105,111,110,32,108,114,40,110,44,116,44,114,44,101,41,123,105,102,40,33,100,117,40,110,41,41,114,101,116,117,114,110,32,110,59,116,61,83,114,40,116,44,110,41,59,102,111,114,40,118,97,114,32,117,61,45,49,44,105,61,116,46,108,101,110,103,116,104,44,111,61,105,45,49,44,102,61,110,59,110,117,108,108,33,61,102,38,38,43,43,117,60,105,59,41,123,118,97,114,32,99,61,77,101,40,116,91,117,93,41,44,97,61,114,59,105,102,40,117,33,61,111,41,123,118,97,114,32,108,61,102,91,99,93,44,97,61,101,63,101,40,108,44,99,44,102,41,58,84,59,97,61,61,61,84,38,38,40,97,61,100,117,40,108,41,63,108,58,83,101,40,116,91,117,43,49,93,41,63,91,93,58,123,125,41,125,111,116,40,102,44,99,44,97,41,44,102,61,102,91,99,93,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,115,114,40,110,41,123,114,101,116,117,114,110,32,68,101,40,85,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,104,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,45,49,44,117,61,110,46,108,101,110,103,116,104,59,102,111,114,40,48,62,116,38,38,40,116,61,45,116,62,117,63,48,58,117,43,116,41,44,114,61,114,62,117,63,117,58,114,44,48,62,114,38,38,40,114,43,61,117,41,44,117,61,116,62,114,63,48,58,114,45,116,62,62,62,48,44,116,62,62,62,61,48,44,114,61,75,117,40,117,41,59,43,43,101,60,117,59,41,114,91,101,93,61,110,91,101,43,116,93,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,112,114,40,110,44,116,41,123,118,97,114,32,114,59,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,114,101,116,117,114,110,32,114,61,116,40,110,44,101,44,117,41,44,33,114,125,41,44,33,33,114,125,10,102,117,110,99,116,105,111,110,32,95,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,48,44,117,61,110,117,108,108,61,61,110,63,101,58,110,46,108,101,110,103,116,104,59,105,102,40,116,121,112,101,111,102,32,116,61,61,34,110,117,109,98,101,114,34,38,38,116,61,61,61,116,38,38,50,49,52,55,52,56,51,54,52,55,62,61,117,41,123,102,111,114,40,59,101,60,117,59,41,123,118,97,114,32,105,61,101,43,117,62,62,62,49,44,111,61,110,91,105,93,59,110,117,108,108,33,61,61,111,38,38,33,119,117,40,111,41,38,38,40,114,63,111,60,61,116,58,111,60,116,41,63,101,61,105,43,49,58,117,61,105,125,114,101,116,117,114,110,32,117,125,114,101,116,117,114,110,32,118,114,40,110,44,116,44,36,117,44,114,41,125,102,117,110,99,116,105,111,110,32,118,114,40,110,44,116,44,114,44,101,41,123,116,61,114,40,116,41,59,102,111,114,40,118,97,114,32,117,61,48,44,105,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,111,61,116,33,61,61,116,44,102,61,110,117,108,108,61,61,61,116,44,99,61,119,117,40,116,41,44,97,61,116,61,61,61,84,59,117,60,105,59,41,123,118,97,114,32,108,61,73,105,40,40,117,43,105,41,47,50,41,44,115,61,114,40,110,91,108,93,41,44,104,61,115,33,61,61,84,44,112,61,110,117,108,108,61,61,61,115,44,95,61,115,61,61,61,115,44,118,61,119,117,40,115,41,59,40,111,63,101,124,124,95,58,97,63,95,38,38,40,101,124,124,104,41,58,102,63,95,38,38,104,38,38,40,101,124,124,33,112,41,58,99,63,95,38,38,104,38,38,33,112,38,38,40,101,124,124,33,118,41,58,112,124,124,118,63,48,58,101,63,115,60,61,116,58,115,60,116,41,63,117,61,108,43,49,58,105,61,108,125,114,101,116,117,114,110,32,67,105,40,105,44,52,50,57,52,57,54,55,50,57,52,41,125,102,117,110,99,116,105,111,110,32,103,114,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,44,117,61,48,44,105,61,91,93,59,43,43,114,60,101,59,41,123,10,118,97,114,32,111,61,110,91,114,93,44,102,61,116,63,116,40,111,41,58,111,59,105,102,40,33,114,124,124,33,108,117,40,102,44,99,41,41,123,118,97,114,32,99,61,102,59,105,91,117,43,43,93,61,48,61,61,61,111,63,48,58,111,125,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,100,114,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,63,110,58,119,117,40,110,41,63,70,58,43,110,125,102,117,110,99,116,105,111,110,32,121,114,40,110,41,123,105,102,40,116,121,112,101,111,102,32,110,61,61,34,115,116,114,105,110,103,34,41,114,101,116,117,114,110,32,110,59,105,102,40,102,102,40,110,41,41,114,101,116,117,114,110,32,99,40,110,44,121,114,41,43,34,34,59,105,102,40,119,117,40,110,41,41,114,101,116,117,114,110,32,114,111,63,114,111,46,99,97,108,108,40,110,41,58,34,34,59,118,97,114,32,116,61,110,43,34,34,59,114,101,116,117,114,110,34,48,34,61,61,116,38,38,49,47,110,61,61,45,36,63,34,45,48,34,58,116,125,102,117,110,99,116,105,111,110,32,98,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,45,49,44,117,61,111,44,105,61,110,46,108,101,110,103,116,104,44,99,61,116,114,117,101,44,97,61,91,93,44,108,61,97,59,105,102,40,114,41,99,61,102,97,108,115,101,44,117,61,102,59,101,108,115,101,32,105,102,40,50,48,48,60,61,105,41,123,105,102,40,117,61,116,63,110,117,108,108,58,115,111,40,110,41,41,114,101,116,117,114,110,32,85,40,117,41,59,99,61,102,97,108,115,101,44,117,61,79,44,108,61,110,101,119,32,78,110,125,101,108,115,101,32,108,61,116,63,91,93,58,97,59,110,58,102,111,114,40,59,43,43,101,60,105,59,41,123,118,97,114,32,115,61,110,91,101,93,44,104,61,116,63,116,40,115,41,58,115,44,115,61,114,124,124,48,33,61,61,115,63,115,58,48,59,105,102,40,99,38,38,104,61,61,61,104,41,123,102,111,114,40,118,97,114,32,112,61,108,46,108,101,110,103,116,104,59,112,45,45,59,41,105,102,40,108,91,112,93,61,61,61,104,41,99,111,110,116,105,110,117,101,32,110,59,10,116,38,38,108,46,112,117,115,104,40,104,41,44,97,46,112,117,115,104,40,115,41,125,101,108,115,101,32,117,40,108,44,104,44,114,41,124,124,40,108,33,61,61,97,38,38,108,46,112,117,115,104,40,104,41,44,97,46,112,117,115,104,40,115,41,41,125,114,101,116,117,114,110,32,97,125,102,117,110,99,116,105,111,110,32,120,114,40,110,44,116,41,123,114,101,116,117,114,110,32,116,61,83,114,40,116,44,110,41,44,110,61,50,62,116,46,108,101,110,103,116,104,63,110,58,107,116,40,110,44,104,114,40,116,44,48,44,45,49,41,41,44,110,117,108,108,61,61,110,124,124,100,101,108,101,116,101,32,110,91,77,101,40,86,101,40,116,41,41,93,125,102,117,110,99,116,105,111,110,32,106,114,40,110,44,116,44,114,44,101,41,123,102,111,114,40,118,97,114,32,117,61,110,46,108,101,110,103,116,104,44,105,61,101,63,117,58,45,49,59,40,101,63,105,45,45,58,43,43,105,60,117,41,38,38,116,40,110,91,105,93,44,105,44,110,41,59,41,59,114,101,116,117,114,110,32,114,63,104,114,40,110,44,101,63,48,58,105,44,101,63,105,43,49,58,117,41,58,104,114,40,110,44,101,63,105,43,49,58,48,44,101,63,117,58,105,41,125,102,117,110,99,116,105,111,110,32,119,114,40,110,44,116,41,123,118,97,114,32,114,61,110,59,114,101,116,117,114,110,32,114,32,105,110,115,116,97,110,99,101,111,102,32,85,110,38,38,40,114,61,114,46,118,97,108,117,101,40,41,41,44,108,40,116,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,46,102,117,110,99,46,97,112,112,108,121,40,116,46,116,104,105,115,65,114,103,44,97,40,91,110,93,44,116,46,97,114,103,115,41,41,125,44,114,41,125,102,117,110,99,116,105,111,110,32,109,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,46,108,101,110,103,116,104,59,105,102,40,50,62,101,41,114,101,116,117,114,110,32,101,63,98,114,40,110,91,48,93,41,58,91,93,59,102,111,114,40,118,97,114,32,117,61,45,49,44,105,61,75,117,40,101,41,59,43,43,117,60,101,59,41,102,111,114,40,118,97,114,32,111,61,110,91,117,93,44,102,61,45,49,59,43,43,102,60,101,59,41,102,33,61,117,38,38,40,105,91,117,93,61,121,116,40,105,91,117,93,124,124,111,44,110,91,102,93,44,116,44,114,41,41,59,10,114,101,116,117,114,110,32,98,114,40,119,116,40,105,44,49,41,44,116,44,114,41,125,102,117,110,99,116,105,111,110,32,65,114,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,110,46,108,101,110,103,116,104,44,105,61,116,46,108,101,110,103,116,104,44,111,61,123,125,59,43,43,101,60,117,59,41,114,40,111,44,110,91,101,93,44,101,60,105,63,116,91,101,93,58,84,41,59,114,101,116,117,114,110,32,111,125,102,117,110,99,116,105,111,110,32,69,114,40,110,41,123,114,101,116,117,114,110,32,104,117,40,110,41,63,110,58,91,93,125,102,117,110,99,116,105,111,110,32,107,114,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,63,110,58,36,117,125,102,117,110,99,116,105,111,110,32,83,114,40,110,44,116,41,123,114,101,116,117,114,110,32,102,102,40,110,41,63,110,58,73,101,40,110,44,116,41,63,91,110,93,58,106,111,40,73,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,79,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,114,61,114,61,61,61,84,63,101,58,114,44,33,116,38,38,114,62,61,101,63,110,58,104,114,40,110,44,116,44,114,41,125,102,117,110,99,116,105,111,110,32,73,114,40,110,44,116,41,123,105,102,40,116,41,114,101,116,117,114,110,32,110,46,115,108,105,99,101,40,41,59,118,97,114,32,114,61,110,46,108,101,110,103,116,104,44,114,61,103,105,63,103,105,40,114,41,58,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,114,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,40,114,41,44,114,125,102,117,110,99,116,105,111,110,32,82,114,40,110,41,123,118,97,114,32,116,61,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,110,46,98,121,116,101,76,101,110,103,116,104,41,59,114,101,116,117,114,110,32,110,101,119,32,118,105,40,116,41,46,115,101,116,40,110,101,119,32,118,105,40,110,41,41,44,10,116,125,102,117,110,99,116,105,111,110,32,122,114,40,110,44,116,41,123,114,101,116,117,114,110,32,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,116,63,82,114,40,110,46,98,117,102,102,101,114,41,58,110,46,98,117,102,102,101,114,44,110,46,98,121,116,101,79,102,102,115,101,116,44,110,46,108,101,110,103,116,104,41,125,102,117,110,99,116,105,111,110,32,87,114,40,110,44,116,41,123,105,102,40,110,33,61,61,116,41,123,118,97,114,32,114,61,110,33,61,61,84,44,101,61,110,117,108,108,61,61,61,110,44,117,61,110,61,61,61,110,44,105,61,119,117,40,110,41,44,111,61,116,33,61,61,84,44,102,61,110,117,108,108,61,61,61,116,44,99,61,116,61,61,61,116,44,97,61,119,117,40,116,41,59,105,102,40,33,102,38,38,33,97,38,38,33,105,38,38,110,62,116,124,124,105,38,38,111,38,38,99,38,38,33,102,38,38,33,97,124,124,101,38,38,111,38,38,99,124,124,33,114,38,38,99,124,124,33,117,41,114,101,116,117,114,110,32,49,59,105,102,40,33,101,38,38,33,105,38,38,33,97,38,38,110,60,116,124,124,97,38,38,114,38,38,117,38,38,33,101,38,38,33,105,124,124,102,38,38,114,38,38,117,124,124,33,111,38,38,117,124,124,33,99,41,114,101,116,117,114,110,45,49,125,114,101,116,117,114,110,32,48,125,102,117,110,99,116,105,111,110,32,66,114,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,110,46,108,101,110,103,116,104,44,111,61,114,46,108,101,110,103,116,104,44,102,61,45,49,44,99,61,116,46,108,101,110,103,116,104,44,97,61,85,105,40,105,45,111,44,48,41,44,108,61,75,117,40,99,43,97,41,59,102,111,114,40,101,61,33,101,59,43,43,102,60,99,59,41,108,91,102,93,61,116,91,102,93,59,102,111,114,40,59,43,43,117,60,111,59,41,40,101,124,124,117,60,105,41,38,38,40,108,91,114,91,117,93,93,61,110,91,117,93,41,59,102,111,114,40,59,97,45,45,59,41,108,91,102,43,43,93,61,110,91,117,43,43,93,59,10,114,101,116,117,114,110,32,108,125,102,117,110,99,116,105,111,110,32,76,114,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,110,46,108,101,110,103,116,104,44,111,61,45,49,44,102,61,114,46,108,101,110,103,116,104,44,99,61,45,49,44,97,61,116,46,108,101,110,103,116,104,44,108,61,85,105,40,105,45,102,44,48,41,44,115,61,75,117,40,108,43,97,41,59,102,111,114,40,101,61,33,101,59,43,43,117,60,108,59,41,115,91,117,93,61,110,91,117,93,59,102,111,114,40,108,61,117,59,43,43,99,60,97,59,41,115,91,108,43,99,93,61,116,91,99,93,59,102,111,114,40,59,43,43,111,60,102,59,41,40,101,124,124,117,60,105,41,38,38,40,115,91,108,43,114,91,111,93,93,61,110,91,117,43,43,93,41,59,114,101,116,117,114,110,32,115,125,102,117,110,99,116,105,111,110,32,85,114,40,110,44,116,41,123,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,59,102,111,114,40,116,124,124,40,116,61,75,117,40,101,41,41,59,43,43,114,60,101,59,41,116,91,114,93,61,110,91,114,93,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,67,114,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,33,114,59,114,124,124,40,114,61,123,125,41,59,102,111,114,40,118,97,114,32,105,61,45,49,44,111,61,116,46,108,101,110,103,116,104,59,43,43,105,60,111,59,41,123,118,97,114,32,102,61,116,91,105,93,44,99,61,101,63,101,40,114,91,102,93,44,110,91,102,93,44,102,44,114,44,110,41,58,84,59,99,61,61,61,84,38,38,40,99,61,110,91,102,93,41,44,117,63,115,116,40,114,44,102,44,99,41,58,111,116,40,114,44,102,44,99,41,125,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,68,114,40,110,44,116,41,123,114,101,116,117,114,110,32,67,114,40,110,44,112,111,40,110,41,44,116,41,125,102,117,110,99,116,105,111,110,32,77,114,40,110,44,116,41,123,114,101,116,117,114,110,32,67,114,40,110,44,95,111,40,110,41,44,116,41,59,10,125,102,117,110,99,116,105,111,110,32,84,114,40,110,44,114,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,117,41,123,118,97,114,32,105,61,102,102,40,101,41,63,116,58,99,116,44,111,61,114,63,114,40,41,58,123,125,59,114,101,116,117,114,110,32,105,40,101,44,110,44,121,101,40,117,44,50,41,44,111,41,125,125,102,117,110,99,116,105,111,110,32,36,114,40,110,41,123,114,101,116,117,114,110,32,102,114,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,118,97,114,32,101,61,45,49,44,117,61,114,46,108,101,110,103,116,104,44,105,61,49,60,117,63,114,91,117,45,49,93,58,84,44,111,61,50,60,117,63,114,91,50,93,58,84,44,105,61,51,60,110,46,108,101,110,103,116,104,38,38,116,121,112,101,111,102,32,105,61,61,34,102,117,110,99,116,105,111,110,34,63,40,117,45,45,44,105,41,58,84,59,102,111,114,40,111,38,38,79,101,40,114,91,48,93,44,114,91,49,93,44,111,41,38,38,40,105,61,51,62,117,63,84,58,105,44,117,61,49,41,44,116,61,81,117,40,116,41,59,43,43,101,60,117,59,41,40,111,61,114,91,101,93,41,38,38,110,40,116,44,111,44,101,44,105,41,59,114,101,116,117,114,110,32,116,125,41,125,102,117,110,99,116,105,111,110,32,70,114,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,44,101,41,123,105,102,40,110,117,108,108,61,61,114,41,114,101,116,117,114,110,32,114,59,105,102,40,33,115,117,40,114,41,41,114,101,116,117,114,110,32,110,40,114,44,101,41,59,102,111,114,40,118,97,114,32,117,61,114,46,108,101,110,103,116,104,44,105,61,116,63,117,58,45,49,44,111,61,81,117,40,114,41,59,40,116,63,105,45,45,58,43,43,105,60,117,41,38,38,102,97,108,115,101,33,61,61,101,40,111,91,105,93,44,105,44,111,41,59,41,59,114,101,116,117,114,110,32,114,125,125,102,117,110,99,116,105,111,110,32,78,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,114,44,101,41,123,10,118,97,114,32,117,61,45,49,44,105,61,81,117,40,116,41,59,101,61,101,40,116,41,59,102,111,114,40,118,97,114,32,111,61,101,46,108,101,110,103,116,104,59,111,45,45,59,41,123,118,97,114,32,102,61,101,91,110,63,111,58,43,43,117,93,59,105,102,40,102,97,108,115,101,61,61,61,114,40,105,91,102,93,44,102,44,105,41,41,98,114,101,97,107,125,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,80,114,40,110,44,116,44,114,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,114,101,116,117,114,110,40,116,104,105,115,38,38,116,104,105,115,33,61,61,36,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,101,63,105,58,110,41,46,97,112,112,108,121,40,117,63,114,58,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,118,97,114,32,117,61,49,38,116,44,105,61,86,114,40,110,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,90,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,116,61,73,117,40,116,41,59,118,97,114,32,114,61,82,110,46,116,101,115,116,40,116,41,63,77,40,116,41,58,84,44,101,61,114,63,114,91,48,93,58,116,46,99,104,97,114,65,116,40,48,41,59,114,101,116,117,114,110,32,116,61,114,63,79,114,40,114,44,49,41,46,106,111,105,110,40,34,34,41,58,116,46,115,108,105,99,101,40,49,41,44,101,91,110,93,40,41,43,116,125,125,102,117,110,99,116,105,111,110,32,113,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,108,40,77,117,40,68,117,40,116,41,46,114,101,112,108,97,99,101,40,107,110,44,34,34,41,41,44,110,44,34,34,41,125,125,102,117,110,99,116,105,111,110,32,86,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,59,115,119,105,116,99,104,40,116,46,108,101,110,103,116,104,41,123,10,99,97,115,101,32,48,58,114,101,116,117,114,110,32,110,101,119,32,110,59,99,97,115,101,32,49,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,59,99,97,115,101,32,52,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,44,116,91,51,93,41,59,99,97,115,101,32,53,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,44,116,91,51,93,44,116,91,52,93,41,59,99,97,115,101,32,54,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,44,116,91,51,93,44,116,91,52,93,44,116,91,53,93,41,59,99,97,115,101,32,55,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,44,116,91,51,93,44,116,91,52,93,44,116,91,53,93,44,116,91,54,93,41,125,118,97,114,32,114,61,101,111,40,110,46,112,114,111,116,111,116,121,112,101,41,44,116,61,110,46,97,112,112,108,121,40,114,44,116,41,59,114,101,116,117,114,110,32,100,117,40,116,41,63,116,58,114,125,125,102,117,110,99,116,105,111,110,32,75,114,40,116,44,114,44,101,41,123,102,117,110,99,116,105,111,110,32,117,40,41,123,102,111,114,40,118,97,114,32,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,102,61,75,117,40,111,41,44,99,61,111,44,97,61,100,101,40,117,41,59,99,45,45,59,41,102,91,99,93,61,97,114,103,117,109,101,110,116,115,91,99,93,59,114,101,116,117,114,110,32,99,61,51,62,111,38,38,102,91,48,93,33,61,61,97,38,38,102,91,111,45,49,93,33,61,61,97,63,91,93,58,76,40,102,44,97,41,44,10,111,45,61,99,46,108,101,110,103,116,104,44,111,60,101,63,117,101,40,116,44,114,44,74,114,44,117,46,112,108,97,99,101,104,111,108,100,101,114,44,84,44,102,44,99,44,84,44,84,44,101,45,111,41,58,110,40,116,104,105,115,38,38,116,104,105,115,33,61,61,36,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,117,63,105,58,116,44,116,104,105,115,44,102,41,125,118,97,114,32,105,61,86,114,40,116,41,59,114,101,116,117,114,110,32,117,125,102,117,110,99,116,105,111,110,32,71,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,114,44,101,41,123,118,97,114,32,117,61,81,117,40,116,41,59,105,102,40,33,115,117,40,116,41,41,123,118,97,114,32,105,61,121,101,40,114,44,51,41,59,116,61,87,117,40,116,41,44,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,105,40,117,91,110,93,44,110,44,117,41,125,125,114,101,116,117,114,110,32,114,61,110,40,116,44,114,44,101,41,44,45,49,60,114,63,117,91,105,63,116,91,114,93,58,114,93,58,84,125,125,102,117,110,99,116,105,111,110,32,72,114,40,110,41,123,114,101,116,117,114,110,32,112,101,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,116,46,108,101,110,103,116,104,44,101,61,114,44,117,61,79,110,46,112,114,111,116,111,116,121,112,101,46,116,104,114,117,59,102,111,114,40,110,38,38,116,46,114,101,118,101,114,115,101,40,41,59,101,45,45,59,41,123,118,97,114,32,105,61,116,91,101,93,59,105,102,40,116,121,112,101,111,102,32,105,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,105,102,40,117,38,38,33,111,38,38,34,119,114,97,112,112,101,114,34,61,61,103,101,40,105,41,41,118,97,114,32,111,61,110,101,119,32,79,110,40,91,93,44,116,114,117,101,41,125,102,111,114,40,101,61,111,63,101,58,114,59,43,43,101,60,114,59,41,118,97,114,32,105,61,116,91,101,93,44,117,61,103,101,40,105,41,44,102,61,34,119,114,97,112,112,101,114,34,61,61,117,63,104,111,40,105,41,58,84,44,111,61,102,38,38,82,101,40,102,91,48,93,41,38,38,52,50,52,61,61,102,91,49,93,38,38,33,102,91,52,93,46,108,101,110,103,116,104,38,38,49,61,61,102,91,57,93,63,111,91,103,101,40,102,91,48,93,41,93,46,97,112,112,108,121,40,111,44,102,91,51,93,41,58,49,61,61,105,46,108,101,110,103,116,104,38,38,82,101,40,105,41,63,111,91,117,93,40,41,58,111,46,116,104,114,117,40,105,41,59,10,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,44,101,61,110,91,48,93,59,105,102,40,111,38,38,49,61,61,110,46,108,101,110,103,116,104,38,38,102,102,40,101,41,41,114,101,116,117,114,110,32,111,46,112,108,97,110,116,40,101,41,46,118,97,108,117,101,40,41,59,102,111,114,40,118,97,114,32,117,61,48,44,110,61,114,63,116,91,117,93,46,97,112,112,108,121,40,116,104,105,115,44,110,41,58,101,59,43,43,117,60,114,59,41,110,61,116,91,117,93,46,99,97,108,108,40,116,104,105,115,44,110,41,59,114,101,116,117,114,110,32,110,125,125,41,125,102,117,110,99,116,105,111,110,32,74,114,40,110,44,116,44,114,44,101,44,117,44,105,44,111,44,102,44,99,44,97,41,123,102,117,110,99,116,105,111,110,32,108,40,41,123,102,111,114,40,118,97,114,32,100,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,121,61,75,117,40,100,41,44,98,61,100,59,98,45,45,59,41,121,91,98,93,61,97,114,103,117,109,101,110,116,115,91,98,93,59,105,102,40,95,41,123,118,97,114,32,120,44,106,61,100,101,40,108,41,44,98,61,121,46,108,101,110,103,116,104,59,102,111,114,40,120,61,48,59,98,45,45,59,41,121,91,98,93,61,61,61,106,38,38,43,43,120,125,105,102,40,101,38,38,40,121,61,66,114,40,121,44,101,44,117,44,95,41,41,44,105,38,38,40,121,61,76,114,40,121,44,105,44,111,44,95,41,41,44,100,45,61,120,44,95,38,38,100,60,97,41,114,101,116,117,114,110,32,106,61,76,40,121,44,106,41,44,117,101,40,110,44,116,44,74,114,44,108,46,112,108,97,99,101,104,111,108,100,101,114,44,114,44,121,44,106,44,102,44,99,44,97,45,100,41,59,105,102,40,106,61,104,63,114,58,116,104,105,115,44,98,61,112,63,106,91,110,93,58,110,44,100,61,121,46,108,101,110,103,116,104,44,102,41,123,120,61,121,46,108,101,110,103,116,104,59,102,111,114,40,118,97,114,32,119,61,67,105,40,102,46,108,101,110,103,116,104,44,120,41,44,109,61,85,114,40,121,41,59,119,45,45,59,41,123,10,118,97,114,32,65,61,102,91,119,93,59,121,91,119,93,61,83,101,40,65,44,120,41,63,109,91,65,93,58,84,125,125,101,108,115,101,32,118,38,38,49,60,100,38,38,121,46,114,101,118,101,114,115,101,40,41,59,114,101,116,117,114,110,32,115,38,38,99,60,100,38,38,40,121,46,108,101,110,103,116,104,61,99,41,44,116,104,105,115,38,38,116,104,105,115,33,61,61,36,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,108,38,38,40,98,61,103,124,124,86,114,40,98,41,41,44,98,46,97,112,112,108,121,40,106,44,121,41,125,118,97,114,32,115,61,49,50,56,38,116,44,104,61,49,38,116,44,112,61,50,38,116,44,95,61,50,52,38,116,44,118,61,53,49,50,38,116,44,103,61,112,63,84,58,86,114,40,110,41,59,114,101,116,117,114,110,32,108,125,102,117,110,99,116,105,111,110,32,89,114,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,44,101,41,123,114,101,116,117,114,110,32,66,116,40,114,44,110,44,116,40,101,41,41,125,125,102,117,110,99,116,105,111,110,32,81,114,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,44,101,41,123,118,97,114,32,117,59,105,102,40,114,61,61,61,84,38,38,101,61,61,61,84,41,114,101,116,117,114,110,32,116,59,105,102,40,114,33,61,61,84,38,38,40,117,61,114,41,44,101,33,61,61,84,41,123,105,102,40,117,61,61,61,84,41,114,101,116,117,114,110,32,101,59,116,121,112,101,111,102,32,114,61,61,34,115,116,114,105,110,103,34,124,124,116,121,112,101,111,102,32,101,61,61,34,115,116,114,105,110,103,34,63,40,114,61,121,114,40,114,41,44,101,61,121,114,40,101,41,41,58,40,114,61,100,114,40,114,41,44,101,61,100,114,40,101,41,41,44,117,61,110,40,114,44,101,41,125,114,101,116,117,114,110,32,117,125,125,102,117,110,99,116,105,111,110,32,88,114,40,116,41,123,114,101,116,117,114,110,32,112,101,40,102,117,110,99,116,105,111,110,40,114,41,123,10,114,101,116,117,114,110,32,114,61,99,40,114,44,107,40,121,101,40,41,41,41,44,102,114,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,117,61,116,104,105,115,59,114,101,116,117,114,110,32,116,40,114,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,40,116,44,117,44,101,41,125,41,125,41,125,41,125,102,117,110,99,116,105,111,110,32,110,101,40,110,44,116,41,123,116,61,116,61,61,61,84,63,34,32,34,58,121,114,40,116,41,59,118,97,114,32,114,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,50,62,114,63,114,63,111,114,40,116,44,110,41,58,116,58,40,114,61,111,114,40,116,44,79,105,40,110,47,68,40,116,41,41,41,44,82,110,46,116,101,115,116,40,116,41,63,79,114,40,77,40,114,41,44,48,44,110,41,46,106,111,105,110,40,34,34,41,58,114,46,115,108,105,99,101,40,48,44,110,41,41,125,102,117,110,99,116,105,111,110,32,116,101,40,116,44,114,44,101,44,117,41,123,102,117,110,99,116,105,111,110,32,105,40,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,99,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,97,61,45,49,44,108,61,117,46,108,101,110,103,116,104,44,115,61,75,117,40,108,43,99,41,44,104,61,116,104,105,115,38,38,116,104,105,115,33,61,61,36,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,105,63,102,58,116,59,43,43,97,60,108,59,41,115,91,97,93,61,117,91,97,93,59,102,111,114,40,59,99,45,45,59,41,115,91,97,43,43,93,61,97,114,103,117,109,101,110,116,115,91,43,43,114,93,59,114,101,116,117,114,110,32,110,40,104,44,111,63,101,58,116,104,105,115,44,115,41,125,118,97,114,32,111,61,49,38,114,44,102,61,86,114,40,116,41,59,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,114,101,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,114,44,101,41,123,10,101,38,38,116,121,112,101,111,102,32,101,33,61,34,110,117,109,98,101,114,34,38,38,79,101,40,116,44,114,44,101,41,38,38,40,114,61,101,61,84,41,44,116,61,65,117,40,116,41,44,114,61,61,61,84,63,40,114,61,116,44,116,61,48,41,58,114,61,65,117,40,114,41,44,101,61,101,61,61,61,84,63,116,60,114,63,49,58,45,49,58,65,117,40,101,41,59,118,97,114,32,117,61,45,49,59,114,61,85,105,40,79,105,40,40,114,45,116,41,47,40,101,124,124,49,41,41,44,48,41,59,102,111,114,40,118,97,114,32,105,61,75,117,40,114,41,59,114,45,45,59,41,105,91,110,63,114,58,43,43,117,93,61,116,44,116,43,61,101,59,114,101,116,117,114,110,32,105,125,125,102,117,110,99,116,105,111,110,32,101,101,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,116,61,61,34,115,116,114,105,110,103,34,38,38,116,121,112,101,111,102,32,114,61,61,34,115,116,114,105,110,103,34,124,124,40,116,61,83,117,40,116,41,44,114,61,83,117,40,114,41,41,44,110,40,116,44,114,41,125,125,102,117,110,99,116,105,111,110,32,117,101,40,110,44,116,44,114,44,101,44,117,44,105,44,111,44,102,44,99,44,97,41,123,118,97,114,32,108,61,56,38,116,44,115,61,108,63,111,58,84,59,111,61,108,63,84,58,111,59,118,97,114,32,104,61,108,63,105,58,84,59,114,101,116,117,114,110,32,105,61,108,63,84,58,105,44,116,61,40,116,124,40,108,63,51,50,58,54,52,41,41,38,126,40,108,63,54,52,58,51,50,41,44,52,38,116,124,124,40,116,38,61,45,52,41,44,117,61,91,110,44,116,44,117,44,104,44,115,44,105,44,111,44,102,44,99,44,97,93,44,114,61,114,46,97,112,112,108,121,40,84,44,117,41,44,82,101,40,110,41,38,38,121,111,40,114,44,117,41,44,114,46,112,108,97,99,101,104,111,108,100,101,114,61,101,44,85,101,40,114,44,110,44,116,41,125,102,117,110,99,116,105,111,110,32,105,101,40,110,41,123,10,118,97,114,32,116,61,89,117,91,110,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,114,41,123,105,102,40,110,61,83,117,40,110,41,44,40,114,61,110,117,108,108,61,61,114,63,48,58,67,105,40,69,117,40,114,41,44,50,57,50,41,41,38,38,87,105,40,110,41,41,123,118,97,114,32,101,61,40,73,117,40,110,41,43,34,101,34,41,46,115,112,108,105,116,40,34,101,34,41,44,101,61,116,40,101,91,48,93,43,34,101,34,43,40,43,101,91,49,93,43,114,41,41,44,101,61,40,73,117,40,101,41,43,34,101,34,41,46,115,112,108,105,116,40,34,101,34,41,59,114,101,116,117,114,110,43,40,101,91,48,93,43,34,101,34,43,40,43,101,91,49,93,45,114,41,41,125,114,101,116,117,114,110,32,116,40,110,41,125,125,102,117,110,99,116,105,111,110,32,111,101,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,118,111,40,116,41,59,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,114,63,87,40,116,41,58,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,114,63,67,40,116,41,58,69,40,116,44,110,40,116,41,41,125,125,102,117,110,99,116,105,111,110,32,102,101,40,110,44,116,44,114,44,101,44,117,44,105,44,111,44,102,41,123,118,97,114,32,99,61,50,38,116,59,105,102,40,33,99,38,38,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,118,97,114,32,97,61,101,63,101,46,108,101,110,103,116,104,58,48,59,105,102,40,97,124,124,40,116,38,61,45,57,55,44,101,61,117,61,84,41,44,111,61,111,61,61,61,84,63,111,58,85,105,40,69,117,40,111,41,44,48,41,44,102,61,102,61,61,61,84,63,102,58,69,117,40,102,41,44,97,45,61,117,63,117,46,108,101,110,103,116,104,58,48,44,10,54,52,38,116,41,123,118,97,114,32,108,61,101,44,115,61,117,59,101,61,117,61,84,125,118,97,114,32,104,61,99,63,84,58,104,111,40,110,41,59,114,101,116,117,114,110,32,105,61,91,110,44,116,44,114,44,101,44,117,44,108,44,115,44,105,44,111,44,102,93,44,104,38,38,40,114,61,105,91,49,93,44,110,61,104,91,49,93,44,116,61,114,124,110,44,101,61,49,50,56,61,61,110,38,38,56,61,61,114,124,124,49,50,56,61,61,110,38,38,50,53,54,61,61,114,38,38,105,91,55,93,46,108,101,110,103,116,104,60,61,104,91,56,93,124,124,51,56,52,61,61,110,38,38,104,91,55,93,46,108,101,110,103,116,104,60,61,104,91,56,93,38,38,56,61,61,114,44,49,51,49,62,116,124,124,101,41,38,38,40,49,38,110,38,38,40,105,91,50,93,61,104,91,50,93,44,116,124,61,49,38,114,63,48,58,52,41,44,40,114,61,104,91,51,93,41,38,38,40,101,61,105,91,51,93,44,105,91,51,93,61,101,63,66,114,40,101,44,114,44,104,91,52,93,41,58,114,44,105,91,52,93,61,101,63,76,40,105,91,51,93,44,34,95,95,108,111,100,97,115,104,95,112,108,97,99,101,104,111,108,100,101,114,95,95,34,41,58,104,91,52,93,41,44,40,114,61,104,91,53,93,41,38,38,40,101,61,105,91,53,93,44,105,91,53,93,61,101,63,76,114,40,101,44,114,44,104,91,54,93,41,58,114,44,105,91,54,93,61,101,63,76,40,105,91,53,93,44,34,95,95,108,111,100,97,115,104,95,112,108,97,99,101,104,111,108,100,101,114,95,95,34,41,58,104,91,54,93,41,44,40,114,61,104,91,55,93,41,38,38,40,105,91,55,93,61,114,41,44,49,50,56,38,110,38,38,40,105,91,56,93,61,110,117,108,108,61,61,105,91,56,93,63,104,91,56,93,58,67,105,40,105,91,56,93,44,104,91,56,93,41,41,44,110,117,108,108,61,61,105,91,57,93,38,38,40,105,91,57,93,61,104,91,57,93,41,44,105,91,48,93,61,104,91,48,93,44,105,91,49,93,61,116,41,44,110,61,105,91,48,93,44,10,116,61,105,91,49,93,44,114,61,105,91,50,93,44,101,61,105,91,51,93,44,117,61,105,91,52,93,44,102,61,105,91,57,93,61,105,91,57,93,61,61,61,84,63,99,63,48,58,110,46,108,101,110,103,116,104,58,85,105,40,105,91,57,93,45,97,44,48,41,44,33,102,38,38,50,52,38,116,38,38,40,116,38,61,45,50,53,41,44,85,101,40,40,104,63,99,111,58,121,111,41,40,116,38,38,49,33,61,116,63,56,61,61,116,124,124,49,54,61,61,116,63,75,114,40,110,44,116,44,102,41,58,51,50,33,61,116,38,38,51,51,33,61,116,124,124,117,46,108,101,110,103,116,104,63,74,114,46,97,112,112,108,121,40,84,44,105,41,58,116,101,40,110,44,116,44,114,44,101,41,58,80,114,40,110,44,116,44,114,41,44,105,41,44,110,44,116,41,125,102,117,110,99,116,105,111,110,32,99,101,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,110,61,61,61,84,124,124,108,117,40,110,44,101,105,91,114,93,41,38,38,33,111,105,46,99,97,108,108,40,101,44,114,41,63,116,58,110,125,102,117,110,99,116,105,111,110,32,97,101,40,110,44,116,44,114,44,101,44,117,44,105,41,123,114,101,116,117,114,110,32,100,117,40,110,41,38,38,100,117,40,116,41,38,38,40,105,46,115,101,116,40,116,44,110,41,44,89,116,40,110,44,116,44,84,44,97,101,44,105,41,44,105,46,100,101,108,101,116,101,40,116,41,41,44,110,125,102,117,110,99,116,105,111,110,32,108,101,40,110,41,123,114,101,116,117,114,110,32,120,117,40,110,41,63,84,58,110,125,102,117,110,99,116,105,111,110,32,115,101,40,110,44,116,44,114,44,101,44,117,44,105,41,123,118,97,114,32,111,61,49,38,114,44,102,61,110,46,108,101,110,103,116,104,44,99,61,116,46,108,101,110,103,116,104,59,105,102,40,102,33,61,99,38,38,33,40,111,38,38,99,62,102,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,105,102,40,40,99,61,105,46,103,101,116,40,110,41,41,38,38,105,46,103,101,116,40,116,41,41,114,101,116,117,114,110,32,99,61,61,116,59,10,118,97,114,32,99,61,45,49,44,97,61,116,114,117,101,44,108,61,50,38,114,63,110,101,119,32,78,110,58,84,59,102,111,114,40,105,46,115,101,116,40,110,44,116,41,44,105,46,115,101,116,40,116,44,110,41,59,43,43,99,60,102,59,41,123,118,97,114,32,115,61,110,91,99,93,44,112,61,116,91,99,93,59,105,102,40,101,41,118,97,114,32,95,61,111,63,101,40,112,44,115,44,99,44,116,44,110,44,105,41,58,101,40,115,44,112,44,99,44,110,44,116,44,105,41,59,105,102,40,95,33,61,61,84,41,123,105,102,40,95,41,99,111,110,116,105,110,117,101,59,97,61,102,97,108,115,101,59,98,114,101,97,107,125,105,102,40,108,41,123,105,102,40,33,104,40,116,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,33,79,40,108,44,116,41,38,38,40,115,61,61,61,110,124,124,117,40,115,44,110,44,114,44,101,44,105,41,41,41,114,101,116,117,114,110,32,108,46,112,117,115,104,40,116,41,125,41,41,123,97,61,102,97,108,115,101,59,98,114,101,97,107,125,125,101,108,115,101,32,105,102,40,115,33,61,61,112,38,38,33,117,40,115,44,112,44,114,44,101,44,105,41,41,123,97,61,102,97,108,115,101,59,98,114,101,97,107,125,125,114,101,116,117,114,110,32,105,46,100,101,108,101,116,101,40,110,41,44,105,46,100,101,108,101,116,101,40,116,41,44,97,125,102,117,110,99,116,105,111,110,32,104,101,40,110,44,116,44,114,44,101,44,117,44,105,44,111,41,123,115,119,105,116,99,104,40,114,41,123,99,97,115,101,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,58,105,102,40,110,46,98,121,116,101,76,101,110,103,116,104,33,61,116,46,98,121,116,101,76,101,110,103,116,104,124,124,110,46,98,121,116,101,79,102,102,115,101,116,33,61,116,46,98,121,116,101,79,102,102,115,101,116,41,98,114,101,97,107,59,110,61,110,46,98,117,102,102,101,114,44,116,61,116,46,98,117,102,102,101,114,59,99,97,115,101,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,58,10,105,102,40,110,46,98,121,116,101,76,101,110,103,116,104,33,61,116,46,98,121,116,101,76,101,110,103,116,104,124,124,33,105,40,110,101,119,32,118,105,40,110,41,44,110,101,119,32,118,105,40,116,41,41,41,98,114,101,97,107,59,114,101,116,117,114,110,32,116,114,117,101,59,99,97,115,101,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,58,114,101,116,117,114,110,32,108,117,40,43,110,44,43,116,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,69,114,114,111,114,93,34,58,114,101,116,117,114,110,32,110,46,110,97,109,101,61,61,116,46,110,97,109,101,38,38,110,46,109,101,115,115,97,103,101,61,61,116,46,109,101,115,115,97,103,101,59,99,97,115,101,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,58,114,101,116,117,114,110,32,110,61,61,116,43,34,34,59,99,97,115,101,34,91,111,98,106,101,99,116,32,77,97,112,93,34,58,118,97,114,32,102,61,87,59,99,97,115,101,34,91,111,98,106,101,99,116,32,83,101,116,93,34,58,105,102,40,102,124,124,40,102,61,85,41,44,110,46,115,105,122,101,33,61,116,46,115,105,122,101,38,38,33,40,49,38,101,41,41,98,114,101,97,107,59,114,101,116,117,114,110,40,114,61,111,46,103,101,116,40,110,41,41,63,114,61,61,116,58,40,101,124,61,50,44,111,46,115,101,116,40,110,44,116,41,44,116,61,115,101,40,102,40,110,41,44,102,40,116,41,44,101,44,117,44,105,44,111,41,44,111,46,100,101,108,101,116,101,40,110,41,44,116,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,34,58,105,102,40,116,111,41,114,101,116,117,114,110,32,116,111,46,99,97,108,108,40,110,41,61,61,116,111,46,99,97,108,108,40,116,41,125,10,114,101,116,117,114,110,32,102,97,108,115,101,125,102,117,110,99,116,105,111,110,32,112,101,40,110,41,123,114,101,116,117,114,110,32,120,111,40,66,101,40,110,44,84,44,90,101,41,44,110,43,34,34,41,125,102,117,110,99,116,105,111,110,32,95,101,40,110,41,123,114,101,116,117,114,110,32,83,116,40,110,44,87,117,44,112,111,41,125,102,117,110,99,116,105,111,110,32,118,101,40,110,41,123,114,101,116,117,114,110,32,83,116,40,110,44,66,117,44,95,111,41,125,102,117,110,99,116,105,111,110,32,103,101,40,110,41,123,102,111,114,40,118,97,114,32,116,61,110,46,110,97,109,101,43,34,34,44,114,61,71,105,91,116,93,44,101,61,111,105,46,99,97,108,108,40,71,105,44,116,41,63,114,46,108,101,110,103,116,104,58,48,59,101,45,45,59,41,123,118,97,114,32,117,61,114,91,101,93,44,105,61,117,46,102,117,110,99,59,105,102,40,110,117,108,108,61,61,105,124,124,105,61,61,110,41,114,101,116,117,114,110,32,117,46,110,97,109,101,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,100,101,40,110,41,123,114,101,116,117,114,110,40,111,105,46,99,97,108,108,40,65,110,44,34,112,108,97,99,101,104,111,108,100,101,114,34,41,63,65,110,58,110,41,46,112,108,97,99,101,104,111,108,100,101,114,125,102,117,110,99,116,105,111,110,32,121,101,40,41,123,118,97,114,32,110,61,65,110,46,105,116,101,114,97,116,101,101,124,124,70,117,44,110,61,110,61,61,61,70,117,63,113,116,58,110,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,40,97,114,103,117,109,101,110,116,115,91,48,93,44,97,114,103,117,109,101,110,116,115,91,49,93,41,58,110,125,102,117,110,99,116,105,111,110,32,98,101,40,110,44,116,41,123,118,97,114,32,114,61,110,46,95,95,100,97,116,97,95,95,44,101,61,116,121,112,101,111,102,32,116,59,114,101,116,117,114,110,40,34,115,116,114,105,110,103,34,61,61,101,124,124,34,110,117,109,98,101,114,34,61,61,101,124,124,34,115,121,109,98,111,108,34,61,61,101,124,124,34,98,111,111,108,101,97,110,34,61,61,101,63,34,95,95,112,114,111,116,111,95,95,34,33,61,61,116,58,110,117,108,108,61,61,61,116,41,63,114,91,116,121,112,101,111,102,32,116,61,61,34,115,116,114,105,110,103,34,63,34,115,116,114,105,110,103,34,58,34,104,97,115,104,34,93,58,114,46,109,97,112,59,10,125,102,117,110,99,116,105,111,110,32,120,101,40,110,41,123,102,111,114,40,118,97,114,32,116,61,87,117,40,110,41,44,114,61,116,46,108,101,110,103,116,104,59,114,45,45,59,41,123,118,97,114,32,101,61,116,91,114,93,44,117,61,110,91,101,93,59,116,91,114,93,61,91,101,44,117,44,117,61,61,61,117,38,38,33,100,117,40,117,41,93,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,106,101,40,110,44,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,110,63,84,58,110,91,116,93,59,114,101,116,117,114,110,32,70,116,40,114,41,63,114,58,84,125,102,117,110,99,116,105,111,110,32,119,101,40,110,44,116,44,114,41,123,116,61,83,114,40,116,44,110,41,59,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,116,46,108,101,110,103,116,104,44,105,61,102,97,108,115,101,59,43,43,101,60,117,59,41,123,118,97,114,32,111,61,77,101,40,116,91,101,93,41,59,105,102,40,33,40,105,61,110,117,108,108,33,61,110,38,38,114,40,110,44,111,41,41,41,98,114,101,97,107,59,110,61,110,91,111,93,125,114,101,116,117,114,110,32,105,124,124,43,43,101,33,61,117,63,105,58,40,117,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,33,33,117,38,38,103,117,40,117,41,38,38,83,101,40,111,44,117,41,38,38,40,102,102,40,110,41,124,124,111,102,40,110,41,41,41,125,102,117,110,99,116,105,111,110,32,109,101,40,110,41,123,118,97,114,32,116,61,110,46,108,101,110,103,116,104,44,114,61,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,116,41,59,114,101,116,117,114,110,32,116,38,38,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,91,48,93,38,38,111,105,46,99,97,108,108,40,110,44,34,105,110,100,101,120,34,41,38,38,40,114,46,105,110,100,101,120,61,110,46,105,110,100,101,120,44,114,46,105,110,112,117,116,61,110,46,105,110,112,117,116,41,44,114,125,102,117,110,99,116,105,111,110,32,65,101,40,110,41,123,10,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,46,99,111,110,115,116,114,117,99,116,111,114,33,61,34,102,117,110,99,116,105,111,110,34,124,124,122,101,40,110,41,63,123,125,58,101,111,40,100,105,40,110,41,41,125,102,117,110,99,116,105,111,110,32,69,101,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,46,99,111,110,115,116,114,117,99,116,111,114,59,115,119,105,116,99,104,40,116,41,123,99,97,115,101,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,58,114,101,116,117,114,110,32,82,114,40,110,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,58,114,101,116,117,114,110,32,110,101,119,32,101,40,43,110,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,58,114,101,116,117,114,110,32,116,61,114,63,82,114,40,110,46,98,117,102,102,101,114,41,58,110,46,98,117,102,102,101,114,44,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,116,44,110,46,98,121,116,101,79,102,102,115,101,116,44,110,46,98,121,116,101,76,101,110,103,116,104,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,70,108,111,97,116,51,50,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,70,108,111,97,116,54,52,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,73,110,116,56,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,73,110,116,49,54,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,73,110,116,51,50,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,85,105,110,116,56,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,93,34,58,10,99,97,115,101,34,91,111,98,106,101,99,116,32,85,105,110,116,49,54,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,85,105,110,116,51,50,65,114,114,97,121,93,34,58,114,101,116,117,114,110,32,122,114,40,110,44,114,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,77,97,112,93,34,58,114,101,116,117,114,110,32,110,101,119,32,101,59,99,97,115,101,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,58,114,101,116,117,114,110,32,110,101,119,32,101,40,110,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,58,114,101,116,117,114,110,32,116,61,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,110,46,115,111,117,114,99,101,44,95,110,46,101,120,101,99,40,110,41,41,44,116,46,108,97,115,116,73,110,100,101,120,61,110,46,108,97,115,116,73,110,100,101,120,44,116,59,99,97,115,101,34,91,111,98,106,101,99,116,32,83,101,116,93,34,58,114,101,116,117,114,110,32,110,101,119,32,101,59,99,97,115,101,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,34,58,114,101,116,117,114,110,32,116,111,63,81,117,40,116,111,46,99,97,108,108,40,110,41,41,58,123,125,125,125,102,117,110,99,116,105,111,110,32,107,101,40,110,41,123,114,101,116,117,114,110,32,102,102,40,110,41,124,124,111,102,40,110,41,124,124,33,33,40,106,105,38,38,110,38,38,110,91,106,105,93,41,125,102,117,110,99,116,105,111,110,32,83,101,40,110,44,116,41,123,118,97,114,32,114,61,116,121,112,101,111,102,32,110,59,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,58,116,44,33,33,116,38,38,40,34,110,117,109,98,101,114,34,61,61,114,124,124,34,115,121,109,98,111,108,34,33,61,114,38,38,98,110,46,116,101,115,116,40,110,41,41,38,38,45,49,60,110,38,38,48,61,61,110,37,49,38,38,110,60,116,59,10,125,102,117,110,99,116,105,111,110,32,79,101,40,110,44,116,44,114,41,123,105,102,40,33,100,117,40,114,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,118,97,114,32,101,61,116,121,112,101,111,102,32,116,59,114,101,116,117,114,110,33,33,40,34,110,117,109,98,101,114,34,61,61,101,63,115,117,40,114,41,38,38,83,101,40,116,44,114,46,108,101,110,103,116,104,41,58,34,115,116,114,105,110,103,34,61,61,101,38,38,116,32,105,110,32,114,41,38,38,108,117,40,114,91,116,93,44,110,41,125,102,117,110,99,116,105,111,110,32,73,101,40,110,44,116,41,123,105,102,40,102,102,40,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,118,97,114,32,114,61,116,121,112,101,111,102,32,110,59,114,101,116,117,114,110,33,40,34,110,117,109,98,101,114,34,33,61,114,38,38,34,115,121,109,98,111,108,34,33,61,114,38,38,34,98,111,111,108,101,97,110,34,33,61,114,38,38,110,117,108,108,33,61,110,38,38,33,119,117,40,110,41,41,124,124,40,110,110,46,116,101,115,116,40,110,41,124,124,33,88,46,116,101,115,116,40,110,41,124,124,110,117,108,108,33,61,116,38,38,110,32,105,110,32,81,117,40,116,41,41,125,102,117,110,99,116,105,111,110,32,82,101,40,110,41,123,118,97,114,32,116,61,103,101,40,110,41,44,114,61,65,110,91,116,93,59,114,101,116,117,114,110,32,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,38,38,116,32,105,110,32,85,110,46,112,114,111,116,111,116,121,112,101,38,38,40,110,61,61,61,114,124,124,40,116,61,104,111,40,114,41,44,33,33,116,38,38,110,61,61,61,116,91,48,93,41,41,125,102,117,110,99,116,105,111,110,32,122,101,40,110,41,123,118,97,114,32,116,61,110,38,38,110,46,99,111,110,115,116,114,117,99,116,111,114,59,114,101,116,117,114,110,32,110,61,61,61,40,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,38,38,116,46,112,114,111,116,111,116,121,112,101,124,124,101,105,41,125,102,117,110,99,116,105,111,110,32,87,101,40,110,44,116,41,123,10,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,114,38,38,40,114,91,110,93,61,61,61,116,38,38,40,116,33,61,61,84,124,124,110,32,105,110,32,81,117,40,114,41,41,41,125,125,102,117,110,99,116,105,111,110,32,66,101,40,116,44,114,44,101,41,123,114,101,116,117,114,110,32,114,61,85,105,40,114,61,61,61,84,63,116,46,108,101,110,103,116,104,45,49,58,114,44,48,41,44,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,117,61,97,114,103,117,109,101,110,116,115,44,105,61,45,49,44,111,61,85,105,40,117,46,108,101,110,103,116,104,45,114,44,48,41,44,102,61,75,117,40,111,41,59,43,43,105,60,111,59,41,102,91,105,93,61,117,91,114,43,105,93,59,102,111,114,40,105,61,45,49,44,111,61,75,117,40,114,43,49,41,59,43,43,105,60,114,59,41,111,91,105,93,61,117,91,105,93,59,114,101,116,117,114,110,32,111,91,114,93,61,101,40,102,41,44,110,40,116,44,116,104,105,115,44,111,41,125,125,102,117,110,99,116,105,111,110,32,76,101,40,110,44,116,41,123,105,102,40,40,34,99,111,110,115,116,114,117,99,116,111,114,34,33,61,61,116,124,124,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,91,116,93,41,38,38,34,95,95,112,114,111,116,111,95,95,34,33,61,116,41,114,101,116,117,114,110,32,110,91,116,93,125,102,117,110,99,116,105,111,110,32,85,101,40,110,44,116,44,114,41,123,118,97,114,32,101,61,116,43,34,34,59,116,61,120,111,59,118,97,114,32,117,44,105,61,36,101,59,114,101,116,117,114,110,32,117,61,40,117,61,101,46,109,97,116,99,104,40,97,110,41,41,63,117,91,49,93,46,115,112,108,105,116,40,108,110,41,58,91,93,44,114,61,105,40,117,44,114,41,44,40,105,61,114,46,108,101,110,103,116,104,41,38,38,40,117,61,105,45,49,44,114,91,117,93,61,40,49,60,105,63,34,38,32,34,58,34,34,41,43,114,91,117,93,44,10,114,61,114,46,106,111,105,110,40,50,60,105,63,34,44,32,34,58,34,32,34,41,44,101,61,101,46,114,101,112,108,97,99,101,40,99,110,44,34,123,92,110,47,42,32,91,119,114,97,112,112,101,100,32,119,105,116,104,32,34,43,114,43,34,93,32,42,47,92,110,34,41,41,44,116,40,110,44,101,41,125,102,117,110,99,116,105,111,110,32,67,101,40,110,41,123,118,97,114,32,116,61,48,44,114,61,48,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,68,105,40,41,44,117,61,49,54,45,40,101,45,114,41,59,105,102,40,114,61,101,44,48,60,117,41,123,105,102,40,56,48,48,60,61,43,43,116,41,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,91,48,93,125,101,108,115,101,32,116,61,48,59,114,101,116,117,114,110,32,110,46,97,112,112,108,121,40,84,44,97,114,103,117,109,101,110,116,115,41,125,125,102,117,110,99,116,105,111,110,32,68,101,40,110,44,116,41,123,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,44,117,61,101,45,49,59,102,111,114,40,116,61,116,61,61,61,84,63,101,58,116,59,43,43,114,60,116,59,41,123,118,97,114,32,101,61,105,114,40,114,44,117,41,44,105,61,110,91,101,93,59,110,91,101,93,61,110,91,114,93,44,110,91,114,93,61,105,125,114,101,116,117,114,110,32,110,46,108,101,110,103,116,104,61,116,44,110,125,102,117,110,99,116,105,111,110,32,77,101,40,110,41,123,105,102,40,116,121,112,101,111,102,32,110,61,61,34,115,116,114,105,110,103,34,124,124,119,117,40,110,41,41,114,101,116,117,114,110,32,110,59,118,97,114,32,116,61,110,43,34,34,59,114,101,116,117,114,110,34,48,34,61,61,116,38,38,49,47,110,61,61,45,36,63,34,45,48,34,58,116,125,102,117,110,99,116,105,111,110,32,84,101,40,110,41,123,105,102,40,110,117,108,108,33,61,110,41,123,116,114,121,123,114,101,116,117,114,110,32,105,105,46,99,97,108,108,40,110,41,125,99,97,116,99,104,40,110,41,123,125,10,114,101,116,117,114,110,32,110,43,34,34,125,114,101,116,117,114,110,34,34,125,102,117,110,99,116,105,111,110,32,36,101,40,110,44,116,41,123,114,101,116,117,114,110,32,114,40,78,44,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,101,61,34,95,46,34,43,114,91,48,93,59,116,38,114,91,49,93,38,38,33,111,40,110,44,101,41,38,38,110,46,112,117,115,104,40,101,41,125,41,44,110,46,115,111,114,116,40,41,125,102,117,110,99,116,105,111,110,32,70,101,40,110,41,123,105,102,40,110,32,105,110,115,116,97,110,99,101,111,102,32,85,110,41,114,101,116,117,114,110,32,110,46,99,108,111,110,101,40,41,59,118,97,114,32,116,61,110,101,119,32,79,110,40,110,46,95,95,119,114,97,112,112,101,100,95,95,44,110,46,95,95,99,104,97,105,110,95,95,41,59,114,101,116,117,114,110,32,116,46,95,95,97,99,116,105,111,110,115,95,95,61,85,114,40,110,46,95,95,97,99,116,105,111,110,115,95,95,41,44,116,46,95,95,105,110,100,101,120,95,95,61,110,46,95,95,105,110,100,101,120,95,95,44,116,46,95,95,118,97,108,117,101,115,95,95,61,110,46,95,95,118,97,108,117,101,115,95,95,44,116,125,102,117,110,99,116,105,111,110,32,78,101,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,114,61,110,117,108,108,61,61,114,63,48,58,69,117,40,114,41,44,48,62,114,38,38,40,114,61,85,105,40,101,43,114,44,48,41,41,44,95,40,110,44,121,101,40,116,44,51,41,44,114,41,41,58,45,49,125,102,117,110,99,116,105,111,110,32,80,101,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,105,102,40,33,101,41,114,101,116,117,114,110,45,49,59,118,97,114,32,117,61,101,45,49,59,114,101,116,117,114,110,32,114,33,61,61,84,38,38,40,117,61,69,117,40,114,41,44,117,61,48,62,114,63,85,105,40,101,43,117,44,48,41,58,67,105,40,117,44,101,45,49,41,41,44,10,95,40,110,44,121,101,40,116,44,51,41,44,117,44,116,114,117,101,41,125,102,117,110,99,116,105,111,110,32,90,101,40,110,41,123,114,101,116,117,114,110,40,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,41,63,119,116,40,110,44,49,41,58,91,93,125,102,117,110,99,116,105,111,110,32,113,101,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,110,91,48,93,58,84,125,102,117,110,99,116,105,111,110,32,86,101,40,110,41,123,118,97,114,32,116,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,63,110,91,116,45,49,93,58,84,125,102,117,110,99,116,105,111,110,32,75,101,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,38,38,116,38,38,116,46,108,101,110,103,116,104,63,101,114,40,110,44,116,41,58,110,125,102,117,110,99,116,105,111,110,32,71,101,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,36,105,46,99,97,108,108,40,110,41,125,102,117,110,99,116,105,111,110,32,72,101,40,110,41,123,105,102,40,33,110,124,124,33,110,46,108,101,110,103,116,104,41,114,101,116,117,114,110,91,93,59,118,97,114,32,116,61,48,59,114,101,116,117,114,110,32,110,61,105,40,110,44,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,104,117,40,110,41,41,114,101,116,117,114,110,32,116,61,85,105,40,110,46,108,101,110,103,116,104,44,116,41,44,116,114,117,101,125,41,44,65,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,99,40,110,44,98,40,116,41,41,125,41,125,102,117,110,99,116,105,111,110,32,74,101,40,116,44,114,41,123,105,102,40,33,116,124,124,33,116,46,108,101,110,103,116,104,41,114,101,116,117,114,110,91,93,59,118,97,114,32,101,61,72,101,40,116,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,114,63,101,58,99,40,101,44,102,117,110,99,116,105,111,110,40,116,41,123,10,114,101,116,117,114,110,32,110,40,114,44,84,44,116,41,125,41,125,102,117,110,99,116,105,111,110,32,89,101,40,110,41,123,114,101,116,117,114,110,32,110,61,65,110,40,110,41,44,110,46,95,95,99,104,97,105,110,95,95,61,116,114,117,101,44,110,125,102,117,110,99,116,105,111,110,32,81,101,40,110,44,116,41,123,114,101,116,117,114,110,32,116,40,110,41,125,102,117,110,99,116,105,111,110,32,88,101,40,41,123,114,101,116,117,114,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,110,117,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,114,58,117,111,41,40,110,44,121,101,40,116,44,51,41,41,125,102,117,110,99,116,105,111,110,32,116,117,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,101,58,105,111,41,40,110,44,121,101,40,116,44,51,41,41,125,102,117,110,99,116,105,111,110,32,114,117,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,99,58,71,116,41,40,110,44,121,101,40,116,44,51,41,41,125,102,117,110,99,116,105,111,110,32,101,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,114,63,84,58,116,44,116,61,110,38,38,110,117,108,108,61,61,116,63,110,46,108,101,110,103,116,104,58,116,44,102,101,40,110,44,49,50,56,44,84,44,84,44,84,44,84,44,116,41,125,102,117,110,99,116,105,111,110,32,117,117,40,110,44,116,41,123,118,97,114,32,114,59,105,102,40,116,121,112,101,111,102,32,116,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,110,61,69,117,40,110,41,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,60,45,45,110,38,38,40,114,61,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,44,49,62,61,110,38,38,40,116,61,84,41,44,10,114,125,125,102,117,110,99,116,105,111,110,32,105,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,114,63,84,58,116,44,110,61,102,101,40,110,44,56,44,84,44,84,44,84,44,84,44,84,44,116,41,44,110,46,112,108,97,99,101,104,111,108,100,101,114,61,105,117,46,112,108,97,99,101,104,111,108,100,101,114,44,110,125,102,117,110,99,116,105,111,110,32,111,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,114,63,84,58,116,44,110,61,102,101,40,110,44,49,54,44,84,44,84,44,84,44,84,44,84,44,116,41,44,110,46,112,108,97,99,101,104,111,108,100,101,114,61,111,117,46,112,108,97,99,101,104,111,108,100,101,114,44,110,125,102,117,110,99,116,105,111,110,32,102,117,40,110,44,116,44,114,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,118,97,114,32,114,61,99,44,101,61,97,59,114,101,116,117,114,110,32,99,61,97,61,84,44,95,61,116,44,115,61,110,46,97,112,112,108,121,40,101,44,114,41,125,102,117,110,99,116,105,111,110,32,117,40,110,41,123,118,97,114,32,114,61,110,45,112,59,114,101,116,117,114,110,32,110,45,61,95,44,112,61,61,61,84,124,124,114,62,61,116,124,124,48,62,114,124,124,103,38,38,110,62,61,108,125,102,117,110,99,116,105,111,110,32,105,40,41,123,118,97,114,32,110,61,71,111,40,41,59,105,102,40,117,40,110,41,41,114,101,116,117,114,110,32,111,40,110,41,59,118,97,114,32,114,44,101,61,98,111,59,114,61,110,45,95,44,110,61,116,45,40,110,45,112,41,44,114,61,103,63,67,105,40,110,44,108,45,114,41,58,110,44,104,61,101,40,105,44,114,41,125,102,117,110,99,116,105,111,110,32,111,40,110,41,123,114,101,116,117,114,110,32,104,61,84,44,100,38,38,99,63,101,40,110,41,58,40,99,61,97,61,84,44,115,41,125,102,117,110,99,116,105,111,110,32,102,40,41,123,118,97,114,32,110,61,71,111,40,41,44,114,61,117,40,110,41,59,105,102,40,99,61,97,114,103,117,109,101,110,116,115,44,10,97,61,116,104,105,115,44,112,61,110,44,114,41,123,105,102,40,104,61,61,61,84,41,114,101,116,117,114,110,32,95,61,110,61,112,44,104,61,98,111,40,105,44,116,41,44,118,63,101,40,110,41,58,115,59,105,102,40,103,41,114,101,116,117,114,110,32,108,111,40,104,41,44,104,61,98,111,40,105,44,116,41,44,101,40,112,41,125,114,101,116,117,114,110,32,104,61,61,61,84,38,38,40,104,61,98,111,40,105,44,116,41,41,44,115,125,118,97,114,32,99,44,97,44,108,44,115,44,104,44,112,44,95,61,48,44,118,61,102,97,108,115,101,44,103,61,102,97,108,115,101,44,100,61,116,114,117,101,59,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,116,61,83,117,40,116,41,124,124,48,44,100,117,40,114,41,38,38,40,118,61,33,33,114,46,108,101,97,100,105,110,103,44,108,61,40,103,61,34,109,97,120,87,97,105,116,34,105,110,32,114,41,63,85,105,40,83,117,40,114,46,109,97,120,87,97,105,116,41,124,124,48,44,116,41,58,108,44,100,61,34,116,114,97,105,108,105,110,103,34,105,110,32,114,63,33,33,114,46,116,114,97,105,108,105,110,103,58,100,41,44,102,46,99,97,110,99,101,108,61,102,117,110,99,116,105,111,110,40,41,123,104,33,61,61,84,38,38,108,111,40,104,41,44,95,61,48,44,99,61,112,61,97,61,104,61,84,125,44,102,46,102,108,117,115,104,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,104,61,61,61,84,63,115,58,111,40,71,111,40,41,41,125,44,102,125,102,117,110,99,116,105,111,110,32,99,117,40,110,44,116,41,123,102,117,110,99,116,105,111,110,32,114,40,41,123,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,44,117,61,116,63,116,46,97,112,112,108,121,40,116,104,105,115,44,101,41,58,101,91,48,93,44,105,61,114,46,99,97,99,104,101,59,10,114,101,116,117,114,110,32,105,46,104,97,115,40,117,41,63,105,46,103,101,116,40,117,41,58,40,101,61,110,46,97,112,112,108,121,40,116,104,105,115,44,101,41,44,114,46,99,97,99,104,101,61,105,46,115,101,116,40,117,44,101,41,124,124,105,44,101,41,125,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,124,124,110,117,108,108,33,61,116,38,38,116,121,112,101,111,102,32,116,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,114,46,99,97,99,104,101,61,110,101,119,40,99,117,46,67,97,99,104,101,124,124,70,110,41,44,114,125,102,117,110,99,116,105,111,110,32,97,117,40,110,41,123,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,59,115,119,105,116,99,104,40,116,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,33,110,46,99,97,108,108,40,116,104,105,115,41,59,99,97,115,101,32,49,58,114,101,116,117,114,110,33,110,46,99,97,108,108,40,116,104,105,115,44,116,91,48,93,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,33,110,46,99,97,108,108,40,116,104,105,115,44,116,91,48,93,44,116,91,49,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,33,110,46,99,97,108,108,40,116,104,105,115,44,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,125,114,101,116,117,114,110,33,110,46,97,112,112,108,121,40,116,104,105,115,44,116,41,125,125,102,117,110,99,116,105,111,110,32,108,117,40,110,44,116,41,123,114,101,116,117,114,110,32,110,61,61,61,116,124,124,110,33,61,61,110,38,38,116,33,61,61,116,59,10,125,102,117,110,99,116,105,111,110,32,115,117,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,103,117,40,110,46,108,101,110,103,116,104,41,38,38,33,95,117,40,110,41,125,102,117,110,99,116,105,111,110,32,104,117,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,115,117,40,110,41,125,102,117,110,99,116,105,111,110,32,112,117,40,110,41,123,105,102,40,33,121,117,40,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,118,97,114,32,116,61,79,116,40,110,41,59,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,69,114,114,111,114,93,34,61,61,116,124,124,34,91,111,98,106,101,99,116,32,68,79,77,69,120,99,101,112,116,105,111,110,93,34,61,61,116,124,124,116,121,112,101,111,102,32,110,46,109,101,115,115,97,103,101,61,61,34,115,116,114,105,110,103,34,38,38,116,121,112,101,111,102,32,110,46,110,97,109,101,61,61,34,115,116,114,105,110,103,34,38,38,33,120,117,40,110,41,125,102,117,110,99,116,105,111,110,32,95,117,40,110,41,123,114,101,116,117,114,110,33,33,100,117,40,110,41,38,38,40,110,61,79,116,40,110,41,44,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,61,61,110,124,124,34,91,111,98,106,101,99,116,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,93,34,61,61,110,124,124,34,91,111,98,106,101,99,116,32,65,115,121,110,99,70,117,110,99,116,105,111,110,93,34,61,61,110,124,124,34,91,111,98,106,101,99,116,32,80,114,111,120,121,93,34,61,61,110,41,125,102,117,110,99,116,105,111,110,32,118,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,38,38,110,61,61,69,117,40,110,41,125,102,117,110,99,116,105,111,110,32,103,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,38,38,45,49,60,110,38,38,48,61,61,110,37,49,38,38,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,62,61,110,59,10,125,102,117,110,99,116,105,111,110,32,100,117,40,110,41,123,118,97,114,32,116,61,116,121,112,101,111,102,32,110,59,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,40,34,111,98,106,101,99,116,34,61,61,116,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,41,125,102,117,110,99,116,105,111,110,32,121,117,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,116,121,112,101,111,102,32,110,61,61,34,111,98,106,101,99,116,34,125,102,117,110,99,116,105,111,110,32,98,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,124,124,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,120,117,40,110,41,123,114,101,116,117,114,110,33,40,33,121,117,40,110,41,124,124,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,33,61,79,116,40,110,41,41,38,38,40,110,61,100,105,40,110,41,44,110,117,108,108,61,61,61,110,124,124,40,110,61,111,105,46,99,97,108,108,40,110,44,34,99,111,110,115,116,114,117,99,116,111,114,34,41,38,38,110,46,99,111,110,115,116,114,117,99,116,111,114,44,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,38,38,110,32,105,110,115,116,97,110,99,101,111,102,32,110,38,38,105,105,46,99,97,108,108,40,110,41,61,61,108,105,41,41,125,102,117,110,99,116,105,111,110,32,106,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,115,116,114,105,110,103,34,124,124,33,102,102,40,110,41,38,38,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,119,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,115,121,109,98,111,108,34,124,124,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,34,61,61,79,116,40,110,41,59,10,125,102,117,110,99,116,105,111,110,32,109,117,40,110,41,123,105,102,40,33,110,41,114,101,116,117,114,110,91,93,59,105,102,40,115,117,40,110,41,41,114,101,116,117,114,110,32,106,117,40,110,41,63,77,40,110,41,58,85,114,40,110,41,59,105,102,40,119,105,38,38,110,91,119,105,93,41,123,110,61,110,91,119,105,93,40,41,59,102,111,114,40,118,97,114,32,116,44,114,61,91,93,59,33,40,116,61,110,46,110,101,120,116,40,41,41,46,100,111,110,101,59,41,114,46,112,117,115,104,40,116,46,118,97,108,117,101,41,59,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,32,116,61,118,111,40,110,41,44,40,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,116,63,87,58,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,116,63,85,58,85,117,41,40,110,41,125,102,117,110,99,116,105,111,110,32,65,117,40,110,41,123,114,101,116,117,114,110,32,110,63,40,110,61,83,117,40,110,41,44,110,61,61,61,36,124,124,110,61,61,61,45,36,63,49,46,55,57,55,54,57,51,49,51,52,56,54,50,51,49,53,55,101,51,48,56,42,40,48,62,110,63,45,49,58,49,41,58,110,61,61,61,110,63,110,58,48,41,58,48,61,61,61,110,63,110,58,48,125,102,117,110,99,116,105,111,110,32,69,117,40,110,41,123,110,61,65,117,40,110,41,59,118,97,114,32,116,61,110,37,49,59,114,101,116,117,114,110,32,110,61,61,61,110,63,116,63,110,45,116,58,110,58,48,125,102,117,110,99,116,105,111,110,32,107,117,40,110,41,123,114,101,116,117,114,110,32,110,63,112,116,40,69,117,40,110,41,44,48,44,52,50,57,52,57,54,55,50,57,53,41,58,48,125,102,117,110,99,116,105,111,110,32,83,117,40,110,41,123,105,102,40,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,41,114,101,116,117,114,110,32,110,59,105,102,40,119,117,40,110,41,41,114,101,116,117,114,110,32,70,59,105,102,40,100,117,40,110,41,38,38,40,110,61,116,121,112,101,111,102,32,110,46,118,97,108,117,101,79,102,61,61,34,102,117,110,99,116,105,111,110,34,63,110,46,118,97,108,117,101,79,102,40,41,58,110,44,10,110,61,100,117,40,110,41,63,110,43,34,34,58,110,41,44,116,121,112,101,111,102,32,110,33,61,34,115,116,114,105,110,103,34,41,114,101,116,117,114,110,32,48,61,61,61,110,63,110,58,43,110,59,110,61,110,46,114,101,112,108,97,99,101,40,117,110,44,34,34,41,59,118,97,114,32,116,61,103,110,46,116,101,115,116,40,110,41,59,114,101,116,117,114,110,32,116,124,124,121,110,46,116,101,115,116,40,110,41,63,68,110,40,110,46,115,108,105,99,101,40,50,41,44,116,63,50,58,56,41,58,118,110,46,116,101,115,116,40,110,41,63,70,58,43,110,125,102,117,110,99,116,105,111,110,32,79,117,40,110,41,123,114,101,116,117,114,110,32,67,114,40,110,44,66,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,73,117,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,34,34,58,121,114,40,110,41,125,102,117,110,99,116,105,111,110,32,82,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,61,110,117,108,108,61,61,110,63,84,58,107,116,40,110,44,116,41,44,110,61,61,61,84,63,114,58,110,125,102,117,110,99,116,105,111,110,32,122,117,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,119,101,40,110,44,116,44,122,116,41,125,102,117,110,99,116,105,111,110,32,87,117,40,110,41,123,114,101,116,117,114,110,32,115,117,40,110,41,63,113,110,40,110,41,58,86,116,40,110,41,125,102,117,110,99,116,105,111,110,32,66,117,40,110,41,123,105,102,40,115,117,40,110,41,41,110,61,113,110,40,110,44,116,114,117,101,41,59,101,108,115,101,32,105,102,40,100,117,40,110,41,41,123,118,97,114,32,116,44,114,61,122,101,40,110,41,44,101,61,91,93,59,102,111,114,40,116,32,105,110,32,110,41,40,34,99,111,110,115,116,114,117,99,116,111,114,34,33,61,116,124,124,33,114,38,38,111,105,46,99,97,108,108,40,110,44,116,41,41,38,38,101,46,112,117,115,104,40,116,41,59,110,61,101,125,101,108,115,101,123,105,102,40,116,61,91,93,44,10,110,117,108,108,33,61,110,41,102,111,114,40,114,32,105,110,32,81,117,40,110,41,41,116,46,112,117,115,104,40,114,41,59,110,61,116,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,76,117,40,110,44,116,41,123,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,123,125,59,118,97,114,32,114,61,99,40,118,101,40,110,41,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,91,110,93,125,41,59,114,101,116,117,114,110,32,116,61,121,101,40,116,41,44,116,114,40,110,44,114,44,102,117,110,99,116,105,111,110,40,110,44,114,41,123,114,101,116,117,114,110,32,116,40,110,44,114,91,48,93,41,125,41,125,102,117,110,99,116,105,111,110,32,85,117,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,83,40,110,44,87,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,67,117,40,110,41,123,114,101,116,117,114,110,32,36,102,40,73,117,40,110,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,125,102,117,110,99,116,105,111,110,32,68,117,40,110,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,110,46,114,101,112,108,97,99,101,40,120,110,44,88,110,41,46,114,101,112,108,97,99,101,40,83,110,44,34,34,41,125,102,117,110,99,116,105,111,110,32,77,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,61,73,117,40,110,41,44,116,61,114,63,84,58,116,44,116,61,61,61,84,63,122,110,46,116,101,115,116,40,110,41,63,110,46,109,97,116,99,104,40,73,110,41,124,124,91,93,58,110,46,109,97,116,99,104,40,115,110,41,124,124,91,93,58,110,46,109,97,116,99,104,40,116,41,124,124,91,93,125,102,117,110,99,116,105,111,110,32,84,117,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,125,125,102,117,110,99,116,105,111,110,32,36,117,40,110,41,123,114,101,116,117,114,110,32,110,59,10,125,102,117,110,99,116,105,111,110,32,70,117,40,110,41,123,114,101,116,117,114,110,32,113,116,40,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,63,110,58,95,116,40,110,44,49,41,41,125,102,117,110,99,116,105,111,110,32,78,117,40,110,44,116,44,101,41,123,118,97,114,32,117,61,87,117,40,116,41,44,105,61,69,116,40,116,44,117,41,59,110,117,108,108,33,61,101,124,124,100,117,40,116,41,38,38,40,105,46,108,101,110,103,116,104,124,124,33,117,46,108,101,110,103,116,104,41,124,124,40,101,61,116,44,116,61,110,44,110,61,116,104,105,115,44,105,61,69,116,40,116,44,87,117,40,116,41,41,41,59,118,97,114,32,111,61,33,40,100,117,40,101,41,38,38,34,99,104,97,105,110,34,105,110,32,101,38,38,33,101,46,99,104,97,105,110,41,44,102,61,95,117,40,110,41,59,114,101,116,117,114,110,32,114,40,105,44,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,101,61,116,91,114,93,59,110,91,114,93,61,101,44,102,38,38,40,110,46,112,114,111,116,111,116,121,112,101,91,114,93,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,99,104,97,105,110,95,95,59,105,102,40,111,124,124,116,41,123,118,97,114,32,114,61,110,40,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,41,59,114,101,116,117,114,110,40,114,46,95,95,97,99,116,105,111,110,115,95,95,61,85,114,40,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,41,46,112,117,115,104,40,123,102,117,110,99,58,101,44,97,114,103,115,58,97,114,103,117,109,101,110,116,115,44,116,104,105,115,65,114,103,58,110,125,41,44,114,46,95,95,99,104,97,105,110,95,95,61,116,44,114,125,114,101,116,117,114,110,32,101,46,97,112,112,108,121,40,110,44,97,40,91,116,104,105,115,46,118,97,108,117,101,40,41,93,44,97,114,103,117,109,101,110,116,115,41,41,125,41,125,41,44,110,125,102,117,110,99,116,105,111,110,32,80,117,40,41,123,125,10,102,117,110,99,116,105,111,110,32,90,117,40,110,41,123,114,101,116,117,114,110,32,73,101,40,110,41,63,98,40,77,101,40,110,41,41,58,114,114,40,110,41,125,102,117,110,99,116,105,111,110,32,113,117,40,41,123,114,101,116,117,114,110,91,93,125,102,117,110,99,116,105,111,110,32,86,117,40,41,123,114,101,116,117,114,110,32,102,97,108,115,101,125,109,110,61,110,117,108,108,61,61,109,110,63,36,110,58,114,116,46,100,101,102,97,117,108,116,115,40,36,110,46,79,98,106,101,99,116,40,41,44,109,110,44,114,116,46,112,105,99,107,40,36,110,44,87,110,41,41,59,118,97,114,32,75,117,61,109,110,46,65,114,114,97,121,44,71,117,61,109,110,46,68,97,116,101,44,72,117,61,109,110,46,69,114,114,111,114,44,74,117,61,109,110,46,70,117,110,99,116,105,111,110,44,89,117,61,109,110,46,77,97,116,104,44,81,117,61,109,110,46,79,98,106,101,99,116,44,88,117,61,109,110,46,82,101,103,69,120,112,44,110,105,61,109,110,46,83,116,114,105,110,103,44,116,105,61,109,110,46,84,121,112,101,69,114,114,111,114,44,114,105,61,75,117,46,112,114,111,116,111,116,121,112,101,44,101,105,61,81,117,46,112,114,111,116,111,116,121,112,101,44,117,105,61,109,110,91,34,95,95,99,111,114,101,45,106,115,95,115,104,97,114,101,100,95,95,34,93,44,105,105,61,74,117,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,44,111,105,61,101,105,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,44,102,105,61,48,44,99,105,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,47,91,94,46,93,43,36,47,46,101,120,101,99,40,117,105,38,38,117,105,46,107,101,121,115,38,38,117,105,46,107,101,121,115,46,73,69,95,80,82,79,84,79,124,124,34,34,41,59,114,101,116,117,114,110,32,110,63,34,83,121,109,98,111,108,40,115,114,99,41,95,49,46,34,43,110,58,34,34,125,40,41,44,97,105,61,101,105,46,116,111,83,116,114,105,110,103,44,108,105,61,105,105,46,99,97,108,108,40,81,117,41,44,115,105,61,36,110,46,95,44,104,105,61,88,117,40,34,94,34,43,105,105,46,99,97,108,108,40,111,105,41,46,114,101,112,108,97,99,101,40,114,110,44,34,92,92,36,38,34,41,46,114,101,112,108,97,99,101,40,47,104,97,115,79,119,110,80,114,111,112,101,114,116,121,124,40,102,117,110,99,116,105,111,110,41,46,42,63,40,63,61,92,92,92,40,41,124,32,102,111,114,32,46,43,63,40,63,61,92,92,92,93,41,47,103,44,34,36,49,46,42,63,34,41,43,34,36,34,41,44,112,105,61,80,110,63,109,110,46,66,117,102,102,101,114,58,84,44,95,105,61,109,110,46,83,121,109,98,111,108,44,118,105,61,109,110,46,85,105,110,116,56,65,114,114,97,121,44,103,105,61,112,105,63,112,105,46,103,58,84,44,100,105,61,66,40,81,117,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,44,81,117,41,44,121,105,61,81,117,46,99,114,101,97,116,101,44,98,105,61,101,105,46,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,44,120,105,61,114,105,46,115,112,108,105,99,101,44,106,105,61,95,105,63,95,105,46,105,115,67,111,110,99,97,116,83,112,114,101,97,100,97,98,108,101,58,84,44,119,105,61,95,105,63,95,105,46,105,116,101,114,97,116,111,114,58,84,44,109,105,61,95,105,63,95,105,46,116,111,83,116,114,105,110,103,84,97,103,58,84,44,65,105,61,102,117,110,99,116,105,111,110,40,41,123,10,116,114,121,123,118,97,114,32,110,61,106,101,40,81,117,44,34,100,101,102,105,110,101,80,114,111,112,101,114,116,121,34,41,59,114,101,116,117,114,110,32,110,40,123,125,44,34,34,44,123,125,41,44,110,125,99,97,116,99,104,40,110,41,123,125,125,40,41,44,69,105,61,109,110,46,99,108,101,97,114,84,105,109,101,111,117,116,33,61,61,36,110,46,99,108,101,97,114,84,105,109,101,111,117,116,38,38,109,110,46,99,108,101,97,114,84,105,109,101,111,117,116,44,107,105,61,71,117,38,38,71,117,46,110,111,119,33,61,61,36,110,46,68,97,116,101,46,110,111,119,38,38,71,117,46,110,111,119,44,83,105,61,109,110,46,115,101,116,84,105,109,101,111,117,116,33,61,61,36,110,46,115,101,116,84,105,109,101,111,117,116,38,38,109,110,46,115,101,116,84,105,109,101,111,117,116,44,79,105,61,89,117,46,99,101,105,108,44,73,105,61,89,117,46,102,108,111,111,114,44,82,105,61,81,117,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,44,122,105,61,112,105,63,112,105,46,105,115,66,117,102,102,101,114,58,84,44,87,105,61,109,110,46,105,115,70,105,110,105,116,101,44,66,105,61,114,105,46,106,111,105,110,44,76,105,61,66,40,81,117,46,107,101,121,115,44,81,117,41,44,85,105,61,89,117,46,109,97,120,44,67,105,61,89,117,46,109,105,110,44,68,105,61,71,117,46,110,111,119,44,77,105,61,109,110,46,112,97,114,115,101,73,110,116,44,84,105,61,89,117,46,114,97,110,100,111,109,44,36,105,61,114,105,46,114,101,118,101,114,115,101,44,70,105,61,106,101,40,109,110,44,34,68,97,116,97,86,105,101,119,34,41,44,78,105,61,106,101,40,109,110,44,34,77,97,112,34,41,44,80,105,61,106,101,40,109,110,44,34,80,114,111,109,105,115,101,34,41,44,90,105,61,106,101,40,109,110,44,34,83,101,116,34,41,44,113,105,61,106,101,40,109,110,44,34,87,101,97,107,77,97,112,34,41,44,86,105,61,106,101,40,81,117,44,34,99,114,101,97,116,101,34,41,44,75,105,61,113,105,38,38,110,101,119,32,113,105,44,71,105,61,123,125,44,72,105,61,84,101,40,70,105,41,44,74,105,61,84,101,40,78,105,41,44,89,105,61,84,101,40,80,105,41,44,81,105,61,84,101,40,90,105,41,44,88,105,61,84,101,40,113,105,41,44,110,111,61,95,105,63,95,105,46,112,114,111,116,111,116,121,112,101,58,84,44,116,111,61,110,111,63,110,111,46,118,97,108,117,101,79,102,58,84,44,114,111,61,110,111,63,110,111,46,116,111,83,116,114,105,110,103,58,84,44,101,111,61,102,117,110,99,116,105,111,110,40,41,123,10,102,117,110,99,116,105,111,110,32,110,40,41,123,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,100,117,40,116,41,63,121,105,63,121,105,40,116,41,58,40,110,46,112,114,111,116,111,116,121,112,101,61,116,44,116,61,110,101,119,32,110,44,110,46,112,114,111,116,111,116,121,112,101,61,84,44,116,41,58,123,125,125,125,40,41,59,65,110,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,61,123,101,115,99,97,112,101,58,74,44,101,118,97,108,117,97,116,101,58,89,44,105,110,116,101,114,112,111,108,97,116,101,58,81,44,118,97,114,105,97,98,108,101,58,34,34,44,105,109,112,111,114,116,115,58,123,95,58,65,110,125,125,44,65,110,46,112,114,111,116,111,116,121,112,101,61,69,110,46,112,114,111,116,111,116,121,112,101,44,65,110,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,65,110,44,79,110,46,112,114,111,116,111,116,121,112,101,61,101,111,40,69,110,46,112,114,111,116,111,116,121,112,101,41,44,79,110,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,79,110,44,85,110,46,112,114,111,116,111,116,121,112,101,61,101,111,40,69,110,46,112,114,111,116,111,116,121,112,101,41,44,85,110,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,85,110,44,77,110,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,100,97,116,97,95,95,61,86,105,63,86,105,40,110,117,108,108,41,58,123,125,44,116,104,105,115,46,115,105,122,101,61,48,125,44,77,110,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,61,116,104,105,115,46,104,97,115,40,110,41,38,38,100,101,108,101,116,101,32,116,104,105,115,46,95,95,100,97,116,97,95,95,91,110,93,44,10,116,104,105,115,46,115,105,122,101,45,61,110,63,49,58,48,44,110,125,44,77,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,86,105,63,40,110,61,116,91,110,93,44,34,95,95,108,111,100,97,115,104,95,104,97,115,104,95,117,110,100,101,102,105,110,101,100,95,95,34,61,61,61,110,63,84,58,110,41,58,111,105,46,99,97,108,108,40,116,44,110,41,63,116,91,110,93,58,84,125,44,77,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,86,105,63,116,91,110,93,33,61,61,84,58,111,105,46,99,97,108,108,40,116,44,110,41,125,44,77,110,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,116,104,105,115,46,115,105,122,101,43,61,116,104,105,115,46,104,97,115,40,110,41,63,48,58,49,44,114,91,110,93,61,86,105,38,38,116,61,61,61,84,63,34,95,95,108,111,100,97,115,104,95,104,97,115,104,95,117,110,100,101,102,105,110,101,100,95,95,34,58,116,44,116,104,105,115,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,100,97,116,97,95,95,61,91,93,44,116,104,105,115,46,115,105,122,101,61,48,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,110,61,102,116,40,116,44,110,41,44,33,40,48,62,110,41,38,38,40,110,61,61,116,46,108,101,110,103,116,104,45,49,63,116,46,112,111,112,40,41,58,120,105,46,99,97,108,108,40,116,44,110,44,49,41,44,10,45,45,116,104,105,115,46,115,105,122,101,44,116,114,117,101,41,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,110,61,102,116,40,116,44,110,41,44,48,62,110,63,84,58,116,91,110,93,91,49,93,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,45,49,60,102,116,40,116,104,105,115,46,95,95,100,97,116,97,95,95,44,110,41,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,116,104,105,115,46,95,95,100,97,116,97,95,95,44,101,61,102,116,40,114,44,110,41,59,114,101,116,117,114,110,32,48,62,101,63,40,43,43,116,104,105,115,46,115,105,122,101,44,114,46,112,117,115,104,40,91,110,44,116,93,41,41,58,114,91,101,93,91,49,93,61,116,44,116,104,105,115,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,105,122,101,61,48,44,116,104,105,115,46,95,95,100,97,116,97,95,95,61,123,104,97,115,104,58,110,101,119,32,77,110,44,109,97,112,58,110,101,119,40,78,105,124,124,84,110,41,44,115,116,114,105,110,103,58,110,101,119,32,77,110,125,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,61,98,101,40,116,104,105,115,44,110,41,46,100,101,108,101,116,101,40,110,41,44,116,104,105,115,46,115,105,122,101,45,61,110,63,49,58,48,44,110,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,98,101,40,116,104,105,115,44,110,41,46,103,101,116,40,110,41,59,10,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,98,101,40,116,104,105,115,44,110,41,46,104,97,115,40,110,41,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,98,101,40,116,104,105,115,44,110,41,44,101,61,114,46,115,105,122,101,59,114,101,116,117,114,110,32,114,46,115,101,116,40,110,44,116,41,44,116,104,105,115,46,115,105,122,101,43,61,114,46,115,105,122,101,61,61,101,63,48,58,49,44,116,104,105,115,125,44,78,110,46,112,114,111,116,111,116,121,112,101,46,97,100,100,61,78,110,46,112,114,111,116,111,116,121,112,101,46,112,117,115,104,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,95,100,97,116,97,95,95,46,115,101,116,40,110,44,34,95,95,108,111,100,97,115,104,95,104,97,115,104,95,117,110,100,101,102,105,110,101,100,95,95,34,41,44,116,104,105,115,125,44,78,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,95,100,97,116,97,95,95,46,104,97,115,40,110,41,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,84,110,44,116,104,105,115,46,115,105,122,101,61,48,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,110,61,116,46,100,101,108,101,116,101,40,110,41,44,116,104,105,115,46,115,105,122,101,61,116,46,115,105,122,101,44,110,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,32,116,104,105,115,46,95,95,100,97,116,97,95,95,46,103,101,116,40,110,41,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,95,100,97,116,97,95,95,46,104,97,115,40,110,41,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,105,102,40,114,32,105,110,115,116,97,110,99,101,111,102,32,84,110,41,123,118,97,114,32,101,61,114,46,95,95,100,97,116,97,95,95,59,105,102,40,33,78,105,124,124,49,57,57,62,101,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,101,46,112,117,115,104,40,91,110,44,116,93,41,44,116,104,105,115,46,115,105,122,101,61,43,43,114,46,115,105,122,101,44,116,104,105,115,59,114,61,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,70,110,40,101,41,125,114,101,116,117,114,110,32,114,46,115,101,116,40,110,44,116,41,44,116,104,105,115,46,115,105,122,101,61,114,46,115,105,122,101,44,116,104,105,115,125,59,118,97,114,32,117,111,61,70,114,40,109,116,41,44,105,111,61,70,114,40,65,116,44,116,114,117,101,41,44,111,111,61,78,114,40,41,44,102,111,61,78,114,40,116,114,117,101,41,44,99,111,61,75,105,63,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,75,105,46,115,101,116,40,110,44,116,41,44,110,125,58,36,117,44,97,111,61,65,105,63,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,65,105,40,110,44,34,116,111,83,116,114,105,110,103,34,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,116,114,117,101,44,101,110,117,109,101,114,97,98,108,101,58,102,97,108,115,101,44,118,97,108,117,101,58,84,117,40,116,41,44,119,114,105,116,97,98,108,101,58,116,114,117,101,125,41,125,58,36,117,44,108,111,61,69,105,124,124,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,32,36,110,46,99,108,101,97,114,84,105,109,101,111,117,116,40,110,41,125,44,115,111,61,90,105,38,38,49,47,85,40,110,101,119,32,90,105,40,91,44,45,48,93,41,41,91,49,93,61,61,36,63,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,101,119,32,90,105,40,110,41,125,58,80,117,44,104,111,61,75,105,63,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,75,105,46,103,101,116,40,110,41,125,58,80,117,44,112,111,61,82,105,63,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,40,110,61,81,117,40,110,41,44,105,40,82,105,40,110,41,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,98,105,46,99,97,108,108,40,110,44,116,41,125,41,41,125,58,113,117,44,95,111,61,82,105,63,102,117,110,99,116,105,111,110,40,110,41,123,102,111,114,40,118,97,114,32,116,61,91,93,59,110,59,41,97,40,116,44,112,111,40,110,41,41,44,110,61,100,105,40,110,41,59,114,101,116,117,114,110,32,116,125,58,113,117,44,118,111,61,79,116,59,40,70,105,38,38,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,33,61,118,111,40,110,101,119,32,70,105,40,110,101,119,32,65,114,114,97,121,66,117,102,102,101,114,40,49,41,41,41,124,124,78,105,38,38,34,91,111,98,106,101,99,116,32,77,97,112,93,34,33,61,118,111,40,110,101,119,32,78,105,41,124,124,80,105,38,38,34,91,111,98,106,101,99,116,32,80,114,111,109,105,115,101,93,34,33,61,118,111,40,80,105,46,114,101,115,111,108,118,101,40,41,41,124,124,90,105,38,38,34,91,111,98,106,101,99,116,32,83,101,116,93,34,33,61,118,111,40,110,101,119,32,90,105,41,124,124,113,105,38,38,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,33,61,118,111,40,110,101,119,32,113,105,41,41,38,38,40,118,111,61,102,117,110,99,116,105,111,110,40,110,41,123,10,118,97,114,32,116,61,79,116,40,110,41,59,105,102,40,110,61,40,110,61,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,61,61,116,63,110,46,99,111,110,115,116,114,117,99,116,111,114,58,84,41,63,84,101,40,110,41,58,34,34,41,115,119,105,116,99,104,40,110,41,123,99,97,115,101,32,72,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,59,99,97,115,101,32,74,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,77,97,112,93,34,59,99,97,115,101,32,89,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,80,114,111,109,105,115,101,93,34,59,99,97,115,101,32,81,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,83,101,116,93,34,59,99,97,115,101,32,88,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,125,114,101,116,117,114,110,32,116,125,41,59,118,97,114,32,103,111,61,117,105,63,95,117,58,86,117,44,121,111,61,67,101,40,99,111,41,44,98,111,61,83,105,124,124,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,36,110,46,115,101,116,84,105,109,101,111,117,116,40,110,44,116,41,125,44,120,111,61,67,101,40,97,111,41,44,106,111,61,102,117,110,99,116,105,111,110,40,110,41,123,110,61,99,117,40,110,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,53,48,48,61,61,61,116,46,115,105,122,101,38,38,116,46,99,108,101,97,114,40,41,44,110,125,41,59,118,97,114,32,116,61,110,46,99,97,99,104,101,59,114,101,116,117,114,110,32,110,125,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,52,54,61,61,61,110,46,99,104,97,114,67,111,100,101,65,116,40,48,41,38,38,116,46,112,117,115,104,40,34,34,41,44,110,46,114,101,112,108,97,99,101,40,116,110,44,102,117,110,99,116,105,111,110,40,110,44,114,44,101,44,117,41,123,10,116,46,112,117,115,104,40,101,63,117,46,114,101,112,108,97,99,101,40,104,110,44,34,36,49,34,41,58,114,124,124,110,41,125,41,44,116,125,41,44,119,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,104,117,40,110,41,63,121,116,40,110,44,119,116,40,116,44,49,44,104,117,44,116,114,117,101,41,41,58,91,93,125,41,44,109,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,86,101,40,116,41,59,114,101,116,117,114,110,32,104,117,40,114,41,38,38,40,114,61,84,41,44,104,117,40,110,41,63,121,116,40,110,44,119,116,40,116,44,49,44,104,117,44,116,114,117,101,41,44,121,101,40,114,44,50,41,41,58,91,93,125,41,44,65,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,86,101,40,116,41,59,114,101,116,117,114,110,32,104,117,40,114,41,38,38,40,114,61,84,41,44,104,117,40,110,41,63,121,116,40,110,44,119,116,40,116,44,49,44,104,117,44,116,114,117,101,41,44,84,44,114,41,58,91,93,125,41,44,69,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,99,40,110,44,69,114,41,59,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,38,38,116,91,48,93,61,61,61,110,91,48,93,63,87,116,40,116,41,58,91,93,125,41,44,107,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,44,114,61,99,40,110,44,69,114,41,59,114,101,116,117,114,110,32,116,61,61,61,86,101,40,114,41,63,116,61,84,58,114,46,112,111,112,40,41,44,114,46,108,101,110,103,116,104,38,38,114,91,48,93,61,61,61,110,91,48,93,63,87,116,40,114,44,121,101,40,116,44,50,41,41,58,91,93,125,41,44,83,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,44,114,61,99,40,110,44,69,114,41,59,114,101,116,117,114,110,40,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,41,38,38,114,46,112,111,112,40,41,44,10,114,46,108,101,110,103,116,104,38,38,114,91,48,93,61,61,61,110,91,48,93,63,87,116,40,114,44,84,44,116,41,58,91,93,125,41,44,79,111,61,102,114,40,75,101,41,44,73,111,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,101,61,104,116,40,110,44,116,41,59,114,101,116,117,114,110,32,117,114,40,110,44,99,40,116,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,83,101,40,110,44,114,41,63,43,110,58,110,125,41,46,115,111,114,116,40,87,114,41,41,44,101,125,41,44,82,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,98,114,40,119,116,40,110,44,49,44,104,117,44,116,114,117,101,41,41,125,41,44,122,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,59,114,101,116,117,114,110,32,104,117,40,116,41,38,38,40,116,61,84,41,44,98,114,40,119,116,40,110,44,49,44,104,117,44,116,114,117,101,41,44,121,101,40,116,44,50,41,41,125,41,44,87,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,44,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,59,114,101,116,117,114,110,32,98,114,40,119,116,40,110,44,49,44,104,117,44,116,114,117,101,41,44,84,44,116,41,125,41,44,66,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,104,117,40,110,41,63,121,116,40,110,44,116,41,58,91,93,125,41,44,76,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,109,114,40,105,40,110,44,104,117,41,41,125,41,44,85,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,59,114,101,116,117,114,110,32,104,117,40,116,41,38,38,40,116,61,84,41,44,10,109,114,40,105,40,110,44,104,117,41,44,121,101,40,116,44,50,41,41,125,41,44,67,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,44,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,59,114,101,116,117,114,110,32,109,114,40,105,40,110,44,104,117,41,44,84,44,116,41,125,41,44,68,111,61,102,114,40,72,101,41,44,77,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,110,46,108,101,110,103,116,104,44,116,61,49,60,116,63,110,91,116,45,49,93,58,84,44,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,40,110,46,112,111,112,40,41,44,116,41,58,84,59,114,101,116,117,114,110,32,74,101,40,110,44,116,41,125,41,44,84,111,61,112,101,40,102,117,110,99,116,105,111,110,40,110,41,123,102,117,110,99,116,105,111,110,32,116,40,116,41,123,114,101,116,117,114,110,32,104,116,40,116,44,110,41,125,118,97,114,32,114,61,110,46,108,101,110,103,116,104,44,101,61,114,63,110,91,48,93,58,48,44,117,61,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,59,114,101,116,117,114,110,33,40,49,60,114,124,124,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,46,108,101,110,103,116,104,41,38,38,117,32,105,110,115,116,97,110,99,101,111,102,32,85,110,38,38,83,101,40,101,41,63,40,117,61,117,46,115,108,105,99,101,40,101,44,43,101,43,40,114,63,49,58,48,41,41,44,117,46,95,95,97,99,116,105,111,110,115,95,95,46,112,117,115,104,40,123,102,117,110,99,58,81,101,44,97,114,103,115,58,91,116,93,44,116,104,105,115,65,114,103,58,84,125,41,44,110,101,119,32,79,110,40,117,44,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,46,116,104,114,117,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,114,38,38,33,110,46,108,101,110,103,116,104,38,38,110,46,112,117,115,104,40,84,41,44,10,110,125,41,41,58,116,104,105,115,46,116,104,114,117,40,116,41,125,41,44,36,111,61,84,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,111,105,46,99,97,108,108,40,110,44,114,41,63,43,43,110,91,114,93,58,115,116,40,110,44,114,44,49,41,125,41,44,70,111,61,71,114,40,78,101,41,44,78,111,61,71,114,40,80,101,41,44,80,111,61,84,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,111,105,46,99,97,108,108,40,110,44,114,41,63,110,91,114,93,46,112,117,115,104,40,116,41,58,115,116,40,110,44,114,44,91,116,93,41,125,41,44,90,111,61,102,114,40,102,117,110,99,116,105,111,110,40,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,44,111,61,115,117,40,116,41,63,75,117,40,116,46,108,101,110,103,116,104,41,58,91,93,59,114,101,116,117,114,110,32,117,111,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,111,91,43,43,117,93,61,105,63,110,40,114,44,116,44,101,41,58,76,116,40,116,44,114,44,101,41,125,41,44,111,125,41,44,113,111,61,84,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,115,116,40,110,44,114,44,116,41,125,41,44,86,111,61,84,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,91,114,63,48,58,49,93,46,112,117,115,104,40,116,41,125,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,91,93,44,91,93,93,125,41,44,75,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,91,93,59,118,97,114,32,114,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,49,60,114,38,38,79,101,40,110,44,116,91,48,93,44,116,91,49,93,41,63,116,61,91,93,58,50,60,114,38,38,79,101,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,38,38,40,116,61,91,116,91,48,93,93,41,44,10,88,116,40,110,44,119,116,40,116,44,49,41,44,91,93,41,125,41,44,71,111,61,107,105,124,124,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,110,46,68,97,116,101,46,110,111,119,40,41,125,44,72,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,49,59,105,102,40,114,46,108,101,110,103,116,104,41,118,97,114,32,117,61,76,40,114,44,100,101,40,72,111,41,41,44,101,61,51,50,124,101,59,114,101,116,117,114,110,32,102,101,40,110,44,101,44,116,44,114,44,117,41,125,41,44,74,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,51,59,105,102,40,114,46,108,101,110,103,116,104,41,118,97,114,32,117,61,76,40,114,44,100,101,40,74,111,41,41,44,101,61,51,50,124,101,59,114,101,116,117,114,110,32,102,101,40,116,44,101,44,110,44,114,44,117,41,125,41,44,89,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,100,116,40,110,44,49,44,116,41,125,41,44,81,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,100,116,40,110,44,83,117,40,116,41,124,124,48,44,114,41,125,41,59,99,117,46,67,97,99,104,101,61,70,110,59,118,97,114,32,88,111,61,102,114,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,61,49,61,61,114,46,108,101,110,103,116,104,38,38,102,102,40,114,91,48,93,41,63,99,40,114,91,48,93,44,107,40,121,101,40,41,41,41,58,99,40,119,116,40,114,44,49,41,44,107,40,121,101,40,41,41,41,59,118,97,114,32,101,61,114,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,102,114,40,102,117,110,99,116,105,111,110,40,117,41,123,102,111,114,40,118,97,114,32,105,61,45,49,44,111,61,67,105,40,117,46,108,101,110,103,116,104,44,101,41,59,43,43,105,60,111,59,41,117,91,105,93,61,114,91,105,93,46,99,97,108,108,40,116,104,105,115,44,117,91,105,93,41,59,10,114,101,116,117,114,110,32,110,40,116,44,116,104,105,115,44,117,41,125,41,125,41,44,110,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,101,40,110,44,51,50,44,84,44,116,44,76,40,116,44,100,101,40,110,102,41,41,41,125,41,44,116,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,101,40,110,44,54,52,44,84,44,116,44,76,40,116,44,100,101,40,116,102,41,41,41,125,41,44,114,102,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,101,40,110,44,50,53,54,44,84,44,84,44,84,44,116,41,125,41,44,101,102,61,101,101,40,73,116,41,44,117,102,61,101,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,62,61,116,125,41,44,111,102,61,85,116,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,125,40,41,41,63,85,116,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,111,105,46,99,97,108,108,40,110,44,34,99,97,108,108,101,101,34,41,38,38,33,98,105,46,99,97,108,108,40,110,44,34,99,97,108,108,101,101,34,41,125,44,102,102,61,75,117,46,105,115,65,114,114,97,121,44,99,102,61,86,110,63,107,40,86,110,41,58,67,116,44,97,102,61,122,105,124,124,86,117,44,108,102,61,75,110,63,107,40,75,110,41,58,68,116,44,115,102,61,71,110,63,107,40,71,110,41,58,84,116,44,104,102,61,72,110,63,107,40,72,110,41,58,78,116,44,112,102,61,74,110,63,107,40,74,110,41,58,80,116,44,95,102,61,89,110,63,107,40,89,110,41,58,90,116,44,118,102,61,101,101,40,75,116,41,44,103,102,61,101,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,60,61,116,125,41,44,100,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,10,105,102,40,122,101,40,116,41,124,124,115,117,40,116,41,41,67,114,40,116,44,87,117,40,116,41,44,110,41,59,101,108,115,101,32,102,111,114,40,118,97,114,32,114,32,105,110,32,116,41,111,105,46,99,97,108,108,40,116,44,114,41,38,38,111,116,40,110,44,114,44,116,91,114,93,41,125,41,44,121,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,67,114,40,116,44,66,117,40,116,41,44,110,41,125,41,44,98,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,67,114,40,116,44,66,117,40,116,41,44,110,44,101,41,125,41,44,120,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,67,114,40,116,44,87,117,40,116,41,44,110,44,101,41,125,41,44,106,102,61,112,101,40,104,116,41,44,119,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,110,61,81,117,40,110,41,59,118,97,114,32,114,61,45,49,44,101,61,116,46,108,101,110,103,116,104,44,117,61,50,60,101,63,116,91,50,93,58,84,59,102,111,114,40,117,38,38,79,101,40,116,91,48,93,44,116,91,49,93,44,117,41,38,38,40,101,61,49,41,59,43,43,114,60,101,59,41,102,111,114,40,118,97,114,32,117,61,116,91,114,93,44,105,61,66,117,40,117,41,44,111,61,45,49,44,102,61,105,46,108,101,110,103,116,104,59,43,43,111,60,102,59,41,123,118,97,114,32,99,61,105,91,111,93,44,97,61,110,91,99,93,59,40,97,61,61,61,84,124,124,108,117,40,97,44,101,105,91,99,93,41,38,38,33,111,105,46,99,97,108,108,40,110,44,99,41,41,38,38,40,110,91,99,93,61,117,91,99,93,41,125,114,101,116,117,114,110,32,110,125,41,44,109,102,61,102,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,112,117,115,104,40,84,44,97,101,41,44,110,40,79,102,44,84,44,116,41,125,41,44,65,102,61,89,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,10,110,117,108,108,33,61,116,38,38,116,121,112,101,111,102,32,116,46,116,111,83,116,114,105,110,103,33,61,34,102,117,110,99,116,105,111,110,34,38,38,40,116,61,97,105,46,99,97,108,108,40,116,41,41,44,110,91,116,93,61,114,125,44,84,117,40,36,117,41,41,44,69,102,61,89,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,117,108,108,33,61,116,38,38,116,121,112,101,111,102,32,116,46,116,111,83,116,114,105,110,103,33,61,34,102,117,110,99,116,105,111,110,34,38,38,40,116,61,97,105,46,99,97,108,108,40,116,41,41,44,111,105,46,99,97,108,108,40,110,44,116,41,63,110,91,116,93,46,112,117,115,104,40,114,41,58,110,91,116,93,61,91,114,93,125,44,121,101,41,44,107,102,61,102,114,40,76,116,41,44,83,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,89,116,40,110,44,116,44,114,41,125,41,44,79,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,89,116,40,110,44,116,44,114,44,101,41,125,41,44,73,102,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,123,125,59,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,32,114,59,118,97,114,32,101,61,102,97,108,115,101,59,116,61,99,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,83,114,40,116,44,110,41,44,101,124,124,40,101,61,49,60,116,46,108,101,110,103,116,104,41,44,116,125,41,44,67,114,40,110,44,118,101,40,110,41,44,114,41,44,101,38,38,40,114,61,95,116,40,114,44,55,44,108,101,41,41,59,102,111,114,40,118,97,114,32,117,61,116,46,108,101,110,103,116,104,59,117,45,45,59,41,120,114,40,114,44,116,91,117,93,41,59,114,101,116,117,114,110,32,114,125,41,44,82,102,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,123,125,58,110,114,40,110,44,116,41,59,10,125,41,44,122,102,61,111,101,40,87,117,41,44,87,102,61,111,101,40,66,117,41,44,66,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,110,43,40,114,63,67,117,40,116,41,58,116,41,125,41,44,76,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,45,34,58,34,34,41,43,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,44,85,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,32,34,58,34,34,41,43,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,44,67,102,61,90,114,40,34,116,111,76,111,119,101,114,67,97,115,101,34,41,44,68,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,95,34,58,34,34,41,43,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,44,77,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,32,34,58,34,34,41,43,36,102,40,116,41,125,41,44,84,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,32,34,58,34,34,41,43,116,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,41,44,36,102,61,90,114,40,34,116,111,85,112,112,101,114,67,97,115,101,34,41,44,70,102,61,102,114,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,116,114,121,123,114,101,116,117,114,110,32,110,40,116,44,84,44,114,41,125,99,97,116,99,104,40,110,41,123,114,101,116,117,114,110,32,112,117,40,110,41,63,110,58,110,101,119,32,72,117,40,110,41,125,125,41,44,78,102,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,10,114,101,116,117,114,110,32,114,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,116,61,77,101,40,116,41,44,115,116,40,110,44,116,44,72,111,40,110,91,116,93,44,110,41,41,125,41,44,110,125,41,44,80,102,61,72,114,40,41,44,90,102,61,72,114,40,116,114,117,101,41,44,113,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,76,116,40,114,44,110,44,116,41,125,125,41,44,86,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,76,116,40,110,44,114,44,116,41,125,125,41,44,75,102,61,88,114,40,99,41,44,71,102,61,88,114,40,117,41,44,72,102,61,88,114,40,104,41,44,74,102,61,114,101,40,41,44,89,102,61,114,101,40,116,114,117,101,41,44,81,102,61,81,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,43,116,125,44,48,41,44,88,102,61,105,101,40,34,99,101,105,108,34,41,44,110,99,61,81,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,47,116,125,44,49,41,44,116,99,61,105,101,40,34,102,108,111,111,114,34,41,44,114,99,61,81,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,42,116,125,44,49,41,44,101,99,61,105,101,40,34,114,111,117,110,100,34,41,44,117,99,61,81,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,45,116,125,44,48,41,59,114,101,116,117,114,110,32,65,110,46,97,102,116,101,114,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,116,121,112,101,111,102,32,116,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,10,114,101,116,117,114,110,32,110,61,69,117,40,110,41,44,102,117,110,99,116,105,111,110,40,41,123,105,102,40,49,62,45,45,110,41,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,125,44,65,110,46,97,114,121,61,101,117,44,65,110,46,97,115,115,105,103,110,61,100,102,44,65,110,46,97,115,115,105,103,110,73,110,61,121,102,44,65,110,46,97,115,115,105,103,110,73,110,87,105,116,104,61,98,102,44,65,110,46,97,115,115,105,103,110,87,105,116,104,61,120,102,44,65,110,46,97,116,61,106,102,44,65,110,46,98,101,102,111,114,101,61,117,117,44,65,110,46,98,105,110,100,61,72,111,44,65,110,46,98,105,110,100,65,108,108,61,78,102,44,65,110,46,98,105,110,100,75,101,121,61,74,111,44,65,110,46,99,97,115,116,65,114,114,97,121,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,91,93,59,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,91,48,93,59,114,101,116,117,114,110,32,102,102,40,110,41,63,110,58,91,110,93,125,44,65,110,46,99,104,97,105,110,61,89,101,44,65,110,46,99,104,117,110,107,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,105,102,40,116,61,40,114,63,79,101,40,110,44,116,44,114,41,58,116,61,61,61,84,41,63,49,58,85,105,40,69,117,40,116,41,44,48,41,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,33,114,124,124,49,62,116,41,114,101,116,117,114,110,91,93,59,102,111,114,40,118,97,114,32,101,61,48,44,117,61,48,44,105,61,75,117,40,79,105,40,114,47,116,41,41,59,101,60,114,59,41,105,91,117,43,43,93,61,104,114,40,110,44,101,44,101,43,61,116,41,59,114,101,116,117,114,110,32,105,125,44,65,110,46,99,111,109,112,97,99,116,61,102,117,110,99,116,105,111,110,40,110,41,123,102,111,114,40,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,101,61,48,44,117,61,91,93,59,43,43,116,60,114,59,41,123,10,118,97,114,32,105,61,110,91,116,93,59,105,38,38,40,117,91,101,43,43,93,61,105,41,125,114,101,116,117,114,110,32,117,125,44,65,110,46,99,111,110,99,97,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,105,102,40,33,110,41,114,101,116,117,114,110,91,93,59,102,111,114,40,118,97,114,32,116,61,75,117,40,110,45,49,41,44,114,61,97,114,103,117,109,101,110,116,115,91,48,93,59,110,45,45,59,41,116,91,110,45,49,93,61,97,114,103,117,109,101,110,116,115,91,110,93,59,114,101,116,117,114,110,32,97,40,102,102,40,114,41,63,85,114,40,114,41,58,91,114,93,44,119,116,40,116,44,49,41,41,125,44,65,110,46,99,111,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,44,101,61,121,101,40,41,59,114,101,116,117,114,110,32,116,61,114,63,99,40,116,44,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,91,49,93,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,91,101,40,110,91,48,93,41,44,110,91,49,93,93,125,41,58,91,93,44,102,114,40,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,117,61,45,49,59,43,43,117,60,114,59,41,123,118,97,114,32,105,61,116,91,117,93,59,105,102,40,110,40,105,91,48,93,44,116,104,105,115,44,101,41,41,114,101,116,117,114,110,32,110,40,105,91,49,93,44,116,104,105,115,44,101,41,125,125,41,125,44,65,110,46,99,111,110,102,111,114,109,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,118,116,40,95,116,40,110,44,49,41,41,125,44,65,110,46,99,111,110,115,116,97,110,116,61,84,117,44,10,65,110,46,99,111,117,110,116,66,121,61,36,111,44,65,110,46,99,114,101,97,116,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,101,111,40,110,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,114,58,97,116,40,114,44,116,41,125,44,65,110,46,99,117,114,114,121,61,105,117,44,65,110,46,99,117,114,114,121,82,105,103,104,116,61,111,117,44,65,110,46,100,101,98,111,117,110,99,101,61,102,117,44,65,110,46,100,101,102,97,117,108,116,115,61,119,102,44,65,110,46,100,101,102,97,117,108,116,115,68,101,101,112,61,109,102,44,65,110,46,100,101,102,101,114,61,89,111,44,65,110,46,100,101,108,97,121,61,81,111,44,65,110,46,100,105,102,102,101,114,101,110,99,101,61,119,111,44,65,110,46,100,105,102,102,101,114,101,110,99,101,66,121,61,109,111,44,65,110,46,100,105,102,102,101,114,101,110,99,101,87,105,116,104,61,65,111,44,65,110,46,100,114,111,112,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,116,61,114,124,124,116,61,61,61,84,63,49,58,69,117,40,116,41,44,104,114,40,110,44,48,62,116,63,48,58,116,44,101,41,41,58,91,93,125,44,65,110,46,100,114,111,112,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,116,61,114,124,124,116,61,61,61,84,63,49,58,69,117,40,116,41,44,116,61,101,45,116,44,104,114,40,110,44,48,44,48,62,116,63,48,58,116,41,41,58,91,93,125,44,65,110,46,100,114,111,112,82,105,103,104,116,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,106,114,40,110,44,121,101,40,116,44,51,41,44,116,114,117,101,44,116,114,117,101,41,58,91,93,59,10,125,44,65,110,46,100,114,111,112,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,106,114,40,110,44,121,101,40,116,44,51,41,44,116,114,117,101,41,58,91,93,125,44,65,110,46,102,105,108,108,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,105,102,40,33,117,41,114,101,116,117,114,110,91,93,59,102,111,114,40,114,38,38,116,121,112,101,111,102,32,114,33,61,34,110,117,109,98,101,114,34,38,38,79,101,40,110,44,116,44,114,41,38,38,40,114,61,48,44,101,61,117,41,44,117,61,110,46,108,101,110,103,116,104,44,114,61,69,117,40,114,41,44,48,62,114,38,38,40,114,61,45,114,62,117,63,48,58,117,43,114,41,44,101,61,101,61,61,61,84,124,124,101,62,117,63,117,58,69,117,40,101,41,44,48,62,101,38,38,40,101,43,61,117,41,44,101,61,114,62,101,63,48,58,107,117,40,101,41,59,114,60,101,59,41,110,91,114,43,43,93,61,116,59,114,101,116,117,114,110,32,110,125,44,65,110,46,102,105,108,116,101,114,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,105,58,106,116,41,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,102,108,97,116,77,97,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,119,116,40,114,117,40,110,44,116,41,44,49,41,125,44,65,110,46,102,108,97,116,77,97,112,68,101,101,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,119,116,40,114,117,40,110,44,116,41,44,36,41,125,44,65,110,46,102,108,97,116,77,97,112,68,101,112,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,114,61,114,61,61,61,84,63,49,58,69,117,40,114,41,44,10,119,116,40,114,117,40,110,44,116,41,44,114,41,125,44,65,110,46,102,108,97,116,116,101,110,61,90,101,44,65,110,46,102,108,97,116,116,101,110,68,101,101,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,41,63,119,116,40,110,44,36,41,58,91,93,125,44,65,110,46,102,108,97,116,116,101,110,68,101,112,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,110,46,108,101,110,103,116,104,63,40,116,61,116,61,61,61,84,63,49,58,69,117,40,116,41,44,119,116,40,110,44,116,41,41,58,91,93,125,44,65,110,46,102,108,105,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,102,101,40,110,44,53,49,50,41,125,44,65,110,46,102,108,111,119,61,80,102,44,65,110,46,102,108,111,119,82,105,103,104,116,61,90,102,44,65,110,46,102,114,111,109,80,97,105,114,115,61,102,117,110,99,116,105,111,110,40,110,41,123,102,111,114,40,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,101,61,123,125,59,43,43,116,60,114,59,41,123,118,97,114,32,117,61,110,91,116,93,59,101,91,117,91,48,93,93,61,117,91,49,93,125,114,101,116,117,114,110,32,101,125,44,65,110,46,102,117,110,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,69,116,40,110,44,87,117,40,110,41,41,125,44,65,110,46,102,117,110,99,116,105,111,110,115,73,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,69,116,40,110,44,66,117,40,110,41,41,125,44,65,110,46,103,114,111,117,112,66,121,61,80,111,44,65,110,46,105,110,105,116,105,97,108,61,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,40,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,41,63,104,114,40,110,44,48,44,45,49,41,58,91,93,125,44,65,110,46,105,110,116,101,114,115,101,99,116,105,111,110,61,69,111,44,65,110,46,105,110,116,101,114,115,101,99,116,105,111,110,66,121,61,107,111,44,65,110,46,105,110,116,101,114,115,101,99,116,105,111,110,87,105,116,104,61,83,111,44,65,110,46,105,110,118,101,114,116,61,65,102,44,65,110,46,105,110,118,101,114,116,66,121,61,69,102,44,65,110,46,105,110,118,111,107,101,77,97,112,61,90,111,44,65,110,46,105,116,101,114,97,116,101,101,61,70,117,44,65,110,46,107,101,121,66,121,61,113,111,44,65,110,46,107,101,121,115,61,87,117,44,65,110,46,107,101,121,115,73,110,61,66,117,44,65,110,46,109,97,112,61,114,117,44,65,110,46,109,97,112,75,101,121,115,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,123,125,59,114,101,116,117,114,110,32,116,61,121,101,40,116,44,51,41,44,109,116,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,115,116,40,114,44,116,40,110,44,101,44,117,41,44,110,41,125,41,44,114,125,44,65,110,46,109,97,112,86,97,108,117,101,115,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,123,125,59,114,101,116,117,114,110,32,116,61,121,101,40,116,44,51,41,44,109,116,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,115,116,40,114,44,101,44,116,40,110,44,101,44,117,41,41,125,41,44,114,125,44,65,110,46,109,97,116,99,104,101,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,72,116,40,95,116,40,110,44,49,41,41,125,44,65,110,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,74,116,40,110,44,95,116,40,116,44,49,41,41,125,44,65,110,46,109,101,109,111,105,122,101,61,99,117,44,10,65,110,46,109,101,114,103,101,61,83,102,44,65,110,46,109,101,114,103,101,87,105,116,104,61,79,102,44,65,110,46,109,101,116,104,111,100,61,113,102,44,65,110,46,109,101,116,104,111,100,79,102,61,86,102,44,65,110,46,109,105,120,105,110,61,78,117,44,65,110,46,110,101,103,97,116,101,61,97,117,44,65,110,46,110,116,104,65,114,103,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,61,69,117,40,110,41,44,102,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,81,116,40,116,44,110,41,125,41,125,44,65,110,46,111,109,105,116,61,73,102,44,65,110,46,111,109,105,116,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,76,117,40,110,44,97,117,40,121,101,40,116,41,41,41,125,44,65,110,46,111,110,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,117,117,40,50,44,110,41,125,44,65,110,46,111,114,100,101,114,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,40,102,102,40,116,41,124,124,40,116,61,110,117,108,108,61,61,116,63,91,93,58,91,116,93,41,44,114,61,101,63,84,58,114,44,102,102,40,114,41,124,124,40,114,61,110,117,108,108,61,61,114,63,91,93,58,91,114,93,41,44,88,116,40,110,44,116,44,114,41,41,125,44,65,110,46,111,118,101,114,61,75,102,44,65,110,46,111,118,101,114,65,114,103,115,61,88,111,44,65,110,46,111,118,101,114,69,118,101,114,121,61,71,102,44,65,110,46,111,118,101,114,83,111,109,101,61,72,102,44,65,110,46,112,97,114,116,105,97,108,61,110,102,44,65,110,46,112,97,114,116,105,97,108,82,105,103,104,116,61,116,102,44,65,110,46,112,97,114,116,105,116,105,111,110,61,86,111,44,65,110,46,112,105,99,107,61,82,102,44,65,110,46,112,105,99,107,66,121,61,76,117,44,65,110,46,112,114,111,112,101,114,116,121,61,90,117,44,10,65,110,46,112,114,111,112,101,114,116,121,79,102,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,84,58,107,116,40,110,44,116,41,125,125,44,65,110,46,112,117,108,108,61,79,111,44,65,110,46,112,117,108,108,65,108,108,61,75,101,44,65,110,46,112,117,108,108,65,108,108,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,38,38,116,38,38,116,46,108,101,110,103,116,104,63,101,114,40,110,44,116,44,121,101,40,114,44,50,41,41,58,110,125,44,65,110,46,112,117,108,108,65,108,108,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,38,38,116,38,38,116,46,108,101,110,103,116,104,63,101,114,40,110,44,116,44,84,44,114,41,58,110,125,44,65,110,46,112,117,108,108,65,116,61,73,111,44,65,110,46,114,97,110,103,101,61,74,102,44,65,110,46,114,97,110,103,101,82,105,103,104,116,61,89,102,44,65,110,46,114,101,97,114,103,61,114,102,44,65,110,46,114,101,106,101,99,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,105,58,106,116,41,40,110,44,97,117,40,121,101,40,116,44,51,41,41,41,125,44,65,110,46,114,101,109,111,118,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,91,93,59,105,102,40,33,110,124,124,33,110,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,114,59,118,97,114,32,101,61,45,49,44,117,61,91,93,44,105,61,110,46,108,101,110,103,116,104,59,102,111,114,40,116,61,121,101,40,116,44,51,41,59,43,43,101,60,105,59,41,123,118,97,114,32,111,61,110,91,101,93,59,116,40,111,44,101,44,110,41,38,38,40,114,46,112,117,115,104,40,111,41,44,10,117,46,112,117,115,104,40,101,41,41,125,114,101,116,117,114,110,32,117,114,40,110,44,117,41,44,114,125,44,65,110,46,114,101,115,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,116,61,116,61,61,61,84,63,116,58,69,117,40,116,41,44,102,114,40,110,44,116,41,125,44,65,110,46,114,101,118,101,114,115,101,61,71,101,44,65,110,46,115,97,109,112,108,101,83,105,122,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,40,114,63,79,101,40,110,44,116,44,114,41,58,116,61,61,61,84,41,63,49,58,69,117,40,116,41,44,40,102,102,40,110,41,63,101,116,58,97,114,41,40,110,44,116,41,125,44,65,110,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,108,114,40,110,44,116,44,114,41,125,44,65,110,46,115,101,116,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,101,61,116,121,112,101,111,102,32,101,61,61,34,102,117,110,99,116,105,111,110,34,63,101,58,84,44,110,117,108,108,61,61,110,63,110,58,108,114,40,110,44,116,44,114,44,101,41,125,44,65,110,46,115,104,117,102,102,108,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,117,116,58,115,114,41,40,110,41,125,44,65,110,46,115,108,105,99,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,114,38,38,116,121,112,101,111,102,32,114,33,61,34,110,117,109,98,101,114,34,38,38,79,101,40,110,44,116,44,114,41,63,40,116,61,48,44,10,114,61,101,41,58,40,116,61,110,117,108,108,61,61,116,63,48,58,69,117,40,116,41,44,114,61,114,61,61,61,84,63,101,58,69,117,40,114,41,41,44,104,114,40,110,44,116,44,114,41,41,58,91,93,125,44,65,110,46,115,111,114,116,66,121,61,75,111,44,65,110,46,115,111,114,116,101,100,85,110,105,113,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,103,114,40,110,41,58,91,93,125,44,65,110,46,115,111,114,116,101,100,85,110,105,113,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,103,114,40,110,44,121,101,40,116,44,50,41,41,58,91,93,125,44,65,110,46,115,112,108,105,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,114,38,38,116,121,112,101,111,102,32,114,33,61,34,110,117,109,98,101,114,34,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,114,61,84,41,44,114,61,114,61,61,61,84,63,52,50,57,52,57,54,55,50,57,53,58,114,62,62,62,48,44,114,63,40,110,61,73,117,40,110,41,41,38,38,40,116,121,112,101,111,102,32,116,61,61,34,115,116,114,105,110,103,34,124,124,110,117,108,108,33,61,116,38,38,33,104,102,40,116,41,41,38,38,40,116,61,121,114,40,116,41,44,33,116,38,38,82,110,46,116,101,115,116,40,110,41,41,63,79,114,40,77,40,110,41,44,48,44,114,41,58,110,46,115,112,108,105,116,40,116,44,114,41,58,91,93,125,44,65,110,46,115,112,114,101,97,100,61,102,117,110,99,116,105,111,110,40,116,44,114,41,123,105,102,40,116,121,112,101,111,102,32,116,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,114,61,110,117,108,108,61,61,114,63,48,58,85,105,40,69,117,40,114,41,44,48,41,44,10,102,114,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,117,61,101,91,114,93,59,114,101,116,117,114,110,32,101,61,79,114,40,101,44,48,44,114,41,44,117,38,38,97,40,101,44,117,41,44,110,40,116,44,116,104,105,115,44,101,41,125,41,125,44,65,110,46,116,97,105,108,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,63,104,114,40,110,44,49,44,116,41,58,91,93,125,44,65,110,46,116,97,107,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,40,116,61,114,124,124,116,61,61,61,84,63,49,58,69,117,40,116,41,44,104,114,40,110,44,48,44,48,62,116,63,48,58,116,41,41,58,91,93,125,44,65,110,46,116,97,107,101,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,116,61,114,124,124,116,61,61,61,84,63,49,58,69,117,40,116,41,44,116,61,101,45,116,44,104,114,40,110,44,48,62,116,63,48,58,116,44,101,41,41,58,91,93,125,44,65,110,46,116,97,107,101,82,105,103,104,116,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,106,114,40,110,44,121,101,40,116,44,51,41,44,102,97,108,115,101,44,116,114,117,101,41,58,91,93,125,44,65,110,46,116,97,107,101,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,106,114,40,110,44,121,101,40,116,44,51,41,41,58,91,93,125,44,65,110,46,116,97,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,40,110,41,44,10,110,125,44,65,110,46,116,104,114,111,116,116,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,116,114,117,101,44,117,61,116,114,117,101,59,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,100,117,40,114,41,38,38,40,101,61,34,108,101,97,100,105,110,103,34,105,110,32,114,63,33,33,114,46,108,101,97,100,105,110,103,58,101,44,117,61,34,116,114,97,105,108,105,110,103,34,105,110,32,114,63,33,33,114,46,116,114,97,105,108,105,110,103,58,117,41,44,102,117,40,110,44,116,44,123,108,101,97,100,105,110,103,58,101,44,109,97,120,87,97,105,116,58,116,44,116,114,97,105,108,105,110,103,58,117,125,41,125,44,65,110,46,116,104,114,117,61,81,101,44,65,110,46,116,111,65,114,114,97,121,61,109,117,44,65,110,46,116,111,80,97,105,114,115,61,122,102,44,65,110,46,116,111,80,97,105,114,115,73,110,61,87,102,44,65,110,46,116,111,80,97,116,104,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,102,102,40,110,41,63,99,40,110,44,77,101,41,58,119,117,40,110,41,63,91,110,93,58,85,114,40,106,111,40,73,117,40,110,41,41,41,125,44,65,110,46,116,111,80,108,97,105,110,79,98,106,101,99,116,61,79,117,44,65,110,46,116,114,97,110,115,102,111,114,109,61,102,117,110,99,116,105,111,110,40,110,44,116,44,101,41,123,118,97,114,32,117,61,102,102,40,110,41,44,105,61,117,124,124,97,102,40,110,41,124,124,95,102,40,110,41,59,105,102,40,116,61,121,101,40,116,44,52,41,44,110,117,108,108,61,61,101,41,123,118,97,114,32,111,61,110,38,38,110,46,99,111,110,115,116,114,117,99,116,111,114,59,101,61,105,63,117,63,110,101,119,32,111,58,91,93,58,100,117,40,110,41,38,38,95,117,40,111,41,63,101,111,40,100,105,40,110,41,41,58,123,125,59,10,125,114,101,116,117,114,110,40,105,63,114,58,109,116,41,40,110,44,102,117,110,99,116,105,111,110,40,110,44,114,44,117,41,123,114,101,116,117,114,110,32,116,40,101,44,110,44,114,44,117,41,125,41,44,101,125,44,65,110,46,117,110,97,114,121,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,101,117,40,110,44,49,41,125,44,65,110,46,117,110,105,111,110,61,82,111,44,65,110,46,117,110,105,111,110,66,121,61,122,111,44,65,110,46,117,110,105,111,110,87,105,116,104,61,87,111,44,65,110,46,117,110,105,113,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,98,114,40,110,41,58,91,93,125,44,65,110,46,117,110,105,113,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,98,114,40,110,44,121,101,40,116,44,50,41,41,58,91,93,125,44,65,110,46,117,110,105,113,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,44,110,38,38,110,46,108,101,110,103,116,104,63,98,114,40,110,44,84,44,116,41,58,91,93,125,44,65,110,46,117,110,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,124,124,120,114,40,110,44,116,41,125,44,65,110,46,117,110,122,105,112,61,72,101,44,65,110,46,117,110,122,105,112,87,105,116,104,61,74,101,44,65,110,46,117,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,108,114,40,110,44,116,44,107,114,40,114,41,40,107,116,40,110,44,116,41,41,44,118,111,105,100,32,48,41,125,44,65,110,46,117,112,100,97,116,101,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,10,114,101,116,117,114,110,32,101,61,116,121,112,101,111,102,32,101,61,61,34,102,117,110,99,116,105,111,110,34,63,101,58,84,44,110,117,108,108,33,61,110,38,38,40,110,61,108,114,40,110,44,116,44,107,114,40,114,41,40,107,116,40,110,44,116,41,41,44,101,41,41,44,110,125,44,65,110,46,118,97,108,117,101,115,61,85,117,44,65,110,46,118,97,108,117,101,115,73,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,83,40,110,44,66,117,40,110,41,41,125,44,65,110,46,119,105,116,104,111,117,116,61,66,111,44,65,110,46,119,111,114,100,115,61,77,117,44,65,110,46,119,114,97,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,102,40,107,114,40,116,41,44,110,41,125,44,65,110,46,120,111,114,61,76,111,44,65,110,46,120,111,114,66,121,61,85,111,44,65,110,46,120,111,114,87,105,116,104,61,67,111,44,65,110,46,122,105,112,61,68,111,44,65,110,46,122,105,112,79,98,106,101,99,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,65,114,40,110,124,124,91,93,44,116,124,124,91,93,44,111,116,41,125,44,65,110,46,122,105,112,79,98,106,101,99,116,68,101,101,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,65,114,40,110,124,124,91,93,44,116,124,124,91,93,44,108,114,41,125,44,65,110,46,122,105,112,87,105,116,104,61,77,111,44,65,110,46,101,110,116,114,105,101,115,61,122,102,44,65,110,46,101,110,116,114,105,101,115,73,110,61,87,102,44,65,110,46,101,120,116,101,110,100,61,121,102,44,65,110,46,101,120,116,101,110,100,87,105,116,104,61,98,102,44,78,117,40,65,110,44,65,110,41,44,65,110,46,97,100,100,61,81,102,44,65,110,46,97,116,116,101,109,112,116,61,70,102,44,65,110,46,99,97,109,101,108,67,97,115,101,61,66,102,44,65,110,46,99,97,112,105,116,97,108,105,122,101,61,67,117,44,10,65,110,46,99,101,105,108,61,88,102,44,65,110,46,99,108,97,109,112,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,114,61,61,61,84,38,38,40,114,61,116,44,116,61,84,41,44,114,33,61,61,84,38,38,40,114,61,83,117,40,114,41,44,114,61,114,61,61,61,114,63,114,58,48,41,44,116,33,61,61,84,38,38,40,116,61,83,117,40,116,41,44,116,61,116,61,61,61,116,63,116,58,48,41,44,112,116,40,83,117,40,110,41,44,116,44,114,41,125,44,65,110,46,99,108,111,110,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,95,116,40,110,44,52,41,125,44,65,110,46,99,108,111,110,101,68,101,101,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,95,116,40,110,44,53,41,125,44,65,110,46,99,108,111,110,101,68,101,101,112,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,44,95,116,40,110,44,53,44,116,41,125,44,65,110,46,99,108,111,110,101,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,44,95,116,40,110,44,52,44,116,41,125,44,65,110,46,99,111,110,102,111,114,109,115,84,111,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,124,124,103,116,40,110,44,116,44,87,117,40,116,41,41,125,44,65,110,46,100,101,98,117,114,114,61,68,117,44,65,110,46,100,101,102,97,117,108,116,84,111,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,124,124,110,33,61,61,110,63,116,58,110,125,44,65,110,46,100,105,118,105,100,101,61,110,99,44,65,110,46,101,110,100,115,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,10,110,61,73,117,40,110,41,44,116,61,121,114,40,116,41,59,118,97,114,32,101,61,110,46,108,101,110,103,116,104,44,101,61,114,61,114,61,61,61,84,63,101,58,112,116,40,69,117,40,114,41,44,48,44,101,41,59,114,101,116,117,114,110,32,114,45,61,116,46,108,101,110,103,116,104,44,48,60,61,114,38,38,110,46,115,108,105,99,101,40,114,44,101,41,61,61,116,125,44,65,110,46,101,113,61,108,117,44,65,110,46,101,115,99,97,112,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,72,46,116,101,115,116,40,110,41,63,110,46,114,101,112,108,97,99,101,40,75,44,110,116,41,58,110,125,44,65,110,46,101,115,99,97,112,101,82,101,103,69,120,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,101,110,46,116,101,115,116,40,110,41,63,110,46,114,101,112,108,97,99,101,40,114,110,44,34,92,92,36,38,34,41,58,110,125,44,65,110,46,101,118,101,114,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,102,102,40,110,41,63,117,58,98,116,59,114,101,116,117,114,110,32,114,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,84,41,44,101,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,102,105,110,100,61,70,111,44,65,110,46,102,105,110,100,73,110,100,101,120,61,78,101,44,65,110,46,102,105,110,100,75,101,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,112,40,110,44,121,101,40,116,44,51,41,44,109,116,41,125,44,65,110,46,102,105,110,100,76,97,115,116,61,78,111,44,65,110,46,102,105,110,100,76,97,115,116,73,110,100,101,120,61,80,101,44,65,110,46,102,105,110,100,76,97,115,116,75,101,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,112,40,110,44,121,101,40,116,44,51,41,44,65,116,41,59,10,125,44,65,110,46,102,108,111,111,114,61,116,99,44,65,110,46,102,111,114,69,97,99,104,61,110,117,44,65,110,46,102,111,114,69,97,99,104,82,105,103,104,116,61,116,117,44,65,110,46,102,111,114,73,110,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,111,111,40,110,44,121,101,40,116,44,51,41,44,66,117,41,125,44,65,110,46,102,111,114,73,110,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,102,111,40,110,44,121,101,40,116,44,51,41,44,66,117,41,125,44,65,110,46,102,111,114,79,119,110,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,109,116,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,102,111,114,79,119,110,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,65,116,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,103,101,116,61,82,117,44,65,110,46,103,116,61,101,102,44,65,110,46,103,116,101,61,117,102,44,65,110,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,119,101,40,110,44,116,44,82,116,41,125,44,65,110,46,104,97,115,73,110,61,122,117,44,65,110,46,104,101,97,100,61,113,101,44,65,110,46,105,100,101,110,116,105,116,121,61,36,117,44,65,110,46,105,110,99,108,117,100,101,115,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,110,61,115,117,40,110,41,63,110,58,85,117,40,110,41,44,114,61,114,38,38,33,101,63,69,117,40,114,41,58,48,44,101,61,110,46,108,101,110,103,116,104,44,48,62,114,38,38,40,114,61,85,105,40,101,43,114,44,48,41,41,44,106,117,40,110,41,63,114,60,61,101,38,38,45,49,60,110,46,105,110,100,101,120,79,102,40,116,44,114,41,58,33,33,101,38,38,45,49,60,118,40,110,44,116,44,114,41,59,10,125,44,65,110,46,105,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,114,61,110,117,108,108,61,61,114,63,48,58,69,117,40,114,41,44,48,62,114,38,38,40,114,61,85,105,40,101,43,114,44,48,41,41,44,118,40,110,44,116,44,114,41,41,58,45,49,125,44,65,110,46,105,110,82,97,110,103,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,65,117,40,116,41,44,114,61,61,61,84,63,40,114,61,116,44,116,61,48,41,58,114,61,65,117,40,114,41,44,110,61,83,117,40,110,41,44,110,62,61,67,105,40,116,44,114,41,38,38,110,60,85,105,40,116,44,114,41,125,44,65,110,46,105,110,118,111,107,101,61,107,102,44,65,110,46,105,115,65,114,103,117,109,101,110,116,115,61,111,102,44,65,110,46,105,115,65,114,114,97,121,61,102,102,44,65,110,46,105,115,65,114,114,97,121,66,117,102,102,101,114,61,99,102,44,65,110,46,105,115,65,114,114,97,121,76,105,107,101,61,115,117,44,65,110,46,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,61,104,117,44,65,110,46,105,115,66,111,111,108,101,97,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,114,117,101,61,61,61,110,124,124,102,97,108,115,101,61,61,61,110,124,124,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,61,61,79,116,40,110,41,125,44,65,110,46,105,115,66,117,102,102,101,114,61,97,102,44,65,110,46,105,115,68,97,116,101,61,108,102,44,65,110,46,105,115,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,33,120,117,40,110,41,125,44,65,110,46,105,115,69,109,112,116,121,61,102,117,110,99,116,105,111,110,40,110,41,123,10,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,32,116,114,117,101,59,105,102,40,115,117,40,110,41,38,38,40,102,102,40,110,41,124,124,116,121,112,101,111,102,32,110,61,61,34,115,116,114,105,110,103,34,124,124,116,121,112,101,111,102,32,110,46,115,112,108,105,99,101,61,61,34,102,117,110,99,116,105,111,110,34,124,124,97,102,40,110,41,124,124,95,102,40,110,41,124,124,111,102,40,110,41,41,41,114,101,116,117,114,110,33,110,46,108,101,110,103,116,104,59,118,97,114,32,116,61,118,111,40,110,41,59,105,102,40,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,116,124,124,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,116,41,114,101,116,117,114,110,33,110,46,115,105,122,101,59,105,102,40,122,101,40,110,41,41,114,101,116,117,114,110,33,86,116,40,110,41,46,108,101,110,103,116,104,59,102,111,114,40,118,97,114,32,114,32,105,110,32,110,41,105,102,40,111,105,46,99,97,108,108,40,110,44,114,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,114,101,116,117,114,110,32,116,114,117,101,125,44,65,110,46,105,115,69,113,117,97,108,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,77,116,40,110,44,116,41,125,44,65,110,46,105,115,69,113,117,97,108,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,40,114,61,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,63,114,58,84,41,63,114,40,110,44,116,41,58,84,59,114,101,116,117,114,110,32,101,61,61,61,84,63,77,116,40,110,44,116,44,84,44,114,41,58,33,33,101,125,44,65,110,46,105,115,69,114,114,111,114,61,112,117,44,65,110,46,105,115,70,105,110,105,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,38,38,87,105,40,110,41,125,44,65,110,46,105,115,70,117,110,99,116,105,111,110,61,95,117,44,10,65,110,46,105,115,73,110,116,101,103,101,114,61,118,117,44,65,110,46,105,115,76,101,110,103,116,104,61,103,117,44,65,110,46,105,115,77,97,112,61,115,102,44,65,110,46,105,115,77,97,116,99,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,61,61,61,116,124,124,36,116,40,110,44,116,44,120,101,40,116,41,41,125,44,65,110,46,105,115,77,97,116,99,104,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,114,61,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,63,114,58,84,44,36,116,40,110,44,116,44,120,101,40,116,41,44,114,41,125,44,65,110,46,105,115,78,97,78,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,98,117,40,110,41,38,38,110,33,61,43,110,125,44,65,110,46,105,115,78,97,116,105,118,101,61,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,103,111,40,110,41,41,116,104,114,111,119,32,110,101,119,32,72,117,40,34,85,110,115,117,112,112,111,114,116,101,100,32,99,111,114,101,45,106,115,32,117,115,101,46,32,84,114,121,32,104,116,116,112,115,58,47,47,110,112,109,115,46,105,111,47,115,101,97,114,99,104,63,113,61,112,111,110,121,102,105,108,108,46,34,41,59,114,101,116,117,114,110,32,70,116,40,110,41,125,44,65,110,46,105,115,78,105,108,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,125,44,65,110,46,105,115,78,117,108,108,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,61,110,125,44,65,110,46,105,115,78,117,109,98,101,114,61,98,117,44,65,110,46,105,115,79,98,106,101,99,116,61,100,117,44,65,110,46,105,115,79,98,106,101,99,116,76,105,107,101,61,121,117,44,65,110,46,105,115,80,108,97,105,110,79,98,106,101,99,116,61,120,117,44,65,110,46,105,115,82,101,103,69,120,112,61,104,102,44,10,65,110,46,105,115,83,97,102,101,73,110,116,101,103,101,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,118,117,40,110,41,38,38,45,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,60,61,110,38,38,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,62,61,110,125,44,65,110,46,105,115,83,101,116,61,112,102,44,65,110,46,105,115,83,116,114,105,110,103,61,106,117,44,65,110,46,105,115,83,121,109,98,111,108,61,119,117,44,65,110,46,105,115,84,121,112,101,100,65,114,114,97,121,61,95,102,44,65,110,46,105,115,85,110,100,101,102,105,110,101,100,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,61,61,61,84,125,44,65,110,46,105,115,87,101,97,107,77,97,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,61,61,118,111,40,110,41,125,44,65,110,46,105,115,87,101,97,107,83,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,87,101,97,107,83,101,116,93,34,61,61,79,116,40,110,41,125,44,65,110,46,106,111,105,110,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,34,34,58,66,105,46,99,97,108,108,40,110,44,116,41,125,44,65,110,46,107,101,98,97,98,67,97,115,101,61,76,102,44,65,110,46,108,97,115,116,61,86,101,44,65,110,46,108,97,115,116,73,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,105,102,40,33,101,41,114,101,116,117,114,110,45,49,59,118,97,114,32,117,61,101,59,105,102,40,114,33,61,61,84,38,38,40,117,61,69,117,40,114,41,44,117,61,48,62,117,63,85,105,40,101,43,117,44,48,41,58,67,105,40,117,44,101,45,49,41,41,44,10,116,61,61,61,116,41,123,102,111,114,40,114,61,117,43,49,59,114,45,45,38,38,110,91,114,93,33,61,61,116,59,41,59,110,61,114,125,101,108,115,101,32,110,61,95,40,110,44,100,44,117,44,116,114,117,101,41,59,114,101,116,117,114,110,32,110,125,44,65,110,46,108,111,119,101,114,67,97,115,101,61,85,102,44,65,110,46,108,111,119,101,114,70,105,114,115,116,61,67,102,44,65,110,46,108,116,61,118,102,44,65,110,46,108,116,101,61,103,102,44,65,110,46,109,97,120,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,120,116,40,110,44,36,117,44,73,116,41,58,84,125,44,65,110,46,109,97,120,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,120,116,40,110,44,121,101,40,116,44,50,41,44,73,116,41,58,84,125,44,65,110,46,109,101,97,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,40,110,44,36,117,41,125,44,65,110,46,109,101,97,110,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,121,40,110,44,121,101,40,116,44,50,41,41,125,44,65,110,46,109,105,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,120,116,40,110,44,36,117,44,75,116,41,58,84,125,44,65,110,46,109,105,110,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,120,116,40,110,44,121,101,40,116,44,50,41,44,75,116,41,58,84,125,44,65,110,46,115,116,117,98,65,114,114,97,121,61,113,117,44,65,110,46,115,116,117,98,70,97,108,115,101,61,86,117,44,65,110,46,115,116,117,98,79,98,106,101,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,125,125,44,65,110,46,115,116,117,98,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,10,114,101,116,117,114,110,34,34,125,44,65,110,46,115,116,117,98,84,114,117,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,114,117,101,125,44,65,110,46,109,117,108,116,105,112,108,121,61,114,99,44,65,110,46,110,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,81,116,40,110,44,69,117,40,116,41,41,58,84,125,44,65,110,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,110,46,95,61,61,61,116,104,105,115,38,38,40,36,110,46,95,61,115,105,41,44,116,104,105,115,125,44,65,110,46,110,111,111,112,61,80,117,44,65,110,46,110,111,119,61,71,111,44,65,110,46,112,97,100,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,61,73,117,40,110,41,59,118,97,114,32,101,61,40,116,61,69,117,40,116,41,41,63,68,40,110,41,58,48,59,114,101,116,117,114,110,33,116,124,124,101,62,61,116,63,110,58,40,116,61,40,116,45,101,41,47,50,44,110,101,40,73,105,40,116,41,44,114,41,43,110,43,110,101,40,79,105,40,116,41,44,114,41,41,125,44,65,110,46,112,97,100,69,110,100,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,61,73,117,40,110,41,59,118,97,114,32,101,61,40,116,61,69,117,40,116,41,41,63,68,40,110,41,58,48,59,114,101,116,117,114,110,32,116,38,38,101,60,116,63,110,43,110,101,40,116,45,101,44,114,41,58,110,125,44,65,110,46,112,97,100,83,116,97,114,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,61,73,117,40,110,41,59,118,97,114,32,101,61,40,116,61,69,117,40,116,41,41,63,68,40,110,41,58,48,59,114,101,116,117,114,110,32,116,38,38,101,60,116,63,110,101,40,116,45,101,44,114,41,43,110,58,110,125,44,65,110,46,112,97,114,115,101,73,110,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,10,114,101,116,117,114,110,32,114,124,124,110,117,108,108,61,61,116,63,116,61,48,58,116,38,38,40,116,61,43,116,41,44,77,105,40,73,117,40,110,41,46,114,101,112,108,97,99,101,40,111,110,44,34,34,41,44,116,124,124,48,41,125,44,65,110,46,114,97,110,100,111,109,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,105,102,40,114,38,38,116,121,112,101,111,102,32,114,33,61,34,98,111,111,108,101,97,110,34,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,114,61,84,41,44,114,61,61,61,84,38,38,40,116,121,112,101,111,102,32,116,61,61,34,98,111,111,108,101,97,110,34,63,40,114,61,116,44,116,61,84,41,58,116,121,112,101,111,102,32,110,61,61,34,98,111,111,108,101,97,110,34,38,38,40,114,61,110,44,110,61,84,41,41,44,110,61,61,61,84,38,38,116,61,61,61,84,63,40,110,61,48,44,116,61,49,41,58,40,110,61,65,117,40,110,41,44,116,61,61,61,84,63,40,116,61,110,44,110,61,48,41,58,116,61,65,117,40,116,41,41,44,110,62,116,41,123,118,97,114,32,101,61,110,59,110,61,116,44,116,61,101,125,114,101,116,117,114,110,32,114,124,124,110,37,49,124,124,116,37,49,63,40,114,61,84,105,40,41,44,67,105,40,110,43,114,42,40,116,45,110,43,67,110,40,34,49,101,45,34,43,40,40,114,43,34,34,41,46,108,101,110,103,116,104,45,49,41,41,41,44,116,41,41,58,105,114,40,110,44,116,41,125,44,65,110,46,114,101,100,117,99,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,102,102,40,110,41,63,108,58,106,44,117,61,51,62,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,40,110,44,121,101,40,116,44,52,41,44,114,44,117,44,117,111,41,125,44,65,110,46,114,101,100,117,99,101,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,102,102,40,110,41,63,115,58,106,44,117,61,51,62,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,10,114,101,116,117,114,110,32,101,40,110,44,121,101,40,116,44,52,41,44,114,44,117,44,105,111,41,125,44,65,110,46,114,101,112,101,97,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,40,114,63,79,101,40,110,44,116,44,114,41,58,116,61,61,61,84,41,63,49,58,69,117,40,116,41,44,111,114,40,73,117,40,110,41,44,116,41,125,44,65,110,46,114,101,112,108,97,99,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,44,116,61,73,117,40,110,91,48,93,41,59,114,101,116,117,114,110,32,51,62,110,46,108,101,110,103,116,104,63,116,58,116,46,114,101,112,108,97,99,101,40,110,91,49,93,44,110,91,50,93,41,125,44,65,110,46,114,101,115,117,108,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,116,61,83,114,40,116,44,110,41,59,118,97,114,32,101,61,45,49,44,117,61,116,46,108,101,110,103,116,104,59,102,111,114,40,117,124,124,40,117,61,49,44,110,61,84,41,59,43,43,101,60,117,59,41,123,118,97,114,32,105,61,110,117,108,108,61,61,110,63,84,58,110,91,77,101,40,116,91,101,93,41,93,59,105,61,61,61,84,38,38,40,101,61,117,44,105,61,114,41,44,110,61,95,117,40,105,41,63,105,46,99,97,108,108,40,110,41,58,105,125,114,101,116,117,114,110,32,110,125,44,65,110,46,114,111,117,110,100,61,101,99,44,65,110,46,114,117,110,73,110,67,111,110,116,101,120,116,61,120,44,65,110,46,115,97,109,112,108,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,81,110,58,99,114,41,40,110,41,125,44,65,110,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,32,48,59,105,102,40,115,117,40,110,41,41,114,101,116,117,114,110,32,106,117,40,110,41,63,68,40,110,41,58,110,46,108,101,110,103,116,104,59,10,118,97,114,32,116,61,118,111,40,110,41,59,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,116,124,124,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,116,63,110,46,115,105,122,101,58,86,116,40,110,41,46,108,101,110,103,116,104,125,44,65,110,46,115,110,97,107,101,67,97,115,101,61,68,102,44,65,110,46,115,111,109,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,102,102,40,110,41,63,104,58,112,114,59,114,101,116,117,114,110,32,114,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,84,41,44,101,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,115,111,114,116,101,100,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,95,114,40,110,44,116,41,125,44,65,110,46,115,111,114,116,101,100,73,110,100,101,120,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,118,114,40,110,44,116,44,121,101,40,114,44,50,41,41,125,44,65,110,46,115,111,114,116,101,100,73,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,105,102,40,114,41,123,118,97,114,32,101,61,95,114,40,110,44,116,41,59,105,102,40,101,60,114,38,38,108,117,40,110,91,101,93,44,116,41,41,114,101,116,117,114,110,32,101,125,114,101,116,117,114,110,45,49,125,44,65,110,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,95,114,40,110,44,116,44,116,114,117,101,41,125,44,65,110,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,118,114,40,110,44,116,44,121,101,40,114,44,50,41,44,116,114,117,101,41,59,10,125,44,65,110,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,41,123,118,97,114,32,114,61,95,114,40,110,44,116,44,116,114,117,101,41,45,49,59,105,102,40,108,117,40,110,91,114,93,44,116,41,41,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,45,49,125,44,65,110,46,115,116,97,114,116,67,97,115,101,61,77,102,44,65,110,46,115,116,97,114,116,115,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,61,73,117,40,110,41,44,114,61,110,117,108,108,61,61,114,63,48,58,112,116,40,69,117,40,114,41,44,48,44,110,46,108,101,110,103,116,104,41,44,116,61,121,114,40,116,41,44,110,46,115,108,105,99,101,40,114,44,114,43,116,46,108,101,110,103,116,104,41,61,61,116,125,44,65,110,46,115,117,98,116,114,97,99,116,61,117,99,44,65,110,46,115,117,109,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,109,40,110,44,36,117,41,58,48,125,44,65,110,46,115,117,109,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,109,40,110,44,121,101,40,116,44,50,41,41,58,48,125,44,65,110,46,116,101,109,112,108,97,116,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,65,110,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,59,114,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,84,41,44,110,61,73,117,40,110,41,44,116,61,98,102,40,123,125,44,116,44,101,44,99,101,41,44,114,61,98,102,40,123,125,44,116,46,105,109,112,111,114,116,115,44,101,46,105,109,112,111,114,116,115,44,99,101,41,59,118,97,114,32,117,44,105,44,111,61,87,117,40,114,41,44,102,61,83,40,114,44,111,41,44,99,61,48,59,10,114,61,116,46,105,110,116,101,114,112,111,108,97,116,101,124,124,106,110,59,118,97,114,32,97,61,34,95,95,112,43,61,39,34,59,114,61,88,117,40,40,116,46,101,115,99,97,112,101,124,124,106,110,41,46,115,111,117,114,99,101,43,34,124,34,43,114,46,115,111,117,114,99,101,43,34,124,34,43,40,114,61,61,61,81,63,112,110,58,106,110,41,46,115,111,117,114,99,101,43,34,124,34,43,40,116,46,101,118,97,108,117,97,116,101,124,124,106,110,41,46,115,111,117,114,99,101,43,34,124,36,34,44,34,103,34,41,59,118,97,114,32,108,61,111,105,46,99,97,108,108,40,116,44,34,115,111,117,114,99,101,85,82,76,34,41,63,34,47,47,35,32,115,111,117,114,99,101,85,82,76,61,34,43,40,116,46,115,111,117,114,99,101,85,82,76,43,34,34,41,46,114,101,112,108,97,99,101,40,47,91,92,114,92,110,93,47,103,44,34,32,34,41,43,34,92,110,34,58,34,34,59,105,102,40,110,46,114,101,112,108,97,99,101,40,114,44,102,117,110,99,116,105,111,110,40,116,44,114,44,101,44,111,44,102,44,108,41,123,114,101,116,117,114,110,32,101,124,124,40,101,61,111,41,44,97,43,61,110,46,115,108,105,99,101,40,99,44,108,41,46,114,101,112,108,97,99,101,40,119,110,44,122,41,44,114,38,38,40,117,61,116,114,117,101,44,97,43,61,34,39,43,95,95,101,40,34,43,114,43,34,41,43,39,34,41,44,102,38,38,40,105,61,116,114,117,101,44,97,43,61,34,39,59,34,43,102,43,34,59,92,110,95,95,112,43,61,39,34,41,44,101,38,38,40,97,43,61,34,39,43,40,40,95,95,116,61,40,34,43,101,43,34,41,41,61,61,110,117,108,108,63,39,39,58,95,95,116,41,43,39,34,41,44,99,61,108,43,116,46,108,101,110,103,116,104,44,116,125,41,44,97,43,61,34,39,59,34,44,40,116,61,111,105,46,99,97,108,108,40,116,44,34,118,97,114,105,97,98,108,101,34,41,38,38,116,46,118,97,114,105,97,98,108,101,41,124,124,40,97,61,34,119,105,116,104,40,111,98,106,41,123,34,43,97,43,34,125,34,41,44,10,97,61,40,105,63,97,46,114,101,112,108,97,99,101,40,80,44,34,34,41,58,97,41,46,114,101,112,108,97,99,101,40,90,44,34,36,49,34,41,46,114,101,112,108,97,99,101,40,113,44,34,36,49,59,34,41,44,97,61,34,102,117,110,99,116,105,111,110,40,34,43,40,116,124,124,34,111,98,106,34,41,43,34,41,123,34,43,40,116,63,34,34,58,34,111,98,106,124,124,40,111,98,106,61,123,125,41,59,34,41,43,34,118,97,114,32,95,95,116,44,95,95,112,61,39,39,34,43,40,117,63,34,44,95,95,101,61,95,46,101,115,99,97,112,101,34,58,34,34,41,43,40,105,63,34,44,95,95,106,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,106,111,105,110,59,102,117,110,99,116,105,111,110,32,112,114,105,110,116,40,41,123,95,95,112,43,61,95,95,106,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,44,39,39,41,125,34,58,34,59,34,41,43,97,43,34,114,101,116,117,114,110,32,95,95,112,125,34,44,116,61,70,102,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,74,117,40,111,44,108,43,34,114,101,116,117,114,110,32,34,43,97,41,46,97,112,112,108,121,40,84,44,102,41,125,41,44,116,46,115,111,117,114,99,101,61,97,44,112,117,40,116,41,41,116,104,114,111,119,32,116,59,114,101,116,117,114,110,32,116,125,44,65,110,46,116,105,109,101,115,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,110,61,69,117,40,110,41,44,49,62,110,124,124,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,60,110,41,114,101,116,117,114,110,91,93,59,118,97,114,32,114,61,52,50,57,52,57,54,55,50,57,53,44,101,61,67,105,40,110,44,52,50,57,52,57,54,55,50,57,53,41,59,102,111,114,40,116,61,121,101,40,116,41,44,110,45,61,52,50,57,52,57,54,55,50,57,53,44,101,61,65,40,101,44,116,41,59,43,43,114,60,110,59,41,116,40,114,41,59,114,101,116,117,114,110,32,101,125,44,65,110,46,116,111,70,105,110,105,116,101,61,65,117,44,10,65,110,46,116,111,73,110,116,101,103,101,114,61,69,117,44,65,110,46,116,111,76,101,110,103,116,104,61,107,117,44,65,110,46,116,111,76,111,119,101,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,73,117,40,110,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,44,65,110,46,116,111,78,117,109,98,101,114,61,83,117,44,65,110,46,116,111,83,97,102,101,73,110,116,101,103,101,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,63,112,116,40,69,117,40,110,41,44,45,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,44,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,41,58,48,61,61,61,110,63,110,58,48,125,44,65,110,46,116,111,83,116,114,105,110,103,61,73,117,44,65,110,46,116,111,85,112,112,101,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,73,117,40,110,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,44,65,110,46,116,114,105,109,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,40,114,124,124,116,61,61,61,84,41,63,110,46,114,101,112,108,97,99,101,40,117,110,44,34,34,41,58,110,38,38,40,116,61,121,114,40,116,41,41,63,40,110,61,77,40,110,41,44,114,61,77,40,116,41,44,116,61,73,40,110,44,114,41,44,114,61,82,40,110,44,114,41,43,49,44,79,114,40,110,44,116,44,114,41,46,106,111,105,110,40,34,34,41,41,58,110,125,44,65,110,46,116,114,105,109,69,110,100,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,40,114,124,124,116,61,61,61,84,41,63,110,46,114,101,112,108,97,99,101,40,102,110,44,34,34,41,58,110,38,38,40,116,61,121,114,40,116,41,41,63,40,110,61,77,40,110,41,44,116,61,82,40,110,44,77,40,116,41,41,43,49,44,10,79,114,40,110,44,48,44,116,41,46,106,111,105,110,40,34,34,41,41,58,110,125,44,65,110,46,116,114,105,109,83,116,97,114,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,40,114,124,124,116,61,61,61,84,41,63,110,46,114,101,112,108,97,99,101,40,111,110,44,34,34,41,58,110,38,38,40,116,61,121,114,40,116,41,41,63,40,110,61,77,40,110,41,44,116,61,73,40,110,44,77,40,116,41,41,44,79,114,40,110,44,116,41,46,106,111,105,110,40,34,34,41,41,58,110,125,44,65,110,46,116,114,117,110,99,97,116,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,51,48,44,101,61,34,46,46,46,34,59,105,102,40,100,117,40,116,41,41,118,97,114,32,117,61,34,115,101,112,97,114,97,116,111,114,34,105,110,32,116,63,116,46,115,101,112,97,114,97,116,111,114,58,117,44,114,61,34,108,101,110,103,116,104,34,105,110,32,116,63,69,117,40,116,46,108,101,110,103,116,104,41,58,114,44,101,61,34,111,109,105,115,115,105,111,110,34,105,110,32,116,63,121,114,40,116,46,111,109,105,115,115,105,111,110,41,58,101,59,110,61,73,117,40,110,41,59,118,97,114,32,105,61,110,46,108,101,110,103,116,104,59,105,102,40,82,110,46,116,101,115,116,40,110,41,41,118,97,114,32,111,61,77,40,110,41,44,105,61,111,46,108,101,110,103,116,104,59,105,102,40,114,62,61,105,41,114,101,116,117,114,110,32,110,59,105,102,40,105,61,114,45,68,40,101,41,44,49,62,105,41,114,101,116,117,114,110,32,101,59,105,102,40,114,61,111,63,79,114,40,111,44,48,44,105,41,46,106,111,105,110,40,34,34,41,58,110,46,115,108,105,99,101,40,48,44,105,41,44,117,61,61,61,84,41,114,101,116,117,114,110,32,114,43,101,59,105,102,40,111,38,38,40,105,43,61,114,46,108,101,110,103,116,104,45,105,41,44,104,102,40,117,41,41,123,105,102,40,110,46,115,108,105,99,101,40,105,41,46,115,101,97,114,99,104,40,117,41,41,123,10,118,97,114,32,102,61,114,59,102,111,114,40,117,46,103,108,111,98,97,108,124,124,40,117,61,88,117,40,117,46,115,111,117,114,99,101,44,73,117,40,95,110,46,101,120,101,99,40,117,41,41,43,34,103,34,41,41,44,117,46,108,97,115,116,73,110,100,101,120,61,48,59,111,61,117,46,101,120,101,99,40,102,41,59,41,118,97,114,32,99,61,111,46,105,110,100,101,120,59,114,61,114,46,115,108,105,99,101,40,48,44,99,61,61,61,84,63,105,58,99,41,125,125,101,108,115,101,32,110,46,105,110,100,101,120,79,102,40,121,114,40,117,41,44,105,41,33,61,105,38,38,40,117,61,114,46,108,97,115,116,73,110,100,101,120,79,102,40,117,41,44,45,49,60,117,38,38,40,114,61,114,46,115,108,105,99,101,40,48,44,117,41,41,41,59,114,101,116,117,114,110,32,114,43,101,125,44,65,110,46,117,110,101,115,99,97,112,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,71,46,116,101,115,116,40,110,41,63,110,46,114,101,112,108,97,99,101,40,86,44,116,116,41,58,110,125,44,65,110,46,117,110,105,113,117,101,73,100,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,43,43,102,105,59,114,101,116,117,114,110,32,73,117,40,110,41,43,116,125,44,65,110,46,117,112,112,101,114,67,97,115,101,61,84,102,44,65,110,46,117,112,112,101,114,70,105,114,115,116,61,36,102,44,65,110,46,101,97,99,104,61,110,117,44,65,110,46,101,97,99,104,82,105,103,104,116,61,116,117,44,65,110,46,102,105,114,115,116,61,113,101,44,78,117,40,65,110,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,123,125,59,114,101,116,117,114,110,32,109,116,40,65,110,44,102,117,110,99,116,105,111,110,40,116,44,114,41,123,111,105,46,99,97,108,108,40,65,110,46,112,114,111,116,111,116,121,112,101,44,114,41,124,124,40,110,91,114,93,61,116,41,125,41,44,110,125,40,41,44,123,99,104,97,105,110,58,102,97,108,115,101,10,125,41,44,65,110,46,86,69,82,83,73,79,78,61,34,52,46,49,55,46,49,53,34,44,114,40,34,98,105,110,100,32,98,105,110,100,75,101,121,32,99,117,114,114,121,32,99,117,114,114,121,82,105,103,104,116,32,112,97,114,116,105,97,108,32,112,97,114,116,105,97,108,82,105,103,104,116,34,46,115,112,108,105,116,40,34,32,34,41,44,102,117,110,99,116,105,111,110,40,110,41,123,65,110,91,110,93,46,112,108,97,99,101,104,111,108,100,101,114,61,65,110,125,41,44,114,40,91,34,100,114,111,112,34,44,34,116,97,107,101,34,93,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,85,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,114,41,123,114,61,114,61,61,61,84,63,49,58,85,105,40,69,117,40,114,41,44,48,41,59,118,97,114,32,101,61,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,38,38,33,116,63,110,101,119,32,85,110,40,116,104,105,115,41,58,116,104,105,115,46,99,108,111,110,101,40,41,59,114,101,116,117,114,110,32,101,46,95,95,102,105,108,116,101,114,101,100,95,95,63,101,46,95,95,116,97,107,101,67,111,117,110,116,95,95,61,67,105,40,114,44,101,46,95,95,116,97,107,101,67,111,117,110,116,95,95,41,58,101,46,95,95,118,105,101,119,115,95,95,46,112,117,115,104,40,123,115,105,122,101,58,67,105,40,114,44,52,50,57,52,57,54,55,50,57,53,41,44,116,121,112,101,58,110,43,40,48,62,101,46,95,95,100,105,114,95,95,63,34,82,105,103,104,116,34,58,34,34,41,125,41,44,101,125,44,85,110,46,112,114,111,116,111,116,121,112,101,91,110,43,34,82,105,103,104,116,34,93,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,118,101,114,115,101,40,41,91,110,93,40,116,41,46,114,101,118,101,114,115,101,40,41,125,125,41,44,114,40,91,34,102,105,108,116,101,114,34,44,34,109,97,112,34,44,34,116,97,107,101,87,104,105,108,101,34,93,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,10,118,97,114,32,114,61,116,43,49,44,101,61,49,61,61,114,124,124,51,61,61,114,59,85,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,99,108,111,110,101,40,41,59,114,101,116,117,114,110,32,116,46,95,95,105,116,101,114,97,116,101,101,115,95,95,46,112,117,115,104,40,123,105,116,101,114,97,116,101,101,58,121,101,40,110,44,51,41,44,116,121,112,101,58,114,125,41,44,116,46,95,95,102,105,108,116,101,114,101,100,95,95,61,116,46,95,95,102,105,108,116,101,114,101,100,95,95,124,124,101,44,116,125,125,41,44,114,40,91,34,104,101,97,100,34,44,34,108,97,115,116,34,93,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,34,116,97,107,101,34,43,40,116,63,34,82,105,103,104,116,34,58,34,34,41,59,85,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,91,114,93,40,49,41,46,118,97,108,117,101,40,41,91,48,93,125,125,41,44,114,40,91,34,105,110,105,116,105,97,108,34,44,34,116,97,105,108,34,93,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,34,100,114,111,112,34,43,40,116,63,34,34,58,34,82,105,103,104,116,34,41,59,85,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,63,110,101,119,32,85,110,40,116,104,105,115,41,58,116,104,105,115,91,114,93,40,49,41,125,125,41,44,85,110,46,112,114,111,116,111,116,121,112,101,46,99,111,109,112,97,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,36,117,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,61,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,110,41,46,104,101,97,100,40,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,76,97,115,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,118,101,114,115,101,40,41,46,102,105,110,100,40,110,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,105,110,118,111,107,101,77,97,112,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,63,110,101,119,32,85,110,40,116,104,105,115,41,58,116,104,105,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,76,116,40,114,44,110,44,116,41,125,41,125,41,44,85,110,46,112,114,111,116,111,116,121,112,101,46,114,101,106,101,99,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,97,117,40,121,101,40,110,41,41,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,110,61,69,117,40,110,41,59,118,97,114,32,114,61,116,104,105,115,59,114,101,116,117,114,110,32,114,46,95,95,102,105,108,116,101,114,101,100,95,95,38,38,40,48,60,110,124,124,48,62,116,41,63,110,101,119,32,85,110,40,114,41,58,40,48,62,110,63,114,61,114,46,116,97,107,101,82,105,103,104,116,40,45,110,41,58,110,38,38,40,114,61,114,46,100,114,111,112,40,110,41,41,44,116,33,61,61,84,38,38,40,116,61,69,117,40,116,41,44,114,61,48,62,116,63,114,46,100,114,111,112,82,105,103,104,116,40,45,116,41,58,114,46,116,97,107,101,40,116,45,110,41,41,44,114,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,116,97,107,101,82,105,103,104,116,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,32,116,104,105,115,46,114,101,118,101,114,115,101,40,41,46,116,97,107,101,87,104,105,108,101,40,110,41,46,114,101,118,101,114,115,101,40,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,116,111,65,114,114,97,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,97,107,101,40,52,50,57,52,57,54,55,50,57,53,41,125,44,109,116,40,85,110,46,112,114,111,116,111,116,121,112,101,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,47,94,40,63,58,102,105,108,116,101,114,124,102,105,110,100,124,109,97,112,124,114,101,106,101,99,116,41,124,87,104,105,108,101,36,47,46,116,101,115,116,40,116,41,44,101,61,47,94,40,63,58,104,101,97,100,124,108,97,115,116,41,36,47,46,116,101,115,116,40,116,41,44,117,61,65,110,91,101,63,34,116,97,107,101,34,43,40,34,108,97,115,116,34,61,61,116,63,34,82,105,103,104,116,34,58,34,34,41,58,116,93,44,105,61,101,124,124,47,94,102,105,110,100,47,46,116,101,115,116,40,116,41,59,117,38,38,40,65,110,46,112,114,111,116,111,116,121,112,101,91,116,93,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,110,41,123,114,101,116,117,114,110,32,110,61,117,46,97,112,112,108,121,40,65,110,44,97,40,91,110,93,44,102,41,41,44,101,38,38,104,63,110,91,48,93,58,110,125,118,97,114,32,111,61,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,44,102,61,101,63,91,49,93,58,97,114,103,117,109,101,110,116,115,44,99,61,111,32,105,110,115,116,97,110,99,101,111,102,32,85,110,44,108,61,102,91,48,93,44,115,61,99,124,124,102,102,40,111,41,59,115,38,38,114,38,38,116,121,112,101,111,102,32,108,61,61,34,102,117,110,99,116,105,111,110,34,38,38,49,33,61,108,46,108,101,110,103,116,104,38,38,40,99,61,115,61,102,97,108,115,101,41,59,118,97,114,32,104,61,116,104,105,115,46,95,95,99,104,97,105,110,95,95,44,112,61,33,33,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,46,108,101,110,103,116,104,44,108,61,105,38,38,33,104,44,99,61,99,38,38,33,112,59,10,114,101,116,117,114,110,33,105,38,38,115,63,40,111,61,99,63,111,58,110,101,119,32,85,110,40,116,104,105,115,41,44,111,61,110,46,97,112,112,108,121,40,111,44,102,41,44,111,46,95,95,97,99,116,105,111,110,115,95,95,46,112,117,115,104,40,123,102,117,110,99,58,81,101,44,97,114,103,115,58,91,116,93,44,116,104,105,115,65,114,103,58,84,125,41,44,110,101,119,32,79,110,40,111,44,104,41,41,58,108,38,38,99,63,110,46,97,112,112,108,121,40,116,104,105,115,44,102,41,58,40,111,61,116,104,105,115,46,116,104,114,117,40,116,41,44,108,63,101,63,111,46,118,97,108,117,101,40,41,91,48,93,58,111,46,118,97,108,117,101,40,41,58,111,41,125,41,125,41,44,114,40,34,112,111,112,32,112,117,115,104,32,115,104,105,102,116,32,115,111,114,116,32,115,112,108,105,99,101,32,117,110,115,104,105,102,116,34,46,115,112,108,105,116,40,34,32,34,41,44,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,114,105,91,110,93,44,114,61,47,94,40,63,58,112,117,115,104,124,115,111,114,116,124,117,110,115,104,105,102,116,41,36,47,46,116,101,115,116,40,110,41,63,34,116,97,112,34,58,34,116,104,114,117,34,44,101,61,47,94,40,63,58,112,111,112,124,115,104,105,102,116,41,36,47,46,116,101,115,116,40,110,41,59,65,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,59,105,102,40,101,38,38,33,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,123,118,97,114,32,117,61,116,104,105,115,46,118,97,108,117,101,40,41,59,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,102,102,40,117,41,63,117,58,91,93,44,110,41,125,114,101,116,117,114,110,32,116,104,105,115,91,114,93,40,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,102,102,40,114,41,63,114,58,91,93,44,110,41,125,41,59,10,125,125,41,44,109,116,40,85,110,46,112,114,111,116,111,116,121,112,101,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,65,110,91,116,93,59,105,102,40,114,41,123,118,97,114,32,101,61,114,46,110,97,109,101,43,34,34,59,111,105,46,99,97,108,108,40,71,105,44,101,41,124,124,40,71,105,91,101,93,61,91,93,41,44,71,105,91,101,93,46,112,117,115,104,40,123,110,97,109,101,58,116,44,102,117,110,99,58,114,125,41,125,125,41,44,71,105,91,74,114,40,84,44,50,41,46,110,97,109,101,93,61,91,123,110,97,109,101,58,34,119,114,97,112,112,101,114,34,44,102,117,110,99,58,84,125,93,44,85,110,46,112,114,111,116,111,116,121,112,101,46,99,108,111,110,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,110,101,119,32,85,110,40,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,41,59,114,101,116,117,114,110,32,110,46,95,95,97,99,116,105,111,110,115,95,95,61,85,114,40,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,44,110,46,95,95,100,105,114,95,95,61,116,104,105,115,46,95,95,100,105,114,95,95,44,110,46,95,95,102,105,108,116,101,114,101,100,95,95,61,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,44,110,46,95,95,105,116,101,114,97,116,101,101,115,95,95,61,85,114,40,116,104,105,115,46,95,95,105,116,101,114,97,116,101,101,115,95,95,41,44,110,46,95,95,116,97,107,101,67,111,117,110,116,95,95,61,116,104,105,115,46,95,95,116,97,107,101,67,111,117,110,116,95,95,44,110,46,95,95,118,105,101,119,115,95,95,61,85,114,40,116,104,105,115,46,95,95,118,105,101,119,115,95,95,41,44,110,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,114,101,118,101,114,115,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,41,123,118,97,114,32,110,61,110,101,119,32,85,110,40,116,104,105,115,41,59,10,110,46,95,95,100,105,114,95,95,61,45,49,44,110,46,95,95,102,105,108,116,101,114,101,100,95,95,61,116,114,117,101,125,101,108,115,101,32,110,61,116,104,105,115,46,99,108,111,110,101,40,41,44,110,46,95,95,100,105,114,95,95,42,61,45,49,59,114,101,116,117,114,110,32,110,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,44,116,61,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,46,118,97,108,117,101,40,41,44,114,61,116,104,105,115,46,95,95,100,105,114,95,95,44,101,61,102,102,40,116,41,44,117,61,48,62,114,44,105,61,101,63,116,46,108,101,110,103,116,104,58,48,59,110,61,105,59,102,111,114,40,118,97,114,32,111,61,116,104,105,115,46,95,95,118,105,101,119,115,95,95,44,102,61,48,44,99,61,45,49,44,97,61,111,46,108,101,110,103,116,104,59,43,43,99,60,97,59,41,123,118,97,114,32,108,61,111,91,99,93,44,115,61,108,46,115,105,122,101,59,115,119,105,116,99,104,40,108,46,116,121,112,101,41,123,99,97,115,101,34,100,114,111,112,34,58,102,43,61,115,59,98,114,101,97,107,59,99,97,115,101,34,100,114,111,112,82,105,103,104,116,34,58,110,45,61,115,59,98,114,101,97,107,59,99,97,115,101,34,116,97,107,101,34,58,110,61,67,105,40,110,44,102,43,115,41,59,98,114,101,97,107,59,99,97,115,101,34,116,97,107,101,82,105,103,104,116,34,58,102,61,85,105,40,102,44,110,45,115,41,125,125,105,102,40,110,61,123,115,116,97,114,116,58,102,44,101,110,100,58,110,125,44,111,61,110,46,115,116,97,114,116,44,102,61,110,46,101,110,100,44,110,61,102,45,111,44,111,61,117,63,102,58,111,45,49,44,102,61,116,104,105,115,46,95,95,105,116,101,114,97,116,101,101,115,95,95,44,99,61,102,46,108,101,110,103,116,104,44,97,61,48,44,108,61,67,105,40,110,44,116,104,105,115,46,95,95,116,97,107,101,67,111,117,110,116,95,95,41,44,33,101,124,124,33,117,38,38,105,61,61,110,38,38,108,61,61,110,41,114,101,116,117,114,110,32,119,114,40,116,44,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,59,10,101,61,91,93,59,110,58,102,111,114,40,59,110,45,45,38,38,97,60,108,59,41,123,102,111,114,40,111,43,61,114,44,117,61,45,49,44,105,61,116,91,111,93,59,43,43,117,60,99,59,41,123,118,97,114,32,104,61,102,91,117,93,44,115,61,104,46,116,121,112,101,44,104,61,40,48,44,104,46,105,116,101,114,97,116,101,101,41,40,105,41,59,105,102,40,50,61,61,115,41,105,61,104,59,101,108,115,101,32,105,102,40,33,104,41,123,105,102,40,49,61,61,115,41,99,111,110,116,105,110,117,101,32,110,59,98,114,101,97,107,32,110,125,125,101,91,97,43,43,93,61,105,125,114,101,116,117,114,110,32,101,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,97,116,61,84,111,44,65,110,46,112,114,111,116,111,116,121,112,101,46,99,104,97,105,110,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,101,40,116,104,105,115,41,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,99,111,109,109,105,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,79,110,40,116,104,105,115,46,118,97,108,117,101,40,41,44,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,110,101,120,116,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,61,61,61,84,38,38,40,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,61,109,117,40,116,104,105,115,46,118,97,108,117,101,40,41,41,41,59,118,97,114,32,110,61,116,104,105,115,46,95,95,105,110,100,101,120,95,95,62,61,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,46,108,101,110,103,116,104,59,114,101,116,117,114,110,123,100,111,110,101,58,110,44,118,97,108,117,101,58,110,63,84,58,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,91,116,104,105,115,46,95,95,105,110,100,101,120,95,95,43,43,93,125,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,112,108,97,110,116,61,102,117,110,99,116,105,111,110,40,110,41,123,10,102,111,114,40,118,97,114,32,116,44,114,61,116,104,105,115,59,114,32,105,110,115,116,97,110,99,101,111,102,32,69,110,59,41,123,118,97,114,32,101,61,70,101,40,114,41,59,101,46,95,95,105,110,100,101,120,95,95,61,48,44,101,46,95,95,118,97,108,117,101,115,95,95,61,84,44,116,63,117,46,95,95,119,114,97,112,112,101,100,95,95,61,101,58,116,61,101,59,118,97,114,32,117,61,101,44,114,61,114,46,95,95,119,114,97,112,112,101,100,95,95,125,114,101,116,117,114,110,32,117,46,95,95,119,114,97,112,112,101,100,95,95,61,110,44,116,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,114,101,118,101,114,115,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,59,114,101,116,117,114,110,32,110,32,105,110,115,116,97,110,99,101,111,102,32,85,110,63,40,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,46,108,101,110,103,116,104,38,38,40,110,61,110,101,119,32,85,110,40,116,104,105,115,41,41,44,110,61,110,46,114,101,118,101,114,115,101,40,41,44,110,46,95,95,97,99,116,105,111,110,115,95,95,46,112,117,115,104,40,123,102,117,110,99,58,81,101,44,97,114,103,115,58,91,71,101,93,44,116,104,105,115,65,114,103,58,84,125,41,44,110,101,119,32,79,110,40,110,44,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,41,58,116,104,105,115,46,116,104,114,117,40,71,101,41,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,116,111,74,83,79,78,61,65,110,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,79,102,61,65,110,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,119,114,40,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,44,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,102,105,114,115,116,61,65,110,46,112,114,111,116,111,116,121,112,101,46,104,101,97,100,44,10,119,105,38,38,40,65,110,46,112,114,111,116,111,116,121,112,101,91,119,105,93,61,88,101,41,44,65,110,125,40,41,59,116,121,112,101,111,102,32,100,101,102,105,110,101,61,61,34,102,117,110,99,116,105,111,110,34,38,38,116,121,112,101,111,102,32,100,101,102,105,110,101,46,97,109,100,61,61,34,111,98,106,101,99,116,34,38,38,100,101,102,105,110,101,46,97,109,100,63,40,36,110,46,95,61,114,116,44,32,100,101,102,105,110,101,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,116,125,41,41,58,78,110,63,40,40,78,110,46,101,120,112,111,114,116,115,61,114,116,41,46,95,61,114,116,44,70,110,46,95,61,114,116,41,58,36,110,46,95,61,114,116,125,41,46,99,97,108,108,40,116,104,105,115,41,59,47,42,32,73,110,115,112,105,114,101,32,84,114,101,101,10,32,42,32,64,118,101,114,115,105,111,110,32,54,46,48,46,49,10,32,42,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,104,101,108,105,111,110,51,47,105,110,115,112,105,114,101,45,116,114,101,101,10,32,42,32,64,99,111,112,121,114,105,103,104,116,32,67,111,112,121,114,105,103,104,116,32,50,48,49,53,32,72,101,108,105,111,110,51,44,32,97,110,100,32,111,116,104,101,114,32,99,111,110,116,114,105,98,117,116,111,114,115,10,32,42,32,64,108,105,99,101,110,115,101,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,10,32,42,32,32,32,32,32,32,32,32,32,32,115,101,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,104,101,108,105,111,110,51,47,105,110,115,112,105,114,101,45,116,114,101,101,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,10,32,42,47,10,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,116,40,114,101,113,117,105,114,101,40,34,108,111,100,97,115,104,34,41,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,108,111,100,97,115,104,34,93,44,116,41,58,40,101,61,101,124,124,115,101,108,102,41,46,73,110,115,112,105,114,101,84,114,101,101,61,116,40,101,46,95,41,125,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,99,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,97,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,102,117,110,99,116,105,111,110,32,105,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,116,46,108,101,110,103,116,104,59,110,43,43,41,123,118,97,114,32,105,61,116,91,110,93,59,105,46,101,110,117,109,101,114,97,98,108,101,61,105,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,105,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,105,38,38,40,105,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,105,46,107,101,121,44,105,41,125,125,102,117,110,99,116,105,111,110,32,101,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,38,38,105,40,101,46,112,114,111,116,111,116,121,112,101,44,116,41,44,110,38,38,105,40,101,44,110,41,44,101,125,102,117,110,99,116,105,111,110,32,116,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,110,117,108,108,33,61,61,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,83,117,112,101,114,32,101,120,112,114,101,115,115,105,111,110,32,109,117,115,116,32,101,105,116,104,101,114,32,98,101,32,110,117,108,108,32,111,114,32,97,32,102,117,110,99,116,105,111,110,34,41,59,101,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,38,38,116,46,112,114,111,116,111,116,121,112,101,44,123,99,111,110,115,116,114,117,99,116,111,114,58,123,118,97,108,117,101,58,101,44,119,114,105,116,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,41,44,116,38,38,110,40,101,44,116,41,125,102,117,110,99,116,105,111,110,32,117,40,101,41,123,114,101,116,117,114,110,40,117,61,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,63,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,101,41,125,41,40,101,41,125,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,114,101,116,117,114,110,40,110,61,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,124,124,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,101,46,95,95,112,114,111,116,111,95,95,61,116,44,101,125,41,40,101,44,116,41,125,102,117,110,99,116,105,111,110,32,108,40,101,41,123,105,102,40,118,111,105,100,32,48,61,61,61,101,41,116,104,114,111,119,32,110,101,119,32,82,101,102,101,114,101,110,99,101,69,114,114,111,114,40,34,116,104,105,115,32,104,97,115,110,39,116,32,98,101,101,110,32,105,110,105,116,105,97,108,105,115,101,100,32,45,32,115,117,112,101,114,40,41,32,104,97,115,110,39,116,32,98,101,101,110,32,99,97,108,108,101,100,34,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,104,40,101,44,116,41,123,114,101,116,117,114,110,33,116,124,124,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,116,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,63,108,40,101,41,58,116,125,102,117,110,99,116,105,111,110,32,114,40,101,44,116,44,110,41,123,114,101,116,117,114,110,40,114,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,82,101,102,108,101,99,116,38,38,82,101,102,108,101,99,116,46,103,101,116,63,82,101,102,108,101,99,116,46,103,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,59,33,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,101,44,116,41,38,38,110,117,108,108,33,61,61,40,101,61,117,40,101,41,41,59,41,59,114,101,116,117,114,110,32,101,125,40,101,44,116,41,59,105,102,40,105,41,123,118,97,114,32,114,61,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,40,105,44,116,41,59,114,101,116,117,114,110,32,114,46,103,101,116,63,114,46,103,101,116,46,99,97,108,108,40,110,41,58,114,46,118,97,108,117,101,125,125,41,40,101,44,116,44,110,124,124,101,41,125,102,117,110,99,116,105,111,110,32,115,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,41,114,101,116,117,114,110,32,101,125,40,101,41,124,124,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,101,41,124,124,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,101,41,41,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,101,41,125,40,101,41,124,124,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,97,116,116,101,109,112,116,32,116,111,32,100,101,115,116,114,117,99,116,117,114,101,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,34,41,125,40,41,125,102,117,110,99,116,105,111,110,32,111,40,116,44,110,44,105,44,101,44,114,41,123,114,101,116,117,114,110,32,101,46,115,116,97,116,101,40,116,41,33,61,61,110,38,38,40,101,46,99,111,110,116,101,120,116,40,41,46,98,97,116,99,104,40,41,44,101,46,95,116,114,101,101,46,99,111,110,102,105,103,46,110,111,100,101,115,46,114,101,115,101,116,83,116,97,116,101,79,110,82,101,115,116,111,114,101,38,38,34,114,101,115,116,111,114,101,100,34,61,61,61,105,38,38,102,117,110,99,116,105,111,110,40,110,41,123,99,46,101,97,99,104,40,110,46,95,116,114,101,101,46,100,101,102,97,117,108,116,83,116,97,116,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,110,46,115,116,97,116,101,40,116,44,101,41,125,41,125,40,101,41,44,110,38,38,34,99,104,101,99,107,101,100,34,61,61,61,116,38,38,101,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,33,49,41,44,101,46,115,116,97,116,101,40,116,44,110,41,44,101,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,34,43,105,44,101,44,33,49,41,44,114,38,38,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,101,46,99,104,105,108,100,114,101,110,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,111,40,116,44,110,44,105,44,101,41,125,41,44,34,104,105,100,100,101,110,34,33,61,61,116,38,38,34,114,101,109,111,118,101,100,34,33,61,61,116,124,124,40,101,46,99,111,110,116,101,120,116,40,41,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,101,46,99,111,110,116,101,120,116,40,41,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,41,44,101,46,109,97,114,107,68,105,114,116,121,40,41,44,101,46,99,111,110,116,101,120,116,40,41,46,101,110,100,40,41,41,44,101,125,118,97,114,32,84,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,103,108,111,98,97,108,84,104,105,115,63,103,108,111,98,97,108,84,104,105,115,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,103,108,111,98,97,108,63,103,108,111,98,97,108,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,115,101,108,102,63,115,101,108,102,58,123,125,59,102,117,110,99,116,105,111,110,32,100,40,101,44,116,41,123,114,101,116,117,114,110,32,101,40,116,61,123,101,120,112,111,114,116,115,58,123,125,125,44,116,46,101,120,112,111,114,116,115,41,44,116,46,101,120,112,111,114,116,115,125,118,97,114,32,102,61,100,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,10,32,32,32,32,47,42,33,10,32,32,32,32,32,32,32,42,32,64,111,118,101,114,118,105,101,119,32,101,115,54,45,112,114,111,109,105,115,101,32,45,32,97,32,116,105,110,121,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,80,114,111,109,105,115,101,115,47,65,43,46,10,32,32,32,32,32,32,32,42,32,64,99,111,112,121,114,105,103,104,116,32,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,52,32,89,101,104,117,100,97,32,75,97,116,122,44,32,84,111,109,32,68,97,108,101,44,32,83,116,101,102,97,110,32,80,101,110,110,101,114,32,97,110,100,32,99,111,110,116,114,105,98,117,116,111,114,115,32,40,67,111,110,118,101,114,115,105,111,110,32,116,111,32,69,83,54,32,65,80,73,32,98,121,32,74,97,107,101,32,65,114,99,104,105,98,97,108,100,41,10,32,32,32,32,32,32,32,42,32,64,108,105,99,101,110,115,101,32,32,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,32,108,105,99,101,110,115,101,10,32,32,32,32,32,32,32,42,32,32,32,32,32,32,32,32,32,32,32,32,83,101,101,32,104,116,116,112,115,58,47,47,114,97,119,46,103,105,116,104,117,98,117,115,101,114,99,111,110,116,101,110,116,46,99,111,109,47,115,116,101,102,97,110,112,101,110,110,101,114,47,101,115,54,45,112,114,111,109,105,115,101,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,10,32,32,32,32,32,32,32,42,32,64,118,101,114,115,105,111,110,32,32,32,118,52,46,50,46,56,43,49,101,54,56,100,99,101,54,10,32,32,32,32,32,32,32,42,47,10,32,32,32,32,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,99,40,101,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,125,118,97,114,32,110,61,65,114,114,97,121,46,105,115,65,114,114,97,121,63,65,114,114,97,121,46,105,115,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,61,61,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,101,41,125,44,105,61,48,44,116,61,118,111,105,100,32,48,44,114,61,118,111,105,100,32,48,44,111,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,100,91,105,93,61,101,44,100,91,105,43,49,93,61,116,44,50,61,61,61,40,105,43,61,50,41,38,38,40,114,63,114,40,102,41,58,118,40,41,41,125,59,118,97,114,32,101,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,118,111,105,100,32,48,44,115,61,101,124,124,123,125,44,97,61,115,46,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,124,124,115,46,87,101,98,75,105,116,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,44,117,61,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,115,101,108,102,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,112,114,111,99,101,115,115,38,38,34,91,111,98,106,101,99,116,32,112,114,111,99,101,115,115,93,34,61,61,61,123,125,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,112,114,111,99,101,115,115,41,44,108,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,105,109,112,111,114,116,83,99,114,105,112,116,115,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,77,101,115,115,97,103,101,67,104,97,110,110,101,108,59,102,117,110,99,116,105,111,110,32,104,40,41,123,118,97,114,32,101,61,115,101,116,84,105,109,101,111,117,116,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,102,44,49,41,125,125,118,97,114,32,100,61,110,101,119,32,65,114,114,97,121,40,49,101,51,41,59,102,117,110,99,116,105,111,110,32,102,40,41,123,102,111,114,40,118,97,114,32,101,61,48,59,101,60,105,59,101,43,61,50,41,123,118,97,114,32,116,61,100,91,101,93,44,110,61,100,91,101,43,49,93,59,116,40,110,41,44,100,91,101,93,61,118,111,105,100,32,48,44,100,91,101,43,49,93,61,118,111,105,100,32,48,125,105,61,48,125,118,97,114,32,118,61,118,111,105,100,32,48,59,102,117,110,99,116,105,111,110,32,121,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,44,105,61,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,103,41,59,118,111,105,100,32,48,61,61,61,105,91,107,93,38,38,106,40,105,41,59,118,97,114,32,114,61,110,46,95,115,116,97,116,101,59,105,102,40,114,41,123,118,97,114,32,115,61,97,114,103,117,109,101,110,116,115,91,114,45,49,93,59,111,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,79,40,114,44,105,44,115,44,110,46,95,114,101,115,117,108,116,41,125,41,125,101,108,115,101,32,67,40,110,44,105,44,101,44,116,41,59,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,112,40,101,41,123,105,102,40,101,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,101,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,116,104,105,115,41,114,101,116,117,114,110,32,101,59,118,97,114,32,116,61,110,101,119,32,116,104,105,115,40,103,41,59,114,101,116,117,114,110,32,68,40,116,44,101,41,44,116,125,118,61,117,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,114,111,99,101,115,115,46,110,101,120,116,84,105,99,107,40,102,41,125,58,97,63,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,48,44,116,61,110,101,119,32,97,40,102,41,44,110,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,34,34,41,59,114,101,116,117,114,110,32,116,46,111,98,115,101,114,118,101,40,110,44,123,99,104,97,114,97,99,116,101,114,68,97,116,97,58,33,48,125,41,44,102,117,110,99,116,105,111,110,40,41,123,110,46,100,97,116,97,61,101,61,43,43,101,37,50,125,125,40,41,58,108,63,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,101,119,32,77,101,115,115,97,103,101,67,104,97,110,110,101,108,59,114,101,116,117,114,110,32,101,46,112,111,114,116,49,46,111,110,109,101,115,115,97,103,101,61,102,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,112,111,114,116,50,46,112,111,115,116,77,101,115,115,97,103,101,40,48,41,125,125,40,41,58,118,111,105,100,32,48,61,61,61,101,63,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,118,97,114,32,101,61,70,117,110,99,116,105,111,110,40,34,114,101,116,117,114,110,32,116,104,105,115,34,41,40,41,46,114,101,113,117,105,114,101,40,34,118,101,114,116,120,34,41,59,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,40,116,61,101,46,114,117,110,79,110,76,111,111,112,124,124,101,46,114,117,110,79,110,67,111,110,116,101,120,116,41,63,104,40,41,58,102,117,110,99,116,105,111,110,40,41,123,116,40,102,41,125,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,32,104,40,41,125,125,40,41,58,104,40,41,59,118,97,114,32,107,61,77,97,116,104,46,114,97,110,100,111,109,40,41,46,116,111,83,116,114,105,110,103,40,51,54,41,46,115,117,98,115,116,114,105,110,103,40,50,41,59,102,117,110,99,116,105,111,110,32,103,40,41,123,125,118,97,114,32,95,61,118,111,105,100,32,48,44,109,61,49,44,98,61,50,59,102,117,110,99,116,105,111,110,32,119,40,101,44,116,44,110,44,105,41,123,116,114,121,123,101,46,99,97,108,108,40,116,44,110,44,105,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,32,101,125,125,102,117,110,99,116,105,111,110,32,120,40,101,44,116,44,110,41,123,116,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,101,46,99,111,110,115,116,114,117,99,116,111,114,38,38,110,61,61,61,121,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,46,114,101,115,111,108,118,101,61,61,61,112,63,102,117,110,99,116,105,111,110,40,116,44,101,41,123,101,46,95,115,116,97,116,101,61,61,61,109,63,76,40,116,44,101,46,95,114,101,115,117,108,116,41,58,101,46,95,115,116,97,116,101,61,61,61,98,63,80,40,116,44,101,46,95,114,101,115,117,108,116,41,58,67,40,101,44,118,111,105,100,32,48,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,68,40,116,44,101,41,125,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,80,40,116,44,101,41,125,41,125,40,101,44,116,41,58,118,111,105,100,32,48,61,61,61,110,63,76,40,101,44,116,41,58,99,40,110,41,63,102,117,110,99,116,105,111,110,40,101,44,105,44,114,41,123,111,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,33,49,44,101,61,119,40,114,44,105,44,102,117,110,99,116,105,111,110,40,101,41,123,110,124,124,40,110,61,33,48,44,105,33,61,61,101,63,68,40,116,44,101,41,58,76,40,116,44,101,41,41,125,44,102,117,110,99,116,105,111,110,40,101,41,123,110,124,124,40,110,61,33,48,44,80,40,116,44,101,41,41,125,44,116,46,95,108,97,98,101,108,41,59,33,110,38,38,101,38,38,40,110,61,33,48,44,80,40,116,44,101,41,41,125,44,101,41,125,40,101,44,116,44,110,41,58,76,40,101,44,116,41,125,102,117,110,99,116,105,111,110,32,68,40,116,44,101,41,123,105,102,40,116,61,61,61,101,41,80,40,116,44,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,89,111,117,32,99,97,110,110,111,116,32,114,101,115,111,108,118,101,32,97,32,112,114,111,109,105,115,101,32,119,105,116,104,32,105,116,115,101,108,102,34,41,41,59,101,108,115,101,32,105,102,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,121,112,101,111,102,32,101,59,114,101,116,117,114,110,32,110,117,108,108,33,61,61,101,38,38,40,34,111,98,106,101,99,116,34,61,61,116,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,41,125,40,101,41,41,123,118,97,114,32,110,61,118,111,105,100,32,48,59,116,114,121,123,110,61,101,46,116,104,101,110,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,32,118,111,105,100,32,80,40,116,44,101,41,125,120,40,116,44,101,44,110,41,125,101,108,115,101,32,76,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,65,40,101,41,123,101,46,95,111,110,101,114,114,111,114,38,38,101,46,95,111,110,101,114,114,111,114,40,101,46,95,114,101,115,117,108,116,41,44,83,40,101,41,125,102,117,110,99,116,105,111,110,32,76,40,101,44,116,41,123,101,46,95,115,116,97,116,101,61,61,61,95,38,38,40,101,46,95,114,101,115,117,108,116,61,116,44,101,46,95,115,116,97,116,101,61,109,44,48,33,61,61,101,46,95,115,117,98,115,99,114,105,98,101,114,115,46,108,101,110,103,116,104,38,38,111,40,83,44,101,41,41,125,102,117,110,99,116,105,111,110,32,80,40,101,44,116,41,123,101,46,95,115,116,97,116,101,61,61,61,95,38,38,40,101,46,95,115,116,97,116,101,61,98,44,101,46,95,114,101,115,117,108,116,61,116,44,111,40,65,44,101,41,41,125,102,117,110,99,116,105,111,110,32,67,40,101,44,116,44,110,44,105,41,123,118,97,114,32,114,61,101,46,95,115,117,98,115,99,114,105,98,101,114,115,44,115,61,114,46,108,101,110,103,116,104,59,101,46,95,111,110,101,114,114,111,114,61,110,117,108,108,44,114,91,115,93,61,116,44,114,91,115,43,109,93,61,110,44,114,91,115,43,98,93,61,105,44,48,61,61,61,115,38,38,101,46,95,115,116,97,116,101,38,38,111,40,83,44,101,41,125,102,117,110,99,116,105,111,110,32,83,40,101,41,123,118,97,114,32,116,61,101,46,95,115,117,98,115,99,114,105,98,101,114,115,44,110,61,101,46,95,115,116,97,116,101,59,105,102,40,48,33,61,61,116,46,108,101,110,103,116,104,41,123,102,111,114,40,118,97,114,32,105,61,118,111,105,100,32,48,44,114,61,118,111,105,100,32,48,44,115,61,101,46,95,114,101,115,117,108,116,44,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,61,51,41,105,61,116,91,111,93,44,114,61,116,91,111,43,110,93,44,105,63,79,40,110,44,105,44,114,44,115,41,58,114,40,115,41,59,101,46,95,115,117,98,115,99,114,105,98,101,114,115,46,108,101,110,103,116,104,61,48,125,125,102,117,110,99,116,105,111,110,32,79,40,101,44,116,44,110,44,105,41,123,118,97,114,32,114,61,99,40,110,41,44,115,61,118,111,105,100,32,48,44,111,61,118,111,105,100,32,48,44,97,61,33,48,59,105,102,40,114,41,123,116,114,121,123,115,61,110,40,105,41,125,99,97,116,99,104,40,101,41,123,97,61,33,49,44,111,61,101,125,105,102,40,116,61,61,61,115,41,114,101,116,117,114,110,32,118,111,105,100,32,80,40,116,44,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,65,32,112,114,111,109,105,115,101,115,32,99,97,108,108,98,97,99,107,32,99,97,110,110,111,116,32,114,101,116,117,114,110,32,116,104,97,116,32,115,97,109,101,32,112,114,111,109,105,115,101,46,34,41,41,125,101,108,115,101,32,115,61,105,59,116,46,95,115,116,97,116,101,33,61,61,95,124,124,40,114,38,38,97,63,68,40,116,44,115,41,58,33,49,61,61,61,97,63,80,40,116,44,111,41,58,101,61,61,61,109,63,76,40,116,44,115,41,58,101,61,61,61,98,38,38,80,40,116,44,115,41,41,125,118,97,114,32,78,61,48,59,102,117,110,99,116,105,111,110,32,106,40,101,41,123,101,91,107,93,61,78,43,43,44,101,46,95,115,116,97,116,101,61,118,111,105,100,32,48,44,101,46,95,114,101,115,117,108,116,61,118,111,105,100,32,48,44,101,46,95,115,117,98,115,99,114,105,98,101,114,115,61,91,93,125,118,97,114,32,69,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,116,104,105,115,46,95,105,110,115,116,97,110,99,101,67,111,110,115,116,114,117,99,116,111,114,61,101,44,116,104,105,115,46,112,114,111,109,105,115,101,61,110,101,119,32,101,40,103,41,44,116,104,105,115,46,112,114,111,109,105,115,101,91,107,93,124,124,106,40,116,104,105,115,46,112,114,111,109,105,115,101,41,44,110,40,116,41,63,40,116,104,105,115,46,108,101,110,103,116,104,61,116,46,108,101,110,103,116,104,44,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,61,116,46,108,101,110,103,116,104,44,116,104,105,115,46,95,114,101,115,117,108,116,61,110,101,119,32,65,114,114,97,121,40,116,104,105,115,46,108,101,110,103,116,104,41,44,48,61,61,61,116,104,105,115,46,108,101,110,103,116,104,63,76,40,116,104,105,115,46,112,114,111,109,105,115,101,44,116,104,105,115,46,95,114,101,115,117,108,116,41,58,40,116,104,105,115,46,108,101,110,103,116,104,61,116,104,105,115,46,108,101,110,103,116,104,124,124,48,44,116,104,105,115,46,95,101,110,117,109,101,114,97,116,101,40,116,41,44,48,61,61,61,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,38,38,76,40,116,104,105,115,46,112,114,111,109,105,115,101,44,116,104,105,115,46,95,114,101,115,117,108,116,41,41,41,58,80,40,116,104,105,115,46,112,114,111,109,105,115,101,44,110,101,119,32,69,114,114,111,114,40,34,65,114,114,97,121,32,77,101,116,104,111,100,115,32,109,117,115,116,32,98,101,32,112,114,111,118,105,100,101,100,32,97,110,32,65,114,114,97,121,34,41,41,125,114,101,116,117,114,110,32,101,46,112,114,111,116,111,116,121,112,101,46,95,101,110,117,109,101,114,97,116,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,59,116,104,105,115,46,95,115,116,97,116,101,61,61,61,95,38,38,116,60,101,46,108,101,110,103,116,104,59,116,43,43,41,116,104,105,115,46,95,101,97,99,104,69,110,116,114,121,40,101,91,116,93,44,116,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,95,101,97,99,104,69,110,116,114,121,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,95,105,110,115,116,97,110,99,101,67,111,110,115,116,114,117,99,116,111,114,44,105,61,110,46,114,101,115,111,108,118,101,59,105,102,40,105,61,61,61,112,41,123,118,97,114,32,114,61,118,111,105,100,32,48,44,115,61,118,111,105,100,32,48,44,111,61,33,49,59,116,114,121,123,114,61,116,46,116,104,101,110,125,99,97,116,99,104,40,101,41,123,111,61,33,48,44,115,61,101,125,105,102,40,114,61,61,61,121,38,38,116,46,95,115,116,97,116,101,33,61,61,95,41,116,104,105,115,46,95,115,101,116,116,108,101,100,65,116,40,116,46,95,115,116,97,116,101,44,101,44,116,46,95,114,101,115,117,108,116,41,59,101,108,115,101,32,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,114,41,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,45,45,44,116,104,105,115,46,95,114,101,115,117,108,116,91,101,93,61,116,59,101,108,115,101,32,105,102,40,110,61,61,61,82,41,123,118,97,114,32,97,61,110,101,119,32,110,40,103,41,59,111,63,80,40,97,44,115,41,58,120,40,97,44,116,44,114,41,44,116,104,105,115,46,95,119,105,108,108,83,101,116,116,108,101,65,116,40,97,44,101,41,125,101,108,115,101,32,116,104,105,115,46,95,119,105,108,108,83,101,116,116,108,101,65,116,40,110,101,119,32,110,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,40,116,41,125,41,44,101,41,125,101,108,115,101,32,116,104,105,115,46,95,119,105,108,108,83,101,116,116,108,101,65,116,40,105,40,116,41,44,101,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,95,115,101,116,116,108,101,100,65,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,105,61,116,104,105,115,46,112,114,111,109,105,115,101,59,105,46,95,115,116,97,116,101,61,61,61,95,38,38,40,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,45,45,44,101,61,61,61,98,63,80,40,105,44,110,41,58,116,104,105,115,46,95,114,101,115,117,108,116,91,116,93,61,110,41,44,48,61,61,61,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,38,38,76,40,105,44,116,104,105,115,46,95,114,101,115,117,108,116,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,95,119,105,108,108,83,101,116,116,108,101,65,116,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,59,67,40,101,44,118,111,105,100,32,48,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,95,115,101,116,116,108,101,100,65,116,40,109,44,116,44,101,41,125,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,95,115,101,116,116,108,101,100,65,116,40,98,44,116,44,101,41,125,41,125,44,101,125,40,41,59,118,97,114,32,82,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,101,41,123,116,104,105,115,91,107,93,61,78,43,43,44,116,104,105,115,46,95,114,101,115,117,108,116,61,116,104,105,115,46,95,115,116,97,116,101,61,118,111,105,100,32,48,44,116,104,105,115,46,95,115,117,98,115,99,114,105,98,101,114,115,61,91,93,44,103,33,61,61,101,38,38,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,101,38,38,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,89,111,117,32,109,117,115,116,32,112,97,115,115,32,97,32,114,101,115,111,108,118,101,114,32,102,117,110,99,116,105,111,110,32,97,115,32,116,104,101,32,102,105,114,115,116,32,97,114,103,117,109,101,110,116,32,116,111,32,116,104,101,32,112,114,111,109,105,115,101,32,99,111,110,115,116,114,117,99,116,111,114,34,41,125,40,41,44,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,116,63,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,114,121,123,101,40,102,117,110,99,116,105,111,110,40,101,41,123,68,40,116,44,101,41,125,44,102,117,110,99,116,105,111,110,40,101,41,123,80,40,116,44,101,41,125,41,125,99,97,116,99,104,40,101,41,123,80,40,116,44,101,41,125,125,40,116,104,105,115,44,101,41,58,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,70,97,105,108,101,100,32,116,111,32,99,111,110,115,116,114,117,99,116,32,39,80,114,111,109,105,115,101,39,58,32,80,108,101,97,115,101,32,117,115,101,32,116,104,101,32,39,110,101,119,39,32,111,112,101,114,97,116,111,114,44,32,116,104,105,115,32,111,98,106,101,99,116,32,99,111,110,115,116,114,117,99,116,111,114,32,99,97,110,110,111,116,32,98,101,32,99,97,108,108,101,100,32,97,115,32,97,32,102,117,110,99,116,105,111,110,46,34,41,125,40,41,41,125,114,101,116,117,114,110,32,116,46,112,114,111,116,111,116,121,112,101,46,99,97,116,99,104,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,104,101,110,40,110,117,108,108,44,101,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,102,105,110,97,108,108,121,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,59,114,101,116,117,114,110,32,99,40,116,41,63,116,104,105,115,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,114,101,115,111,108,118,101,40,116,40,41,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,125,41,125,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,114,101,115,111,108,118,101,40,116,40,41,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,101,125,41,125,41,58,116,104,105,115,46,116,104,101,110,40,116,44,116,41,125,44,116,125,40,41,59,114,101,116,117,114,110,32,82,46,112,114,111,116,111,116,121,112,101,46,116,104,101,110,61,121,44,82,46,97,108,108,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,101,119,32,69,40,116,104,105,115,44,101,41,46,112,114,111,109,105,115,101,125,44,82,46,114,97,99,101,61,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,115,61,116,104,105,115,59,114,101,116,117,114,110,32,110,40,114,41,63,110,101,119,32,115,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,114,46,108,101,110,103,116,104,44,105,61,48,59,105,60,110,59,105,43,43,41,115,46,114,101,115,111,108,118,101,40,114,91,105,93,41,46,116,104,101,110,40,101,44,116,41,125,41,58,110,101,119,32,115,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,40,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,89,111,117,32,109,117,115,116,32,112,97,115,115,32,97,110,32,97,114,114,97,121,32,116,111,32,114,97,99,101,46,34,41,41,125,41,125,44,82,46,114,101,115,111,108,118,101,61,112,44,82,46,114,101,106,101,99,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,110,101,119,32,116,104,105,115,40,103,41,59,114,101,116,117,114,110,32,80,40,116,44,101,41,44,116,125,44,82,46,95,115,101,116,83,99,104,101,100,117,108,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,114,61,101,125,44,82,46,95,115,101,116,65,115,97,112,61,102,117,110,99,116,105,111,110,40,101,41,123,111,61,101,125,44,82,46,95,97,115,97,112,61,111,44,82,46,112,111,108,121,102,105,108,108,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,118,111,105,100,32,48,59,105,102,40,118,111,105,100,32,48,33,61,61,84,41,101,61,84,59,101,108,115,101,32,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,115,101,108,102,41,101,61,115,101,108,102,59,101,108,115,101,32,116,114,121,123,101,61,70,117,110,99,116,105,111,110,40,34,114,101,116,117,114,110,32,116,104,105,115,34,41,40,41,125,99,97,116,99,104,40,101,41,123,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,112,111,108,121,102,105,108,108,32,102,97,105,108,101,100,32,98,101,99,97,117,115,101,32,103,108,111,98,97,108,32,111,98,106,101,99,116,32,105,115,32,117,110,97,118,97,105,108,97,98,108,101,32,105,110,32,116,104,105,115,32,101,110,118,105,114,111,110,109,101,110,116,34,41,125,118,97,114,32,116,61,101,46,80,114,111,109,105,115,101,59,105,102,40,116,41,123,118,97,114,32,110,61,110,117,108,108,59,116,114,121,123,110,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,116,46,114,101,115,111,108,118,101,40,41,41,125,99,97,116,99,104,40,101,41,123,125,105,102,40,34,91,111,98,106,101,99,116,32,80,114,111,109,105,115,101,93,34,61,61,61,110,38,38,33,116,46,99,97,115,116,41,114,101,116,117,114,110,125,101,46,80,114,111,109,105,115,101,61,82,125,44,82,46,80,114,111,109,105,115,101,61,82,125,40,41,125,41,46,80,114,111,109,105,115,101,59,102,117,110,99,116,105,111,110,32,118,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,114,101,116,117,114,110,32,116,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,101,46,112,114,111,116,111,116,121,112,101,44,123,99,111,110,115,116,114,117,99,116,111,114,58,123,118,97,108,117,101,58,101,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,119,114,105,116,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,41,44,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,63,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,44,101,41,58,116,46,95,95,112,114,111,116,111,95,95,61,101,44,116,125,102,117,110,99,116,105,111,110,32,121,40,101,44,110,44,105,44,116,41,123,114,101,116,117,114,110,32,110,61,99,46,99,97,115,116,65,114,114,97,121,40,110,41,44,101,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,101,91,116,63,34,114,101,99,117,114,115,101,68,111,119,110,34,58,34,101,97,99,104,34,93,40,102,117,110,99,116,105,111,110,40,116,41,123,99,46,101,97,99,104,40,110,44,102,117,110,99,116,105,111,110,40,101,41,123,99,46,105,115,70,117,110,99,116,105,111,110,40,116,91,101,93,41,38,38,116,91,101,93,46,97,112,112,108,121,40,116,44,105,41,125,41,125,41,44,101,46,95,116,114,101,101,46,101,110,100,40,41,44,101,125,102,117,110,99,116,105,111,110,32,112,40,116,41,123,118,97,114,32,101,61,116,59,114,101,116,117,114,110,32,99,46,105,115,83,116,114,105,110,103,40,116,41,38,38,40,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,105,115,70,117,110,99,116,105,111,110,40,101,91,116,93,41,63,101,91,116,93,40,41,58,101,91,116,93,125,41,44,101,125,102,117,110,99,116,105,111,110,32,107,40,116,44,101,41,123,105,102,40,101,41,114,101,116,117,114,110,32,116,104,105,115,46,101,120,116,114,97,99,116,40,116,41,59,118,97,114,32,110,61,112,40,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,102,108,97,116,116,101,110,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,40,34,114,101,109,111,118,101,100,34,61,61,61,116,124,124,33,101,46,114,101,109,111,118,101,100,40,41,41,38,38,110,40,101,41,125,41,125,118,97,114,32,103,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,115,40,101,44,116,44,110,41,123,118,97,114,32,105,59,105,102,40,97,40,116,104,105,115,44,115,41,44,105,61,104,40,116,104,105,115,44,117,40,115,41,46,99,97,108,108,40,116,104,105,115,41,41,44,99,46,105,115,70,117,110,99,116,105,111,110,40,99,46,103,101,116,40,101,44,34,105,115,84,114,101,101,34,41,41,38,38,33,101,46,105,115,84,114,101,101,40,101,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,116,114,101,101,32,105,110,115,116,97,110,99,101,46,34,41,59,114,101,116,117,114,110,32,105,46,95,116,114,101,101,61,101,44,105,46,108,101,110,103,116,104,61,48,44,105,46,98,97,116,99,104,105,110,103,61,48,44,105,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,49,44,105,46,99,111,110,102,105,103,61,99,46,100,101,102,97,117,108,116,115,68,101,101,112,40,123,125,44,110,44,123,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,58,33,49,125,41,44,105,46,95,112,97,103,105,110,97,116,105,111,110,61,123,108,105,109,105,116,58,101,46,99,111,110,102,105,103,46,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,44,116,111,116,97,108,58,48,125,44,40,99,46,105,115,65,114,114,97,121,40,116,41,124,124,116,32,105,110,115,116,97,110,99,101,111,102,32,115,41,38,38,99,46,101,97,99,104,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,101,32,105,110,115,116,97,110,99,101,111,102,32,119,63,105,46,112,117,115,104,40,101,46,99,108,111,110,101,40,41,41,58,105,46,97,100,100,78,111,100,101,40,101,41,125,41,44,105,125,114,101,116,117,114,110,32,116,40,115,44,118,40,65,114,114,97,121,41,41,44,101,40,115,44,91,123,107,101,121,58,34,97,100,100,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,111,114,116,38,38,40,116,61,99,46,115,111,114,116,101,100,73,110,100,101,120,66,121,40,116,104,105,115,44,101,44,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,111,114,116,41,41,44,116,104,105,115,46,105,110,115,101,114,116,65,116,40,116,44,101,41,125,125,44,123,107,101,121,58,34,97,112,112,108,121,67,104,97,110,103,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,48,61,61,61,116,104,105,115,46,98,97,116,99,104,105,110,103,38,38,40,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,99,104,97,110,103,101,115,46,97,112,112,108,105,101,100,34,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,41,41,125,125,44,123,107,101,121,58,34,98,97,116,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,98,97,116,99,104,105,110,103,60,48,38,38,40,116,104,105,115,46,98,97,116,99,104,105,110,103,61,48,41,44,116,104,105,115,46,98,97,116,99,104,105,110,103,43,43,125,125,44,123,107,101,121,58,34,97,118,97,105,108,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,97,118,97,105,108,97,98,108,101,34,44,101,41,125,125,44,123,107,101,121,58,34,98,108,117,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,98,108,117,114,34,41,125,125,44,123,107,101,121,58,34,98,108,117,114,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,98,108,117,114,34,41,125,125,44,123,107,101,121,58,34,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,59,33,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,124,124,48,60,116,104,105,115,46,98,97,116,99,104,105,110,103,124,124,33,116,104,105,115,46,99,111,110,102,105,103,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,124,124,40,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,114,101,110,100,101,114,97,98,108,101,40,41,38,38,40,116,61,116,124,124,101,44,110,61,101,41,125,41,44,116,104,105,115,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,38,38,116,104,105,115,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,33,61,61,116,38,38,116,104,105,115,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,46,109,97,114,107,68,105,114,116,121,40,41,44,116,38,38,116,33,61,61,116,104,105,115,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,38,38,116,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,38,38,116,104,105,115,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,33,61,61,110,38,38,116,104,105,115,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,46,109,97,114,107,68,105,114,116,121,40,41,44,110,38,38,110,33,61,61,116,104,105,115,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,38,38,110,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,61,116,44,116,104,105,115,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,61,110,44,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,49,41,125,125,44,123,107,101,121,58,34,99,104,101,99,107,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,99,104,101,99,107,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,99,108,101,97,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,99,108,101,97,110,34,41,125,125,44,123,107,101,121,58,34,99,108,111,110,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,99,111,108,108,97,112,115,101,34,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,99,111,108,108,97,112,115,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,99,111,108,108,97,112,115,101,34,41,125,125,44,123,107,101,121,58,34,99,111,110,99,97,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,59,116,46,95,99,111,110,116,101,120,116,61,116,104,105,115,46,95,99,111,110,116,101,120,116,59,102,117,110,99,116,105,111,110,32,110,40,101,41,123,101,32,105,110,115,116,97,110,99,101,111,102,32,119,38,38,116,46,112,117,115,104,40,101,41,125,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,104,105,115,44,110,41,44,99,46,101,97,99,104,40,101,44,110,41,44,116,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,61,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,44,116,125,125,44,123,107,101,121,58,34,99,111,110,116,101,120,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,99,111,110,116,101,120,116,124,124,116,104,105,115,46,95,116,114,101,101,125,125,44,123,107,101,121,58,34,99,111,112,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,44,110,44,105,41,123,118,97,114,32,114,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,114,46,112,117,115,104,40,101,46,99,111,112,121,40,116,44,110,44,105,41,41,125,41,44,114,125,125,44,123,107,101,121,58,34,100,101,101,112,101,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,104,105,108,100,114,101,110,124,124,116,46,112,117,115,104,40,101,41,125,41,44,116,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,100,101,115,101,108,101,99,116,34,41,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,100,101,115,101,108,101,99,116,34,41,125,125,44,123,107,101,121,58,34,101,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,104,105,115,44,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,101,100,105,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,101,100,105,116,97,98,108,101,34,44,101,41,125,125,44,123,107,101,121,58,34,101,100,105,116,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,101,100,105,116,105,110,103,34,44,101,41,125,125,44,123,107,101,121,58,34,101,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,98,97,116,99,104,105,110,103,45,45,44,48,61,61,61,116,104,105,115,46,98,97,116,99,104,105,110,103,38,38,116,104,105,115,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,101,120,112,97,110,100,34,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,101,120,112,97,110,100,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,48,61,61,45,45,110,38,38,101,40,105,41,125,118,97,114,32,110,61,48,59,105,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,110,43,43,44,101,46,99,104,105,108,100,114,101,110,63,101,46,101,120,112,97,110,100,40,41,46,99,97,116,99,104,40,116,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,101,46,99,104,105,108,100,114,101,110,46,101,120,112,97,110,100,68,101,101,112,40,41,46,99,97,116,99,104,40,116,41,46,116,104,101,110,40,116,41,125,41,58,116,40,41,125,41,125,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,80,97,114,101,110,116,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,101,120,112,97,110,100,80,97,114,101,110,116,115,34,41,125,125,44,123,107,101,121,58,34,101,120,116,114,97,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,102,108,97,116,116,101,110,40,101,41,44,110,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,97,100,100,78,111,100,101,40,101,46,99,111,112,121,72,105,101,114,97,114,99,104,121,40,41,41,125,41,44,110,125,125,44,123,107,101,121,58,34,102,105,108,116,101,114,66,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,112,40,101,41,44,110,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,116,40,101,41,38,38,110,46,112,117,115,104,40,101,41,125,41,44,110,125,125,44,123,107,101,121,58,34,102,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,116,40,101,41,41,114,101,116,117,114,110,32,110,61,101,44,33,49,125,41,44,110,125,125,44,123,107,101,121,58,34,102,105,114,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,44,110,61,116,104,105,115,46,108,101,110,103,116,104,59,116,60,110,59,116,43,43,41,105,102,40,101,40,116,104,105,115,91,116,93,41,41,114,101,116,117,114,110,32,116,104,105,115,91,116,93,125,125,44,123,107,101,121,58,34,102,108,97,116,116,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,44,110,61,112,40,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,110,40,101,41,38,38,116,46,112,117,115,104,40,101,41,125,41,44,116,125,125,44,123,107,101,121,58,34,102,111,99,117,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,102,111,99,117,115,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,102,111,114,69,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,101,41,125,125,44,123,107,101,121,58,34,103,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,91,101,93,125,125,44,123,107,101,121,58,34,104,105,100,100,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,104,105,100,100,101,110,34,44,101,41,125,125,44,123,107,101,121,58,34,104,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,104,105,100,101,34,41,125,125,44,123,107,101,121,58,34,104,105,100,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,104,105,100,101,34,41,125,125,44,123,107,101,121,58,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,101,41,125,125,44,123,107,101,121,58,34,105,110,115,101,114,116,65,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,46,105,100,41,123,118,97,114,32,110,61,116,104,105,115,46,110,111,100,101,40,116,46,105,100,41,59,105,102,40,110,41,114,101,116,117,114,110,32,110,46,114,101,115,116,111,114,101,40,41,46,115,104,111,119,40,41,44,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,46,99,104,105,108,100,114,101,110,41,63,40,99,46,105,115,65,114,114,97,121,76,105,107,101,40,110,46,99,104,105,108,100,114,101,110,41,124,124,40,110,46,99,104,105,108,100,114,101,110,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,44,110,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,110,41,44,99,46,101,97,99,104,40,116,46,99,104,105,108,100,114,101,110,44,102,117,110,99,116,105,111,110,40,101,41,123,110,46,99,104,105,108,100,114,101,110,46,97,100,100,78,111,100,101,40,101,41,125,41,41,58,116,46,99,104,105,108,100,114,101,110,38,38,99,46,105,115,66,111,111,108,101,97,110,40,110,46,99,104,105,108,100,114,101,110,41,38,38,40,110,46,99,104,105,108,100,114,101,110,61,116,46,99,104,105,108,100,114,101,110,41,44,110,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,110,125,118,97,114,32,105,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,115,116,114,117,99,116,111,114,46,105,115,84,114,101,101,78,111,100,101,40,116,41,63,116,58,67,40,116,104,105,115,46,95,116,114,101,101,44,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,115,112,108,105,99,101,40,101,44,48,44,105,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,38,38,40,105,46,105,116,114,101,101,46,112,97,114,101,110,116,61,116,104,105,115,46,95,99,111,110,116,101,120,116,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,46,109,97,114,107,68,105,114,116,121,40,41,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,97,100,100,101,100,34,44,105,41,44,105,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,108,101,110,103,116,104,45,49,33,61,61,101,38,38,116,104,105,115,46,105,110,118,111,107,101,40,34,109,97,114,107,68,105,114,116,121,34,41,44,116,104,105,115,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,105,125,125,44,123,107,101,121,58,34,105,110,118,111,107,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,101,44,116,41,125,125,44,123,107,101,121,58,34,105,110,118,111,107,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,40,33,99,46,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,40,116,41,124,124,50,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,38,38,40,116,61,99,46,116,97,105,108,40,97,114,103,117,109,101,110,116,115,41,41,44,121,40,116,104,105,115,44,101,44,116,44,33,48,41,125,125,44,123,107,101,121,58,34,108,97,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,116,104,105,115,46,108,101,110,103,116,104,45,49,59,48,60,61,116,59,116,45,45,41,105,102,40,101,40,116,104,105,115,91,116,93,41,41,114,101,116,117,114,110,32,116,104,105,115,91,116,93,125,125,44,123,107,101,121,58,34,108,111,97,100,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,108,111,97,100,105,110,103,34,44,101,41,125,125,44,123,107,101,121,58,34,108,111,97,100,77,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,116,104,105,115,59,114,101,116,117,114,110,32,116,104,105,115,46,95,108,111,97,100,105,110,103,63,102,46,114,101,106,101,99,116,40,110,101,119,32,69,114,114,111,114,40,34,80,101,110,100,105,110,103,32,108,111,97,100,77,111,114,101,32,99,97,108,108,32,109,117,115,116,32,99,111,109,112,108,101,116,101,32,98,101,102,111,114,101,32,98,101,105,110,103,32,105,110,118,111,107,101,100,32,97,103,97,105,110,46,34,41,41,58,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,61,61,61,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,63,102,46,114,101,115,111,108,118,101,40,41,58,40,116,104,105,115,46,95,108,111,97,100,105,110,103,61,33,48,44,116,104,105,115,46,98,97,116,99,104,40,41,44,99,46,105,110,118,111,107,101,40,116,104,105,115,46,95,99,111,110,116,101,120,116,44,34,109,97,114,107,68,105,114,116,121,34,41,44,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,43,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,112,97,103,105,110,97,116,101,100,34,44,116,104,105,115,46,95,99,111,110,116,101,120,116,124,124,116,104,105,115,46,95,116,114,101,101,44,116,104,105,115,46,112,97,103,105,110,97,116,105,111,110,44,101,41,44,116,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,63,116,104,105,115,46,95,99,111,110,116,101,120,116,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,111,97,100,67,104,105,108,100,114,101,110,40,41,58,116,104,105,115,46,95,116,114,101,101,46,108,111,97,100,40,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,97,116,97,41,58,40,116,104,105,115,46,95,108,111,97,100,105,110,103,61,33,49,44,102,46,114,101,115,111,108,118,101,40,41,41,44,116,104,105,115,46,101,110,100,40,41,44,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,38,38,116,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,110,46,95,108,111,97,100,105,110,103,61,33,49,44,110,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,41,46,99,97,116,99,104,40,102,117,110,99,116,105,111,110,40,41,123,110,46,95,108,111,97,100,105,110,103,61,33,49,44,110,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,41,44,116,41,125,125,44,123,107,101,121,58,34,109,97,116,99,104,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,109,97,116,99,104,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,105,61,50,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,110,63,110,58,116,104,105,115,44,114,61,116,104,105,115,91,101,93,46,114,101,109,111,118,101,40,41,44,115,61,105,46,105,110,115,101,114,116,65,116,40,116,44,114,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,109,111,118,101,100,34,44,115,44,116,104,105,115,44,101,44,105,44,116,41,44,115,125,125,44,123,107,101,121,58,34,110,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,46,105,100,61,61,61,116,41,114,101,116,117,114,110,32,110,61,101,44,33,49,125,41,44,110,125,125,44,123,107,101,121,58,34,110,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,99,46,105,115,65,114,114,97,121,40,116,41,38,38,40,110,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,44,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,45,49,60,116,46,105,110,100,101,120,79,102,40,101,46,105,100,41,38,38,110,46,112,117,115,104,40,101,41,125,41,41,44,99,46,105,115,65,114,114,97,121,40,116,41,63,110,58,116,104,105,115,125,125,44,123,107,101,121,58,34,112,97,103,105,110,97,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,125,125,44,123,107,101,121,58,34,112,111,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,114,40,117,40,115,46,112,114,111,116,111,116,121,112,101,41,44,34,112,111,112,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,101,125,125,44,123,107,101,121,58,34,112,117,115,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,114,40,117,40,115,46,112,114,111,116,111,116,121,112,101,41,44,34,112,117,115,104,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,44,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,116,125,125,44,123,107,101,121,58,34,114,101,99,117,114,115,101,68,111,119,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,114,101,109,111,118,101,40,116,104,105,115,44,123,105,100,58,101,46,105,100,125,41,44,99,46,105,110,118,111,107,101,40,116,104,105,115,46,95,99,111,110,116,101,120,116,44,34,109,97,114,107,68,105,114,116,121,34,41,44,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,114,101,109,111,118,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,114,101,115,116,111,114,101,34,41,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,114,101,115,116,111,114,101,34,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,115,101,108,101,99,116,34,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,115,101,108,101,99,116,97,98,108,101,34,44,101,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,115,101,108,101,99,116,34,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,115,101,108,101,99,116,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,115,104,105,102,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,114,40,117,40,115,46,112,114,111,116,111,116,121,112,101,41,44,34,115,104,105,102,116,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,44,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,116,125,125,44,123,107,101,121,58,34,115,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,115,104,111,119,34,41,125,125,44,123,107,101,121,58,34,115,104,111,119,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,115,104,111,119,34,41,125,125,44,123,107,101,121,58,34,115,111,102,116,82,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,115,111,102,116,82,101,109,111,118,101,34,41,125,125,44,123,107,101,121,58,34,115,111,114,116,66,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,59,105,102,40,101,61,101,124,124,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,111,114,116,41,123,116,104,105,115,46,98,97,116,99,104,40,41,59,118,97,114,32,110,61,99,46,115,111,114,116,66,121,40,116,104,105,115,44,101,41,59,116,104,105,115,46,108,101,110,103,116,104,61,48,44,99,46,101,97,99,104,40,110,44,102,117,110,99,116,105,111,110,40,101,41,123,116,46,112,117,115,104,40,101,41,125,41,44,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,101,110,100,40,41,125,114,101,116,117,114,110,32,116,104,105,115,125,125,44,123,107,101,121,58,34,115,111,114,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,111,114,116,40,116,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,101,46,99,104,105,108,100,114,101,110,46,115,111,114,116,68,101,101,112,40,116,41,125,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,115,112,108,105,99,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,114,40,117,40,115,46,112,114,111,116,111,116,121,112,101,41,44,34,115,112,108,105,99,101,34,44,116,104,105,115,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,101,125,125,44,123,107,101,121,58,34,115,116,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,115,116,97,116,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,116,97,116,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,115,116,97,116,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,119,97,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,59,118,97,114,32,110,61,101,46,99,111,110,116,101,120,116,40,41,44,105,61,116,46,99,111,110,116,101,120,116,40,41,44,114,61,110,46,105,110,100,101,120,79,102,40,101,41,44,115,61,105,46,105,110,100,101,120,79,102,40,116,41,59,114,101,116,117,114,110,32,110,61,61,61,105,63,40,116,104,105,115,91,114,93,61,116,44,116,104,105,115,91,115,93,61,101,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,109,111,118,101,100,34,44,101,44,110,44,114,44,105,44,115,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,109,111,118,101,100,34,44,116,44,105,44,115,44,110,44,114,41,41,58,40,110,46,109,111,118,101,40,114,44,105,46,105,110,100,101,120,79,102,40,116,41,44,105,41,44,105,46,109,111,118,101,40,105,46,105,110,100,101,120,79,102,40,116,41,44,114,44,110,41,41,44,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,115,119,97,112,112,101,100,34,44,101,44,110,44,114,44,116,44,105,44,115,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,116,114,101,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,125,125,44,123,107,101,121,58,34,116,111,65,114,114,97,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,116,46,112,117,115,104,40,101,46,116,111,79,98,106,101,99,116,40,41,41,125,41,44,116,125,125,44,123,107,101,121,58,34,117,110,115,104,105,102,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,114,40,117,40,115,46,112,114,111,116,111,116,121,112,101,41,44,34,117,110,115,104,105,102,116,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,44,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,116,125,125,44,123,107,101,121,58,34,118,105,115,105,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,118,105,115,105,98,108,101,34,44,101,41,125,125,93,41,44,115,125,40,41,59,102,117,110,99,116,105,111,110,32,95,40,101,44,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,103,63,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,61,95,40,101,44,116,41,125,41,58,101,32,105,110,115,116,97,110,99,101,111,102,32,119,38,38,33,49,33,61,61,40,110,61,116,40,101,41,41,38,38,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,110,61,95,40,101,46,99,104,105,108,100,114,101,110,44,116,41,41,44,110,125,102,117,110,99,116,105,111,110,32,109,40,110,41,123,114,101,116,117,114,110,32,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,99,46,105,115,79,98,106,101,99,116,40,110,41,41,114,101,116,117,114,110,32,116,40,110,101,119,32,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,80,114,111,109,105,115,101,34,41,41,59,99,46,105,115,70,117,110,99,116,105,111,110,40,110,46,116,104,101,110,41,38,38,110,46,116,104,101,110,40,101,41,44,99,46,105,115,70,117,110,99,116,105,111,110,40,110,46,101,114,114,111,114,41,63,110,46,101,114,114,111,114,40,116,41,58,99,46,105,115,70,117,110,99,116,105,111,110,40,110,46,99,97,116,99,104,41,38,38,110,46,99,97,116,99,104,40,116,41,125,41,125,102,117,110,99,116,105,111,110,32,98,40,101,44,116,44,110,41,123,118,97,114,32,105,61,101,46,105,116,114,101,101,46,115,116,97,116,101,91,116,93,59,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,110,38,38,105,33,61,61,110,38,38,40,101,46,105,116,114,101,101,46,115,116,97,116,101,91,116,93,61,110,44,34,114,101,110,100,101,114,101,100,34,33,61,61,116,38,38,101,46,109,97,114,107,68,105,114,116,121,40,41,44,101,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,115,116,97,116,101,46,99,104,97,110,103,101,100,34,44,101,44,116,44,105,44,110,41,41,44,105,125,102,111,114,40,118,97,114,32,119,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,114,40,101,44,116,44,110,41,123,118,97,114,32,105,61,116,104,105,115,59,97,40,116,104,105,115,44,114,41,44,116,104,105,115,46,95,116,114,101,101,61,101,44,116,32,105,110,115,116,97,110,99,101,111,102,32,114,38,38,40,40,110,61,99,46,99,97,115,116,65,114,114,97,121,40,110,41,41,46,112,117,115,104,40,34,95,116,114,101,101,34,41,44,99,46,101,97,99,104,40,116,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,99,46,105,110,99,108,117,100,101,115,40,110,44,116,41,124,124,40,99,46,105,115,79,98,106,101,99,116,40,101,41,63,105,91,116,93,61,101,32,105,110,115,116,97,110,99,101,111,102,32,103,63,101,46,99,108,111,110,101,40,41,58,34,105,116,114,101,101,34,61,61,61,116,63,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,105,61,123,125,59,114,101,116,117,114,110,40,110,61,99,46,99,97,115,116,65,114,114,97,121,40,110,41,41,46,112,117,115,104,40,34,114,101,102,34,41,44,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,99,46,105,110,99,108,117,100,101,115,40,110,44,116,41,124,124,40,105,91,116,93,61,99,46,99,108,111,110,101,68,101,101,112,40,101,41,41,125,41,44,105,125,40,101,41,58,99,46,99,108,111,110,101,68,101,101,112,40,101,41,58,105,91,116,93,61,101,41,125,41,41,125,114,101,116,117,114,110,32,101,40,114,44,91,123,107,101,121,58,34,97,100,100,67,104,105,108,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,99,46,105,115,65,114,114,97,121,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,38,38,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,124,124,40,116,104,105,115,46,99,104,105,108,100,114,101,110,61,110,101,119,32,103,40,116,104,105,115,46,95,116,114,101,101,41,44,116,104,105,115,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,116,104,105,115,41,44,116,104,105,115,46,99,104,105,108,100,114,101,110,46,97,100,100,78,111,100,101,40,101,41,125,125,44,123,107,101,121,58,34,97,100,100,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,44,110,61,110,101,119,32,103,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,33,99,46,105,115,65,114,114,97,121,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,38,38,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,124,124,40,116,104,105,115,46,99,104,105,108,100,114,101,110,61,110,101,119,32,103,40,116,104,105,115,46,95,116,114,101,101,41,44,116,104,105,115,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,116,104,105,115,41,44,116,104,105,115,46,99,104,105,108,100,114,101,110,46,98,97,116,99,104,40,41,44,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,110,46,112,117,115,104,40,116,46,97,100,100,67,104,105,108,100,40,101,41,41,125,41,44,116,104,105,115,46,99,104,105,108,100,114,101,110,46,101,110,100,40,41,44,110,125,125,44,123,107,101,121,58,34,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,105,115,68,121,110,97,109,105,99,38,38,40,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,124,124,33,48,61,61,61,116,104,105,115,46,99,104,105,108,100,114,101,110,41,125,125,44,123,107,101,121,58,34,97,115,115,105,103,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,97,115,115,105,103,110,46,97,112,112,108,121,40,99,44,91,116,104,105,115,93,46,99,111,110,99,97,116,40,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,41,44,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,97,118,97,105,108,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,104,105,100,100,101,110,40,41,38,38,33,116,104,105,115,46,114,101,109,111,118,101,100,40,41,125,125,44,123,107,101,121,58,34,98,108,117,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,44,33,49,41,44,111,40,34,102,111,99,117,115,101,100,34,44,33,49,44,34,98,108,117,114,114,101,100,34,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,99,104,101,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,111,40,34,99,104,101,99,107,101,100,34,44,33,48,44,34,99,104,101,99,107,101,100,34,44,116,104,105,115,44,33,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,99,104,101,99,107,98,111,120,46,97,117,116,111,67,104,101,99,107,67,104,105,108,100,114,101,110,41,44,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,99,104,101,99,107,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,99,104,101,99,107,101,100,34,41,125,125,44,123,107,101,121,58,34,99,108,101,97,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,46,104,97,115,80,97,114,101,110,116,40,41,41,123,118,97,114,32,116,61,101,46,103,101,116,80,97,114,101,110,116,40,41,59,116,46,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,40,41,124,124,116,46,104,105,100,101,40,41,125,125,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,99,108,111,110,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,101,119,32,114,40,116,104,105,115,46,95,116,114,101,101,44,116,104,105,115,44,101,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,34,99,111,108,108,97,112,115,101,100,34,44,33,48,44,34,99,111,108,108,97,112,115,101,100,34,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,99,111,108,108,97,112,115,101,100,34,41,125,125,44,123,107,101,121,58,34,99,111,110,116,101,120,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,63,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,99,104,105,108,100,114,101,110,58,116,104,105,115,46,95,116,114,101,101,46,109,111,100,101,108,125,125,44,123,107,101,121,58,34,99,111,112,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,33,101,124,124,33,99,46,105,115,70,117,110,99,116,105,111,110,40,101,46,97,100,100,78,111,100,101,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,68,101,115,116,105,110,97,116,105,111,110,32,109,117,115,116,32,98,101,32,97,110,32,73,110,115,112,105,114,101,32,84,114,101,101,32,105,110,115,116,97,110,99,101,46,34,41,59,118,97,114,32,105,61,116,104,105,115,59,114,101,116,117,114,110,32,116,38,38,40,105,61,105,46,99,111,112,121,72,105,101,114,97,114,99,104,121,40,33,49,44,110,41,41,44,101,46,97,100,100,78,111,100,101,40,99,46,99,108,111,110,101,68,101,101,112,40,105,46,116,111,79,98,106,101,99,116,40,33,49,44,110,41,41,41,125,125,44,123,107,101,121,58,34,99,111,112,121,72,105,101,114,97,114,99,104,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,105,61,91,93,44,101,61,116,104,105,115,46,103,101,116,80,97,114,101,110,116,115,40,41,59,105,102,40,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,105,46,112,117,115,104,40,101,46,116,111,79,98,106,101,99,116,40,116,44,110,41,41,125,41,44,101,61,105,46,114,101,118,101,114,115,101,40,41,44,33,116,41,123,118,97,114,32,114,61,116,104,105,115,46,116,111,79,98,106,101,99,116,40,33,48,44,110,41,59,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,114,46,99,104,105,108,100,114,101,110,61,116,104,105,115,46,99,104,105,108,100,114,101,110,46,102,105,108,116,101,114,66,121,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,101,46,115,116,97,116,101,40,34,104,105,100,100,101,110,34,41,125,41,46,116,111,65,114,114,97,121,40,41,44,114,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,114,41,44,105,46,112,117,115,104,40,114,41,125,118,97,114,32,115,61,105,91,48,93,44,111,61,105,46,108,101,110,103,116,104,44,97,61,115,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,105,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,91,93,59,116,43,49,60,111,38,38,40,110,46,112,117,115,104,40,105,91,116,43,49,93,41,44,97,46,99,104,105,108,100,114,101,110,61,110,44,97,61,97,46,99,104,105,108,100,114,101,110,91,48,93,41,125,41,44,67,40,116,104,105,115,46,95,116,114,101,101,44,115,41,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,108,101,99,116,101,100,40,41,38,38,40,33,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,124,124,49,60,116,104,105,115,46,95,116,114,101,101,46,115,101,108,101,99,116,101,100,40,41,46,108,101,110,103,116,104,41,38,38,40,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,98,97,116,99,104,40,41,44,111,40,34,115,101,108,101,99,116,101,100,34,44,33,49,44,34,100,101,115,101,108,101,99,116,101,100,34,44,116,104,105,115,44,33,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,101,110,100,40,41,41,59,114,101,116,117,114,110,32,116,104,105,115,125,125,44,123,107,101,121,58,34,101,100,105,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,97,98,108,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,38,38,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,97,98,108,101,34,41,125,125,44,123,107,101,121,58,34,101,100,105,116,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,40,110,46,104,97,115,67,104,105,108,100,114,101,110,40,41,124,124,110,46,95,116,114,101,101,46,105,115,68,121,110,97,109,105,99,38,38,33,48,61,61,61,110,46,99,104,105,108,100,114,101,110,41,38,38,40,110,46,99,111,108,108,97,112,115,101,100,40,41,124,124,110,46,104,105,100,100,101,110,40,41,41,63,40,110,46,115,116,97,116,101,40,34,99,111,108,108,97,112,115,101,100,34,44,33,49,41,44,110,46,115,116,97,116,101,40,34,104,105,100,100,101,110,34,44,33,49,41,44,110,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,101,120,112,97,110,100,101,100,34,44,110,41,44,110,46,95,116,114,101,101,46,105,115,68,121,110,97,109,105,99,38,38,33,48,61,61,61,110,46,99,104,105,108,100,114,101,110,63,110,46,108,111,97,100,67,104,105,108,100,114,101,110,40,41,46,116,104,101,110,40,101,41,46,99,97,116,99,104,40,116,41,58,40,110,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,101,40,110,41,41,41,58,101,40,110,41,125,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,99,111,108,108,97,112,115,101,100,40,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,80,97,114,101,110,116,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,101,120,112,97,110,100,40,41,125,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,102,111,99,117,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,111,99,117,115,101,100,40,41,124,124,40,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,116,104,105,115,46,95,116,114,101,101,46,98,108,117,114,68,101,101,112,40,41,44,116,104,105,115,46,115,116,97,116,101,40,34,102,111,99,117,115,101,100,34,44,33,48,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,102,111,99,117,115,101,100,34,44,116,104,105,115,41,44,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,102,111,99,117,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,102,111,99,117,115,101,100,34,41,125,125,44,123,107,101,121,58,34,103,101,116,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,63,116,104,105,115,46,99,104,105,108,100,114,101,110,58,110,101,119,32,103,40,116,104,105,115,46,95,116,114,101,101,41,125,125,44,123,107,101,121,58,34,103,101,116,80,97,114,101,110,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,116,114,101,101,46,112,97,114,101,110,116,125,125,44,123,107,101,121,58,34,103,101,116,80,97,114,101,110,116,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,101,119,32,103,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,112,117,115,104,40,101,41,125,41,44,116,125,125,44,123,107,101,121,58,34,103,101,116,84,101,120,116,117,97,108,72,105,101,114,97,114,99,104,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,117,110,115,104,105,102,116,40,101,46,116,101,120,116,41,125,41,44,116,125,125,44,123,107,101,121,58,34,104,97,115,65,110,99,101,115,116,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,33,49,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,40,110,61,101,46,105,100,61,61,61,116,46,105,100,41,125,41,44,110,125,125,44,123,107,101,121,58,34,104,97,115,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,38,38,48,60,116,104,105,115,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,125,125,44,123,107,101,121,58,34,104,97,115,76,111,97,100,101,100,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,125,125,44,123,107,101,121,58,34,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,63,66,111,111,108,101,97,110,40,116,104,105,115,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,41,58,116,104,105,115,46,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,40,41,125,125,44,123,107,101,121,58,34,104,97,115,80,97,114,101,110,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,66,111,111,108,101,97,110,40,116,104,105,115,46,105,116,114,101,101,46,112,97,114,101,110,116,41,125,125,44,123,107,101,121,58,34,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,33,49,59,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,101,61,48,60,116,104,105,115,46,99,104,105,108,100,114,101,110,46,102,105,108,116,101,114,66,121,40,34,97,118,97,105,108,97,98,108,101,34,41,46,108,101,110,103,116,104,41,44,101,125,125,44,123,107,101,121,58,34,104,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,111,40,34,104,105,100,100,101,110,34,44,33,48,44,34,104,105,100,100,101,110,34,44,116,104,105,115,41,59,114,101,116,117,114,110,32,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,101,46,99,104,105,108,100,114,101,110,46,104,105,100,101,40,41,44,101,125,125,44,123,107,101,121,58,34,104,105,100,100,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,104,105,100,100,101,110,34,41,125,125,44,123,107,101,121,58,34,105,110,100,101,120,80,97,116,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,112,117,115,104,40,99,46,105,110,100,101,120,79,102,40,101,46,99,111,110,116,101,120,116,40,41,44,101,41,41,125,41,44,116,46,114,101,118,101,114,115,101,40,41,46,106,111,105,110,40,34,46,34,41,125,125,44,123,107,101,121,58,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,41,125,125,44,123,107,101,121,58,34,105,115,70,105,114,115,116,82,101,110,100,101,114,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,61,61,61,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,125,125,44,123,107,101,121,58,34,105,115,76,97,115,116,82,101,110,100,101,114,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,61,61,61,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,125,125,44,123,107,101,121,58,34,105,115,79,110,108,121,82,101,110,100,101,114,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,115,70,105,114,115,116,82,101,110,100,101,114,97,98,108,101,40,41,38,38,116,104,105,115,46,105,115,76,97,115,116,82,101,110,100,101,114,97,98,108,101,40,41,125,125,44,123,107,101,121,58,34,108,97,115,116,68,101,101,112,101,115,116,86,105,115,105,98,108,101,67,104,105,108,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,59,105,102,40,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,33,116,104,105,115,46,99,111,108,108,97,112,115,101,100,40,41,41,123,118,97,114,32,116,61,40,101,61,99,46,102,105,110,100,76,97,115,116,40,116,104,105,115,46,99,104,105,108,100,114,101,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,118,105,115,105,98,108,101,40,41,125,41,41,46,108,97,115,116,68,101,101,112,101,115,116,86,105,115,105,98,108,101,67,104,105,108,100,40,41,59,116,38,38,40,101,61,116,41,125,114,101,116,117,114,110,32,101,125,125,44,123,107,101,121,58,34,108,111,97,100,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,105,44,114,41,123,105,102,40,33,111,46,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,40,41,41,114,101,116,117,114,110,32,114,40,110,101,119,32,69,114,114,111,114,40,34,78,111,100,101,32,100,111,101,115,32,110,111,116,32,104,97,118,101,32,111,114,32,115,117,112,112,111,114,116,32,100,121,110,97,109,105,99,32,99,104,105,108,100,114,101,110,46,34,41,41,59,111,46,115,116,97,116,101,40,34,108,111,97,100,105,110,103,34,44,33,48,41,44,111,46,109,97,114,107,68,105,114,116,121,40,41,44,111,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,59,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,105,102,40,33,99,46,105,115,65,114,114,97,121,76,105,107,101,40,101,41,41,114,101,116,117,114,110,32,114,40,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,76,111,97,100,101,114,32,114,101,113,117,105,114,101,115,32,97,110,32,97,114,114,97,121,45,108,105,107,101,32,96,110,111,100,101,115,96,32,112,97,114,97,109,101,116,101,114,46,34,41,41,59,111,46,99,111,110,116,101,120,116,40,41,46,98,97,116,99,104,40,41,44,111,46,115,116,97,116,101,40,34,108,111,97,100,105,110,103,34,44,33,49,41,59,118,97,114,32,110,61,83,40,111,46,95,116,114,101,101,44,101,44,111,41,59,99,46,105,115,65,114,114,97,121,76,105,107,101,40,111,46,99,104,105,108,100,114,101,110,41,63,111,46,99,104,105,108,100,114,101,110,61,111,46,99,104,105,108,100,114,101,110,46,99,111,110,99,97,116,40,110,41,58,111,46,99,104,105,108,100,114,101,110,61,110,44,99,46,112,97,114,115,101,73,110,116,40,116,41,62,101,46,108,101,110,103,116,104,38,38,40,111,46,99,104,105,108,100,114,101,110,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,61,99,46,112,97,114,115,101,73,110,116,40,116,41,41,44,34,99,104,101,99,107,98,111,120,34,61,61,61,111,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,111,100,101,38,38,111,46,115,101,108,101,99,116,101,100,40,41,38,38,111,46,99,104,105,108,100,114,101,110,46,115,101,108,101,99,116,40,41,44,111,46,109,97,114,107,68,105,114,116,121,40,41,44,111,46,99,111,110,116,101,120,116,40,41,46,101,110,100,40,41,44,105,40,111,46,99,104,105,108,100,114,101,110,41,44,111,46,95,116,114,101,101,46,101,109,105,116,40,34,99,104,105,108,100,114,101,110,46,108,111,97,100,101,100,34,44,111,41,125,102,117,110,99,116,105,111,110,32,116,40,101,41,123,111,46,115,116,97,116,101,40,34,108,111,97,100,105,110,103,34,44,33,49,41,44,111,46,99,104,105,108,100,114,101,110,61,110,101,119,32,103,40,111,46,95,116,114,101,101,41,44,40,111,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,111,41,46,109,97,114,107,68,105,114,116,121,40,41,44,111,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,114,40,101,41,44,111,46,95,116,114,101,101,46,101,109,105,116,40,34,116,114,101,101,46,108,111,97,100,101,114,114,111,114,34,44,101,41,125,118,97,114,32,110,61,111,46,95,116,114,101,101,46,99,111,110,115,116,114,117,99,116,111,114,46,105,115,84,114,101,101,78,111,100,101,115,40,111,46,99,104,105,108,100,114,101,110,41,63,111,46,99,104,105,108,100,114,101,110,46,112,97,103,105,110,97,116,105,111,110,40,41,58,110,117,108,108,44,115,61,111,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,97,116,97,40,111,44,101,44,116,44,110,41,59,99,46,105,115,79,98,106,101,99,116,40,115,41,38,38,109,40,115,41,46,116,104,101,110,40,101,41,46,99,97,116,99,104,40,116,41,125,41,125,125,44,123,107,101,121,58,34,108,111,97,100,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,108,111,97,100,105,110,103,34,41,125,125,44,123,107,101,121,58,34,108,111,97,100,77,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,104,105,108,100,114,101,110,38,38,33,48,33,61,61,116,104,105,115,46,99,104,105,108,100,114,101,110,63,116,104,105,115,46,99,104,105,108,100,114,101,110,46,108,111,97,100,77,111,114,101,40,41,58,102,46,114,101,106,101,99,116,40,110,101,119,32,69,114,114,111,114,40,34,67,104,105,108,100,114,101,110,32,104,97,118,101,32,110,111,116,32,121,101,116,32,98,101,101,110,32,108,111,97,100,101,100,46,34,41,41,125,125,44,123,107,101,121,58,34,109,97,114,107,68,105,114,116,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,116,114,101,101,46,100,105,114,116,121,124,124,40,116,104,105,115,46,105,116,114,101,101,46,100,105,114,116,121,61,33,48,44,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,109,97,114,107,68,105,114,116,121,40,41,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,109,97,116,99,104,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,109,97,116,99,104,101,100,34,41,125,125,44,123,107,101,121,58,34,110,101,120,116,86,105,115,105,98,108,101,65,110,99,101,115,116,114,97,108,83,105,98,108,105,110,103,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,59,105,102,40,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,41,123,118,97,114,32,116,61,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,59,101,61,40,101,61,116,46,110,101,120,116,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,40,41,41,124,124,116,46,110,101,120,116,86,105,115,105,98,108,101,65,110,99,101,115,116,114,97,108,83,105,98,108,105,110,103,78,111,100,101,40,41,125,114,101,116,117,114,110,32,101,125,125,44,123,107,101,121,58,34,110,101,120,116,86,105,115,105,98,108,101,67,104,105,108,100,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,59,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,101,61,99,46,102,105,110,100,40,116,104,105,115,46,99,104,105,108,100,114,101,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,118,105,115,105,98,108,101,40,41,125,41,41,44,101,125,125,44,123,107,101,121,58,34,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,110,101,120,116,86,105,115,105,98,108,101,67,104,105,108,100,78,111,100,101,40,41,124,124,116,104,105,115,46,110,101,120,116,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,40,41,124,124,116,104,105,115,46,110,101,120,116,86,105,115,105,98,108,101,65,110,99,101,115,116,114,97,108,83,105,98,108,105,110,103,78,111,100,101,40,41,125,125,44,123,107,101,121,58,34,110,101,120,116,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,63,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,99,104,105,108,100,114,101,110,58,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,115,40,41,44,116,61,99,46,102,105,110,100,73,110,100,101,120,40,101,44,123,105,100,58,116,104,105,115,46,105,100,125,41,59,114,101,116,117,114,110,32,99,46,102,105,110,100,40,99,46,115,108,105,99,101,40,101,44,116,43,49,41,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,118,105,115,105,98,108,101,40,41,125,41,125,125,44,123,107,101,121,58,34,112,97,103,105,110,97,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,103,101,116,40,116,104,105,115,44,34,99,104,105,108,100,114,101,110,46,95,112,97,103,105,110,97,116,105,111,110,34,41,125,125,44,123,107,101,121,58,34,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,59,114,101,116,117,114,110,40,101,61,116,104,105,115,46,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,40,41,41,38,38,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,33,101,46,99,111,108,108,97,112,115,101,100,40,41,38,38,40,101,61,101,46,108,97,115,116,68,101,101,112,101,115,116,86,105,115,105,98,108,101,67,104,105,108,100,40,41,41,44,33,101,38,38,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,40,101,61,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,41,44,101,125,125,44,123,107,101,121,58,34,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,63,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,99,104,105,108,100,114,101,110,58,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,115,40,41,44,116,61,99,46,102,105,110,100,73,110,100,101,120,40,101,44,123,105,100,58,116,104,105,115,46,105,100,125,41,59,114,101,116,117,114,110,32,99,46,102,105,110,100,76,97,115,116,40,99,46,115,108,105,99,101,40,101,44,48,44,116,41,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,118,105,115,105,98,108,101,40,41,125,41,125,125,44,123,107,101,121,58,34,114,101,99,117,114,115,101,68,111,119,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,99,117,114,115,101,85,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,49,33,61,61,101,40,116,104,105,115,41,38,38,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,99,117,114,115,101,85,112,40,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,105,110,100,101,116,101,114,109,105,110,97,116,101,40,41,59,105,102,40,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,33,49,41,44,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,123,118,97,114,32,116,61,116,104,105,115,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,44,110,61,48,44,105,61,48,59,116,104,105,115,46,99,104,105,108,100,114,101,110,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,104,101,99,107,101,100,40,41,38,38,105,43,43,44,101,46,105,110,100,101,116,101,114,109,105,110,97,116,101,40,41,38,38,110,43,43,125,41,44,105,61,61,61,116,63,111,40,34,99,104,101,99,107,101,100,34,44,33,48,44,34,99,104,101,99,107,101,100,34,44,116,104,105,115,41,58,111,40,34,99,104,101,99,107,101,100,34,44,33,49,44,34,117,110,99,104,101,99,107,101,100,34,44,116,104,105,115,41,44,116,104,105,115,46,99,104,101,99,107,101,100,40,41,124,124,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,48,60,110,124,124,48,60,116,38,38,48,60,105,38,38,105,60,116,41,125,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,44,101,33,61,61,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,41,38,38,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,108,111,97,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,110,46,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,40,41,41,114,101,116,117,114,110,32,116,40,110,101,119,32,69,114,114,111,114,40,34,78,111,100,101,32,111,114,32,116,114,101,101,32,100,111,101,115,32,110,111,116,32,115,117,112,112,111,114,116,32,100,121,110,97,109,105,99,32,99,104,105,108,100,114,101,110,46,34,41,41,59,110,46,99,104,105,108,100,114,101,110,61,33,48,44,110,46,99,111,108,108,97,112,115,101,40,41,44,110,46,108,111,97,100,67,104,105,108,100,114,101,110,40,41,46,116,104,101,110,40,101,41,46,99,97,116,99,104,40,116,41,125,41,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,48,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,101,38,38,101,44,110,61,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,59,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,114,101,109,111,118,101,40,116,104,105,115,41,44,110,38,38,40,110,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,44,110,46,109,97,114,107,68,105,114,116,121,40,41,41,44,40,110,63,110,46,112,97,103,105,110,97,116,105,111,110,40,41,58,116,104,105,115,46,95,116,114,101,101,46,112,97,103,105,110,97,116,105,111,110,40,41,41,46,116,111,116,97,108,45,45,59,118,97,114,32,105,61,116,104,105,115,46,116,111,79,98,106,101,99,116,40,33,49,44,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,114,101,109,111,118,101,100,34,44,105,44,110,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,105,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,114,101,109,111,118,101,100,34,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,104,105,100,100,101,110,40,41,38,38,33,116,104,105,115,46,114,101,109,111,118,101,100,40,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,114,101,110,100,101,114,101,100,34,41,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,34,114,101,109,111,118,101,100,34,44,33,49,44,34,114,101,115,116,111,114,101,100,34,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,116,104,105,115,46,115,101,108,101,99,116,101,100,40,41,38,38,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,40,41,41,123,105,102,40,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,116,104,105,115,46,95,116,114,101,101,46,99,97,110,65,117,116,111,68,101,115,101,108,101,99,116,40,41,41,123,118,97,114,32,116,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,59,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,61,33,49,44,116,104,105,115,46,95,116,114,101,101,46,100,101,115,101,108,101,99,116,68,101,101,112,40,41,44,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,61,116,125,111,40,34,115,101,108,101,99,116,101,100,34,44,33,48,44,34,115,101,108,101,99,116,101,100,34,44,116,104,105,115,44,33,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,41,44,40,116,104,105,115,46,95,116,114,101,101,46,95,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,61,116,104,105,115,41,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,125,114,101,116,117,114,110,32,116,104,105,115,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,108,108,111,119,40,116,104,105,115,41,59,114,101,116,117,114,110,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,101,63,101,58,116,104,105,115,46,115,116,97,116,101,40,34,115,101,108,101,99,116,97,98,108,101,34,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,115,101,108,101,99,116,101,100,34,41,125,125,44,123,107,101,121,58,34,115,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,91,101,93,61,116,44,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,115,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,34,104,105,100,100,101,110,34,44,33,49,44,34,115,104,111,119,110,34,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,115,111,102,116,82,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,34,114,101,109,111,118,101,100,34,44,33,48,44,34,115,111,102,116,114,101,109,111,118,101,100,34,44,116,104,105,115,44,34,115,111,102,116,82,101,109,111,118,101,34,41,125,125,44,123,107,101,121,58,34,115,116,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,99,46,105,115,83,116,114,105,110,103,40,101,41,41,114,101,116,117,114,110,32,98,40,116,104,105,115,44,101,44,116,41,59,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,98,97,116,99,104,40,41,59,118,97,114,32,105,61,123,125,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,91,116,93,61,98,40,110,44,116,44,101,41,125,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,101,110,100,40,41,44,105,125,125,44,123,107,101,121,58,34,115,116,97,116,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,44,105,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,98,97,116,99,104,40,41,44,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,105,46,112,117,115,104,40,110,46,115,116,97,116,101,40,101,44,116,41,41,125,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,101,110,100,40,41,44,105,125,125,44,123,107,101,121,58,34,115,119,97,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,115,119,97,112,40,116,104,105,115,44,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,67,104,101,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,104,101,99,107,101,100,40,41,63,116,104,105,115,46,117,110,99,104,101,99,107,40,41,58,116,104,105,115,46,99,104,101,99,107,40,41,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,67,111,108,108,97,112,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,108,97,112,115,101,100,40,41,63,116,104,105,115,46,101,120,112,97,110,100,40,41,58,116,104,105,115,46,99,111,108,108,97,112,115,101,40,41,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,69,100,105,116,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,44,33,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,41,41,44,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,83,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,101,100,40,41,63,116,104,105,115,46,100,101,115,101,108,101,99,116,40,41,58,116,104,105,115,46,115,101,108,101,99,116,40,41,125,125,44,123,107,101,121,58,34,116,111,79,98,106,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,44,105,61,48,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,101,38,38,101,44,114,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,116,38,38,116,44,115,61,123,125,44,111,61,99,46,112,117,108,108,40,79,98,106,101,99,116,46,107,101,121,115,40,116,104,105,115,41,44,34,95,116,114,101,101,34,44,34,99,104,105,108,100,114,101,110,34,44,34,105,116,114,101,101,34,41,59,99,46,101,97,99,104,40,111,44,102,117,110,99,116,105,111,110,40,101,41,123,115,91,101,93,61,110,91,101,93,125,41,59,118,97,114,32,97,61,115,46,105,116,114,101,101,61,123,125,59,114,101,116,117,114,110,32,97,46,97,61,116,104,105,115,46,105,116,114,101,101,46,97,44,97,46,105,99,111,110,61,116,104,105,115,46,105,116,114,101,101,46,105,99,111,110,44,97,46,108,105,61,116,104,105,115,46,105,116,114,101,101,46,108,105,44,114,38,38,40,97,46,115,116,97,116,101,61,116,104,105,115,46,105,116,114,101,101,46,115,116,97,116,101,41,44,33,105,38,38,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,99,46,105,115,70,117,110,99,116,105,111,110,40,116,104,105,115,46,99,104,105,108,100,114,101,110,46,116,111,65,114,114,97,121,41,38,38,40,115,46,99,104,105,108,100,114,101,110,61,116,104,105,115,46,99,104,105,108,100,114,101,110,46,116,111,65,114,114,97,121,40,41,41,44,115,125,125,44,123,107,101,121,58,34,116,111,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,101,120,116,125,125,44,123,107,101,121,58,34,116,114,101,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,116,114,101,101,40,41,125,125,44,123,107,101,121,58,34,117,110,99,104,101,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,111,40,34,99,104,101,99,107,101,100,34,44,33,49,44,34,117,110,99,104,101,99,107,101,100,34,44,116,104,105,115,44,33,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,99,104,101,99,107,98,111,120,46,97,117,116,111,67,104,101,99,107,67,104,105,108,100,114,101,110,41,44,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,33,49,41,44,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,118,105,115,105,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,40,116,104,105,115,46,104,105,100,100,101,110,40,41,124,124,116,104,105,115,46,114,101,109,111,118,101,100,40,41,124,124,116,104,105,115,46,95,116,114,101,101,46,117,115,101,115,78,97,116,105,118,101,68,79,77,38,38,33,116,104,105,115,46,114,101,110,100,101,114,101,100,40,41,41,38,38,40,33,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,124,124,33,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,99,111,108,108,97,112,115,101,100,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,118,105,115,105,98,108,101,40,41,41,125,125,93,41,44,114,125,40,41,44,120,61,100,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,99,114,121,112,116,111,38,38,99,114,121,112,116,111,46,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,38,38,99,114,121,112,116,111,46,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,46,98,105,110,100,40,99,114,121,112,116,111,41,124,124,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,115,67,114,121,112,116,111,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,46,109,115,67,114,121,112,116,111,46,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,38,38,109,115,67,114,121,112,116,111,46,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,46,98,105,110,100,40,109,115,67,114,121,112,116,111,41,59,105,102,40,116,41,123,118,97,114,32,110,61,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,49,54,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,110,41,44,110,125,125,101,108,115,101,123,118,97,114,32,105,61,110,101,119,32,65,114,114,97,121,40,49,54,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,44,116,61,48,59,116,60,49,54,59,116,43,43,41,48,61,61,40,51,38,116,41,38,38,40,101,61,52,50,57,52,57,54,55,50,57,54,42,77,97,116,104,46,114,97,110,100,111,109,40,41,41,44,105,91,116,93,61,101,62,62,62,40,40,51,38,116,41,60,60,51,41,38,50,53,53,59,114,101,116,117,114,110,32,105,125,125,125,41,44,68,61,91,93,44,65,61,48,59,65,60,50,53,54,59,43,43,65,41,68,91,65,93,61,40,65,43,50,53,54,41,46,116,111,83,116,114,105,110,103,40,49,54,41,46,115,117,98,115,116,114,40,49,41,59,118,97,114,32,76,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,124,124,48,44,105,61,68,59,114,101,116,117,114,110,91,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,34,45,34,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,34,45,34,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,34,45,34,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,34,45,34,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,93,46,106,111,105,110,40,34,34,41,125,59,118,97,114,32,80,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,105,61,116,38,38,110,124,124,48,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,40,116,61,34,98,105,110,97,114,121,34,61,61,61,101,63,110,101,119,32,65,114,114,97,121,40,49,54,41,58,110,117,108,108,44,101,61,110,117,108,108,41,59,118,97,114,32,114,61,40,101,61,101,124,124,123,125,41,46,114,97,110,100,111,109,124,124,40,101,46,114,110,103,124,124,120,41,40,41,59,105,102,40,114,91,54,93,61,49,53,38,114,91,54,93,124,54,52,44,114,91,56,93,61,54,51,38,114,91,56,93,124,49,50,56,44,116,41,102,111,114,40,118,97,114,32,115,61,48,59,115,60,49,54,59,43,43,115,41,116,91,105,43,115,93,61,114,91,115,93,59,114,101,116,117,114,110,32,116,124,124,76,40,114,41,125,59,102,117,110,99,116,105,111,110,32,67,40,116,44,110,44,101,41,123,110,46,105,100,61,110,46,105,100,124,124,80,40,41,44,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,110,46,105,100,38,38,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,110,46,105,100,38,38,40,110,46,105,100,61,110,46,105,100,46,116,111,83,116,114,105,110,103,40,41,41,59,118,97,114,32,105,61,110,46,105,116,114,101,101,61,110,46,105,116,114,101,101,124,124,123,125,59,105,46,105,99,111,110,61,105,46,105,99,111,110,124,124,33,49,44,105,46,100,105,114,116,121,61,33,49,59,118,97,114,32,114,61,105,46,108,105,61,105,46,108,105,124,124,123,125,59,114,46,97,116,116,114,105,98,117,116,101,115,61,114,46,97,116,116,114,105,98,117,116,101,115,124,124,123,125,59,118,97,114,32,115,61,105,46,97,61,105,46,97,124,124,123,125,59,115,46,97,116,116,114,105,98,117,116,101,115,61,115,46,97,116,116,114,105,98,117,116,101,115,124,124,123,125,59,118,97,114,32,111,61,105,46,115,116,97,116,101,61,105,46,115,116,97,116,101,124,124,123,125,59,114,101,116,117,114,110,32,111,46,99,111,108,108,97,112,115,101,100,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,99,111,108,108,97,112,115,101,100,63,111,46,99,111,108,108,97,112,115,101,100,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,99,111,108,108,97,112,115,101,100,44,111,46,115,101,108,101,99,116,97,98,108,101,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,115,101,108,101,99,116,97,98,108,101,63,111,46,115,101,108,101,99,116,97,98,108,101,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,115,101,108,101,99,116,97,98,108,101,44,111,46,100,114,97,103,103,97,98,108,101,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,100,114,97,103,103,97,98,108,101,63,111,46,100,114,97,103,103,97,98,108,101,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,100,114,97,103,103,97,98,108,101,44,111,91,34,100,114,111,112,45,116,97,114,103,101,116,34,93,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,91,34,100,114,111,112,45,116,97,114,103,101,116,34,93,63,111,91,34,100,114,111,112,45,116,97,114,103,101,116,34,93,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,91,34,100,114,111,112,45,116,97,114,103,101,116,34,93,44,111,46,99,104,101,99,107,101,100,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,99,104,101,99,107,101,100,38,38,111,46,99,104,101,99,107,101,100,44,111,46,101,100,105,116,97,98,108,101,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,101,100,105,116,97,98,108,101,63,111,46,101,100,105,116,97,98,108,101,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,101,100,105,116,97,98,108,101,44,111,46,101,100,105,116,105,110,103,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,101,100,105,116,105,110,103,63,111,46,101,100,105,116,105,110,103,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,101,100,105,116,105,110,103,44,111,46,102,111,99,117,115,101,100,61,111,46,102,111,99,117,115,101,100,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,102,111,99,117,115,101,100,44,111,46,104,105,100,100,101,110,61,111,46,104,105,100,100,101,110,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,104,105,100,100,101,110,44,111,46,105,110,100,101,116,101,114,109,105,110,97,116,101,61,111,46,105,110,100,101,116,101,114,109,105,110,97,116,101,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,105,110,100,101,116,101,114,109,105,110,97,116,101,44,111,46,108,111,97,100,105,110,103,61,111,46,108,111,97,100,105,110,103,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,108,111,97,100,105,110,103,44,111,46,114,101,109,111,118,101,100,61,111,46,114,101,109,111,118,101,100,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,114,101,109,111,118,101,100,44,111,46,114,101,110,100,101,114,101,100,61,111,46,114,101,110,100,101,114,101,100,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,114,101,110,100,101,114,101,100,44,111,46,115,101,108,101,99,116,101,100,61,111,46,115,101,108,101,99,116,101,100,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,115,101,108,101,99,116,101,100,44,110,46,105,116,114,101,101,46,112,97,114,101,110,116,61,101,44,110,61,99,46,97,115,115,105,103,110,40,110,101,119,32,119,40,116,41,44,110,41,44,99,46,105,115,65,114,114,97,121,76,105,107,101,40,110,46,99,104,105,108,100,114,101,110,41,38,38,40,110,46,99,104,105,108,100,114,101,110,61,83,40,116,44,110,46,99,104,105,108,100,114,101,110,44,110,41,41,44,116,46,97,108,108,111,119,115,76,111,97,100,69,118,101,110,116,115,38,38,99,46,101,97,99,104,40,116,46,99,111,110,102,105,103,46,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,111,91,101,93,38,38,116,46,101,109,105,116,40,34,110,111,100,101,46,34,43,101,44,110,44,33,48,41,125,41,44,110,125,102,117,110,99,116,105,111,110,32,83,40,116,44,101,44,110,41,123,118,97,114,32,105,61,110,101,119,32,103,40,116,44,110,117,108,108,44,123,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,58,33,48,125,41,59,114,101,116,117,114,110,32,105,46,98,97,116,99,104,40,41,44,116,46,99,111,110,102,105,103,46,115,111,114,116,38,38,40,101,61,99,46,115,111,114,116,66,121,40,101,44,116,46,99,111,110,102,105,103,46,115,111,114,116,41,41,44,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,105,46,112,117,115,104,40,67,40,116,44,101,44,110,41,41,125,41,44,105,46,95,99,111,110,116,101,120,116,61,110,44,105,46,101,110,100,40,41,44,105,125,118,97,114,32,79,61,100,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,117,110,99,116,105,111,110,32,117,40,41,123,116,104,105,115,46,95,101,118,101,110,116,115,61,123,125,44,116,104,105,115,46,95,99,111,110,102,38,38,110,46,99,97,108,108,40,116,104,105,115,44,116,104,105,115,46,95,99,111,110,102,41,125,102,117,110,99,116,105,111,110,32,110,40,101,41,123,101,63,40,40,116,104,105,115,46,95,99,111,110,102,61,101,41,46,100,101,108,105,109,105,116,101,114,38,38,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,61,101,46,100,101,108,105,109,105,116,101,114,41,44,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,61,101,46,109,97,120,76,105,115,116,101,110,101,114,115,33,61,61,108,63,101,46,109,97,120,76,105,115,116,101,110,101,114,115,58,114,44,101,46,119,105,108,100,99,97,114,100,38,38,40,116,104,105,115,46,119,105,108,100,99,97,114,100,61,101,46,119,105,108,100,99,97,114,100,41,44,101,46,110,101,119,76,105,115,116,101,110,101,114,38,38,40,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,61,101,46,110,101,119,76,105,115,116,101,110,101,114,41,44,101,46,114,101,109,111,118,101,76,105,115,116,101,110,101,114,38,38,40,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,61,101,46,114,101,109,111,118,101,76,105,115,116,101,110,101,114,41,44,101,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,38,38,40,116,104,105,115,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,61,101,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,41,44,116,104,105,115,46,119,105,108,100,99,97,114,100,38,38,40,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,61,123,125,41,41,58,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,61,114,125,102,117,110,99,116,105,111,110,32,111,40,101,44,116,41,123,118,97,114,32,110,61,34,40,110,111,100,101,41,32,119,97,114,110,105,110,103,58,32,112,111,115,115,105,98,108,101,32,69,118,101,110,116,69,109,105,116,116,101,114,32,109,101,109,111,114,121,32,108,101,97,107,32,100,101,116,101,99,116,101,100,46,32,34,43,101,43,34,32,108,105,115,116,101,110,101,114,115,32,97,100,100,101,100,46,32,85,115,101,32,101,109,105,116,116,101,114,46,115,101,116,77,97,120,76,105,115,116,101,110,101,114,115,40,41,32,116,111,32,105,110,99,114,101,97,115,101,32,108,105,109,105,116,46,34,59,105,102,40,116,104,105,115,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,38,38,40,110,43,61,34,32,69,118,101,110,116,32,110,97,109,101,58,32,34,43,116,43,34,46,34,41,44,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,112,114,111,99,101,115,115,38,38,112,114,111,99,101,115,115,46,101,109,105,116,87,97,114,110,105,110,103,41,123,118,97,114,32,105,61,110,101,119,32,69,114,114,111,114,40,110,41,59,105,46,110,97,109,101,61,34,77,97,120,76,105,115,116,101,110,101,114,115,69,120,99,101,101,100,101,100,87,97,114,110,105,110,103,34,44,105,46,101,109,105,116,116,101,114,61,116,104,105,115,44,105,46,99,111,117,110,116,61,101,44,112,114,111,99,101,115,115,46,101,109,105,116,87,97,114,110,105,110,103,40,105,41,125,101,108,115,101,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,110,41,44,99,111,110,115,111,108,101,46,116,114,97,99,101,38,38,99,111,110,115,111,108,101,46,116,114,97,99,101,40,41,125,102,117,110,99,116,105,111,110,32,105,40,101,41,123,116,104,105,115,46,95,101,118,101,110,116,115,61,123,125,44,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,61,33,49,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,61,33,49,44,116,104,105,115,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,61,33,49,44,110,46,99,97,108,108,40,116,104,105,115,44,101,41,125,102,117,110,99,116,105,111,110,32,121,40,101,44,116,44,110,44,105,41,123,105,102,40,33,110,41,114,101,116,117,114,110,91,93,59,118,97,114,32,114,44,115,44,111,44,97,44,99,44,117,44,108,44,104,61,91,93,44,100,61,116,46,108,101,110,103,116,104,44,102,61,116,91,105,93,44,118,61,116,91,105,43,49,93,59,105,102,40,105,61,61,61,100,38,38,110,46,95,108,105,115,116,101,110,101,114,115,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,46,95,108,105,115,116,101,110,101,114,115,41,114,101,116,117,114,110,32,101,38,38,101,46,112,117,115,104,40,110,46,95,108,105,115,116,101,110,101,114,115,41,44,91,110,93,59,102,111,114,40,114,61,48,44,115,61,110,46,95,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,59,114,60,115,59,114,43,43,41,101,38,38,101,46,112,117,115,104,40,110,46,95,108,105,115,116,101,110,101,114,115,91,114,93,41,59,114,101,116,117,114,110,91,110,93,125,105,102,40,34,42,34,61,61,61,102,124,124,34,42,42,34,61,61,61,102,124,124,110,91,102,93,41,123,105,102,40,34,42,34,61,61,61,102,41,123,102,111,114,40,111,32,105,110,32,110,41,34,95,108,105,115,116,101,110,101,114,115,34,33,61,61,111,38,38,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,111,41,38,38,40,104,61,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,111,93,44,105,43,49,41,41,41,59,114,101,116,117,114,110,32,104,125,105,102,40,34,42,42,34,61,61,61,102,41,123,102,111,114,40,111,32,105,110,40,108,61,105,43,49,61,61,61,100,124,124,105,43,50,61,61,61,100,38,38,34,42,34,61,61,61,118,41,38,38,110,46,95,108,105,115,116,101,110,101,114,115,38,38,40,104,61,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,44,100,41,41,41,44,110,41,34,95,108,105,115,116,101,110,101,114,115,34,33,61,61,111,38,38,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,111,41,38,38,40,104,61,34,42,34,61,61,61,111,124,124,34,42,42,34,61,61,61,111,63,40,110,91,111,93,46,95,108,105,115,116,101,110,101,114,115,38,38,33,108,38,38,40,104,61,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,111,93,44,100,41,41,41,44,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,111,93,44,105,41,41,41,58,111,61,61,61,118,63,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,111,93,44,105,43,50,41,41,58,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,111,93,44,105,41,41,41,59,114,101,116,117,114,110,32,104,125,104,61,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,102,93,44,105,43,49,41,41,125,105,102,40,40,97,61,110,91,34,42,34,93,41,38,38,121,40,101,44,116,44,97,44,105,43,49,41,44,99,61,110,91,34,42,42,34,93,41,105,102,40,105,60,100,41,102,111,114,40,111,32,105,110,32,99,46,95,108,105,115,116,101,110,101,114,115,38,38,121,40,101,44,116,44,99,44,100,41,44,99,41,34,95,108,105,115,116,101,110,101,114,115,34,33,61,61,111,38,38,99,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,111,41,38,38,40,111,61,61,61,118,63,121,40,101,44,116,44,99,91,111,93,44,105,43,50,41,58,111,61,61,61,102,63,121,40,101,44,116,44,99,91,111,93,44,105,43,49,41,58,40,40,117,61,123,125,41,91,111,93,61,99,91,111,93,44,121,40,101,44,116,44,123,34,42,42,34,58,117,125,44,105,43,49,41,41,41,59,101,108,115,101,32,99,46,95,108,105,115,116,101,110,101,114,115,63,121,40,101,44,116,44,99,44,100,41,58,99,91,34,42,34,93,38,38,99,91,34,42,34,93,46,95,108,105,115,116,101,110,101,114,115,38,38,121,40,101,44,116,44,99,91,34,42,34,93,44,100,41,59,114,101,116,117,114,110,32,104,125,118,97,114,32,108,44,104,44,114,59,104,61,65,114,114,97,121,46,105,115,65,114,114,97,121,63,65,114,114,97,121,46,105,115,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,61,61,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,101,41,125,44,114,61,49,48,44,40,105,46,69,118,101,110,116,69,109,105,116,116,101,114,50,61,105,41,46,112,114,111,116,111,116,121,112,101,46,100,101,108,105,109,105,116,101,114,61,34,46,34,44,105,46,112,114,111,116,111,116,121,112,101,46,115,101,116,77,97,120,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,101,41,123,101,33,61,61,108,38,38,40,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,61,101,44,116,104,105,115,46,95,99,111,110,102,124,124,40,116,104,105,115,46,95,99,111,110,102,61,123,125,41,44,116,104,105,115,46,95,99,111,110,102,46,109,97,120,76,105,115,116,101,110,101,114,115,61,101,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,101,118,101,110,116,61,34,34,44,105,46,112,114,111,116,111,116,121,112,101,46,111,110,99,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,99,101,40,101,44,116,44,33,49,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,79,110,99,101,76,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,99,101,40,101,44,116,44,33,48,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,95,111,110,99,101,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,109,97,110,121,40,101,44,49,44,116,44,110,41,44,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,109,97,110,121,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,109,97,110,121,40,101,44,116,44,110,44,33,49,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,77,97,110,121,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,109,97,110,121,40,101,44,116,44,110,44,33,48,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,95,109,97,110,121,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,105,41,123,118,97,114,32,114,61,116,104,105,115,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,109,97,110,121,32,111,110,108,121,32,97,99,99,101,112,116,115,32,105,110,115,116,97,110,99,101,115,32,111,102,32,70,117,110,99,116,105,111,110,34,41,59,102,117,110,99,116,105,111,110,32,115,40,41,123,114,101,116,117,114,110,32,48,61,61,45,45,116,38,38,114,46,111,102,102,40,101,44,115,41,44,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,114,101,116,117,114,110,32,115,46,95,111,114,105,103,105,110,61,110,44,116,104,105,115,46,95,111,110,40,101,44,115,44,105,41,44,114,125,44,105,46,112,114,111,116,111,116,121,112,101,46,101,109,105,116,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,101,118,101,110,116,115,124,124,117,46,99,97,108,108,40,116,104,105,115,41,59,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,91,48,93,59,105,102,40,34,110,101,119,76,105,115,116,101,110,101,114,34,61,61,61,101,38,38,33,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,38,38,33,116,104,105,115,46,95,101,118,101,110,116,115,46,110,101,119,76,105,115,116,101,110,101,114,41,114,101,116,117,114,110,33,49,59,118,97,114,32,116,44,110,44,105,44,114,44,115,44,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,105,102,40,116,104,105,115,46,95,97,108,108,38,38,116,104,105,115,46,95,97,108,108,46,108,101,110,103,116,104,41,123,105,102,40,115,61,116,104,105,115,46,95,97,108,108,46,115,108,105,99,101,40,41,44,51,60,111,41,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,111,41,44,114,61,48,59,114,60,111,59,114,43,43,41,116,91,114,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,102,111,114,40,105,61,48,44,110,61,115,46,108,101,110,103,116,104,59,105,60,110,59,105,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,111,41,123,99,97,115,101,32,49,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,44,97,114,103,117,109,101,110,116,115,91,49,93,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,115,91,105,93,46,97,112,112,108,121,40,116,104,105,115,44,116,41,125,125,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,123,115,61,91,93,59,118,97,114,32,97,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,59,121,46,99,97,108,108,40,116,104,105,115,44,115,44,97,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,125,101,108,115,101,123,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,40,115,61,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,41,41,123,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,111,41,123,99,97,115,101,32,49,58,115,46,99,97,108,108,40,116,104,105,115,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,115,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,115,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,111,45,49,41,44,114,61,49,59,114,60,111,59,114,43,43,41,116,91,114,45,49,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,115,46,97,112,112,108,121,40,116,104,105,115,44,116,41,125,114,101,116,117,114,110,33,48,125,115,61,115,38,38,115,46,115,108,105,99,101,40,41,125,105,102,40,115,38,38,115,46,108,101,110,103,116,104,41,123,105,102,40,51,60,111,41,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,111,45,49,41,44,114,61,49,59,114,60,111,59,114,43,43,41,116,91,114,45,49,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,102,111,114,40,105,61,48,44,110,61,115,46,108,101,110,103,116,104,59,105,60,110,59,105,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,111,41,123,99,97,115,101,32,49,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,115,91,105,93,46,97,112,112,108,121,40,116,104,105,115,44,116,41,125,114,101,116,117,114,110,33,48,125,105,102,40,33,116,104,105,115,46,95,97,108,108,38,38,34,101,114,114,111,114,34,61,61,61,101,41,116,104,114,111,119,32,97,114,103,117,109,101,110,116,115,91,49,93,105,110,115,116,97,110,99,101,111,102,32,69,114,114,111,114,63,97,114,103,117,109,101,110,116,115,91,49,93,58,110,101,119,32,69,114,114,111,114,40,34,85,110,99,97,117,103,104,116,44,32,117,110,115,112,101,99,105,102,105,101,100,32,39,101,114,114,111,114,39,32,101,118,101,110,116,46,34,41,59,114,101,116,117,114,110,33,33,116,104,105,115,46,95,97,108,108,125,44,105,46,112,114,111,116,111,116,121,112,101,46,101,109,105,116,65,115,121,110,99,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,101,118,101,110,116,115,124,124,117,46,99,97,108,108,40,116,104,105,115,41,59,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,91,48,93,59,105,102,40,34,110,101,119,76,105,115,116,101,110,101,114,34,61,61,61,101,38,38,33,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,38,38,33,116,104,105,115,46,95,101,118,101,110,116,115,46,110,101,119,76,105,115,116,101,110,101,114,41,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,91,33,49,93,41,59,118,97,114,32,116,44,110,44,105,44,114,44,115,44,111,61,91,93,44,97,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,105,102,40,116,104,105,115,46,95,97,108,108,41,123,105,102,40,51,60,97,41,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,97,41,44,114,61,49,59,114,60,97,59,114,43,43,41,116,91,114,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,102,111,114,40,105,61,48,44,110,61,116,104,105,115,46,95,97,108,108,46,108,101,110,103,116,104,59,105,60,110,59,105,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,97,41,123,99,97,115,101,32,49,58,111,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,41,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,111,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,44,97,114,103,117,109,101,110,116,115,91,49,93,41,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,111,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,111,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,105,93,46,97,112,112,108,121,40,116,104,105,115,44,116,41,41,125,125,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,123,115,61,91,93,59,118,97,114,32,99,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,59,121,46,99,97,108,108,40,116,104,105,115,44,115,44,99,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,125,101,108,115,101,32,115,61,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,59,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,115,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,97,41,123,99,97,115,101,32,49,58,111,46,112,117,115,104,40,115,46,99,97,108,108,40,116,104,105,115,41,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,111,46,112,117,115,104,40,115,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,41,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,111,46,112,117,115,104,40,115,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,97,45,49,41,44,114,61,49,59,114,60,97,59,114,43,43,41,116,91,114,45,49,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,111,46,112,117,115,104,40,115,46,97,112,112,108,121,40,116,104,105,115,44,116,41,41,125,101,108,115,101,32,105,102,40,115,38,38,115,46,108,101,110,103,116,104,41,123,105,102,40,115,61,115,46,115,108,105,99,101,40,41,44,51,60,97,41,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,97,45,49,41,44,114,61,49,59,114,60,97,59,114,43,43,41,116,91,114,45,49,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,102,111,114,40,105,61,48,44,110,61,115,46,108,101,110,103,116,104,59,105,60,110,59,105,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,97,41,123,99,97,115,101,32,49,58,111,46,112,117,115,104,40,115,91,105,93,46,99,97,108,108,40,116,104,105,115,41,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,111,46,112,117,115,104,40,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,41,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,111,46,112,117,115,104,40,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,111,46,112,117,115,104,40,115,91,105,93,46,97,112,112,108,121,40,116,104,105,115,44,116,41,41,125,125,101,108,115,101,32,105,102,40,33,116,104,105,115,46,95,97,108,108,38,38,34,101,114,114,111,114,34,61,61,61,101,41,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,91,49,93,105,110,115,116,97,110,99,101,111,102,32,69,114,114,111,114,63,80,114,111,109,105,115,101,46,114,101,106,101,99,116,40,97,114,103,117,109,101,110,116,115,91,49,93,41,58,80,114,111,109,105,115,101,46,114,101,106,101,99,116,40,34,85,110,99,97,117,103,104,116,44,32,117,110,115,112,101,99,105,102,105,101,100,32,39,101,114,114,111,114,39,32,101,118,101,110,116,46,34,41,59,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,97,108,108,40,111,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,111,110,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,40,101,44,116,44,33,49,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,76,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,40,101,44,116,44,33,48,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,111,110,65,110,121,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,65,110,121,40,101,44,33,49,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,65,110,121,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,65,110,121,40,101,44,33,48,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,97,100,100,76,105,115,116,101,110,101,114,61,105,46,112,114,111,116,111,116,121,112,101,46,111,110,44,105,46,112,114,111,116,111,116,121,112,101,46,95,111,110,65,110,121,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,111,110,65,110,121,32,111,110,108,121,32,97,99,99,101,112,116,115,32,105,110,115,116,97,110,99,101,115,32,111,102,32,70,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,97,108,108,124,124,40,116,104,105,115,46,95,97,108,108,61,91,93,41,44,116,63,116,104,105,115,46,95,97,108,108,46,117,110,115,104,105,102,116,40,101,41,58,116,104,105,115,46,95,97,108,108,46,112,117,115,104,40,101,41,44,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,95,111,110,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,65,110,121,40,101,44,116,41,44,116,104,105,115,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,111,110,32,111,110,108,121,32,97,99,99,101,112,116,115,32,105,110,115,116,97,110,99,101,115,32,111,102,32,70,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,101,118,101,110,116,115,124,124,117,46,99,97,108,108,40,116,104,105,115,41,44,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,38,38,116,104,105,115,46,101,109,105,116,40,34,110,101,119,76,105,115,116,101,110,101,114,34,44,101,44,116,41,44,116,104,105,115,46,119,105,108,100,99,97,114,100,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,44,105,61,40,101,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,41,46,108,101,110,103,116,104,59,110,43,49,60,105,59,110,43,43,41,105,102,40,34,42,42,34,61,61,61,101,91,110,93,38,38,34,42,42,34,61,61,61,101,91,110,43,49,93,41,114,101,116,117,114,110,59,102,111,114,40,118,97,114,32,114,61,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,115,61,101,46,115,104,105,102,116,40,41,59,115,33,61,61,108,59,41,123,105,102,40,114,91,115,93,124,124,40,114,91,115,93,61,123,125,41,44,114,61,114,91,115,93,44,48,61,61,61,101,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,114,46,95,108,105,115,116,101,110,101,114,115,63,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,114,46,95,108,105,115,116,101,110,101,114,115,38,38,40,114,46,95,108,105,115,116,101,110,101,114,115,61,91,114,46,95,108,105,115,116,101,110,101,114,115,93,41,44,114,46,95,108,105,115,116,101,110,101,114,115,46,112,117,115,104,40,116,41,44,33,114,46,95,108,105,115,116,101,110,101,114,115,46,119,97,114,110,101,100,38,38,48,60,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,38,38,114,46,95,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,62,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,38,38,40,114,46,95,108,105,115,116,101,110,101,114,115,46,119,97,114,110,101,100,61,33,48,44,111,46,99,97,108,108,40,116,104,105,115,44,114,46,95,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,44,115,41,41,41,58,114,46,95,108,105,115,116,101,110,101,114,115,61,116,44,33,48,59,115,61,101,46,115,104,105,102,116,40,41,125,114,101,116,117,114,110,33,48,125,46,99,97,108,108,40,116,104,105,115,44,101,44,116,41,58,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,63,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,38,38,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,91,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,93,41,44,110,63,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,117,110,115,104,105,102,116,40,116,41,58,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,112,117,115,104,40,116,41,44,33,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,119,97,114,110,101,100,38,38,48,60,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,38,38,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,108,101,110,103,116,104,62,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,38,38,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,119,97,114,110,101,100,61,33,48,44,111,46,99,97,108,108,40,116,104,105,115,44,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,108,101,110,103,116,104,44,101,41,41,41,58,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,116,44,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,111,102,102,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,32,111,110,108,121,32,116,97,107,101,115,32,105,110,115,116,97,110,99,101,115,32,111,102,32,70,117,110,99,116,105,111,110,34,41,59,118,97,114,32,110,44,105,61,91,93,59,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,123,118,97,114,32,114,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,59,105,61,121,46,99,97,108,108,40,116,104,105,115,44,110,117,108,108,44,114,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,125,101,108,115,101,123,105,102,40,33,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,41,114,101,116,117,114,110,32,116,104,105,115,59,110,61,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,44,105,46,112,117,115,104,40,123,95,108,105,115,116,101,110,101,114,115,58,110,125,41,125,102,111,114,40,118,97,114,32,115,61,48,59,115,60,105,46,108,101,110,103,116,104,59,115,43,43,41,123,118,97,114,32,111,61,105,91,115,93,59,105,102,40,110,61,111,46,95,108,105,115,116,101,110,101,114,115,44,104,40,110,41,41,123,102,111,114,40,118,97,114,32,97,61,45,49,44,99,61,48,44,117,61,110,46,108,101,110,103,116,104,59,99,60,117,59,99,43,43,41,105,102,40,110,91,99,93,61,61,61,116,124,124,110,91,99,93,46,108,105,115,116,101,110,101,114,38,38,110,91,99,93,46,108,105,115,116,101,110,101,114,61,61,61,116,124,124,110,91,99,93,46,95,111,114,105,103,105,110,38,38,110,91,99,93,46,95,111,114,105,103,105,110,61,61,61,116,41,123,97,61,99,59,98,114,101,97,107,125,105,102,40,97,60,48,41,99,111,110,116,105,110,117,101,59,114,101,116,117,114,110,32,116,104,105,115,46,119,105,108,100,99,97,114,100,63,111,46,95,108,105,115,116,101,110,101,114,115,46,115,112,108,105,99,101,40,97,44,49,41,58,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,115,112,108,105,99,101,40,97,44,49,41,44,48,61,61,61,110,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,119,105,108,100,99,97,114,100,63,100,101,108,101,116,101,32,111,46,95,108,105,115,116,101,110,101,114,115,58,100,101,108,101,116,101,32,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,41,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,38,38,116,104,105,115,46,101,109,105,116,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,34,44,101,44,116,41,44,116,104,105,115,125,40,110,61,61,61,116,124,124,110,46,108,105,115,116,101,110,101,114,38,38,110,46,108,105,115,116,101,110,101,114,61,61,61,116,124,124,110,46,95,111,114,105,103,105,110,38,38,110,46,95,111,114,105,103,105,110,61,61,61,116,41,38,38,40,116,104,105,115,46,119,105,108,100,99,97,114,100,63,100,101,108,101,116,101,32,111,46,95,108,105,115,116,101,110,101,114,115,58,100,101,108,101,116,101,32,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,38,38,116,104,105,115,46,101,109,105,116,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,34,44,101,44,116,41,41,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,101,40,116,41,123,105,102,40,116,33,61,61,108,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,102,111,114,40,118,97,114,32,105,32,105,110,32,110,41,123,118,97,114,32,114,61,110,91,105,93,44,115,61,116,91,114,93,59,115,32,105,110,115,116,97,110,99,101,111,102,32,70,117,110,99,116,105,111,110,124,124,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,115,124,124,110,117,108,108,61,61,61,115,124,124,40,48,60,79,98,106,101,99,116,46,107,101,121,115,40,115,41,46,108,101,110,103,116,104,38,38,101,40,116,91,114,93,41,44,48,61,61,61,79,98,106,101,99,116,46,107,101,121,115,40,115,41,46,108,101,110,103,116,104,38,38,100,101,108,101,116,101,32,116,91,114,93,41,125,125,125,40,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,41,44,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,111,102,102,65,110,121,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,48,44,105,61,48,59,105,102,40,101,38,38,116,104,105,115,46,95,97,108,108,38,38,48,60,116,104,105,115,46,95,97,108,108,46,108,101,110,103,116,104,41,123,102,111,114,40,110,61,48,44,105,61,40,116,61,116,104,105,115,46,95,97,108,108,41,46,108,101,110,103,116,104,59,110,60,105,59,110,43,43,41,105,102,40,101,61,61,61,116,91,110,93,41,114,101,116,117,114,110,32,116,46,115,112,108,105,99,101,40,110,44,49,41,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,38,38,116,104,105,115,46,101,109,105,116,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,65,110,121,34,44,101,41,44,116,104,105,115,125,101,108,115,101,123,105,102,40,116,61,116,104,105,115,46,95,97,108,108,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,41,102,111,114,40,110,61,48,44,105,61,116,46,108,101,110,103,116,104,59,110,60,105,59,110,43,43,41,116,104,105,115,46,101,109,105,116,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,65,110,121,34,44,116,91,110,93,41,59,116,104,105,115,46,95,97,108,108,61,91,93,125,114,101,116,117,114,110,32,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,114,101,109,111,118,101,76,105,115,116,101,110,101,114,61,105,46,112,114,111,116,111,116,121,112,101,46,111,102,102,44,105,46,112,114,111,116,111,116,121,112,101,46,114,101,109,111,118,101,65,108,108,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,61,61,61,108,41,114,101,116,117,114,110,32,116,104,105,115,46,95,101,118,101,110,116,115,38,38,117,46,99,97,108,108,40,116,104,105,115,41,44,116,104,105,115,59,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,102,111,114,40,118,97,114,32,116,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,44,110,61,121,46,99,97,108,108,40,116,104,105,115,44,110,117,108,108,44,116,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,44,105,61,48,59,105,60,110,46,108,101,110,103,116,104,59,105,43,43,41,110,91,105,93,46,95,108,105,115,116,101,110,101,114,115,61,110,117,108,108,59,101,108,115,101,32,116,104,105,115,46,95,101,118,101,110,116,115,38,38,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,110,117,108,108,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,108,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,123,118,97,114,32,116,61,91,93,44,110,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,59,114,101,116,117,114,110,32,121,46,99,97,108,108,40,116,104,105,115,44,116,44,110,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,44,116,125,114,101,116,117,114,110,32,116,104,105,115,46,95,101,118,101,110,116,115,124,124,117,46,99,97,108,108,40,116,104,105,115,41,44,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,124,124,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,91,93,41,44,104,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,41,124,124,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,91,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,93,41,44,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,125,44,105,46,112,114,111,116,111,116,121,112,101,46,101,118,101,110,116,78,97,109,101,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,79,98,106,101,99,116,46,107,101,121,115,40,116,104,105,115,46,95,101,118,101,110,116,115,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,108,105,115,116,101,110,101,114,67,111,117,110,116,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,108,105,115,116,101,110,101,114,115,40,101,41,46,108,101,110,103,116,104,125,44,105,46,112,114,111,116,111,116,121,112,101,46,108,105,115,116,101,110,101,114,115,65,110,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,97,108,108,63,116,104,105,115,46,95,97,108,108,58,91,93,125,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,108,38,38,108,46,97,109,100,63,108,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,125,41,58,101,46,101,120,112,111,114,116,115,61,105,125,41,46,69,118,101,110,116,69,109,105,116,116,101,114,50,59,102,117,110,99,116,105,111,110,32,78,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,101,46,109,111,100,101,108,91,116,93,46,97,112,112,108,121,40,101,46,109,111,100,101,108,44,110,41,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,111,40,101,41,123,118,97,114,32,114,59,97,40,116,104,105,115,44,111,41,44,40,114,61,104,40,116,104,105,115,44,117,40,111,41,46,99,97,108,108,40,116,104,105,115,41,41,41,46,95,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,44,114,46,95,109,117,116,101,100,61,33,49,44,114,46,97,108,108,111,119,115,76,111,97,100,69,118,101,110,116,115,61,33,49,44,114,46,105,100,61,80,40,41,44,114,46,105,110,105,116,105,97,108,105,122,101,100,61,33,49,44,114,46,105,115,68,121,110,97,109,105,99,61,33,49,44,114,46,111,112,116,115,61,101,44,114,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,61,33,49,44,114,46,99,111,110,102,105,103,61,99,46,100,101,102,97,117,108,116,115,68,101,101,112,40,123,125,44,101,44,123,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,58,91,93,44,99,104,101,99,107,98,111,120,58,123,97,117,116,111,67,104,101,99,107,67,104,105,108,100,114,101,110,58,33,48,125,44,99,111,110,116,101,120,116,77,101,110,117,58,33,49,44,100,97,116,97,58,33,49,44,101,100,105,116,97,98,108,101,58,33,49,44,101,100,105,116,105,110,103,58,123,97,100,100,58,33,49,44,101,100,105,116,58,33,49,44,114,101,109,111,118,101,58,33,49,125,44,110,111,100,101,115,58,123,114,101,115,101,116,83,116,97,116,101,79,110,82,101,115,116,111,114,101,58,33,48,125,44,112,97,103,105,110,97,116,105,111,110,58,123,108,105,109,105,116,58,45,49,125,44,115,101,97,114,99,104,58,123,109,97,116,99,104,101,114,58,33,49,44,109,97,116,99,104,80,114,111,99,101,115,115,111,114,58,33,49,125,44,115,101,108,101,99,116,105,111,110,58,123,97,108,108,111,119,58,99,46,110,111,111,112,44,97,117,116,111,68,101,115,101,108,101,99,116,58,33,48,44,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,58,33,49,44,100,105,115,97,98,108,101,68,105,114,101,99,116,68,101,115,101,108,101,99,116,105,111,110,58,33,49,44,109,111,100,101,58,34,100,101,102,97,117,108,116,34,44,109,117,108,116,105,112,108,101,58,33,49,44,114,101,113,117,105,114,101,58,33,49,125,44,115,104,111,119,67,104,101,99,107,98,111,120,101,115,58,33,49,44,115,111,114,116,58,33,49,125,41,44,34,99,104,101,99,107,98,111,120,34,61,61,61,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,111,100,101,38,38,40,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,61,33,48,44,114,46,111,110,40,34,110,111,100,101,46,99,104,101,99,107,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,101,108,101,99,116,101,100,40,41,124,124,101,46,115,101,108,101,99,116,40,33,48,41,125,41,44,114,46,111,110,40,34,110,111,100,101,46,115,101,108,101,99,116,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,104,101,99,107,101,100,40,41,124,124,101,46,99,104,101,99,107,40,33,48,41,125,41,44,114,46,111,110,40,34,110,111,100,101,46,117,110,99,104,101,99,107,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,101,108,101,99,116,101,100,40,41,38,38,101,46,100,101,115,101,108,101,99,116,40,33,48,41,125,41,44,114,46,111,110,40,34,110,111,100,101,46,100,101,115,101,108,101,99,116,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,104,101,99,107,101,100,40,41,38,38,101,46,117,110,99,104,101,99,107,40,33,48,41,125,41,41,44,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,38,38,40,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,117,108,116,105,112,108,101,61,33,48,44,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,68,101,115,101,108,101,99,116,61,33,49,41,44,101,46,101,100,105,116,97,98,108,101,38,38,33,101,46,101,100,105,116,105,110,103,38,38,40,114,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,97,100,100,61,33,48,44,114,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,61,33,48,44,114,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,114,101,109,111,118,101,61,33,48,41,44,99,46,105,115,70,117,110,99,116,105,111,110,40,101,46,115,101,97,114,99,104,41,38,38,40,114,46,99,111,110,102,105,103,46,115,101,97,114,99,104,61,123,109,97,116,99,104,101,114,58,101,46,115,101,97,114,99,104,44,109,97,116,99,104,80,114,111,99,101,115,115,111,114,58,33,49,125,41,44,114,46,100,101,102,97,117,108,116,83,116,97,116,101,61,123,99,111,108,108,97,112,115,101,100,58,33,48,44,101,100,105,116,97,98,108,101,58,99,46,103,101,116,40,108,40,114,41,44,34,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,34,41,44,101,100,105,116,105,110,103,58,33,49,44,100,114,97,103,103,97,98,108,101,58,33,48,44,34,100,114,111,112,45,116,97,114,103,101,116,34,58,33,48,44,102,111,99,117,115,101,100,58,33,49,44,104,105,100,100,101,110,58,33,49,44,105,110,100,101,116,101,114,109,105,110,97,116,101,58,33,49,44,108,111,97,100,105,110,103,58,33,49,44,109,97,116,99,104,101,100,58,33,49,44,114,101,109,111,118,101,100,58,33,49,44,114,101,110,100,101,114,101,100,58,33,49,44,115,101,108,101,99,116,97,98,108,101,58,33,48,44,115,101,108,101,99,116,101,100,58,33,49,125,44,114,46,97,108,108,111,119,115,76,111,97,100,69,118,101,110,116,115,61,99,46,105,115,65,114,114,97,121,40,114,46,99,111,110,102,105,103,46,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,41,38,38,48,60,114,46,99,111,110,102,105,103,46,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,46,108,101,110,103,116,104,44,114,46,105,115,68,121,110,97,109,105,99,61,99,46,105,115,70,117,110,99,116,105,111,110,40,114,46,99,111,110,102,105,103,46,100,97,116,97,41,59,118,97,114,32,115,61,114,46,101,109,105,116,59,114,101,116,117,114,110,32,114,46,101,109,105,116,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,116,61,110,101,119,32,65,114,114,97,121,40,101,41,44,110,61,48,59,110,60,101,59,110,43,43,41,116,91,110,93,61,97,114,103,117,109,101,110,116,115,91,110,93,59,105,102,40,33,114,46,105,115,69,118,101,110,116,77,117,116,101,100,40,116,91,48,93,41,41,123,105,102,40,99,46,105,115,70,117,110,99,116,105,111,110,40,99,46,103,101,116,40,116,44,34,91,48,93,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,34,41,41,41,123,118,97,114,32,105,61,116,91,48,93,59,105,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,61,33,49,44,105,46,112,114,101,118,101,110,116,84,114,101,101,68,101,102,97,117,108,116,61,102,117,110,99,116,105,111,110,40,41,123,105,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,61,33,48,125,125,115,46,97,112,112,108,121,40,108,40,114,41,44,116,41,125,125,44,114,46,109,111,100,101,108,61,110,101,119,32,103,40,108,40,114,41,41,44,114,46,99,111,110,102,105,103,46,100,97,116,97,38,38,114,46,108,111,97,100,40,114,46,99,111,110,102,105,103,46,100,97,116,97,41,44,114,46,105,110,105,116,105,97,108,105,122,101,100,61,33,48,44,114,125,114,101,116,117,114,110,32,116,40,111,44,79,41,44,101,40,111,44,91,123,107,101,121,58,34,97,100,100,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,97,100,100,78,111,100,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,97,100,100,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,59,116,104,105,115,46,98,97,116,99,104,40,41,59,118,97,114,32,110,61,110,101,119,32,103,40,116,104,105,115,41,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,112,117,115,104,40,116,46,97,100,100,78,111,100,101,40,101,41,41,125,41,44,116,104,105,115,46,101,110,100,40,41,44,110,125,125,44,123,107,101,121,58,34,97,112,112,108,121,67,104,97,110,103,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,100,101,108,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,125,44,123,107,101,121,58,34,97,118,97,105,108,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,97,118,97,105,108,97,98,108,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,98,97,116,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,100,101,108,46,98,97,116,99,104,40,41,125,125,44,123,107,101,121,58,34,98,108,117,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,98,108,117,114,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,98,108,117,114,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,98,108,117,114,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,98,111,117,110,100,105,110,103,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,99,46,116,114,97,110,115,102,111,114,109,40,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,101,91,116,46,105,110,100,101,120,80,97,116,104,40,41,46,114,101,112,108,97,99,101,40,47,92,46,47,103,44,34,34,41,93,61,116,125,44,123,125,41,44,116,61,115,40,99,46,115,111,114,116,66,121,40,79,98,106,101,99,116,46,107,101,121,115,40,101,41,41,41,44,110,61,116,91,48,93,44,105,61,116,46,115,108,105,99,101,40,49,41,59,114,101,116,117,114,110,91,99,46,103,101,116,40,101,44,110,41,44,99,46,103,101,116,40,101,44,105,41,93,125,125,44,123,107,101,121,58,34,99,97,110,65,117,116,111,68,101,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,68,101,115,101,108,101,99,116,38,38,33,116,104,105,115,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,125,125,44,123,107,101,121,58,34,99,104,101,99,107,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,104,101,99,107,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,108,101,97,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,108,101,97,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,108,101,97,114,83,101,97,114,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,98,97,116,99,104,40,41,44,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,104,111,119,40,41,46,99,111,108,108,97,112,115,101,40,41,46,115,116,97,116,101,40,34,109,97,116,99,104,101,100,34,44,33,49,41,125,41,44,116,104,105,115,46,101,110,100,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,99,108,111,110,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,108,111,110,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,111,108,108,97,112,115,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,111,108,108,97,112,115,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,111,108,108,97,112,115,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,110,99,97,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,111,110,99,97,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,112,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,111,112,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,114,101,97,116,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,111,46,105,115,84,114,101,101,78,111,100,101,40,101,41,63,101,58,67,40,116,104,105,115,44,101,41,125,125,44,123,107,101,121,58,34,100,101,101,112,101,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,100,101,101,112,101,115,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,100,101,115,101,108,101,99,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,100,101,115,101,108,101,99,116,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,100,105,115,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,117,108,116,105,112,108,101,38,38,40,116,104,105,115,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,61,33,48,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,101,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,97,99,104,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,100,105,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,100,105,116,97,98,108,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,100,105,116,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,100,105,116,105,110,103,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,110,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,61,33,49,44,116,104,105,115,125,125,44,123,107,101,121,58,34,101,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,100,101,108,46,101,110,100,40,41,125,125,44,123,107,101,121,58,34,101,118,101,114,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,118,101,114,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,120,112,97,110,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,120,112,97,110,100,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,120,112,97,110,100,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,120,116,114,97,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,120,116,114,97,99,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,105,108,116,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,105,108,116,101,114,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,105,108,116,101,114,66,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,105,108,116,101,114,66,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,105,110,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,105,114,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,105,114,115,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,108,97,116,116,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,108,97,116,116,101,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,111,99,117,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,111,99,117,115,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,111,114,69,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,97,99,104,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,103,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,103,101,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,104,105,100,100,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,104,105,100,100,101,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,104,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,104,105,100,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,104,105,100,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,104,105,100,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,100,101,120,79,102,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,105,110,100,101,120,79,102,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,115,101,114,116,65,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,105,110,115,101,114,116,65,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,118,111,107,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,105,110,118,111,107,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,118,111,107,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,105,110,118,111,107,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,115,69,118,101,110,116,77,117,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,105,115,66,111,111,108,101,97,110,40,116,104,105,115,46,109,117,116,101,100,40,41,41,63,116,104,105,115,46,109,117,116,101,100,40,41,58,99,46,105,110,99,108,117,100,101,115,40,116,104,105,115,46,109,117,116,101,100,40,41,44,101,41,125,125,44,123,107,101,121,58,34,105,115,84,114,101,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,111,125,125,44,123,107,101,121,58,34,106,111,105,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,106,111,105,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,108,97,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,108,97,115,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,125,125,44,123,107,101,121,58,34,108,111,97,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,111,61,116,104,105,115,44,101,61,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,114,44,115,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,105,102,40,33,99,46,105,115,65,114,114,97,121,76,105,107,101,40,101,41,41,114,101,116,117,114,110,32,115,40,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,76,111,97,100,101,114,32,114,101,113,117,105,114,101,115,32,97,110,32,97,114,114,97,121,45,108,105,107,101,32,96,110,111,100,101,115,96,32,112,97,114,97,109,101,116,101,114,46,34,41,41,59,33,111,46,105,110,105,116,105,97,108,105,122,101,100,38,38,99,46,105,115,65,114,114,97,121,76,105,107,101,40,101,41,63,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,111,46,101,109,105,116,40,34,100,97,116,97,46,108,111,97,100,101,100,34,44,101,41,125,41,58,111,46,101,109,105,116,40,34,100,97,116,97,46,108,111,97,100,101,100,34,44,101,41,59,118,97,114,32,110,61,83,40,111,44,101,41,59,102,117,110,99,116,105,111,110,32,105,40,41,123,111,46,101,109,105,116,40,34,109,111,100,101,108,46,108,111,97,100,101,100,34,44,111,46,109,111,100,101,108,41,44,114,40,111,46,109,111,100,101,108,41,44,111,46,109,111,100,101,108,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,111,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,63,111,46,109,111,100,101,108,61,111,46,109,111,100,101,108,46,99,111,110,99,97,116,40,110,41,58,111,46,109,111,100,101,108,61,110,44,111,46,109,111,100,101,108,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,61,101,46,108,101,110,103,116,104,44,99,46,112,97,114,115,101,73,110,116,40,116,41,62,101,46,108,101,110,103,116,104,38,38,40,111,46,109,111,100,101,108,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,61,99,46,112,97,114,115,101,73,110,116,40,116,41,41,44,116,124,124,111,46,109,111,100,101,108,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,101,46,99,104,105,108,100,114,101,110,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,61,101,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,41,125,41,44,111,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,38,38,33,111,46,115,101,108,101,99,116,101,100,40,41,46,108,101,110,103,116,104,38,38,111,46,115,101,108,101,99,116,70,105,114,115,116,65,118,97,105,108,97,98,108,101,78,111,100,101,40,41,44,33,111,46,105,110,105,116,105,97,108,105,122,101,100,38,38,99,46,105,115,65,114,114,97,121,40,101,41,63,115,101,116,84,105,109,101,111,117,116,40,105,41,58,105,40,41,125,105,102,40,99,46,105,115,65,114,114,97,121,76,105,107,101,40,110,41,41,101,40,110,41,59,101,108,115,101,32,105,102,40,99,46,105,115,70,117,110,99,116,105,111,110,40,110,41,41,123,118,97,114,32,116,61,110,40,110,117,108,108,44,101,44,115,44,111,46,112,97,103,105,110,97,116,105,111,110,40,41,41,59,116,38,38,40,110,61,116,41,125,99,46,105,115,79,98,106,101,99,116,40,110,41,63,109,40,110,41,46,116,104,101,110,40,101,41,46,99,97,116,99,104,40,115,41,58,115,40,110,101,119,32,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,100,97,116,97,32,108,111,97,100,101,114,46,34,41,41,125,41,59,114,101,116,117,114,110,32,101,46,99,97,116,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,111,46,101,109,105,116,40,34,100,97,116,97,46,108,111,97,100,101,114,114,111,114,34,44,101,41,125,41,44,116,104,105,115,46,95,108,111,97,100,101,114,61,123,112,114,111,109,105,115,101,58,101,125,44,101,125,125,44,123,107,101,121,58,34,108,111,97,100,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,108,111,97,100,105,110,103,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,108,111,97,100,77,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,108,111,97,100,77,111,114,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,109,97,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,109,97,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,109,97,116,99,104,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,109,97,116,99,104,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,109,111,118,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,109,117,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,105,115,83,116,114,105,110,103,40,101,41,124,124,99,46,105,115,65,114,114,97,121,40,101,41,63,116,104,105,115,46,95,109,117,116,101,100,61,99,46,99,97,115,116,65,114,114,97,121,40,101,41,58,116,104,105,115,46,95,109,117,116,101,100,61,33,48,44,116,104,105,115,125,125,44,123,107,101,121,58,34,109,117,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,109,117,116,101,100,125,125,44,123,107,101,121,58,34,110,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,110,111,100,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,110,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,110,111,100,101,115,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,112,97,103,105,110,97,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,112,97,103,105,110,97,116,105,111,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,112,111,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,112,111,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,112,117,115,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,112,117,115,104,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,99,117,114,115,101,68,111,119,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,99,117,114,115,101,68,111,119,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,100,117,99,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,100,117,99,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,100,117,99,101,82,105,103,104,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,100,117,99,101,82,105,103,104,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,108,111,97,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,115,101,116,40,41,44,116,104,105,115,46,108,111,97,100,40,116,104,105,115,46,111,112,116,115,46,100,97,116,97,124,124,116,104,105,115,46,99,111,110,102,105,103,46,100,97,116,97,41,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,109,111,118,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,65,108,108,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,115,101,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,109,111,118,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,115,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,100,101,108,61,110,101,119,32,103,40,116,104,105,115,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,115,116,111,114,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,115,116,111,114,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,118,101,114,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,118,101,114,115,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,97,114,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,61,116,104,105,115,44,101,61,116,104,105,115,46,99,111,110,102,105,103,46,115,101,97,114,99,104,44,105,61,101,46,109,97,116,99,104,101,114,44,115,61,101,46,109,97,116,99,104,80,114,111,99,101,115,115,111,114,59,114,101,116,117,114,110,33,110,124,124,99,46,105,115,83,116,114,105,110,103,40,110,41,38,38,99,46,105,115,69,109,112,116,121,40,110,41,63,102,46,114,101,115,111,108,118,101,40,116,104,105,115,46,99,108,101,97,114,83,101,97,114,99,104,40,41,41,58,40,116,104,105,115,46,98,97,116,99,104,40,41,44,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,97,116,101,40,34,104,105,100,100,101,110,34,44,33,48,41,44,101,46,115,116,97,116,101,40,34,109,97,116,99,104,101,100,34,44,33,49,41,125,41,44,116,104,105,115,46,101,110,100,40,41,44,105,61,99,46,105,115,70,117,110,99,116,105,111,110,40,105,41,63,105,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,105,61,110,101,119,32,103,40,114,41,59,99,46,105,115,83,116,114,105,110,103,40,116,41,38,38,40,116,61,110,101,119,32,82,101,103,69,120,112,40,116,44,34,105,34,41,41,44,110,61,99,46,105,115,82,101,103,69,120,112,40,116,41,63,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,116,101,115,116,40,101,46,116,101,120,116,41,125,58,116,44,114,46,109,111,100,101,108,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,114,101,109,111,118,101,100,40,41,124,124,110,40,101,41,38,38,105,46,112,117,115,104,40,101,41,125,41,44,101,40,105,41,125,44,115,61,99,46,105,115,70,117,110,99,116,105,111,110,40,115,41,63,115,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,104,111,119,40,41,46,115,116,97,116,101,40,34,109,97,116,99,104,101,100,34,44,33,48,41,44,101,46,101,120,112,97,110,100,80,97,114,101,110,116,115,40,41,46,99,111,108,108,97,112,115,101,40,41,44,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,101,46,99,104,105,108,100,114,101,110,46,115,104,111,119,68,101,101,112,40,41,125,41,125,44,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,40,110,44,102,117,110,99,116,105,111,110,40,101,41,123,111,46,105,115,84,114,101,101,78,111,100,101,115,40,101,41,124,124,40,101,61,114,46,110,111,100,101,115,40,99,46,109,97,112,40,101,44,34,105,100,34,41,41,41,44,114,46,98,97,116,99,104,40,41,44,115,40,101,41,44,114,46,101,110,100,40,41,44,116,40,101,41,125,44,101,41,125,41,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,101,108,101,99,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,101,108,101,99,116,97,98,108,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,66,101,116,119,101,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,104,105,115,46,98,97,116,99,104,40,41,59,102,111,114,40,118,97,114,32,110,61,101,46,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,40,41,59,110,46,105,100,33,61,61,116,46,105,100,59,41,110,46,115,101,108,101,99,116,40,41,44,110,61,110,46,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,40,41,59,114,101,116,117,114,110,32,116,104,105,115,46,101,110,100,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,101,108,101,99,116,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,101,108,101,99,116,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,70,105,114,115,116,65,118,97,105,108,97,98,108,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,109,111,100,101,108,46,102,105,108,116,101,114,66,121,40,34,97,118,97,105,108,97,98,108,101,34,41,46,103,101,116,40,48,41,59,114,101,116,117,114,110,32,101,38,38,101,46,115,101,108,101,99,116,40,41,44,101,125,125,44,123,107,101,121,58,34,115,104,105,102,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,104,105,102,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,104,111,119,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,104,111,119,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,104,111,119,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,108,105,99,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,108,105,99,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,102,116,82,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,111,102,116,82,101,109,111,118,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,109,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,111,109,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,114,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,111,114,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,114,116,66,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,111,114,116,66,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,114,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,111,114,116,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,112,108,105,99,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,108,105,99,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,116,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,116,97,116,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,116,97,116,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,116,97,116,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,119,97,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,119,97,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,116,111,65,114,114,97,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,116,111,65,114,114,97,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,116,111,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,116,111,83,116,114,105,110,103,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,117,110,109,117,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,105,115,83,116,114,105,110,103,40,101,41,124,124,99,46,105,115,65,114,114,97,121,40,101,41,63,40,116,104,105,115,46,95,109,117,116,101,100,61,99,46,100,105,102,102,101,114,101,110,99,101,40,116,104,105,115,46,95,109,117,116,101,100,44,99,46,99,97,115,116,65,114,114,97,121,40,101,41,41,44,116,104,105,115,46,95,109,117,116,101,100,46,108,101,110,103,116,104,124,124,40,116,104,105,115,46,95,109,117,116,101,100,61,33,49,41,41,58,116,104,105,115,46,95,109,117,116,101,100,61,33,49,44,116,104,105,115,125,125,44,123,107,101,121,58,34,117,110,115,104,105,102,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,117,110,115,104,105,102,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,118,105,115,105,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,118,105,115,105,98,108,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,93,44,91,123,107,101,121,58,34,105,115,84,114,101,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,119,125,125,44,123,107,101,121,58,34,105,115,84,114,101,101,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,103,125,125,93,41,44,111,125,40,41,125,41,59,10,47,42,32,73,110,115,112,105,114,101,32,84,114,101,101,32,68,79,77,10,32,42,32,64,118,101,114,115,105,111,110,32,52,46,48,46,54,10,32,42,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,104,101,108,105,111,110,51,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,10,32,42,32,64,99,111,112,121,114,105,103,104,116,32,67,111,112,121,114,105,103,104,116,32,50,48,49,53,32,72,101,108,105,111,110,51,44,32,97,110,100,32,111,116,104,101,114,32,99,111,110,116,114,105,98,117,116,111,114,115,10,32,42,32,64,108,105,99,101,110,115,101,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,10,32,42,32,32,32,32,32,32,32,32,32,32,115,101,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,104,101,108,105,111,110,51,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,10,32,42,47,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,116,40,114,101,113,117,105,114,101,40,34,108,111,100,97,115,104,34,41,44,114,101,113,117,105,114,101,40,34,105,110,115,112,105,114,101,45,116,114,101,101,34,41,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,108,111,100,97,115,104,34,44,34,105,110,115,112,105,114,101,45,116,114,101,101,34,93,44,116,41,58,101,46,73,110,115,112,105,114,101,84,114,101,101,68,79,77,61,116,40,101,46,95,44,101,46,73,110,115,112,105,114,101,84,114,101,101,41,125,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,108,44,105,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,105,61,105,38,38,105,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,100,101,102,97,117,108,116,34,41,63,105,46,100,101,102,97,117,108,116,58,105,59,118,97,114,32,109,61,34,36,78,79,95,79,80,34,44,97,61,34,97,32,114,117,110,116,105,109,101,32,101,114,114,111,114,32,111,99,99,117,114,101,100,33,32,85,115,101,32,73,110,102,101,114,110,111,32,105,110,32,100,101,118,101,108,111,112,109,101,110,116,32,101,110,118,105,114,111,110,109,101,110,116,32,116,111,32,102,105,110,100,32,116,104,101,32,101,114,114,111,114,46,34,44,101,61,33,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,124,124,33,119,105,110,100,111,119,46,100,111,99,117,109,101,110,116,41,44,117,61,65,114,114,97,121,46,105,115,65,114,114,97,121,59,102,117,110,99,116,105,111,110,32,112,40,101,41,123,118,97,114,32,116,61,116,121,112,101,111,102,32,101,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,61,116,124,124,34,110,117,109,98,101,114,34,61,61,61,116,125,102,117,110,99,116,105,111,110,32,68,40,101,41,123,114,101,116,117,114,110,32,103,40,101,41,124,124,121,40,101,41,125,102,117,110,99,116,105,111,110,32,102,40,101,41,123,114,101,116,117,114,110,32,121,40,101,41,124,124,33,49,61,61,61,101,124,124,33,48,61,61,61,101,124,124,103,40,101,41,125,102,117,110,99,116,105,111,110,32,95,40,101,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,125,102,117,110,99,116,105,111,110,32,104,40,101,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,125,102,117,110,99,116,105,111,110,32,118,40,101,41,123,114,101,116,117,114,110,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,101,125,102,117,110,99,116,105,111,110,32,121,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,61,101,125,102,117,110,99,116,105,111,110,32,103,40,101,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,101,125,102,117,110,99,116,105,111,110,32,98,40,101,44,116,41,123,118,97,114,32,110,61,123,125,59,105,102,40,101,41,102,111,114,40,118,97,114,32,111,32,105,110,32,101,41,110,91,111,93,61,101,91,111,93,59,105,102,40,116,41,102,111,114,40,118,97,114,32,114,32,105,110,32,116,41,110,91,114,93,61,116,91,114,93,59,114,101,116,117,114,110,32,110,125,118,97,114,32,107,61,34,36,34,59,102,117,110,99,116,105,111,110,32,67,40,101,44,116,44,110,44,111,44,114,44,105,44,97,44,115,41,123,114,101,116,117,114,110,123,99,104,105,108,100,70,108,97,103,115,58,101,44,99,104,105,108,100,114,101,110,58,116,44,99,108,97,115,115,78,97,109,101,58,110,44,100,111,109,58,110,117,108,108,44,102,108,97,103,115,58,111,44,107,101,121,58,118,111,105,100,32,48,61,61,61,114,63,110,117,108,108,58,114,44,112,97,114,101,110,116,86,78,111,100,101,58,110,117,108,108,44,112,114,111,112,115,58,118,111,105,100,32,48,61,61,61,105,63,110,117,108,108,58,105,44,114,101,102,58,118,111,105,100,32,48,61,61,61,97,63,110,117,108,108,58,97,44,116,121,112,101,58,115,125,125,102,117,110,99,116,105,111,110,32,115,40,101,44,116,44,110,44,111,44,114,44,105,44,97,44,115,41,123,118,97,114,32,108,61,118,111,105,100,32,48,61,61,61,114,63,49,58,114,44,100,61,67,40,108,44,111,44,110,44,101,44,97,44,105,44,115,44,116,41,59,114,101,116,117,114,110,32,48,61,61,61,108,38,38,83,40,100,44,100,46,99,104,105,108,100,114,101,110,41,44,100,125,102,117,110,99,116,105,111,110,32,100,40,101,44,116,44,110,44,111,44,114,41,123,48,60,40,50,38,101,41,38,38,40,101,61,116,46,112,114,111,116,111,116,121,112,101,38,38,95,40,116,46,112,114,111,116,111,116,121,112,101,46,114,101,110,100,101,114,41,63,52,58,56,41,59,118,97,114,32,105,61,116,46,100,101,102,97,117,108,116,80,114,111,112,115,59,105,102,40,33,68,40,105,41,41,102,111,114,40,118,97,114,32,97,32,105,110,32,110,124,124,40,110,61,123,125,41,44,105,41,103,40,110,91,97,93,41,38,38,40,110,91,97,93,61,105,91,97,93,41,59,105,102,40,48,60,40,56,38,101,41,41,123,118,97,114,32,115,61,116,46,100,101,102,97,117,108,116,72,111,111,107,115,59,105,102,40,33,68,40,115,41,41,105,102,40,114,41,102,111,114,40,118,97,114,32,108,32,105,110,32,115,41,103,40,114,91,108,93,41,38,38,40,114,91,108,93,61,115,91,108,93,41,59,101,108,115,101,32,114,61,115,125,118,97,114,32,100,61,67,40,49,44,110,117,108,108,44,110,117,108,108,44,101,44,111,44,110,44,114,44,116,41,44,99,61,80,46,99,114,101,97,116,101,86,78,111,100,101,59,114,101,116,117,114,110,32,95,40,99,41,38,38,99,40,100,41,44,100,125,102,117,110,99,116,105,111,110,32,36,40,101,44,116,41,123,114,101,116,117,114,110,32,67,40,49,44,68,40,101,41,63,34,34,58,101,44,110,117,108,108,44,49,54,44,116,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,125,102,117,110,99,116,105,111,110,32,99,40,101,41,123,118,97,114,32,116,61,101,46,112,114,111,112,115,59,105,102,40,116,41,123,118,97,114,32,110,61,101,46,102,108,97,103,115,59,52,56,49,38,110,38,38,40,118,111,105,100,32,48,33,61,61,116,46,99,104,105,108,100,114,101,110,38,38,68,40,101,46,99,104,105,108,100,114,101,110,41,38,38,83,40,101,44,116,46,99,104,105,108,100,114,101,110,41,44,118,111,105,100,32,48,33,61,61,116,46,99,108,97,115,115,78,97,109,101,38,38,40,101,46,99,108,97,115,115,78,97,109,101,61,116,46,99,108,97,115,115,78,97,109,101,124,124,110,117,108,108,44,116,46,99,108,97,115,115,78,97,109,101,61,118,111,105,100,32,48,41,41,44,118,111,105,100,32,48,33,61,61,116,46,107,101,121,38,38,40,101,46,107,101,121,61,116,46,107,101,121,44,116,46,107,101,121,61,118,111,105,100,32,48,41,44,118,111,105,100,32,48,33,61,61,116,46,114,101,102,38,38,40,101,46,114,101,102,61,56,38,110,63,98,40,101,46,114,101,102,44,116,46,114,101,102,41,58,116,46,114,101,102,44,116,46,114,101,102,61,118,111,105,100,32,48,41,125,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,119,40,101,41,123,118,97,114,32,116,44,110,61,101,46,102,108,97,103,115,59,105,102,40,49,52,38,110,41,123,118,97,114,32,111,44,114,61,101,46,112,114,111,112,115,59,105,102,40,33,121,40,114,41,41,102,111,114,40,118,97,114,32,105,32,105,110,32,111,61,123,125,44,114,41,111,91,105,93,61,114,91,105,93,59,116,61,100,40,110,44,101,46,116,121,112,101,44,111,44,101,46,107,101,121,44,101,46,114,101,102,41,125,101,108,115,101,32,52,56,49,38,110,63,116,61,115,40,110,44,101,46,116,121,112,101,44,101,46,99,108,97,115,115,78,97,109,101,44,101,46,99,104,105,108,100,114,101,110,44,101,46,99,104,105,108,100,70,108,97,103,115,44,101,46,112,114,111,112,115,44,101,46,107,101,121,44,101,46,114,101,102,41,58,49,54,38,110,63,116,61,36,40,101,46,99,104,105,108,100,114,101,110,44,101,46,107,101,121,41,58,49,48,50,52,38,110,38,38,40,116,61,101,41,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,120,40,41,123,114,101,116,117,114,110,32,36,40,34,34,44,110,117,108,108,41,125,102,117,110,99,116,105,111,110,32,78,40,101,44,116,44,110,44,111,41,123,102,111,114,40,118,97,114,32,114,61,101,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,123,118,97,114,32,105,61,101,91,110,93,59,105,102,40,33,102,40,105,41,41,123,118,97,114,32,97,61,111,43,107,43,110,59,105,102,40,117,40,105,41,41,78,40,105,44,116,44,48,44,97,41,59,101,108,115,101,123,105,102,40,112,40,105,41,41,105,61,36,40,105,44,97,41,59,101,108,115,101,123,118,97,114,32,115,61,105,46,107,101,121,44,108,61,104,40,115,41,38,38,115,91,48,93,61,61,61,107,59,121,40,105,46,100,111,109,41,38,38,33,108,124,124,40,105,61,119,40,105,41,41,44,121,40,115,41,124,124,108,63,105,46,107,101,121,61,97,58,105,46,107,101,121,61,111,43,115,125,116,46,112,117,115,104,40,105,41,125,125,125,125,102,117,110,99,116,105,111,110,32,83,40,101,44,116,41,123,118,97,114,32,110,44,111,61,49,59,105,102,40,102,40,116,41,41,110,61,116,59,101,108,115,101,32,105,102,40,104,40,116,41,41,111,61,50,44,110,61,36,40,116,41,59,101,108,115,101,32,105,102,40,118,40,116,41,41,111,61,50,44,110,61,36,40,116,43,34,34,41,59,101,108,115,101,32,105,102,40,117,40,116,41,41,123,118,97,114,32,114,61,116,46,108,101,110,103,116,104,59,105,102,40,48,61,61,61,114,41,110,61,110,117,108,108,44,111,61,49,59,101,108,115,101,123,40,79,98,106,101,99,116,46,105,115,70,114,111,122,101,110,40,116,41,124,124,33,48,61,61,61,116,46,36,41,38,38,40,116,61,116,46,115,108,105,99,101,40,41,41,44,111,61,56,59,102,111,114,40,118,97,114,32,105,61,48,59,105,60,114,59,105,43,43,41,123,118,97,114,32,97,61,116,91,105,93,59,105,102,40,102,40,97,41,124,124,117,40,97,41,41,123,78,40,116,44,110,61,110,124,124,116,46,115,108,105,99,101,40,48,44,105,41,44,105,44,34,34,41,59,98,114,101,97,107,125,105,102,40,112,40,97,41,41,40,110,61,110,124,124,116,46,115,108,105,99,101,40,48,44,105,41,41,46,112,117,115,104,40,36,40,97,44,107,43,105,41,41,59,101,108,115,101,123,118,97,114,32,115,61,97,46,107,101,121,44,108,61,121,40,97,46,100,111,109,41,44,100,61,121,40,115,41,44,99,61,33,100,38,38,115,91,48,93,61,61,61,107,59,33,108,124,124,100,124,124,99,63,40,110,61,110,124,124,116,46,115,108,105,99,101,40,48,44,105,41,44,108,38,38,33,99,124,124,40,97,61,119,40,97,41,41,44,40,100,124,124,99,41,38,38,40,97,46,107,101,121,61,107,43,105,41,44,110,46,112,117,115,104,40,97,41,41,58,110,38,38,110,46,112,117,115,104,40,97,41,125,125,40,110,61,110,124,124,116,41,46,36,61,33,48,125,125,101,108,115,101,32,121,40,40,110,61,116,41,46,100,111,109,41,124,124,40,110,61,119,40,116,41,41,44,111,61,50,59,114,101,116,117,114,110,32,101,46,99,104,105,108,100,114,101,110,61,110,44,101,46,99,104,105,108,100,70,108,97,103,115,61,111,44,101,125,118,97,114,32,80,61,123,97,102,116,101,114,82,101,110,100,101,114,58,110,117,108,108,44,98,101,102,111,114,101,82,101,110,100,101,114,58,110,117,108,108,44,99,114,101,97,116,101,86,78,111,100,101,58,110,117,108,108,44,114,101,110,100,101,114,67,111,109,112,108,101,116,101,58,110,117,108,108,125,44,116,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,49,57,57,57,47,120,108,105,110,107,34,44,110,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,88,77,76,47,49,57,57,56,47,110,97,109,101,115,112,97,99,101,34,44,79,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,44,84,61,123,34,120,108,105,110,107,58,97,99,116,117,97,116,101,34,58,116,44,34,120,108,105,110,107,58,97,114,99,114,111,108,101,34,58,116,44,34,120,108,105,110,107,58,104,114,101,102,34,58,116,44,34,120,108,105,110,107,58,114,111,108,101,34,58,116,44,34,120,108,105,110,107,58,115,104,111,119,34,58,116,44,34,120,108,105,110,107,58,116,105,116,108,101,34,58,116,44,34,120,108,105,110,107,58,116,121,112,101,34,58,116,44,34,120,109,108,58,98,97,115,101,34,58,110,44,34,120,109,108,58,108,97,110,103,34,58,110,44,34,120,109,108,58,115,112,97,99,101,34,58,110,125,44,76,61,123,125,44,85,61,91,93,59,102,117,110,99,116,105,111,110,32,77,40,101,44,116,41,123,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,41,125,102,117,110,99,116,105,111,110,32,69,40,101,44,116,44,110,41,123,68,40,110,41,63,77,40,101,44,116,41,58,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,70,40,101,44,116,44,110,41,123,101,46,114,101,112,108,97,99,101,67,104,105,108,100,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,73,40,101,41,123,102,111,114,40,118,97,114,32,116,59,118,111,105,100,32,48,33,61,61,40,116,61,101,46,115,104,105,102,116,40,41,41,59,41,116,40,41,125,118,97,114,32,65,61,123,125,44,86,61,123,125,59,102,117,110,99,116,105,111,110,32,82,40,101,44,116,44,110,41,123,118,97,114,32,114,44,111,44,105,61,65,91,101,93,44,97,61,110,46,36,69,86,59,116,63,40,105,124,124,40,86,91,101,93,61,40,114,61,101,44,111,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,116,121,112,101,44,110,61,34,99,108,105,99,107,34,61,61,61,116,124,124,34,100,98,108,99,108,105,99,107,34,61,61,61,116,59,105,102,40,110,38,38,48,33,61,61,101,46,98,117,116,116,111,110,41,114,101,116,117,114,110,32,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,33,49,59,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,61,66,59,118,97,114,32,111,61,123,100,111,109,58,100,111,99,117,109,101,110,116,125,59,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,34,99,117,114,114,101,110,116,84,97,114,103,101,116,34,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,46,100,111,109,125,125,41,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,61,116,59,102,111,114,40,59,33,121,40,105,41,59,41,123,105,102,40,110,38,38,105,46,100,105,115,97,98,108,101,100,41,114,101,116,117,114,110,59,118,97,114,32,97,61,105,46,36,69,86,59,105,102,40,97,41,123,118,97,114,32,115,61,97,91,111,93,59,105,102,40,115,38,38,40,114,46,100,111,109,61,105,44,115,46,101,118,101,110,116,63,115,46,101,118,101,110,116,40,115,46,100,97,116,97,44,101,41,58,115,40,101,41,44,101,46,99,97,110,99,101,108,66,117,98,98,108,101,41,41,114,101,116,117,114,110,125,105,61,105,46,112,97,114,101,110,116,78,111,100,101,125,125,40,101,44,101,46,116,97,114,103,101,116,44,110,44,114,44,111,41,125,44,100,111,99,117,109,101,110,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,106,40,114,41,44,111,41,44,111,41,44,65,91,101,93,61,48,41,44,97,124,124,40,97,61,110,46,36,69,86,61,123,125,41,44,97,91,101,93,124,124,65,91,101,93,43,43,44,97,91,101,93,61,116,41,58,97,38,38,97,91,101,93,38,38,40,65,91,101,93,45,45,44,49,61,61,61,105,38,38,40,100,111,99,117,109,101,110,116,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,106,40,101,41,44,86,91,101,93,41,44,86,91,101,93,61,110,117,108,108,41,44,97,91,101,93,61,116,41,125,102,117,110,99,116,105,111,110,32,106,40,101,41,123,114,101,116,117,114,110,32,101,46,115,117,98,115,116,114,40,50,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,102,117,110,99,116,105,111,110,32,66,40,41,123,116,104,105,115,46,99,97,110,99,101,108,66,117,98,98,108,101,61,33,48,44,116,104,105,115,46,105,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,124,124,116,104,105,115,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,87,40,101,44,116,41,123,118,97,114,32,110,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,34,41,59,114,101,116,117,114,110,32,110,46,105,110,110,101,114,72,84,77,76,61,116,44,110,46,105,110,110,101,114,72,84,77,76,61,61,61,101,46,105,110,110,101,114,72,84,77,76,125,102,117,110,99,116,105,111,110,32,72,40,101,44,116,44,110,41,123,105,102,40,101,91,116,93,41,123,118,97,114,32,111,61,101,91,116,93,59,111,46,101,118,101,110,116,63,111,46,101,118,101,110,116,40,111,46,100,97,116,97,44,110,41,58,111,40,110,41,125,101,108,115,101,123,118,97,114,32,114,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,101,91,114,93,38,38,101,91,114,93,40,110,41,125,125,102,117,110,99,116,105,111,110,32,111,40,115,44,108,41,123,118,97,114,32,101,61,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,118,97,114,32,116,61,116,104,105,115,46,36,86,59,105,102,40,116,41,123,118,97,114,32,110,61,116,46,112,114,111,112,115,124,124,76,44,111,61,116,46,100,111,109,59,105,102,40,104,40,115,41,41,72,40,110,44,115,44,101,41,59,101,108,115,101,32,102,111,114,40,118,97,114,32,114,61,48,59,114,60,115,46,108,101,110,103,116,104,59,114,43,43,41,72,40,110,44,115,91,114,93,44,101,41,59,105,102,40,95,40,108,41,41,123,118,97,114,32,105,61,116,104,105,115,46,36,86,44,97,61,105,46,112,114,111,112,115,124,124,76,59,108,40,97,44,111,44,33,49,44,105,41,125,125,125,59,114,101,116,117,114,110,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,34,119,114,97,112,112,101,100,34,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,49,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,118,97,108,117,101,58,33,48,44,119,114,105,116,97,98,108,101,58,33,49,125,41,44,101,125,102,117,110,99,116,105,111,110,32,113,40,101,41,123,114,101,116,117,114,110,34,99,104,101,99,107,98,111,120,34,61,61,61,101,124,124,34,114,97,100,105,111,34,61,61,61,101,125,118,97,114,32,75,61,111,40,34,111,110,73,110,112,117,116,34,44,122,41,44,88,61,111,40,91,34,111,110,67,108,105,99,107,34,44,34,111,110,67,104,97,110,103,101,34,93,44,122,41,59,102,117,110,99,116,105,111,110,32,81,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,122,40,101,44,116,41,123,118,97,114,32,110,61,101,46,116,121,112,101,44,111,61,101,46,118,97,108,117,101,44,114,61,101,46,99,104,101,99,107,101,100,44,105,61,101,46,109,117,108,116,105,112,108,101,44,97,61,101,46,100,101,102,97,117,108,116,86,97,108,117,101,44,115,61,33,68,40,111,41,59,110,38,38,110,33,61,61,116,46,116,121,112,101,38,38,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,110,41,44,68,40,105,41,124,124,105,61,61,61,116,46,109,117,108,116,105,112,108,101,124,124,40,116,46,109,117,108,116,105,112,108,101,61,105,41,44,68,40,97,41,124,124,115,124,124,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,97,43,34,34,41,44,113,40,110,41,63,40,115,38,38,40,116,46,118,97,108,117,101,61,111,41,44,68,40,114,41,124,124,40,116,46,99,104,101,99,107,101,100,61,114,41,41,58,115,38,38,116,46,118,97,108,117,101,33,61,61,111,63,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,111,44,116,46,118,97,108,117,101,61,111,41,58,68,40,114,41,124,124,40,116,46,99,104,101,99,107,101,100,61,114,41,125,102,117,110,99,116,105,111,110,32,71,40,101,44,116,41,123,105,102,40,34,111,112,116,103,114,111,117,112,34,61,61,61,101,46,116,121,112,101,41,123,118,97,114,32,110,61,101,46,99,104,105,108,100,114,101,110,44,111,61,101,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,49,50,38,111,41,102,111,114,40,118,97,114,32,114,61,48,44,105,61,110,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,89,40,110,91,114,93,44,116,41,59,101,108,115,101,32,50,61,61,61,111,38,38,89,40,110,44,116,41,125,101,108,115,101,32,89,40,101,44,116,41,125,102,117,110,99,116,105,111,110,32,89,40,101,44,116,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,124,124,76,44,111,61,101,46,100,111,109,59,111,46,118,97,108,117,101,61,110,46,118,97,108,117,101,44,117,40,116,41,38,38,45,49,33,61,61,116,46,105,110,100,101,120,79,102,40,110,46,118,97,108,117,101,41,124,124,110,46,118,97,108,117,101,61,61,61,116,63,111,46,115,101,108,101,99,116,101,100,61,33,48,58,68,40,116,41,38,38,68,40,110,46,115,101,108,101,99,116,101,100,41,124,124,40,111,46,115,101,108,101,99,116,101,100,61,110,46,115,101,108,101,99,116,101,100,124,124,33,49,41,125,81,46,119,114,97,112,112,101,100,61,33,48,59,118,97,114,32,74,61,111,40,34,111,110,67,104,97,110,103,101,34,44,90,41,59,102,117,110,99,116,105,111,110,32,90,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,66,111,111,108,101,97,110,40,101,46,109,117,108,116,105,112,108,101,41,59,68,40,101,46,109,117,108,116,105,112,108,101,41,124,124,114,61,61,61,116,46,109,117,108,116,105,112,108,101,124,124,40,116,46,109,117,108,116,105,112,108,101,61,114,41,59,118,97,114,32,105,61,111,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,48,61,61,40,49,38,105,41,41,123,118,97,114,32,97,61,111,46,99,104,105,108,100,114,101,110,44,115,61,101,46,118,97,108,117,101,59,105,102,40,110,38,38,68,40,115,41,38,38,40,115,61,101,46,100,101,102,97,117,108,116,86,97,108,117,101,41,44,49,50,38,105,41,102,111,114,40,118,97,114,32,108,61,48,44,100,61,97,46,108,101,110,103,116,104,59,108,60,100,59,108,43,43,41,71,40,97,91,108,93,44,115,41,59,101,108,115,101,32,50,61,61,61,105,38,38,71,40,97,44,115,41,125,125,118,97,114,32,101,101,61,111,40,34,111,110,73,110,112,117,116,34,44,110,101,41,44,116,101,61,111,40,34,111,110,67,104,97,110,103,101,34,41,59,102,117,110,99,116,105,111,110,32,110,101,40,101,44,116,44,110,41,123,118,97,114,32,111,61,101,46,118,97,108,117,101,44,114,61,116,46,118,97,108,117,101,59,105,102,40,68,40,111,41,41,123,105,102,40,110,41,123,118,97,114,32,105,61,101,46,100,101,102,97,117,108,116,86,97,108,117,101,59,68,40,105,41,124,124,105,61,61,61,114,124,124,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,105,44,116,46,118,97,108,117,101,61,105,41,125,125,101,108,115,101,32,114,33,61,61,111,38,38,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,111,44,116,46,118,97,108,117,101,61,111,41,125,102,117,110,99,116,105,111,110,32,111,101,40,101,44,116,44,110,44,111,44,114,44,105,41,123,54,52,38,101,63,122,40,111,44,110,41,58,50,53,54,38,101,63,90,40,111,44,110,44,114,44,116,41,58,49,50,56,38,101,38,38,110,101,40,111,44,110,44,114,41,44,105,38,38,40,110,46,36,86,61,116,41,125,102,117,110,99,116,105,111,110,32,114,101,40,101,44,116,44,110,41,123,118,97,114,32,111,44,114,44,105,59,54,52,38,101,63,40,105,61,116,44,113,40,110,46,116,121,112,101,41,63,40,105,46,111,110,99,104,97,110,103,101,61,88,44,105,46,111,110,99,108,105,99,107,61,81,41,58,105,46,111,110,105,110,112,117,116,61,75,41,58,50,53,54,38,101,63,116,46,111,110,99,104,97,110,103,101,61,74,58,49,50,56,38,101,38,38,40,114,61,110,44,40,111,61,116,41,46,111,110,105,110,112,117,116,61,101,101,44,114,46,111,110,67,104,97,110,103,101,38,38,40,111,46,111,110,99,104,97,110,103,101,61,116,101,41,41,125,102,117,110,99,116,105,111,110,32,105,101,40,101,41,123,114,101,116,117,114,110,32,101,46,116,121,112,101,38,38,113,40,101,46,116,121,112,101,41,63,33,68,40,101,46,99,104,101,99,107,101,100,41,58,33,68,40,101,46,118,97,108,117,101,41,125,102,117,110,99,116,105,111,110,32,97,101,40,101,44,116,41,123,118,97,114,32,110,44,111,59,115,101,40,101,41,44,116,38,38,101,46,100,111,109,38,38,40,110,61,116,44,111,61,101,46,100,111,109,44,110,46,114,101,109,111,118,101,67,104,105,108,100,40,111,41,44,101,46,100,111,109,61,110,117,108,108,41,125,102,117,110,99,116,105,111,110,32,115,101,40,101,41,123,118,97,114,32,116,61,101,46,102,108,97,103,115,59,105,102,40,52,56,49,38,116,41,123,118,97,114,32,110,61,101,46,114,101,102,44,111,61,101,46,112,114,111,112,115,59,95,40,110,41,38,38,110,40,110,117,108,108,41,59,118,97,114,32,114,61,101,46,99,104,105,108,100,114,101,110,44,105,61,101,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,49,50,38,105,63,108,101,40,114,41,58,50,61,61,61,105,38,38,115,101,40,114,41,44,33,121,40,111,41,41,102,111,114,40,118,97,114,32,97,32,105,110,32,111,41,115,119,105,116,99,104,40,97,41,123,99,97,115,101,34,111,110,67,108,105,99,107,34,58,99,97,115,101,34,111,110,68,98,108,67,108,105,99,107,34,58,99,97,115,101,34,111,110,70,111,99,117,115,73,110,34,58,99,97,115,101,34,111,110,70,111,99,117,115,79,117,116,34,58,99,97,115,101,34,111,110,75,101,121,68,111,119,110,34,58,99,97,115,101,34,111,110,75,101,121,80,114,101,115,115,34,58,99,97,115,101,34,111,110,75,101,121,85,112,34,58,99,97,115,101,34,111,110,77,111,117,115,101,68,111,119,110,34,58,99,97,115,101,34,111,110,77,111,117,115,101,77,111,118,101,34,58,99,97,115,101,34,111,110,77,111,117,115,101,85,112,34,58,99,97,115,101,34,111,110,83,117,98,109,105,116,34,58,99,97,115,101,34,111,110,84,111,117,99,104,69,110,100,34,58,99,97,115,101,34,111,110,84,111,117,99,104,77,111,118,101,34,58,99,97,115,101,34,111,110,84,111,117,99,104,83,116,97,114,116,34,58,82,40,97,44,110,117,108,108,44,101,46,100,111,109,41,125,125,101,108,115,101,123,118,97,114,32,115,61,101,46,99,104,105,108,100,114,101,110,59,105,102,40,115,41,105,102,40,49,52,38,116,41,123,118,97,114,32,108,61,101,46,114,101,102,59,52,38,116,63,40,95,40,115,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,41,38,38,115,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,40,41,44,95,40,108,41,38,38,108,40,110,117,108,108,41,44,115,46,36,85,78,61,33,48,44,115,46,36,76,73,38,38,115,101,40,115,46,36,76,73,41,41,58,40,33,68,40,108,41,38,38,95,40,108,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,41,38,38,108,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,40,101,46,100,111,109,44,101,46,112,114,111,112,115,124,124,76,41,44,115,101,40,115,41,41,125,101,108,115,101,32,49,48,50,52,38,116,38,38,97,101,40,115,44,101,46,116,121,112,101,41,125,125,102,117,110,99,116,105,111,110,32,108,101,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,44,110,61,101,46,108,101,110,103,116,104,59,116,60,110,59,116,43,43,41,115,101,40,101,91,116,93,41,125,102,117,110,99,116,105,111,110,32,100,101,40,101,44,116,41,123,108,101,40,116,41,44,101,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,125,102,117,110,99,116,105,111,110,32,99,101,40,101,44,116,41,123,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,97,110,105,109,97,116,105,111,110,73,116,101,114,97,116,105,111,110,67,111,117,110,116,34,58,99,97,115,101,34,98,111,114,100,101,114,73,109,97,103,101,79,117,116,115,101,116,34,58,99,97,115,101,34,98,111,114,100,101,114,73,109,97,103,101,83,108,105,99,101,34,58,99,97,115,101,34,98,111,114,100,101,114,73,109,97,103,101,87,105,100,116,104,34,58,99,97,115,101,34,98,111,120,70,108,101,120,34,58,99,97,115,101,34,98,111,120,70,108,101,120,71,114,111,117,112,34,58,99,97,115,101,34,98,111,120,79,114,100,105,110,97,108,71,114,111,117,112,34,58,99,97,115,101,34,99,111,108,117,109,110,67,111,117,110,116,34,58,99,97,115,101,34,102,105,108,108,79,112,97,99,105,116,121,34,58,99,97,115,101,34,102,108,101,120,34,58,99,97,115,101,34,102,108,101,120,71,114,111,119,34,58,99,97,115,101,34,102,108,101,120,78,101,103,97,116,105,118,101,34,58,99,97,115,101,34,102,108,101,120,79,114,100,101,114,34,58,99,97,115,101,34,102,108,101,120,80,111,115,105,116,105,118,101,34,58,99,97,115,101,34,102,108,101,120,83,104,114,105,110,107,34,58,99,97,115,101,34,102,108,111,111,100,79,112,97,99,105,116,121,34,58,99,97,115,101,34,102,111,110,116,87,101,105,103,104,116,34,58,99,97,115,101,34,103,114,105,100,67,111,108,117,109,110,34,58,99,97,115,101,34,103,114,105,100,82,111,119,34,58,99,97,115,101,34,108,105,110,101,67,108,97,109,112,34,58,99,97,115,101,34,108,105,110,101,72,101,105,103,104,116,34,58,99,97,115,101,34,111,112,97,99,105,116,121,34,58,99,97,115,101,34,111,114,100,101,114,34,58,99,97,115,101,34,111,114,112,104,97,110,115,34,58,99,97,115,101,34,115,116,111,112,79,112,97,99,105,116,121,34,58,99,97,115,101,34,115,116,114,111,107,101,68,97,115,104,97,114,114,97,121,34,58,99,97,115,101,34,115,116,114,111,107,101,68,97,115,104,111,102,102,115,101,116,34,58,99,97,115,101,34,115,116,114,111,107,101,77,105,116,101,114,108,105,109,105,116,34,58,99,97,115,101,34,115,116,114,111,107,101,79,112,97,99,105,116,121,34,58,99,97,115,101,34,115,116,114,111,107,101,87,105,100,116,104,34,58,99,97,115,101,34,116,97,98,83,105,122,101,34,58,99,97,115,101,34,119,105,100,111,119,115,34,58,99,97,115,101,34,122,73,110,100,101,120,34,58,99,97,115,101,34,122,111,111,109,34,58,114,101,116,117,114,110,32,116,59,100,101,102,97,117,108,116,58,114,101,116,117,114,110,32,116,43,34,112,120,34,125,125,102,117,110,99,116,105,111,110,32,117,101,40,101,44,116,44,110,44,111,44,114,44,105,44,97,41,123,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,111,110,67,108,105,99,107,34,58,99,97,115,101,34,111,110,68,98,108,67,108,105,99,107,34,58,99,97,115,101,34,111,110,70,111,99,117,115,73,110,34,58,99,97,115,101,34,111,110,70,111,99,117,115,79,117,116,34,58,99,97,115,101,34,111,110,75,101,121,68,111,119,110,34,58,99,97,115,101,34,111,110,75,101,121,80,114,101,115,115,34,58,99,97,115,101,34,111,110,75,101,121,85,112,34,58,99,97,115,101,34,111,110,77,111,117,115,101,68,111,119,110,34,58,99,97,115,101,34,111,110,77,111,117,115,101,77,111,118,101,34,58,99,97,115,101,34,111,110,77,111,117,115,101,85,112,34,58,99,97,115,101,34,111,110,83,117,98,109,105,116,34,58,99,97,115,101,34,111,110,84,111,117,99,104,69,110,100,34,58,99,97,115,101,34,111,110,84,111,117,99,104,77,111,118,101,34,58,99,97,115,101,34,111,110,84,111,117,99,104,83,116,97,114,116,34,58,82,40,101,44,110,44,111,41,59,98,114,101,97,107,59,99,97,115,101,34,99,104,105,108,100,114,101,110,34,58,99,97,115,101,34,99,104,105,108,100,114,101,110,84,121,112,101,34,58,99,97,115,101,34,99,108,97,115,115,78,97,109,101,34,58,99,97,115,101,34,100,101,102,97,117,108,116,86,97,108,117,101,34,58,99,97,115,101,34,107,101,121,34,58,99,97,115,101,34,109,117,108,116,105,112,108,101,34,58,99,97,115,101,34,114,101,102,34,58,98,114,101,97,107,59,99,97,115,101,34,97,117,116,111,70,111,99,117,115,34,58,111,46,97,117,116,111,102,111,99,117,115,61,33,33,110,59,98,114,101,97,107,59,99,97,115,101,34,97,108,108,111,119,102,117,108,108,115,99,114,101,101,110,34,58,99,97,115,101,34,97,117,116,111,112,108,97,121,34,58,99,97,115,101,34,99,97,112,116,117,114,101,34,58,99,97,115,101,34,99,104,101,99,107,101,100,34,58,99,97,115,101,34,99,111,110,116,114,111,108,115,34,58,99,97,115,101,34,100,101,102,97,117,108,116,34,58,99,97,115,101,34,100,105,115,97,98,108,101,100,34,58,99,97,115,101,34,104,105,100,100,101,110,34,58,99,97,115,101,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,58,99,97,115,101,34,108,111,111,112,34,58,99,97,115,101,34,109,117,116,101,100,34,58,99,97,115,101,34,110,111,118,97,108,105,100,97,116,101,34,58,99,97,115,101,34,111,112,101,110,34,58,99,97,115,101,34,114,101,97,100,79,110,108,121,34,58,99,97,115,101,34,114,101,113,117,105,114,101,100,34,58,99,97,115,101,34,114,101,118,101,114,115,101,100,34,58,99,97,115,101,34,115,99,111,112,101,100,34,58,99,97,115,101,34,115,101,97,109,108,101,115,115,34,58,99,97,115,101,34,115,101,108,101,99,116,101,100,34,58,111,91,101,93,61,33,33,110,59,98,114,101,97,107,59,99,97,115,101,34,100,101,102,97,117,108,116,67,104,101,99,107,101,100,34,58,99,97,115,101,34,118,97,108,117,101,34,58,99,97,115,101,34,118,111,108,117,109,101,34,58,105,102,40,105,38,38,34,118,97,108,117,101,34,61,61,61,101,41,114,101,116,117,114,110,59,118,97,114,32,115,61,68,40,110,41,63,34,34,58,110,59,111,91,101,93,33,61,61,115,38,38,40,111,91,101,93,61,115,41,59,98,114,101,97,107,59,99,97,115,101,34,100,97,110,103,101,114,111,117,115,108,121,83,101,116,73,110,110,101,114,72,84,77,76,34,58,118,97,114,32,108,61,116,38,38,116,46,95,95,104,116,109,108,124,124,34,34,44,100,61,110,38,38,110,46,95,95,104,116,109,108,124,124,34,34,59,108,33,61,61,100,38,38,40,68,40,100,41,124,124,87,40,111,44,100,41,124,124,40,121,40,97,41,124,124,40,49,50,38,97,46,99,104,105,108,100,70,108,97,103,115,63,108,101,40,97,46,99,104,105,108,100,114,101,110,41,58,50,61,61,61,97,46,99,104,105,108,100,70,108,97,103,115,38,38,115,101,40,97,46,99,104,105,108,100,114,101,110,41,44,97,46,99,104,105,108,100,114,101,110,61,110,117,108,108,44,97,46,99,104,105,108,100,70,108,97,103,115,61,49,41,44,111,46,105,110,110,101,114,72,84,77,76,61,100,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,34,111,34,61,61,61,101,91,48,93,38,38,34,110,34,61,61,61,101,91,49,93,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,44,105,44,97,61,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,105,102,40,95,40,110,41,124,124,68,40,110,41,41,123,118,97,114,32,115,61,111,91,97,93,59,115,38,38,115,46,119,114,97,112,112,101,100,124,124,40,111,91,97,93,61,110,41,125,101,108,115,101,123,118,97,114,32,108,61,110,46,101,118,101,110,116,59,108,38,38,95,40,108,41,38,38,40,111,91,97,93,61,40,114,61,108,44,105,61,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,40,105,46,100,97,116,97,44,101,41,125,41,41,125,125,40,101,44,48,44,110,44,111,41,58,68,40,110,41,63,111,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,101,41,58,34,115,116,121,108,101,34,61,61,61,101,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,111,44,114,44,105,61,110,46,115,116,121,108,101,59,105,102,40,104,40,116,41,41,105,46,99,115,115,84,101,120,116,61,116,59,101,108,115,101,32,105,102,40,68,40,101,41,124,124,104,40,101,41,41,102,111,114,40,111,32,105,110,32,116,41,114,61,116,91,111,93,44,105,91,111,93,61,118,40,114,41,63,99,101,40,111,44,114,41,58,114,59,101,108,115,101,123,102,111,114,40,111,32,105,110,32,116,41,40,114,61,116,91,111,93,41,33,61,61,101,91,111,93,38,38,40,105,91,111,93,61,118,40,114,41,63,99,101,40,111,44,114,41,58,114,41,59,102,111,114,40,111,32,105,110,32,101,41,68,40,116,91,111,93,41,38,38,40,105,91,111,93,61,34,34,41,125,125,40,116,44,110,44,111,41,58,114,38,38,84,91,101,93,63,111,46,115,101,116,65,116,116,114,105,98,117,116,101,78,83,40,84,91,101,93,44,101,44,110,41,58,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,101,44,110,41,125,125,102,117,110,99,116,105,111,110,32,112,101,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,61,33,49,44,97,61,48,60,40,52,52,56,38,116,41,59,102,111,114,40,118,97,114,32,115,32,105,110,32,97,38,38,40,105,61,105,101,40,110,41,41,38,38,114,101,40,116,44,111,44,110,41,44,110,41,117,101,40,115,44,110,117,108,108,44,110,91,115,93,44,111,44,114,44,105,44,110,117,108,108,41,59,97,38,38,111,101,40,116,44,101,44,111,44,110,44,33,48,44,105,41,125,102,117,110,99,116,105,111,110,32,102,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,110,101,119,32,116,40,110,44,111,41,59,105,102,40,40,101,46,99,104,105,108,100,114,101,110,61,114,41,46,36,86,61,101,44,114,46,36,66,83,61,33,49,44,114,46,99,111,110,116,101,120,116,61,111,44,114,46,112,114,111,112,115,61,61,61,76,38,38,40,114,46,112,114,111,112,115,61,110,41,44,114,46,36,85,78,61,33,49,44,95,40,114,46,99,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,41,41,123,105,102,40,114,46,36,66,82,61,33,48,44,114,46,99,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,40,41,44,114,46,36,80,83,83,41,123,118,97,114,32,105,61,114,46,115,116,97,116,101,44,97,61,114,46,36,80,83,59,105,102,40,121,40,105,41,41,114,46,115,116,97,116,101,61,97,59,101,108,115,101,32,102,111,114,40,118,97,114,32,115,32,105,110,32,97,41,105,91,115,93,61,97,91,115,93,59,114,46,36,80,83,83,61,33,49,44,114,46,36,80,83,61,110,117,108,108,125,114,46,36,66,82,61,33,49,125,95,40,80,46,98,101,102,111,114,101,82,101,110,100,101,114,41,38,38,80,46,98,101,102,111,114,101,82,101,110,100,101,114,40,114,41,59,118,97,114,32,108,44,100,61,104,101,40,114,46,114,101,110,100,101,114,40,110,44,114,46,115,116,97,116,101,44,111,41,44,101,41,59,114,101,116,117,114,110,32,95,40,114,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,41,38,38,40,108,61,114,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,40,41,41,44,68,40,108,41,63,114,46,36,67,88,61,111,58,114,46,36,67,88,61,98,40,111,44,108,41,44,95,40,80,46,97,102,116,101,114,82,101,110,100,101,114,41,38,38,80,46,97,102,116,101,114,82,101,110,100,101,114,40,114,41,44,114,46,36,76,73,61,100,44,114,125,102,117,110,99,116,105,111,110,32,104,101,40,101,44,116,41,123,114,101,116,117,114,110,32,102,40,101,41,63,101,61,120,40,41,58,112,40,101,41,63,101,61,36,40,101,44,110,117,108,108,41,58,40,101,46,100,111,109,38,38,40,101,61,119,40,101,41,41,44,49,52,38,101,46,102,108,97,103,115,38,38,40,101,46,112,97,114,101,110,116,86,78,111,100,101,61,116,41,41,44,101,125,102,117,110,99,116,105,111,110,32,118,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,101,46,102,108,97,103,115,59,114,101,116,117,114,110,32,52,56,49,38,114,63,109,101,40,101,44,116,44,110,44,111,41,58,49,52,38,114,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,44,97,61,101,46,116,121,112,101,44,115,61,101,46,112,114,111,112,115,124,124,76,44,108,61,101,46,114,101,102,59,105,102,40,114,41,123,118,97,114,32,100,61,102,101,40,101,44,97,44,115,44,110,41,59,101,46,100,111,109,61,105,61,118,101,40,100,46,36,76,73,44,110,117,108,108,44,100,46,36,67,88,44,111,41,44,98,101,40,101,44,108,44,100,41,44,100,46,36,85,80,68,61,33,49,125,101,108,115,101,123,118,97,114,32,99,61,104,101,40,97,40,115,44,110,41,44,101,41,59,101,46,99,104,105,108,100,114,101,110,61,99,44,101,46,100,111,109,61,105,61,118,101,40,99,44,110,117,108,108,44,110,44,111,41,44,107,101,40,115,44,108,44,105,41,125,121,40,116,41,124,124,77,40,116,44,105,41,59,114,101,116,117,114,110,32,105,125,40,101,44,116,44,110,44,111,44,48,60,40,52,38,114,41,41,58,53,49,50,38,114,124,124,49,54,38,114,63,103,101,40,101,44,116,41,58,49,48,50,52,38,114,63,40,118,101,40,101,46,99,104,105,108,100,114,101,110,44,101,46,116,121,112,101,44,110,44,33,49,41,44,101,46,100,111,109,61,103,101,40,120,40,41,44,116,41,41,58,118,111,105,100,32,48,125,102,117,110,99,116,105,111,110,32,103,101,40,101,44,116,41,123,118,97,114,32,110,61,101,46,100,111,109,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,101,46,99,104,105,108,100,114,101,110,41,59,114,101,116,117,114,110,32,121,40,116,41,124,124,77,40,116,44,110,41,44,110,125,102,117,110,99,116,105,111,110,32,109,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,101,46,102,108,97,103,115,44,105,61,101,46,99,104,105,108,100,114,101,110,44,97,61,101,46,112,114,111,112,115,44,115,61,101,46,99,108,97,115,115,78,97,109,101,44,108,61,101,46,114,101,102,44,100,61,101,46,99,104,105,108,100,70,108,97,103,115,59,111,61,111,124,124,48,60,40,51,50,38,114,41,59,118,97,114,32,99,44,117,61,40,99,61,101,46,116,121,112,101,44,33,48,61,61,61,111,63,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,78,83,40,79,44,99,41,58,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,99,41,41,59,105,102,40,101,46,100,111,109,61,117,44,68,40,115,41,124,124,34,34,61,61,61,115,124,124,40,111,63,117,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,115,41,58,117,46,99,108,97,115,115,78,97,109,101,61,115,41,44,121,40,116,41,124,124,77,40,116,44,117,41,44,48,61,61,40,49,38,100,41,41,123,118,97,114,32,112,61,33,48,61,61,61,111,38,38,34,102,111,114,101,105,103,110,79,98,106,101,99,116,34,33,61,61,101,46,116,121,112,101,59,50,61,61,61,100,63,118,101,40,105,44,117,44,110,44,112,41,58,49,50,38,100,38,38,121,101,40,105,44,117,44,110,44,112,41,125,114,101,116,117,114,110,32,121,40,97,41,124,124,112,101,40,101,44,114,44,97,44,117,44,111,41,44,95,40,108,41,38,38,67,101,40,117,44,108,41,44,117,125,102,117,110,99,116,105,111,110,32,121,101,40,101,44,116,44,110,44,111,41,123,102,111,114,40,118,97,114,32,114,61,48,44,105,61,101,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,123,118,97,114,32,97,61,101,91,114,93,59,121,40,97,46,100,111,109,41,124,124,40,101,91,114,93,61,97,61,119,40,97,41,41,44,118,101,40,97,44,116,44,110,44,111,41,125,125,102,117,110,99,116,105,111,110,32,98,101,40,101,44,116,44,110,41,123,118,97,114,32,111,59,95,40,116,41,38,38,116,40,110,41,44,95,40,110,46,99,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,41,38,38,85,46,112,117,115,104,40,40,111,61,110,44,102,117,110,99,116,105,111,110,40,41,123,111,46,99,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,40,41,125,41,41,125,102,117,110,99,116,105,111,110,32,107,101,40,101,44,116,44,110,41,123,118,97,114,32,111,44,114,44,105,59,68,40,116,41,124,124,40,95,40,116,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,41,38,38,116,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,40,101,41,44,95,40,116,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,41,38,38,85,46,112,117,115,104,40,40,111,61,116,44,114,61,110,44,105,61,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,40,114,44,105,41,125,41,41,41,125,102,117,110,99,116,105,111,110,32,67,101,40,101,44,116,41,123,85,46,112,117,115,104,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,101,41,125,41,125,102,117,110,99,116,105,111,110,32,36,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,44,105,44,97,61,101,46,99,104,105,108,100,114,101,110,44,115,61,101,46,112,114,111,112,115,44,108,61,101,46,99,108,97,115,115,78,97,109,101,44,100,61,101,46,102,108,97,103,115,44,99,61,101,46,114,101,102,59,105,102,40,111,61,111,124,124,48,60,40,51,50,38,100,41,44,49,33,61,61,116,46,110,111,100,101,84,121,112,101,124,124,116,46,116,97,103,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,33,61,61,101,46,116,121,112,101,41,123,118,97,114,32,117,61,109,101,40,101,44,110,117,108,108,44,110,44,111,41,59,101,46,100,111,109,61,117,44,70,40,116,46,112,97,114,101,110,116,78,111,100,101,44,117,44,116,41,125,101,108,115,101,123,118,97,114,32,112,61,40,101,46,100,111,109,61,116,41,46,102,105,114,115,116,67,104,105,108,100,44,102,61,101,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,48,61,61,40,49,38,102,41,41,123,102,111,114,40,118,97,114,32,104,61,110,117,108,108,59,112,59,41,104,61,112,46,110,101,120,116,83,105,98,108,105,110,103,44,56,61,61,61,112,46,110,111,100,101,84,121,112,101,38,38,40,34,33,34,61,61,61,112,46,100,97,116,97,63,116,46,114,101,112,108,97,99,101,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,34,34,41,44,112,41,58,116,46,114,101,109,111,118,101,67,104,105,108,100,40,112,41,41,44,112,61,104,59,105,102,40,112,61,116,46,102,105,114,115,116,67,104,105,108,100,44,50,61,61,61,102,41,121,40,112,41,63,118,101,40,97,44,116,44,110,44,111,41,58,40,104,61,112,46,110,101,120,116,83,105,98,108,105,110,103,44,68,101,40,97,44,112,44,110,44,111,41,44,112,61,104,41,59,101,108,115,101,32,105,102,40,49,50,38,102,41,102,111,114,40,118,97,114,32,118,61,48,44,103,61,97,46,108,101,110,103,116,104,59,118,60,103,59,118,43,43,41,123,118,97,114,32,109,61,97,91,118,93,59,121,40,112,41,63,118,101,40,109,44,116,44,110,44,111,41,58,40,104,61,112,46,110,101,120,116,83,105,98,108,105,110,103,44,68,101,40,109,44,112,44,110,44,111,41,44,112,61,104,41,125,102,111,114,40,59,112,59,41,104,61,112,46,110,101,120,116,83,105,98,108,105,110,103,44,116,46,114,101,109,111,118,101,67,104,105,108,100,40,112,41,44,112,61,104,125,101,108,115,101,32,121,40,116,46,102,105,114,115,116,67,104,105,108,100,41,124,124,40,114,61,116,44,105,61,115,44,66,111,111,108,101,97,110,40,105,38,38,105,46,100,97,110,103,101,114,111,117,115,108,121,83,101,116,73,110,110,101,114,72,84,77,76,38,38,105,46,100,97,110,103,101,114,111,117,115,108,121,83,101,116,73,110,110,101,114,72,84,77,76,46,95,95,104,116,109,108,38,38,87,40,114,44,105,46,100,97,110,103,101,114,111,117,115,108,121,83,101,116,73,110,110,101,114,72,84,77,76,46,95,95,104,116,109,108,41,41,41,124,124,40,116,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,44,52,52,56,38,100,38,38,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,34,34,41,41,59,121,40,115,41,124,124,112,101,40,101,44,100,44,115,44,116,44,111,41,44,68,40,108,41,63,34,34,33,61,61,116,46,99,108,97,115,115,78,97,109,101,38,38,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,41,58,111,63,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,108,41,58,116,46,99,108,97,115,115,78,97,109,101,61,108,44,95,40,99,41,38,38,67,101,40,116,44,99,41,125,125,102,117,110,99,116,105,111,110,32,68,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,101,46,102,108,97,103,115,59,49,52,38,114,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,61,101,46,116,121,112,101,44,97,61,101,46,114,101,102,44,115,61,101,46,112,114,111,112,115,124,124,76,59,105,102,40,114,41,123,118,97,114,32,108,61,102,101,40,101,44,105,44,115,44,110,41,44,100,61,108,46,36,76,73,59,68,101,40,100,44,116,44,108,46,36,67,88,44,111,41,44,101,46,100,111,109,61,100,46,100,111,109,44,98,101,40,48,44,97,44,108,41,44,108,46,36,85,80,68,61,33,49,125,101,108,115,101,123,118,97,114,32,99,61,104,101,40,105,40,115,44,110,41,44,101,41,59,68,101,40,99,44,116,44,110,44,111,41,44,101,46,99,104,105,108,100,114,101,110,61,99,44,101,46,100,111,109,61,99,46,100,111,109,44,107,101,40,115,44,97,44,116,41,125,125,40,101,44,116,44,110,44,111,44,48,60,40,52,38,114,41,41,58,52,56,49,38,114,63,36,101,40,101,44,116,44,110,44,111,41,58,49,54,38,114,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,51,33,61,61,116,46,110,111,100,101,84,121,112,101,41,123,118,97,114,32,110,61,103,101,40,101,44,110,117,108,108,41,59,101,46,100,111,109,61,110,44,70,40,116,46,112,97,114,101,110,116,78,111,100,101,44,110,44,116,41,125,101,108,115,101,123,118,97,114,32,111,61,101,46,99,104,105,108,100,114,101,110,59,116,46,110,111,100,101,86,97,108,117,101,33,61,61,111,38,38,40,116,46,110,111,100,101,86,97,108,117,101,61,111,41,44,101,46,100,111,109,61,116,125,125,40,101,44,116,41,58,53,49,50,38,114,63,101,46,100,111,109,61,116,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,114,111,119,32,101,124,124,40,101,61,97,41,44,110,101,119,32,69,114,114,111,114,40,34,73,110,102,101,114,110,111,32,69,114,114,111,114,58,32,34,43,101,41,125,40,41,125,102,117,110,99,116,105,111,110,32,95,101,40,101,44,116,44,110,44,111,44,114,41,123,115,101,40,101,41,44,70,40,110,44,118,101,40,116,44,110,117,108,108,44,111,44,114,41,44,101,46,100,111,109,41,125,102,117,110,99,116,105,111,110,32,120,101,40,101,44,116,44,110,44,111,44,114,41,123,105,102,40,101,33,61,61,116,41,123,118,97,114,32,105,61,48,124,116,46,102,108,97,103,115,59,101,46,102,108,97,103,115,33,61,61,105,124,124,50,48,52,56,38,105,63,95,101,40,101,44,116,44,110,44,111,44,114,41,58,52,56,49,38,105,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,61,116,46,116,121,112,101,59,105,102,40,101,46,116,121,112,101,33,61,61,105,41,95,101,40,101,44,116,44,110,44,111,44,114,41,59,101,108,115,101,123,118,97,114,32,97,44,115,61,101,46,100,111,109,44,108,61,116,46,102,108,97,103,115,44,100,61,101,46,112,114,111,112,115,44,99,61,116,46,112,114,111,112,115,44,117,61,33,49,44,112,61,33,49,59,105,102,40,116,46,100,111,109,61,115,44,114,61,114,124,124,48,60,40,51,50,38,108,41,44,100,33,61,61,99,41,123,118,97,114,32,102,61,100,124,124,76,59,105,102,40,40,97,61,99,124,124,76,41,33,61,61,76,41,102,111,114,40,118,97,114,32,104,32,105,110,40,117,61,48,60,40,52,52,56,38,108,41,41,38,38,40,112,61,105,101,40,97,41,41,44,97,41,123,118,97,114,32,118,61,102,91,104,93,44,103,61,97,91,104,93,59,118,33,61,61,103,38,38,117,101,40,104,44,118,44,103,44,115,44,114,44,112,44,101,41,125,105,102,40,102,33,61,61,76,41,102,111,114,40,118,97,114,32,109,32,105,110,32,102,41,97,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,109,41,124,124,68,40,102,91,109,93,41,124,124,117,101,40,109,44,102,91,109,93,44,110,117,108,108,44,115,44,114,44,112,44,101,41,125,118,97,114,32,121,61,101,46,99,104,105,108,100,114,101,110,44,98,61,116,46,99,104,105,108,100,114,101,110,44,107,61,116,46,114,101,102,44,67,61,101,46,99,108,97,115,115,78,97,109,101,44,36,61,116,46,99,108,97,115,115,78,97,109,101,59,121,33,61,61,98,38,38,119,101,40,101,46,99,104,105,108,100,70,108,97,103,115,44,116,46,99,104,105,108,100,70,108,97,103,115,44,121,44,98,44,115,44,111,44,114,38,38,34,102,111,114,101,105,103,110,79,98,106,101,99,116,34,33,61,61,105,41,44,117,38,38,111,101,40,108,44,116,44,115,44,97,44,33,49,44,112,41,44,67,33,61,61,36,38,38,40,68,40,36,41,63,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,41,58,114,63,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,36,41,58,115,46,99,108,97,115,115,78,97,109,101,61,36,41,44,95,40,107,41,38,38,101,46,114,101,102,33,61,61,107,38,38,67,101,40,115,44,107,41,125,125,40,101,44,116,44,110,44,111,44,114,41,58,49,52,38,105,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,44,105,41,123,118,97,114,32,97,61,116,46,116,121,112,101,44,115,61,101,46,107,101,121,44,108,61,116,46,107,101,121,59,105,102,40,101,46,116,121,112,101,33,61,61,97,124,124,115,33,61,61,108,41,95,101,40,101,44,116,44,110,44,111,44,114,41,59,101,108,115,101,123,118,97,114,32,100,61,116,46,112,114,111,112,115,124,124,76,59,105,102,40,105,41,123,118,97,114,32,99,61,101,46,99,104,105,108,100,114,101,110,59,99,46,36,85,80,68,61,33,48,44,99,46,36,86,61,116,44,78,101,40,99,44,99,46,115,116,97,116,101,44,116,44,100,44,110,44,111,44,114,44,33,49,44,33,49,41,44,99,46,36,85,80,68,61,33,49,125,101,108,115,101,123,118,97,114,32,117,61,33,48,44,112,61,101,46,112,114,111,112,115,44,102,61,116,46,114,101,102,44,104,61,33,68,40,102,41,44,118,61,101,46,99,104,105,108,100,114,101,110,59,105,102,40,116,46,100,111,109,61,101,46,100,111,109,44,116,46,99,104,105,108,100,114,101,110,61,118,44,104,38,38,95,40,102,46,111,110,67,111,109,112,111,110,101,110,116,83,104,111,117,108,100,85,112,100,97,116,101,41,38,38,40,117,61,102,46,111,110,67,111,109,112,111,110,101,110,116,83,104,111,117,108,100,85,112,100,97,116,101,40,112,44,100,41,41,44,33,49,33,61,61,117,41,123,104,38,38,95,40,102,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,41,38,38,102,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,40,112,44,100,41,59,118,97,114,32,103,61,97,40,100,44,111,41,59,103,33,61,61,109,38,38,40,103,61,104,101,40,103,44,116,41,44,120,101,40,118,44,103,44,110,44,111,44,114,41,44,116,46,99,104,105,108,100,114,101,110,61,103,44,116,46,100,111,109,61,103,46,100,111,109,44,104,38,38,95,40,102,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,41,38,38,102,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,40,112,44,100,41,41,125,101,108,115,101,32,49,52,38,118,46,102,108,97,103,115,38,38,40,118,46,112,97,114,101,110,116,86,78,111,100,101,61,116,41,125,125,125,40,101,44,116,44,110,44,111,44,114,44,48,60,40,52,38,105,41,41,58,49,54,38,105,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,111,44,114,61,116,46,99,104,105,108,100,114,101,110,59,121,40,110,46,102,105,114,115,116,67,104,105,108,100,41,63,40,110,46,116,101,120,116,67,111,110,116,101,110,116,61,114,44,111,61,110,46,102,105,114,115,116,67,104,105,108,100,41,58,40,111,61,101,46,100,111,109,44,114,33,61,61,101,46,99,104,105,108,100,114,101,110,38,38,40,111,46,110,111,100,101,86,97,108,117,101,61,114,41,41,59,116,46,100,111,109,61,111,125,40,101,44,116,44,110,41,58,53,49,50,38,105,63,116,46,100,111,109,61,101,46,100,111,109,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,111,61,101,46,116,121,112,101,44,114,61,116,46,116,121,112,101,44,105,61,116,46,99,104,105,108,100,114,101,110,59,105,102,40,119,101,40,101,46,99,104,105,108,100,70,108,97,103,115,44,116,46,99,104,105,108,100,70,108,97,103,115,44,101,46,99,104,105,108,100,114,101,110,44,105,44,111,44,110,44,33,49,41,44,116,46,100,111,109,61,101,46,100,111,109,44,111,33,61,61,114,38,38,33,102,40,105,41,41,123,118,97,114,32,97,61,105,46,100,111,109,59,111,46,114,101,109,111,118,101,67,104,105,108,100,40,97,41,44,114,46,97,112,112,101,110,100,67,104,105,108,100,40,97,41,125,125,40,101,44,116,44,111,41,125,125,102,117,110,99,116,105,111,110,32,119,101,40,101,44,116,44,110,44,111,44,114,44,105,44,97,41,123,115,119,105,116,99,104,40,101,41,123,99,97,115,101,32,50,58,115,119,105,116,99,104,40,116,41,123,99,97,115,101,32,50,58,120,101,40,110,44,111,44,114,44,105,44,97,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,97,101,40,110,44,114,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,97,101,40,110,44,114,41,44,121,101,40,111,44,114,44,105,44,97,41,125,98,114,101,97,107,59,99,97,115,101,32,49,58,115,119,105,116,99,104,40,116,41,123,99,97,115,101,32,50,58,118,101,40,111,44,114,44,105,44,97,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,98,114,101,97,107,59,100,101,102,97,117,108,116,58,121,101,40,111,44,114,44,105,44,97,41,125,98,114,101,97,107,59,100,101,102,97,117,108,116,58,105,102,40,49,50,38,116,41,123,118,97,114,32,115,61,110,46,108,101,110,103,116,104,44,108,61,111,46,108,101,110,103,116,104,59,48,61,61,61,115,63,48,60,108,38,38,121,101,40,111,44,114,44,105,44,97,41,58,48,61,61,61,108,63,100,101,40,114,44,110,41,58,56,61,61,61,116,38,38,56,61,61,61,101,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,44,105,44,97,41,123,118,97,114,32,115,44,108,44,100,61,105,45,49,44,99,61,97,45,49,44,117,61,48,44,112,61,101,91,117,93,44,102,61,116,91,117,93,59,101,58,123,102,111,114,40,59,112,46,107,101,121,61,61,61,102,46,107,101,121,59,41,123,105,102,40,102,46,100,111,109,38,38,40,116,91,117,93,61,102,61,119,40,102,41,41,44,120,101,40,112,44,102,44,110,44,111,44,114,41,44,101,91,117,93,61,102,44,100,60,43,43,117,124,124,99,60,117,41,98,114,101,97,107,32,101,59,112,61,101,91,117,93,44,102,61,116,91,117,93,125,102,111,114,40,112,61,101,91,100,93,44,102,61,116,91,99,93,59,112,46,107,101,121,61,61,61,102,46,107,101,121,59,41,123,105,102,40,102,46,100,111,109,38,38,40,116,91,99,93,61,102,61,119,40,102,41,41,44,120,101,40,112,44,102,44,110,44,111,44,114,41,44,101,91,100,93,61,102,44,99,45,45,44,45,45,100,60,117,124,124,99,60,117,41,98,114,101,97,107,32,101,59,112,61,101,91,100,93,44,102,61,116,91,99,93,125,125,105,102,40,100,60,117,41,123,105,102,40,117,60,61,99,41,102,111,114,40,118,97,114,32,104,61,40,108,61,99,43,49,41,60,97,63,116,91,108,93,46,100,111,109,58,110,117,108,108,59,117,60,61,99,59,41,40,102,61,116,91,117,93,41,46,100,111,109,38,38,40,116,91,117,93,61,102,61,119,40,102,41,41,44,117,43,43,44,69,40,110,44,118,101,40,102,44,110,117,108,108,44,111,44,114,41,44,104,41,125,101,108,115,101,32,105,102,40,99,60,117,41,102,111,114,40,59,117,60,61,100,59,41,97,101,40,101,91,117,43,43,93,44,110,41,59,101,108,115,101,123,118,97,114,32,118,61,117,44,103,61,117,44,109,61,100,45,117,43,49,44,121,61,99,45,117,43,49,44,98,61,91,93,59,102,111,114,40,115,61,48,59,115,60,121,59,115,43,43,41,98,46,112,117,115,104,40,48,41,59,118,97,114,32,107,61,109,61,61,61,105,44,67,61,33,49,44,36,61,48,44,68,61,48,59,105,102,40,97,60,52,124,124,40,109,124,121,41,60,51,50,41,102,111,114,40,115,61,118,59,115,60,61,100,59,115,43,43,41,105,102,40,112,61,101,91,115,93,44,68,60,121,41,123,102,111,114,40,117,61,103,59,117,60,61,99,59,117,43,43,41,105,102,40,102,61,116,91,117,93,44,112,46,107,101,121,61,61,61,102,46,107,101,121,41,123,105,102,40,98,91,117,45,103,93,61,115,43,49,44,107,41,102,111,114,40,107,61,33,49,59,118,60,115,59,41,97,101,40,101,91,118,43,43,93,44,110,41,59,117,60,36,63,67,61,33,48,58,36,61,117,44,102,46,100,111,109,38,38,40,116,91,117,93,61,102,61,119,40,102,41,41,44,120,101,40,112,44,102,44,110,44,111,44,114,41,44,68,43,43,59,98,114,101,97,107,125,33,107,38,38,99,60,117,38,38,97,101,40,112,44,110,41,125,101,108,115,101,32,107,124,124,97,101,40,112,44,110,41,59,101,108,115,101,123,118,97,114,32,95,61,123,125,59,102,111,114,40,115,61,103,59,115,60,61,99,59,115,43,43,41,95,91,116,91,115,93,46,107,101,121,93,61,115,59,102,111,114,40,115,61,118,59,115,60,61,100,59,115,43,43,41,105,102,40,112,61,101,91,115,93,44,68,60,121,41,105,102,40,118,111,105,100,32,48,33,61,61,40,117,61,95,91,112,46,107,101,121,93,41,41,123,105,102,40,107,41,102,111,114,40,107,61,33,49,59,118,60,115,59,41,97,101,40,101,91,118,43,43,93,44,110,41,59,102,61,116,91,117,93,44,98,91,117,45,103,93,61,115,43,49,44,117,60,36,63,67,61,33,48,58,36,61,117,44,102,46,100,111,109,38,38,40,116,91,117,93,61,102,61,119,40,102,41,41,44,120,101,40,112,44,102,44,110,44,111,44,114,41,44,68,43,43,125,101,108,115,101,32,107,124,124,97,101,40,112,44,110,41,59,101,108,115,101,32,107,124,124,97,101,40,112,44,110,41,125,105,102,40,107,41,100,101,40,110,44,101,41,44,121,101,40,116,44,110,44,111,44,114,41,59,101,108,115,101,32,105,102,40,67,41,123,118,97,114,32,120,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,111,44,114,44,105,44,97,61,101,46,115,108,105,99,101,40,41,44,115,61,91,48,93,44,108,61,101,46,108,101,110,103,116,104,59,102,111,114,40,116,61,48,59,116,60,108,59,116,43,43,41,123,118,97,114,32,100,61,101,91,116,93,59,105,102,40,48,33,61,61,100,41,123,105,102,40,110,61,115,91,115,46,108,101,110,103,116,104,45,49,93,44,101,91,110,93,60,100,41,123,97,91,116,93,61,110,44,115,46,112,117,115,104,40,116,41,59,99,111,110,116,105,110,117,101,125,102,111,114,40,111,61,48,44,114,61,115,46,108,101,110,103,116,104,45,49,59,111,60,114,59,41,101,91,115,91,105,61,40,111,43,114,41,47,50,124,48,93,93,60,100,63,111,61,105,43,49,58,114,61,105,59,100,60,101,91,115,91,111,93,93,38,38,40,48,60,111,38,38,40,97,91,116,93,61,115,91,111,45,49,93,41,44,115,91,111,93,61,116,41,125,125,111,61,115,46,108,101,110,103,116,104,44,114,61,115,91,111,45,49,93,59,102,111,114,40,59,48,60,111,45,45,59,41,115,91,111,93,61,114,44,114,61,97,91,114,93,59,114,101,116,117,114,110,32,115,125,40,98,41,59,102,111,114,40,117,61,120,46,108,101,110,103,116,104,45,49,44,115,61,121,45,49,59,48,60,61,115,59,115,45,45,41,48,61,61,61,98,91,115,93,63,40,40,102,61,116,91,36,61,115,43,103,93,41,46,100,111,109,38,38,40,116,91,36,93,61,102,61,119,40,102,41,41,44,108,61,36,43,49,44,69,40,110,44,118,101,40,102,44,110,117,108,108,44,111,44,114,41,44,108,60,97,63,116,91,108,93,46,100,111,109,58,110,117,108,108,41,41,58,117,60,48,124,124,115,33,61,61,120,91,117,93,63,40,102,61,116,91,36,61,115,43,103,93,44,108,61,36,43,49,44,69,40,110,44,102,46,100,111,109,44,108,60,97,63,116,91,108,93,46,100,111,109,58,110,117,108,108,41,41,58,117,45,45,125,101,108,115,101,32,105,102,40,68,33,61,61,121,41,102,111,114,40,115,61,121,45,49,59,48,60,61,115,59,115,45,45,41,48,61,61,61,98,91,115,93,38,38,40,40,102,61,116,91,36,61,115,43,103,93,41,46,100,111,109,38,38,40,116,91,36,93,61,102,61,119,40,102,41,41,44,108,61,36,43,49,44,69,40,110,44,118,101,40,102,44,110,117,108,108,44,111,44,114,41,44,108,60,97,63,116,91,108,93,46,100,111,109,58,110,117,108,108,41,41,125,125,40,110,44,111,44,114,44,105,44,97,44,115,44,108,41,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,44,105,44,97,41,123,102,111,114,40,118,97,114,32,115,44,108,44,100,61,97,60,105,63,97,58,105,44,99,61,48,59,99,60,100,59,99,43,43,41,115,61,116,91,99,93,44,108,61,101,91,99,93,44,115,46,100,111,109,38,38,40,115,61,116,91,99,93,61,119,40,115,41,41,44,120,101,40,108,44,115,44,110,44,111,44,114,41,44,101,91,99,93,61,115,59,105,102,40,105,60,97,41,102,111,114,40,99,61,100,59,99,60,97,59,99,43,43,41,40,115,61,116,91,99,93,41,46,100,111,109,38,38,40,115,61,116,91,99,93,61,119,40,115,41,41,44,118,101,40,115,44,110,44,111,44,114,41,59,101,108,115,101,32,105,102,40,97,60,105,41,102,111,114,40,99,61,100,59,99,60,105,59,99,43,43,41,97,101,40,101,91,99,93,44,110,41,125,40,110,44,111,44,114,44,105,44,97,44,115,44,108,41,125,101,108,115,101,32,49,61,61,61,116,63,100,101,40,114,44,110,41,58,40,100,101,40,114,44,110,41,44,118,101,40,111,44,114,44,105,44,97,41,41,125,125,102,117,110,99,116,105,111,110,32,78,101,40,101,44,116,44,110,44,111,44,114,44,105,44,97,44,115,44,108,41,123,118,97,114,32,100,44,99,61,101,46,115,116,97,116,101,44,117,61,101,46,112,114,111,112,115,59,105,102,40,33,40,110,46,99,104,105,108,100,114,101,110,61,101,41,46,36,85,78,41,123,105,102,40,117,33,61,61,111,124,124,111,61,61,61,76,41,123,105,102,40,33,108,38,38,95,40,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,82,101,99,101,105,118,101,80,114,111,112,115,41,41,123,105,102,40,101,46,36,66,82,61,33,48,44,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,82,101,99,101,105,118,101,80,114,111,112,115,40,111,44,105,41,44,101,46,36,85,78,41,114,101,116,117,114,110,59,101,46,36,66,82,61,33,49,125,101,46,36,80,83,83,38,38,40,116,61,98,40,116,44,101,46,36,80,83,41,44,101,46,36,80,83,83,61,33,49,44,101,46,36,80,83,61,110,117,108,108,41,125,118,97,114,32,112,61,66,111,111,108,101,97,110,40,101,46,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,41,59,105,102,40,115,124,124,33,112,124,124,112,38,38,101,46,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,40,111,44,116,44,105,41,41,123,95,40,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,41,38,38,40,101,46,36,66,83,61,33,48,44,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,40,111,44,116,44,105,41,44,101,46,36,66,83,61,33,49,41,44,101,46,112,114,111,112,115,61,111,44,101,46,115,116,97,116,101,61,116,44,101,46,99,111,110,116,101,120,116,61,105,44,95,40,80,46,98,101,102,111,114,101,82,101,110,100,101,114,41,38,38,80,46,98,101,102,111,114,101,82,101,110,100,101,114,40,101,41,44,100,61,101,46,114,101,110,100,101,114,40,111,44,116,44,105,41,44,95,40,80,46,97,102,116,101,114,82,101,110,100,101,114,41,38,38,80,46,97,102,116,101,114,82,101,110,100,101,114,40,101,41,59,118,97,114,32,102,44,104,61,100,33,61,61,109,59,105,102,40,95,40,101,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,41,38,38,40,102,61,101,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,40,41,41,44,102,61,68,40,102,41,63,105,58,98,40,105,44,102,41,44,101,46,36,67,88,61,102,44,104,41,120,101,40,101,46,36,76,73,44,101,46,36,76,73,61,104,101,40,100,44,110,41,44,114,44,102,44,97,41,44,95,40,101,46,99,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,41,38,38,101,46,99,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,40,117,44,99,41,125,101,108,115,101,32,101,46,112,114,111,112,115,61,111,44,101,46,115,116,97,116,101,61,116,44,101,46,99,111,110,116,101,120,116,61,105,59,110,46,100,111,109,61,101,46,36,76,73,46,100,111,109,125,125,101,38,38,100,111,99,117,109,101,110,116,46,98,111,100,121,59,102,117,110,99,116,105,111,110,32,114,40,101,44,116,44,110,41,123,105,102,40,101,33,61,61,109,41,123,118,97,114,32,111,61,116,46,36,86,59,114,101,116,117,114,110,32,68,40,111,41,63,102,40,101,41,124,124,40,101,46,100,111,109,38,38,40,101,61,119,40,101,41,41,44,121,40,116,46,102,105,114,115,116,67,104,105,108,100,41,63,40,118,101,40,101,44,116,44,76,44,33,49,41,44,116,46,36,86,61,101,41,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,111,61,116,46,102,105,114,115,116,67,104,105,108,100,59,105,102,40,33,121,40,111,41,41,102,111,114,40,102,40,101,41,124,124,68,101,40,101,44,111,44,76,44,33,49,41,44,111,61,116,46,102,105,114,115,116,67,104,105,108,100,59,111,61,111,46,110,101,120,116,83,105,98,108,105,110,103,59,41,116,46,114,101,109,111,118,101,67,104,105,108,100,40,111,41,59,48,60,85,46,108,101,110,103,116,104,38,38,73,40,85,41,44,116,46,36,86,61,101,44,95,40,110,41,38,38,110,40,41,125,40,101,44,116,41,44,111,61,101,41,58,68,40,101,41,63,40,97,101,40,111,44,116,41,44,116,46,36,86,61,110,117,108,108,41,58,40,101,46,100,111,109,38,38,40,101,61,119,40,101,41,41,44,120,101,40,111,44,101,44,116,44,76,44,33,49,41,44,111,61,116,46,36,86,61,101,41,44,48,60,85,46,108,101,110,103,116,104,38,38,73,40,85,41,44,95,40,110,41,38,38,110,40,41,44,95,40,80,46,114,101,110,100,101,114,67,111,109,112,108,101,116,101,41,38,38,80,46,114,101,110,100,101,114,67,111,109,112,108,101,116,101,40,111,41,44,111,38,38,49,52,38,111,46,102,108,97,103,115,63,111,46,99,104,105,108,100,114,101,110,58,118,111,105,100,32,48,125,125,118,97,114,32,83,101,61,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,80,114,111,109,105,115,101,63,110,117,108,108,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,44,80,101,61,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,63,115,101,116,84,105,109,101,111,117,116,58,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,46,98,105,110,100,40,119,105,110,100,111,119,41,59,102,117,110,99,116,105,111,110,32,79,101,40,101,44,116,44,110,44,111,41,123,95,40,116,41,38,38,40,116,61,116,40,101,46,115,116,97,116,101,44,101,46,112,114,111,112,115,44,101,46,99,111,110,116,101,120,116,41,41,59,118,97,114,32,114,44,105,44,97,44,115,61,101,46,36,80,83,59,105,102,40,68,40,115,41,41,101,46,36,80,83,61,116,59,101,108,115,101,32,102,111,114,40,118,97,114,32,108,32,105,110,32,116,41,115,91,108,93,61,116,91,108,93,59,105,102,40,101,46,36,80,83,83,124,124,101,46,36,66,82,41,101,46,36,80,83,83,61,33,48,44,101,46,36,66,82,38,38,95,40,110,41,38,38,85,46,112,117,115,104,40,110,46,98,105,110,100,40,101,41,41,59,101,108,115,101,32,105,102,40,101,46,36,85,80,68,41,123,118,97,114,32,100,61,101,46,36,81,85,59,121,40,100,41,38,38,40,100,61,101,46,36,81,85,61,91,93,44,105,61,101,44,97,61,100,44,114,61,102,117,110,99,116,105,111,110,40,41,123,105,46,36,81,85,61,110,117,108,108,44,105,46,36,85,80,68,61,33,48,44,84,101,40,105,44,33,49,44,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,48,44,116,61,97,46,108,101,110,103,116,104,59,101,60,116,59,101,43,43,41,97,91,101,93,46,99,97,108,108,40,105,41,125,41,44,105,46,36,85,80,68,61,33,49,125,44,83,101,63,83,101,46,116,104,101,110,40,114,41,58,80,101,40,114,41,41,44,95,40,110,41,38,38,100,46,112,117,115,104,40,110,41,125,101,108,115,101,32,101,46,36,80,83,83,61,33,48,44,101,46,36,85,80,68,61,33,48,44,84,101,40,101,44,111,44,110,41,44,101,46,36,85,80,68,61,33,49,125,102,117,110,99,116,105,111,110,32,84,101,40,101,44,116,44,110,41,123,105,102,40,33,101,46,36,85,78,41,123,105,102,40,116,124,124,33,101,46,36,66,82,41,123,101,46,36,80,83,83,61,33,49,59,118,97,114,32,111,61,101,46,36,80,83,44,114,61,98,40,101,46,115,116,97,116,101,44,111,41,44,105,61,101,46,112,114,111,112,115,44,97,61,101,46,99,111,110,116,101,120,116,59,101,46,36,80,83,61,110,117,108,108,59,118,97,114,32,115,61,101,46,36,86,44,108,61,101,46,36,76,73,59,105,102,40,78,101,40,101,44,114,44,115,44,105,44,108,46,100,111,109,38,38,108,46,100,111,109,46,112,97,114,101,110,116,78,111,100,101,44,97,44,48,60,40,51,50,38,115,46,102,108,97,103,115,41,44,116,44,33,48,41,44,101,46,36,85,78,41,114,101,116,117,114,110,59,105,102,40,48,61,61,40,49,48,50,52,38,101,46,36,76,73,46,102,108,97,103,115,41,41,102,111,114,40,118,97,114,32,100,61,101,46,36,76,73,46,100,111,109,59,33,121,40,115,61,115,46,112,97,114,101,110,116,86,78,111,100,101,41,59,41,48,60,40,49,52,38,115,46,102,108,97,103,115,41,38,38,40,115,46,100,111,109,61,100,41,59,48,60,85,46,108,101,110,103,116,104,38,38,73,40,85,41,125,101,108,115,101,32,101,46,115,116,97,116,101,61,101,46,36,80,83,44,101,46,36,80,83,61,110,117,108,108,59,95,40,110,41,38,38,110,46,99,97,108,108,40,101,41,125,125,118,97,114,32,76,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,104,105,115,46,115,116,97,116,101,61,110,117,108,108,44,116,104,105,115,46,36,66,82,61,33,49,44,116,104,105,115,46,36,66,83,61,33,48,44,116,104,105,115,46,36,80,83,83,61,33,49,44,116,104,105,115,46,36,80,83,61,110,117,108,108,44,116,104,105,115,46,36,76,73,61,110,117,108,108,44,116,104,105,115,46,36,86,61,110,117,108,108,44,116,104,105,115,46,36,85,78,61,33,49,44,116,104,105,115,46,36,67,88,61,110,117,108,108,44,116,104,105,115,46,36,85,80,68,61,33,48,44,116,104,105,115,46,36,81,85,61,110,117,108,108,44,116,104,105,115,46,112,114,111,112,115,61,101,124,124,76,44,116,104,105,115,46,99,111,110,116,101,120,116,61,116,124,124,76,125,59,76,101,46,112,114,111,116,111,116,121,112,101,46,102,111,114,99,101,85,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,36,85,78,124,124,79,101,40,116,104,105,115,44,123,125,44,101,44,33,48,41,125,44,76,101,46,112,114,111,116,111,116,121,112,101,46,115,101,116,83,116,97,116,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,104,105,115,46,36,85,78,124,124,116,104,105,115,46,36,66,83,124,124,79,101,40,116,104,105,115,44,101,44,116,44,33,49,41,125,44,76,101,46,112,114,111,116,111,116,121,112,101,46,114,101,110,100,101,114,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,125,59,118,97,114,32,85,101,61,49,50,44,77,101,61,51,55,44,69,101,61,51,56,44,70,101,61,51,57,44,73,101,61,52,48,59,118,97,114,32,65,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,44,86,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,111,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,116,46,108,101,110,103,116,104,59,110,43,43,41,123,118,97,114,32,111,61,116,91,110,93,59,111,46,101,110,117,109,101,114,97,98,108,101,61,111,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,111,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,111,38,38,40,111,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,111,46,107,101,121,44,111,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,38,38,111,40,101,46,112,114,111,116,111,116,121,112,101,44,116,41,44,110,38,38,111,40,101,44,110,41,44,101,125,125,40,41,44,82,101,61,79,98,106,101,99,116,46,97,115,115,105,103,110,124,124,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,49,59,116,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,116,43,43,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,91,116,93,59,102,111,114,40,118,97,114,32,111,32,105,110,32,110,41,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,110,44,111,41,38,38,40,101,91,111,93,61,110,91,111,93,41,125,114,101,116,117,114,110,32,101,125,44,106,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,110,117,108,108,33,61,61,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,83,117,112,101,114,32,101,120,112,114,101,115,115,105,111,110,32,109,117,115,116,32,101,105,116,104,101,114,32,98,101,32,110,117,108,108,32,111,114,32,97,32,102,117,110,99,116,105,111,110,44,32,110,111,116,32,34,43,116,121,112,101,111,102,32,116,41,59,101,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,38,38,116,46,112,114,111,116,111,116,121,112,101,44,123,99,111,110,115,116,114,117,99,116,111,114,58,123,118,97,108,117,101,58,101,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,119,114,105,116,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,41,44,116,38,38,40,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,63,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,101,44,116,41,58,101,46,95,95,112,114,111,116,111,95,95,61,116,41,125,44,66,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,101,41,116,104,114,111,119,32,110,101,119,32,82,101,102,101,114,101,110,99,101,69,114,114,111,114,40,34,116,104,105,115,32,104,97,115,110,39,116,32,98,101,101,110,32,105,110,105,116,105,97,108,105,115,101,100,32,45,32,115,117,112,101,114,40,41,32,104,97,115,110,39,116,32,98,101,101,110,32,99,97,108,108,101,100,34,41,59,114,101,116,117,114,110,33,116,124,124,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,116,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,63,101,58,116,125,44,87,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,99,108,105,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,44,110,61,102,117,110,99,116,105,111,110,40,41,123,116,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,67,104,101,99,107,40,41,125,59,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,99,108,105,99,107,34,44,101,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,110,41,44,101,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,110,40,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,54,52,44,34,105,110,112,117,116,34,44,110,117,108,108,44,110,117,108,108,44,49,44,123,99,104,101,99,107,101,100,58,116,104,105,115,46,112,114,111,112,115,46,99,104,101,99,107,101,100,44,105,110,100,101,116,101,114,109,105,110,97,116,101,58,116,104,105,115,46,112,114,111,112,115,46,105,110,100,101,116,101,114,109,105,110,97,116,101,44,111,110,67,108,105,99,107,58,116,104,105,115,46,99,108,105,99,107,46,98,105,110,100,40,116,104,105,115,41,44,116,121,112,101,58,34,99,104,101,99,107,98,111,120,34,125,41,125,125,93,41,44,116,125,40,41,44,72,101,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,34,108,105,34,44,110,61,101,46,105,116,114,101,101,91,116,93,46,97,116,116,114,105,98,117,116,101,115,44,111,61,91,93,44,114,61,110,46,99,108,97,115,115,124,124,110,46,99,108,97,115,115,78,97,109,101,59,114,101,116,117,114,110,32,108,46,105,115,70,117,110,99,116,105,111,110,40,114,41,38,38,40,114,61,114,40,101,41,41,44,108,46,105,115,69,109,112,116,121,40,114,41,124,124,40,108,46,105,115,83,116,114,105,110,103,40,114,41,63,111,61,111,46,99,111,110,99,97,116,40,114,46,115,112,108,105,116,40,47,91,92,115,92,46,93,43,47,41,41,58,108,46,105,115,65,114,114,97,121,40,114,41,38,38,40,111,61,111,46,99,111,110,99,97,116,40,114,41,41,41,44,111,125,44,113,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,49,125,125,44,123,107,101,121,58,34,97,100,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,97,100,100,67,104,105,108,100,40,123,116,101,120,116,58,34,78,101,119,32,78,111,100,101,34,44,105,116,114,101,101,58,123,115,116,97,116,101,58,123,101,100,105,116,105,110,103,58,33,48,44,102,111,99,117,115,101,100,58,33,48,125,125,125,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,101,120,112,97,110,100,40,41,125,125,44,123,107,101,121,58,34,101,100,105,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,69,100,105,116,105,110,103,40,41,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,114,101,109,111,118,101,40,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,38,38,101,46,112,117,115,104,40,115,40,49,44,34,97,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,112,101,110,99,105,108,34,44,110,117,108,108,44,49,44,123,111,110,99,108,105,99,107,58,116,104,105,115,46,101,100,105,116,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,69,100,105,116,32,116,104,105,115,32,110,111,100,101,34,125,41,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,97,100,100,38,38,101,46,112,117,115,104,40,115,40,49,44,34,97,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,112,108,117,115,34,44,110,117,108,108,44,49,44,123,111,110,99,108,105,99,107,58,116,104,105,115,46,97,100,100,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,65,100,100,32,97,32,99,104,105,108,100,32,110,111,100,101,34,125,41,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,114,101,109,111,118,101,38,38,101,46,112,117,115,104,40,115,40,49,44,34,97,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,109,105,110,117,115,34,44,110,117,108,108,44,49,44,123,111,110,99,108,105,99,107,58,116,104,105,115,46,114,101,109,111,118,101,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,82,101,109,111,118,101,32,116,104,105,115,32,110,111,100,101,34,125,41,41,44,115,40,49,44,34,115,112,97,110,34,44,34,98,116,110,45,103,114,111,117,112,34,44,101,44,48,41,125,125,93,41,44,116,125,40,41,44,75,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,49,44,34,111,108,34,44,110,117,108,108,44,115,40,49,44,34,108,105,34,44,34,108,101,97,102,34,44,115,40,49,44,34,115,112,97,110,34,44,34,116,105,116,108,101,32,105,99,111,110,32,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,32,101,109,112,116,121,34,44,116,104,105,115,46,112,114,111,112,115,46,116,101,120,116,44,48,41,44,50,41,44,50,41,125,125,93,41,44,116,125,40,41,59,102,117,110,99,116,105,111,110,32,88,101,40,116,44,110,41,123,118,97,114,32,111,61,110,46,100,105,114,116,121,124,124,33,49,59,114,101,116,117,114,110,32,111,124,124,108,46,101,97,99,104,40,79,98,106,101,99,116,46,107,101,121,115,40,110,41,44,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,34,100,105,114,116,121,34,33,61,61,101,38,38,110,91,101,93,33,61,61,116,91,101,93,41,114,101,116,117,114,110,33,40,111,61,33,48,41,125,41,44,111,125,118,97,114,32,81,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,110,40,101,41,123,65,101,40,116,104,105,115,44,110,41,59,118,97,114,32,116,61,66,101,40,116,104,105,115,44,40,110,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,110,41,41,46,99,97,108,108,40,116,104,105,115,44,101,41,41,59,114,101,116,117,114,110,32,116,46,115,116,97,116,101,61,116,46,103,101,116,83,116,97,116,101,70,114,111,109,78,111,100,101,115,40,101,46,110,111,100,101,41,44,116,125,114,101,116,117,114,110,32,106,101,40,110,44,76,101,41,44,86,101,40,110,44,91,123,107,101,121,58,34,103,101,116,83,116,97,116,101,70,114,111,109,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,123,116,101,120,116,58,101,46,116,101,120,116,125,125,125,44,123,107,101,121,58,34,99,111,109,112,111,110,101,110,116,87,105,108,108,82,101,99,101,105,118,101,80,114,111,112,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,116,83,116,97,116,101,40,116,104,105,115,46,103,101,116,83,116,97,116,101,70,114,111,109,78,111,100,101,115,40,101,46,110,111,100,101,41,41,125,125,44,123,107,101,121,58,34,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,88,101,40,116,104,105,115,46,115,116,97,116,101,44,116,41,125,125,44,123,107,101,121,58,34,99,108,105,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,44,110,61,102,117,110,99,116,105,111,110,40,41,123,116,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,67,104,101,99,107,40,41,125,59,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,99,108,105,99,107,34,44,101,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,110,41,44,101,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,110,40,41,125,125,44,123,107,101,121,58,34,107,101,121,112,114,101,115,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,46,119,104,105,99,104,61,61,61,85,101,41,114,101,116,117,114,110,32,116,104,105,115,46,115,97,118,101,40,41,125,125,44,123,107,101,121,58,34,105,110,112,117,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,116,83,116,97,116,101,40,123,116,101,120,116,58,101,46,116,97,114,103,101,116,46,118,97,108,117,101,125,41,125,125,44,123,107,101,121,58,34,99,97,110,99,101,108,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,38,38,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,69,100,105,116,105,110,103,40,41,125,125,44,123,107,101,121,58,34,115,97,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,38,38,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,118,97,114,32,116,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,116,101,120,116,44,110,61,116,104,105,115,46,114,101,102,46,118,97,108,117,101,59,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,101,116,40,34,116,101,120,116,34,44,110,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,44,33,49,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,33,61,61,110,38,38,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,101,100,105,116,101,100,34,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,116,44,110,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,114,101,116,117,114,110,32,115,40,49,44,34,102,111,114,109,34,44,110,117,108,108,44,91,115,40,54,52,44,34,105,110,112,117,116,34,44,110,117,108,108,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,125,44,111,110,73,110,112,117,116,58,116,104,105,115,46,105,110,112,117,116,46,98,105,110,100,40,116,104,105,115,41,44,111,110,75,101,121,80,114,101,115,115,58,116,104,105,115,46,107,101,121,112,114,101,115,115,46,98,105,110,100,40,116,104,105,115,41,44,118,97,108,117,101,58,116,104,105,115,46,115,116,97,116,101,46,116,101,120,116,125,44,110,117,108,108,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,114,101,102,61,101,125,41,44,115,40,49,44,34,115,112,97,110,34,44,34,98,116,110,45,103,114,111,117,112,34,44,91,115,40,49,44,34,98,117,116,116,111,110,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,99,104,101,99,107,34,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,115,97,118,101,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,83,97,118,101,34,44,116,121,112,101,58,34,98,117,116,116,111,110,34,125,41,44,115,40,49,44,34,98,117,116,116,111,110,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,99,114,111,115,115,34,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,99,97,110,99,101,108,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,67,97,110,99,101,108,34,44,116,121,112,101,58,34,98,117,116,116,111,110,34,125,41,93,44,52,41,93,44,52,44,123,111,110,115,117,98,109,105,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,125,125,41,125,125,93,41,44,110,125,40,41,44,122,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,98,108,117,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,98,108,117,114,40,41,125,125,44,123,107,101,121,58,34,99,108,105,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,44,101,61,116,104,105,115,46,112,114,111,112,115,44,111,61,101,46,110,111,100,101,44,114,61,101,46,100,111,109,44,105,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,33,110,46,112,114,111,112,115,46,101,100,105,116,105,110,103,41,123,105,102,40,40,116,46,109,101,116,97,75,101,121,124,124,116,46,99,116,114,108,75,101,121,124,124,116,46,115,104,105,102,116,75,101,121,41,38,38,114,46,95,116,114,101,101,46,100,105,115,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,40,41,44,116,46,115,104,105,102,116,75,101,121,41,123,114,46,99,108,101,97,114,83,101,108,101,99,116,105,111,110,40,41,59,118,97,114,32,101,61,114,46,95,116,114,101,101,46,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,40,41,59,101,38,38,114,46,95,116,114,101,101,46,115,101,108,101,99,116,66,101,116,119,101,101,110,46,97,112,112,108,121,40,114,46,95,116,114,101,101,44,114,46,95,116,114,101,101,46,98,111,117,110,100,105,110,103,78,111,100,101,115,40,101,44,111,41,41,125,111,46,115,101,108,101,99,116,101,100,40,41,63,114,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,100,105,115,97,98,108,101,68,105,114,101,99,116,68,101,115,101,108,101,99,116,105,111,110,124,124,111,46,100,101,115,101,108,101,99,116,40,41,58,111,46,115,101,108,101,99,116,40,41,44,114,46,95,116,114,101,101,46,101,110,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,40,41,125,125,59,114,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,99,108,105,99,107,34,44,116,44,111,44,105,41,44,116,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,105,40,41,125,125,44,123,107,101,121,58,34,99,111,110,116,101,120,116,77,101,110,117,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,112,114,111,112,115,44,110,61,116,46,110,111,100,101,59,116,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,99,111,110,116,101,120,116,109,101,110,117,34,44,101,44,110,41,125,125,44,123,107,101,121,58,34,100,98,108,99,108,105,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,112,114,111,112,115,44,110,61,116,46,110,111,100,101,44,111,61,116,46,100,111,109,44,114,61,102,117,110,99,116,105,111,110,40,41,123,111,46,99,108,101,97,114,83,101,108,101,99,116,105,111,110,40,41,44,110,46,116,111,103,103,108,101,67,111,108,108,97,112,115,101,40,41,125,59,111,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,98,108,99,108,105,99,107,34,44,101,44,110,44,114,41,44,101,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,114,40,41,125,125,44,123,107,101,121,58,34,102,111,99,117,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,102,111,99,117,115,40,101,41,125,125,44,123,107,101,121,58,34,109,111,117,115,101,100,111,119,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,105,115,68,114,97,103,68,114,111,112,69,110,97,98,108,101,100,38,38,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,105,115,77,111,117,115,101,72,101,108,100,61,33,48,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,116,61,108,46,99,108,111,110,101,40,101,46,105,116,114,101,101,46,97,46,97,116,116,114,105,98,117,116,101,115,41,124,124,123,125,59,116,46,116,97,98,105,110,100,101,120,61,49,44,116,46,117,110,115,101,108,101,99,116,97,98,108,101,61,34,111,110,34,59,118,97,114,32,110,61,72,101,40,101,44,34,97,34,41,46,99,111,110,99,97,116,40,91,34,116,105,116,108,101,34,44,34,105,99,111,110,34,93,41,59,105,102,40,33,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,115,104,111,119,67,104,101,99,107,98,111,120,101,115,41,123,118,97,114,32,111,61,116,104,105,115,46,112,114,111,112,115,46,101,120,112,97,110,100,101,100,63,34,105,99,111,110,45,102,111,108,100,101,114,45,111,112,101,110,34,58,34,105,99,111,110,45,102,111,108,100,101,114,34,59,110,46,112,117,115,104,40,101,46,105,116,114,101,101,46,105,99,111,110,124,124,40,116,104,105,115,46,112,114,111,112,115,46,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,63,111,58,34,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,34,41,41,125,116,46,99,108,97,115,115,61,116,46,99,108,97,115,115,78,97,109,101,61,110,46,106,111,105,110,40,34,32,34,41,59,118,97,114,32,114,61,101,46,116,101,120,116,59,114,101,116,117,114,110,32,101,46,101,100,105,116,105,110,103,40,41,38,38,40,114,61,100,40,50,44,81,101,44,123,100,111,109,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,110,111,100,101,58,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,125,41,41,44,99,40,115,40,49,44,34,97,34,44,110,117,108,108,44,114,44,48,44,82,101,40,123,34,100,97,116,97,45,117,105,100,34,58,101,46,105,100,44,111,110,66,108,117,114,58,116,104,105,115,46,98,108,117,114,46,98,105,110,100,40,116,104,105,115,41,44,111,110,67,108,105,99,107,58,116,104,105,115,46,99,108,105,99,107,46,98,105,110,100,40,116,104,105,115,41,44,111,110,67,111,110,116,101,120,116,77,101,110,117,58,116,104,105,115,46,99,111,110,116,101,120,116,77,101,110,117,46,98,105,110,100,40,116,104,105,115,41,44,111,110,68,98,108,67,108,105,99,107,58,116,104,105,115,46,100,98,108,99,108,105,99,107,46,98,105,110,100,40,116,104,105,115,41,44,111,110,70,111,99,117,115,58,116,104,105,115,46,102,111,99,117,115,46,98,105,110,100,40,116,104,105,115,41,44,111,110,77,111,117,115,101,68,111,119,110,58,116,104,105,115,46,109,111,117,115,101,100,111,119,110,46,98,105,110,100,40,116,104,105,115,41,125,44,116,41,41,41,125,125,93,41,44,116,125,40,41,44,71,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,99,108,97,115,115,78,97,109,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,116,111,103,103,108,101,32,105,99,111,110,32,34,43,40,116,104,105,115,46,112,114,111,112,115,46,99,111,108,108,97,112,115,101,100,63,34,105,99,111,110,45,101,120,112,97,110,100,34,58,34,105,99,111,110,45,99,111,108,108,97,112,115,101,34,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,49,44,34,97,34,44,116,104,105,115,46,99,108,97,115,115,78,97,109,101,40,41,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,67,111,108,108,97,112,115,101,46,98,105,110,100,40,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,41,125,41,125,125,93,41,44,116,125,40,41,44,89,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,110,40,101,41,123,65,101,40,116,104,105,115,44,110,41,59,118,97,114,32,116,61,66,101,40,116,104,105,115,44,40,110,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,110,41,41,46,99,97,108,108,40,116,104,105,115,44,101,41,41,59,114,101,116,117,114,110,32,116,46,115,116,97,116,101,61,116,46,115,116,97,116,101,70,114,111,109,78,111,100,101,40,101,46,110,111,100,101,41,44,116,125,114,101,116,117,114,110,32,106,101,40,110,44,76,101,41,44,86,101,40,110,44,91,123,107,101,121,58,34,115,116,97,116,101,70,114,111,109,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,123,100,105,114,116,121,58,101,46,105,116,114,101,101,46,100,105,114,116,121,125,125,125,44,123,107,101,121,58,34,99,111,109,112,111,110,101,110,116,87,105,108,108,82,101,99,101,105,118,101,80,114,111,112,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,116,83,116,97,116,101,40,116,104,105,115,46,115,116,97,116,101,70,114,111,109,78,111,100,101,40,101,46,110,111,100,101,41,41,125,125,44,123,107,101,121,58,34,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,46,100,105,114,116,121,125,125,44,123,107,101,121,58,34,103,101,116,65,116,116,114,105,98,117,116,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,116,61,108,46,99,108,111,110,101,40,101,46,105,116,114,101,101,46,108,105,46,97,116,116,114,105,98,117,116,101,115,41,124,124,123,125,59,114,101,116,117,114,110,32,116,46,99,108,97,115,115,61,116,46,99,108,97,115,115,78,97,109,101,61,116,104,105,115,46,103,101,116,67,108,97,115,115,78,97,109,101,115,40,41,44,116,91,34,100,97,116,97,45,117,105,100,34,93,61,101,46,105,100,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,101,110,97,98,108,101,100,38,38,40,116,46,100,114,97,103,103,97,98,108,101,61,101,46,115,116,97,116,101,40,34,100,114,97,103,103,97,98,108,101,34,41,44,116,46,111,110,68,114,97,103,69,110,100,61,116,104,105,115,46,111,110,68,114,97,103,69,110,100,46,98,105,110,100,40,116,104,105,115,41,44,116,46,111,110,68,114,97,103,69,110,116,101,114,61,116,104,105,115,46,111,110,68,114,97,103,69,110,116,101,114,46,98,105,110,100,40,116,104,105,115,41,44,116,46,111,110,68,114,97,103,76,101,97,118,101,61,116,104,105,115,46,111,110,68,114,97,103,76,101,97,118,101,46,98,105,110,100,40,116,104,105,115,41,44,116,46,111,110,68,114,97,103,83,116,97,114,116,61,116,104,105,115,46,111,110,68,114,97,103,83,116,97,114,116,46,98,105,110,100,40,116,104,105,115,41,44,101,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,41,63,40,116,46,111,110,68,114,97,103,79,118,101,114,61,116,104,105,115,46,111,110,68,114,97,103,79,118,101,114,46,98,105,110,100,40,116,104,105,115,41,44,116,46,111,110,68,114,111,112,61,116,104,105,115,46,111,110,68,114,111,112,46,98,105,110,100,40,116,104,105,115,41,41,58,40,116,46,111,110,68,114,97,103,79,118,101,114,61,110,117,108,108,44,116,46,111,110,68,114,111,112,61,110,117,108,108,41,41,44,116,125,125,44,123,107,101,121,58,34,103,101,116,67,108,97,115,115,78,97,109,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,116,61,101,46,105,116,114,101,101,46,115,116,97,116,101,44,110,61,72,101,40,101,41,59,114,101,116,117,114,110,32,108,46,101,97,99,104,40,79,98,106,101,99,116,46,107,101,121,115,40,116,41,44,102,117,110,99,116,105,111,110,40,101,41,123,116,91,101,93,38,38,110,46,112,117,115,104,40,101,41,125,41,44,33,101,46,104,105,100,100,101,110,40,41,38,38,101,46,114,101,109,111,118,101,100,40,41,38,38,110,46,112,117,115,104,40,34,104,105,100,100,101,110,34,41,44,101,46,101,120,112,97,110,100,101,100,40,41,38,38,110,46,112,117,115,104,40,34,101,120,112,97,110,100,101,100,34,41,44,110,46,112,117,115,104,40,101,46,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,40,41,63,34,102,111,108,100,101,114,34,58,34,108,101,97,102,34,41,44,110,46,106,111,105,110,40,34,32,34,41,125,125,44,123,107,101,121,58,34,103,101,116,84,97,114,103,101,116,68,105,114,101,99,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,101,46,99,108,105,101,110,116,89,44,111,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,44,114,61,111,46,116,111,112,43,111,46,104,101,105,103,104,116,47,51,44,105,61,111,46,98,111,116,116,111,109,45,111,46,104,101,105,103,104,116,47,51,44,97,61,48,59,114,101,116,117,114,110,32,110,60,61,114,63,97,61,45,49,58,105,60,61,110,38,38,40,97,61,49,41,44,97,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,83,116,97,114,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,101,102,102,101,99,116,65,108,108,111,119,101,100,61,34,109,111,118,101,34,44,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,100,114,111,112,69,102,102,101,99,116,61,34,109,111,118,101,34,59,118,97,114,32,110,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,97,99,116,105,118,101,68,114,97,103,78,111,100,101,61,110,44,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,115,101,116,68,97,116,97,40,34,116,114,101,101,73,100,34,44,110,46,116,114,101,101,40,41,46,105,100,41,44,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,115,101,116,68,97,116,97,40,34,110,111,100,101,73,100,34,44,110,46,105,100,41,44,110,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,33,49,41,44,110,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,110,46,99,104,105,108,100,114,101,110,46,115,116,97,116,101,68,101,101,112,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,33,49,41,44,34,100,114,97,103,115,116,97,114,116,34,61,61,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,118,97,108,105,100,97,116,101,79,110,41,123,118,97,114,32,111,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,118,97,108,105,100,97,116,101,44,114,61,108,46,105,115,70,117,110,99,116,105,111,110,40,111,41,59,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,102,117,110,99,116,105,111,110,32,116,40,101,44,110,41,123,105,46,105,115,84,114,101,101,78,111,100,101,115,40,101,41,63,108,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,116,40,101,44,110,41,125,41,58,105,46,105,115,84,114,101,101,78,111,100,101,40,101,41,38,38,33,49,33,61,61,110,40,101,41,38,38,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,116,40,101,46,99,104,105,108,100,114,101,110,44,110,41,125,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,109,111,100,101,108,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,105,100,33,61,61,110,46,105,100,59,114,101,116,117,114,110,32,116,38,38,40,116,61,33,101,46,104,97,115,65,110,99,101,115,116,111,114,40,110,41,41,44,116,38,38,114,38,38,40,116,61,111,40,110,44,101,41,41,44,101,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,116,41,44,116,125,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,110,100,40,41,125,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,115,116,97,114,116,34,44,101,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,69,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,101,110,100,34,44,101,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,69,110,116,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,114,101,99,117,114,115,101,85,112,40,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,33,48,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,101,110,116,101,114,34,44,101,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,76,101,97,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,108,101,97,118,101,34,44,101,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,79,118,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,118,97,114,32,116,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,97,99,116,105,118,101,68,114,97,103,78,111,100,101,44,110,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,111,61,116,104,105,115,46,103,101,116,84,97,114,103,101,116,68,105,114,101,99,116,105,111,110,40,101,44,110,46,105,116,114,101,101,46,114,101,102,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,97,34,41,41,59,105,102,40,34,100,114,97,103,111,118,101,114,34,61,61,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,118,97,108,105,100,97,116,101,79,110,41,123,118,97,114,32,114,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,118,97,108,105,100,97,116,101,44,105,61,108,46,105,115,70,117,110,99,116,105,111,110,40,114,41,44,97,61,116,46,105,100,33,61,61,110,46,105,100,59,105,102,40,97,38,38,40,97,61,33,110,46,104,97,115,65,110,99,101,115,116,111,114,40,116,41,41,44,97,38,38,105,38,38,40,97,61,114,40,116,44,110,44,111,41,41,44,110,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,97,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,33,97,41,114,101,116,117,114,110,125,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,110,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,33,48,41,44,110,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,97,98,111,118,101,34,44,45,49,61,61,61,111,41,44,110,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,98,101,108,111,119,34,44,49,61,61,61,111,41,44,110,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,34,44,48,61,61,61,111,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,110,100,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,111,118,101,114,34,44,101,44,111,41,125,125,44,123,107,101,121,58,34,111,110,68,114,111,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,41,59,118,97,114,32,116,61,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,34,116,114,101,101,73,100,34,41,44,110,61,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,34,110,111,100,101,73,100,34,41,44,111,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,97,99,116,105,118,101,68,114,97,103,78,111,100,101,61,110,117,108,108,59,118,97,114,32,114,61,116,104,105,115,46,103,101,116,84,97,114,103,101,116,68,105,114,101,99,116,105,111,110,40,101,44,101,46,116,97,114,103,101,116,41,44,105,61,118,111,105,100,32,48,59,116,61,61,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,105,100,63,105,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,58,116,38,38,40,105,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,39,91,100,97,116,97,45,117,105,100,61,34,39,43,116,43,39,34,93,39,41,46,105,110,115,112,105,114,101,84,114,101,101,41,59,118,97,114,32,97,61,118,111,105,100,32,48,44,115,61,118,111,105,100,32,48,59,105,102,40,105,41,123,118,97,114,32,108,61,105,46,110,111,100,101,40,110,41,59,108,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,33,48,41,59,118,97,114,32,100,61,108,46,114,101,109,111,118,101,40,33,48,41,44,99,61,111,46,99,111,110,116,101,120,116,40,41,46,105,110,100,101,120,79,102,40,111,41,59,48,61,61,61,114,63,40,97,61,111,46,97,100,100,67,104,105,108,100,40,100,41,44,115,61,111,46,99,104,105,108,100,114,101,110,46,105,110,100,101,120,79,102,40,97,41,44,111,46,101,120,112,97,110,100,40,41,41,58,40,115,61,49,61,61,61,114,63,43,43,99,58,99,44,97,61,111,46,99,111,110,116,101,120,116,40,41,46,105,110,115,101,114,116,65,116,40,115,44,100,41,41,125,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,111,112,34,44,101,44,97,44,111,44,115,41,125,125,44,123,107,101,121,58,34,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,40,101,124,124,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,41,46,115,116,97,116,101,115,40,91,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,97,98,111,118,101,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,98,101,108,111,119,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,34,93,44,33,49,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,67,104,101,99,107,98,111,120,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,115,104,111,119,67,104,101,99,107,98,111,120,101,115,41,114,101,116,117,114,110,32,100,40,50,44,87,101,44,123,99,104,101,99,107,101,100,58,101,46,99,104,101,99,107,101,100,40,41,44,100,111,109,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,105,110,100,101,116,101,114,109,105,110,97,116,101,58,101,46,105,110,100,101,116,101,114,109,105,110,97,116,101,40,41,44,110,111,100,101,58,101,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,44,116,61,101,46,110,111,100,101,44,110,61,101,46,100,111,109,59,105,102,40,116,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,123,118,97,114,32,111,61,116,46,99,104,105,108,100,114,101,110,44,114,61,110,46,108,111,97,100,105,110,103,44,105,61,111,46,112,97,103,105,110,97,116,105,111,110,40,41,59,114,101,116,117,114,110,32,100,40,50,44,74,101,44,123,99,111,110,116,101,120,116,58,116,44,100,111,109,58,110,44,108,105,109,105,116,58,105,46,108,105,109,105,116,44,108,111,97,100,105,110,103,58,114,44,110,111,100,101,115,58,111,44,116,111,116,97,108,58,105,46,116,111,116,97,108,125,41,125,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,105,115,68,121,110,97,109,105,99,38,38,116,46,99,104,105,108,100,114,101,110,41,114,101,116,117,114,110,32,116,46,104,97,115,76,111,97,100,101,100,67,104,105,108,100,114,101,110,40,41,63,100,40,50,44,75,101,44,123,116,101,120,116,58,34,78,111,32,82,101,115,117,108,116,115,34,125,41,58,100,40,50,44,75,101,44,123,116,101,120,116,58,34,76,111,97,100,105,110,103,46,46,46,34,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,69,100,105,116,84,111,111,108,98,97,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,38,38,33,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,101,100,105,116,105,110,103,40,41,41,114,101,116,117,114,110,32,100,40,50,44,113,101,44,123,100,111,109,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,110,111,100,101,58,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,84,111,103,103,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,105,115,68,121,110,97,109,105,99,63,66,111,111,108,101,97,110,40,101,46,99,104,105,108,100,114,101,110,41,58,101,46,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,40,41,41,114,101,116,117,114,110,32,100,40,50,44,71,101,44,123,99,111,108,108,97,112,115,101,100,58,101,46,99,111,108,108,97,112,115,101,100,40,41,44,110,111,100,101,58,101,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,110,61,99,40,115,40,49,44,34,108,105,34,44,110,117,108,108,44,91,116,104,105,115,46,114,101,110,100,101,114,69,100,105,116,84,111,111,108,98,97,114,40,41,44,115,40,49,44,34,100,105,118,34,44,34,116,105,116,108,101,45,119,114,97,112,34,44,91,116,104,105,115,46,114,101,110,100,101,114,84,111,103,103,108,101,40,41,44,116,104,105,115,46,114,101,110,100,101,114,67,104,101,99,107,98,111,120,40,41,44,100,40,50,44,122,101,44,123,100,111,109,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,101,100,105,116,105,110,103,58,101,46,101,100,105,116,105,110,103,40,41,44,101,120,112,97,110,100,101,100,58,101,46,101,120,112,97,110,100,101,100,40,41,44,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,58,101,46,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,40,41,44,110,111,100,101,58,101,44,116,101,120,116,58,101,46,116,101,120,116,125,41,93,44,48,41,44,115,40,49,44,34,100,105,118,34,44,34,119,104,111,108,101,114,111,119,34,41,44,116,104,105,115,46,114,101,110,100,101,114,67,104,105,108,100,114,101,110,40,41,93,44,48,44,82,101,40,123,125,44,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,115,40,41,41,44,110,117,108,108,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,110,111,100,101,61,116,46,112,114,111,112,115,46,110,111,100,101,46,105,116,114,101,101,46,114,101,102,61,101,125,41,41,59,114,101,116,117,114,110,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,116,97,116,101,40,34,114,101,110,100,101,114,101,100,34,44,33,48,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,105,116,114,101,101,46,100,105,114,116,121,61,33,49,44,110,125,125,93,41,44,110,125,40,41,44,74,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,108,46,102,105,110,100,40,101,46,110,111,100,101,115,44,34,105,116,114,101,101,46,100,105,114,116,121,34,41,124,124,88,101,40,116,104,105,115,46,112,114,111,112,115,44,101,41,125,125,44,123,107,101,121,58,34,105,115,68,101,102,101,114,114,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,82,101,110,100,101,114,105,110,103,124,124,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,125,125,44,123,107,101,121,58,34,108,111,97,100,77,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,112,114,111,112,115,46,99,111,110,116,101,120,116,63,116,104,105,115,46,112,114,111,112,115,46,99,111,110,116,101,120,116,46,108,111,97,100,77,111,114,101,40,101,41,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,108,111,97,100,77,111,114,101,40,101,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,76,111,97,100,77,111,114,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,49,44,34,108,105,34,44,34,108,101,97,102,32,100,101,116,97,99,104,101,100,34,44,115,40,49,44,34,97,34,44,34,116,105,116,108,101,32,105,99,111,110,32,105,99,111,110,45,109,111,114,101,32,108,111,97,100,45,109,111,114,101,34,44,36,40,34,76,111,97,100,32,77,111,114,101,34,41,44,50,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,108,111,97,100,77,111,114,101,46,98,105,110,100,40,116,104,105,115,41,125,41,44,50,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,76,111,97,100,105,110,103,84,101,120,116,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,49,44,34,108,105,34,44,34,108,101,97,102,34,44,115,40,49,44,34,115,112,97,110,34,44,34,116,105,116,108,101,32,105,99,111,110,32,105,99,111,110,45,109,111,114,101,34,44,36,40,34,76,111,97,100,105,110,103,46,46,46,34,41,44,50,41,44,50,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,115,44,110,61,101,46,112,97,103,105,110,97,116,105,111,110,40,41,59,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,82,101,110,100,101,114,105,110,103,41,123,118,97,114,32,111,61,48,59,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,33,40,101,46,104,105,100,100,101,110,40,41,124,124,101,46,114,101,109,111,118,101,100,40,41,41,59,114,101,116,117,114,110,32,116,38,38,111,43,43,44,111,60,61,110,46,108,105,109,105,116,38,38,116,125,41,125,118,97,114,32,114,61,108,46,109,97,112,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,100,40,50,44,89,101,44,123,100,111,109,58,116,46,112,114,111,112,115,46,100,111,109,44,110,111,100,101,58,101,125,44,101,46,105,100,41,125,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,115,68,101,102,101,114,114,101,100,40,41,38,38,110,46,108,105,109,105,116,60,110,46,116,111,116,97,108,38,38,40,116,104,105,115,46,112,114,111,112,115,46,108,111,97,100,105,110,103,63,114,46,112,117,115,104,40,116,104,105,115,46,114,101,110,100,101,114,76,111,97,100,105,110,103,84,101,120,116,78,111,100,101,40,41,41,58,114,46,112,117,115,104,40,116,104,105,115,46,114,101,110,100,101,114,76,111,97,100,77,111,114,101,78,111,100,101,40,41,41,41,44,115,40,49,44,34,111,108,34,44,110,117,108,108,44,91,114,44,116,104,105,115,46,112,114,111,112,115,46,99,104,105,108,100,114,101,110,93,44,48,41,125,125,93,41,44,116,125,40,41,44,90,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,97,100,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,102,111,99,117,115,101,100,40,41,46,98,108,117,114,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,97,100,100,78,111,100,101,40,123,116,101,120,116,58,34,78,101,119,32,78,111,100,101,34,44,105,116,114,101,101,58,123,115,116,97,116,101,58,123,101,100,105,116,105,110,103,58,33,48,44,102,111,99,117,115,101,100,58,33,48,125,125,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,65,100,100,76,105,110,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,97,100,100,41,114,101,116,117,114,110,32,115,40,49,44,34,108,105,34,44,110,117,108,108,44,115,40,49,44,34,97,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,112,108,117,115,34,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,97,100,100,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,65,100,100,32,97,32,110,101,119,32,114,111,111,116,32,110,111,100,101,34,125,41,44,50,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,44,116,61,101,46,100,111,109,44,110,61,101,46,110,111,100,101,115,44,111,61,116,46,108,111,97,100,105,110,103,44,114,61,110,46,112,97,103,105,110,97,116,105,111,110,40,41,59,114,101,116,117,114,110,32,100,40,50,44,74,101,44,123,100,111,109,58,116,44,108,105,109,105,116,58,114,46,108,105,109,105,116,44,108,111,97,100,105,110,103,58,111,44,110,111,100,101,115,58,110,44,116,111,116,97,108,58,114,46,116,111,116,97,108,44,99,104,105,108,100,114,101,110,58,116,104,105,115,46,114,101,110,100,101,114,65,100,100,76,105,110,107,40,41,125,41,125,125,93,41,44,116,125,40,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,115,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,65,101,40,116,104,105,115,44,115,41,44,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,105,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,84,114,101,101,32,97,114,103,117,109,101,110,116,32,105,115,32,110,111,116,32,97,110,32,73,110,115,112,105,114,101,84,114,101,101,32,105,110,115,116,97,110,99,101,46,34,41,59,105,102,40,116,104,105,115,46,95,116,114,101,101,61,101,44,116,104,105,115,46,98,97,116,99,104,105,110,103,61,48,44,116,104,105,115,46,100,114,111,112,84,97,114,103,101,116,115,61,91,93,44,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,44,33,116,46,116,97,114,103,101,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,96,116,97,114,103,101,116,96,32,112,114,111,112,101,114,116,121,32,45,32,109,117,115,116,32,98,101,32,97,32,115,101,108,101,99,116,111,114,44,32,72,84,77,76,69,108,101,109,101,110,116,44,32,111,114,32,106,81,117,101,114,121,32,101,108,101,109,101,110,116,46,34,41,59,118,97,114,32,111,61,123,101,110,97,98,108,101,100,58,33,40,101,46,117,115,101,115,78,97,116,105,118,101,68,79,77,61,33,48,41,44,118,97,108,105,100,97,116,101,79,110,58,34,100,114,97,103,115,116,97,114,116,34,44,118,97,108,105,100,97,116,101,58,110,117,108,108,125,59,116,104,105,115,46,99,111,110,102,105,103,61,108,46,100,101,102,97,117,108,116,115,68,101,101,112,40,123,125,44,116,44,123,97,117,116,111,76,111,97,100,77,111,114,101,58,33,48,44,100,101,102,101,114,114,101,100,82,101,110,100,101,114,105,110,103,58,33,49,44,100,114,97,103,65,110,100,68,114,111,112,58,111,44,110,111,100,101,72,101,105,103,104,116,58,50,53,44,115,104,111,119,67,104,101,99,107,98,111,120,101,115,58,33,49,44,116,97,98,105,110,100,101,120,58,45,49,44,116,97,114,103,101,116,58,33,49,125,41,44,33,48,61,61,61,116,46,100,114,97,103,65,110,100,68,114,111,112,38,38,40,116,104,105,115,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,61,111,44,116,104,105,115,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,101,110,97,98,108,101,100,61,33,48,41,44,34,99,104,101,99,107,98,111,120,34,33,61,61,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,111,100,101,124,124,108,46,105,115,66,111,111,108,101,97,110,40,108,46,103,101,116,40,116,44,34,115,104,111,119,67,104,101,99,107,98,111,120,101,115,34,41,41,124,124,40,116,104,105,115,46,99,111,110,102,105,103,46,115,104,111,119,67,104,101,99,107,98,111,120,101,115,61,33,48,41,44,116,104,105,115,46,105,115,68,121,110,97,109,105,99,61,108,46,105,115,70,117,110,99,116,105,111,110,40,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,97,116,97,41,44,116,104,105,115,46,97,116,116,97,99,104,40,116,104,105,115,46,99,111,110,102,105,103,46,116,97,114,103,101,116,41,59,118,97,114,32,114,61,33,48,59,101,46,111,110,40,34,99,104,97,110,103,101,115,46,97,112,112,108,105,101,100,34,44,102,117,110,99,116,105,111,110,40,41,123,110,46,114,101,110,100,101,114,78,111,100,101,115,40,41,44,114,38,38,40,110,46,115,99,114,111,108,108,83,101,108,101,99,116,101,100,73,110,116,111,86,105,101,119,40,41,44,114,61,33,49,41,125,41,44,116,104,105,115,46,114,101,110,100,101,114,78,111,100,101,115,40,41,125,114,101,116,117,114,110,32,86,101,40,115,44,91,123,107,101,121,58,34,97,116,116,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,116,104,105,115,46,36,116,97,114,103,101,116,61,116,104,105,115,46,103,101,116,69,108,101,109,101,110,116,40,101,41,44,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,61,116,104,105,115,46,103,101,116,83,99,114,111,108,108,97,98,108,101,65,110,99,101,115,116,111,114,40,116,104,105,115,46,36,116,97,114,103,101,116,41,44,33,116,104,105,115,46,36,116,97,114,103,101,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,78,111,32,118,97,108,105,100,32,101,108,101,109,101,110,116,32,116,111,32,97,116,116,97,99,104,32,116,111,46,34,41,59,116,104,105,115,46,36,116,97,114,103,101,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,117,105,100,34,44,116,104,105,115,46,95,116,114,101,101,46,105,100,41,59,118,97,114,32,110,61,116,104,105,115,46,36,116,97,114,103,101,116,46,99,108,97,115,115,78,97,109,101,46,115,112,108,105,116,40,34,32,34,41,59,105,102,40,110,46,112,117,115,104,40,34,105,110,115,112,105,114,101,45,116,114,101,101,34,41,44,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,97,98,108,101,38,38,40,110,46,112,117,115,104,40,34,101,100,105,116,97,98,108,101,34,41,44,108,46,101,97,99,104,40,108,46,112,105,99,107,66,121,40,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,44,108,46,105,100,101,110,116,105,116,121,41,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,110,46,112,117,115,104,40,34,101,100,105,116,97,98,108,101,45,34,43,116,41,125,41,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,99,108,97,115,115,78,97,109,101,61,110,46,106,111,105,110,40,34,32,34,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,97,98,105,110,100,101,120,34,44,116,104,105,115,46,99,111,110,102,105,103,46,116,97,98,105,110,100,101,120,124,124,48,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,107,101,121,100,111,119,110,34,44,116,104,105,115,46,107,101,121,98,111,97,114,100,76,105,115,116,101,110,101,114,46,98,105,110,100,40,116,104,105,115,41,41,44,116,104,105,115,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,101,110,97,98,108,101,100,38,38,40,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,100,114,97,103,101,110,116,101,114,34,44,116,104,105,115,46,111,110,68,114,97,103,69,110,116,101,114,46,98,105,110,100,40,116,104,105,115,41,44,33,49,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,100,114,97,103,108,101,97,118,101,34,44,116,104,105,115,46,111,110,68,114,97,103,76,101,97,118,101,46,98,105,110,100,40,116,104,105,115,41,44,33,49,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,100,114,97,103,111,118,101,114,34,44,116,104,105,115,46,111,110,68,114,97,103,79,118,101,114,46,98,105,110,100,40,116,104,105,115,41,44,33,49,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,100,114,111,112,34,44,116,104,105,115,46,111,110,68,114,111,112,46,98,105,110,100,40,116,104,105,115,41,44,33,49,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,100,114,97,103,45,97,110,100,45,100,114,111,112,34,41,41,44,116,104,105,115,46,95,116,114,101,101,46,111,110,40,34,110,111,100,101,46,102,111,99,117,115,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,105,116,114,101,101,46,114,101,102,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,116,105,116,108,101,34,41,59,116,33,61,61,100,111,99,117,109,101,110,116,46,97,99,116,105,118,101,69,108,101,109,101,110,116,38,38,116,46,102,111,99,117,115,40,41,125,41,44,116,104,105,115,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,82,101,110,100,101,114,105,110,103,124,124,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,41,123,118,97,114,32,116,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,59,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,61,48,60,116,63,116,58,108,46,99,101,105,108,40,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,46,99,108,105,101,110,116,72,101,105,103,104,116,47,116,104,105,115,46,99,111,110,102,105,103,46,110,111,100,101,72,101,105,103,104,116,41,44,116,104,105,115,46,99,111,110,102,105,103,46,97,117,116,111,76,111,97,100,77,111,114,101,38,38,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,115,99,114,111,108,108,34,44,108,46,116,104,114,111,116,116,108,101,40,116,104,105,115,46,115,99,114,111,108,108,76,105,115,116,101,110,101,114,46,98,105,110,100,40,116,104,105,115,41,44,50,48,41,41,125,116,104,105,115,46,36,116,97,114,103,101,116,46,105,110,115,112,105,114,101,84,114,101,101,61,116,104,105,115,46,95,116,114,101,101,125,125,44,123,107,101,121,58,34,99,108,101,97,114,83,101,108,101,99,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,100,111,99,117,109,101,110,116,46,115,101,108,101,99,116,105,111,110,38,38,100,111,99,117,109,101,110,116,46,115,101,108,101,99,116,105,111,110,46,101,109,112,116,121,63,100,111,99,117,109,101,110,116,46,115,101,108,101,99,116,105,111,110,46,101,109,112,116,121,40,41,58,119,105,110,100,111,119,46,103,101,116,83,101,108,101,99,116,105,111,110,38,38,119,105,110,100,111,119,46,103,101,116,83,101,108,101,99,116,105,111,110,40,41,46,114,101,109,111,118,101,65,108,108,82,97,110,103,101,115,40,41,125,125,44,123,107,101,121,58,34,103,101,116,69,108,101,109,101,110,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,118,111,105,100,32,48,59,105,102,40,101,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,69,108,101,109,101,110,116,41,116,61,101,59,101,108,115,101,32,105,102,40,108,46,105,115,79,98,106,101,99,116,40,101,41,38,38,108,46,105,115,79,98,106,101,99,116,40,101,91,48,93,41,41,116,61,101,91,48,93,59,101,108,115,101,32,105,102,40,108,46,105,115,83,116,114,105,110,103,40,101,41,41,123,118,97,114,32,110,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,101,41,59,110,38,38,40,116,61,110,41,125,114,101,116,117,114,110,32,116,125,125,44,123,107,101,121,58,34,103,101,116,83,99,114,111,108,108,97,98,108,101,65,110,99,101,115,116,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,32,105,110,115,116,97,110,99,101,111,102,32,69,108,101,109,101,110,116,38,38,40,34,97,117,116,111,34,33,61,61,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,101,41,46,111,118,101,114,102,108,111,119,38,38,101,46,112,97,114,101,110,116,78,111,100,101,38,38,40,101,61,116,104,105,115,46,103,101,116,83,99,114,111,108,108,97,98,108,101,65,110,99,101,115,116,111,114,40,101,46,112,97,114,101,110,116,78,111,100,101,41,41,41,59,114,101,116,117,114,110,32,101,125,125,44,123,107,101,121,58,34,107,101,121,98,111,97,114,100,76,105,115,116,101,110,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,33,40,91,73,101,44,85,101,44,77,101,44,70,101,44,69,101,93,46,105,110,100,101,120,79,102,40,101,46,119,104,105,99,104,41,60,48,41,41,123,118,97,114,32,116,61,116,104,105,115,46,95,116,114,101,101,46,102,111,99,117,115,101,100,40,41,59,105,102,40,116,46,108,101,110,103,116,104,41,115,119,105,116,99,104,40,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,119,104,105,99,104,41,123,99,97,115,101,32,73,101,58,116,104,105,115,46,109,111,118,101,70,111,99,117,115,68,111,119,110,70,114,111,109,40,116,91,48,93,41,59,98,114,101,97,107,59,99,97,115,101,32,85,101,58,116,91,48,93,46,116,111,103,103,108,101,83,101,108,101,99,116,40,41,59,98,114,101,97,107,59,99,97,115,101,32,77,101,58,116,91,48,93,46,99,111,108,108,97,112,115,101,40,41,59,98,114,101,97,107,59,99,97,115,101,32,70,101,58,116,91,48,93,46,101,120,112,97,110,100,40,41,59,98,114,101,97,107,59,99,97,115,101,32,69,101,58,116,104,105,115,46,109,111,118,101,70,111,99,117,115,85,112,70,114,111,109,40,116,91,48,93,41,125,125,125,125,44,123,107,101,121,58,34,109,111,118,101,70,111,99,117,115,68,111,119,110,70,114,111,109,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,40,41,59,116,38,38,116,46,102,111,99,117,115,40,41,125,125,44,123,107,101,121,58,34,109,111,118,101,70,111,99,117,115,85,112,70,114,111,109,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,78,111,100,101,40,41,59,116,38,38,116,46,102,111,99,117,115,40,41,125,125,44,123,107,101,121,58,34,110,111,100,101,70,114,111,109,84,105,116,108,101,68,79,77,69,108,101,109,101,110,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,97,114,101,110,116,78,111,100,101,46,112,97,114,101,110,116,78,111,100,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,117,105,100,34,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,40,116,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,69,110,116,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,116,97,114,103,101,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,34,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,76,101,97,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,101,46,116,97,114,103,101,116,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,79,118,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,125,125,44,123,107,101,121,58,34,111,110,68,114,111,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,101,46,116,97,114,103,101,116,41,59,118,97,114,32,116,61,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,34,116,114,101,101,73,100,34,41,44,110,61,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,34,110,111,100,101,73,100,34,41,44,111,61,115,46,103,101,116,84,114,101,101,66,121,73,100,40,116,41,46,110,111,100,101,40,110,41,59,111,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,33,48,41,59,118,97,114,32,114,61,111,46,114,101,109,111,118,101,40,33,48,41,44,105,61,116,104,105,115,46,95,116,114,101,101,46,97,100,100,78,111,100,101,40,114,41,44,97,61,116,104,105,115,46,95,116,114,101,101,46,105,110,100,101,120,79,102,40,105,41,59,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,111,112,34,44,101,44,105,44,110,117,108,108,44,97,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,40,100,40,50,44,90,101,44,123,100,111,109,58,116,104,105,115,44,110,111,100,101,115,58,101,124,124,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,115,40,41,125,41,44,116,104,105,115,46,36,116,97,114,103,101,116,41,125,125,44,123,107,101,121,58,34,115,99,114,111,108,108,76,105,115,116,101,110,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,105,61,116,104,105,115,59,105,102,40,33,116,104,105,115,46,114,101,110,100,101,114,105,110,103,38,38,33,116,104,105,115,46,108,111,97,100,105,110,103,41,123,118,97,114,32,97,61,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,44,101,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,46,108,111,97,100,45,109,111,114,101,34,41,59,108,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,105,102,40,33,40,97,46,114,105,103,104,116,60,116,46,108,101,102,116,124,124,97,46,108,101,102,116,62,116,46,114,105,103,104,116,124,124,97,46,98,111,116,116,111,109,60,116,46,116,111,112,124,124,97,46,116,111,112,62,116,46,98,111,116,116,111,109,41,41,123,118,97,114,32,110,61,118,111,105,100,32,48,44,111,61,101,46,112,97,114,101,110,116,78,111,100,101,46,112,97,114,101,110,116,78,111,100,101,46,112,97,114,101,110,116,78,111,100,101,59,34,76,73,34,61,61,61,111,46,116,97,103,78,97,109,101,38,38,40,110,61,105,46,95,116,114,101,101,46,110,111,100,101,40,111,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,117,105,100,34,41,41,41,44,105,46,95,116,114,101,101,46,108,111,97,100,77,111,114,101,40,110,44,114,41,125,125,41,125,125,125,44,123,107,101,121,58,34,115,99,114,111,108,108,83,101,108,101,99,116,101,100,73,110,116,111,86,105,101,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,116,97,114,103,101,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,115,101,108,101,99,116,101,100,34,41,59,101,38,38,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,38,38,40,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,46,115,99,114,111,108,108,84,111,112,61,101,46,111,102,102,115,101,116,84,111,112,41,125,125,44,123,107,101,121,58,34,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,38,38,101,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,34,41,125,125,93,44,91,123,107,101,121,58,34,103,101,116,84,114,101,101,66,121,73,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,39,91,100,97,116,97,45,117,105,100,61,34,39,43,101,43,39,34,93,39,41,59,105,102,40,116,41,114,101,116,117,114,110,32,116,46,105,110,115,112,105,114,101,84,114,101,101,125,125,93,41,44,115,125,40,41,125,41,59,59,10,10,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,79,98,106,101,99,116,46,99,114,101,97,116,101,38,38,40,79,98,106,101,99,116,46,99,114,101,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,111,40,41,123,125,114,101,116,117,114,110,32,111,46,112,114,111,116,111,116,121,112,101,61,116,44,110,101,119,32,111,125,41,44,102,117,110,99,116,105,111,110,40,116,44,111,44,105,44,115,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,110,61,123,95,112,111,115,105,116,105,111,110,67,108,97,115,115,101,115,58,91,34,98,111,116,116,111,109,45,108,101,102,116,34,44,34,98,111,116,116,111,109,45,114,105,103,104,116,34,44,34,116,111,112,45,114,105,103,104,116,34,44,34,116,111,112,45,108,101,102,116,34,44,34,98,111,116,116,111,109,45,99,101,110,116,101,114,34,44,34,116,111,112,45,99,101,110,116,101,114,34,44,34,109,105,100,45,99,101,110,116,101,114,34,93,44,95,100,101,102,97,117,108,116,73,99,111,110,115,58,91,34,115,117,99,99,101,115,115,34,44,34,101,114,114,111,114,34,44,34,105,110,102,111,34,44,34,119,97,114,110,105,110,103,34,93,44,105,110,105,116,58,102,117,110,99,116,105,111,110,40,111,44,105,41,123,116,104,105,115,46,112,114,101,112,97,114,101,79,112,116,105,111,110,115,40,111,44,116,46,116,111,97,115,116,46,111,112,116,105,111,110,115,41,44,116,104,105,115,46,112,114,111,99,101,115,115,40,41,125,44,112,114,101,112,97,114,101,79,112,116,105,111,110,115,58,102,117,110,99,116,105,111,110,40,111,44,105,41,123,118,97,114,32,115,61,123,125,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,111,124,124,111,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,63,115,46,116,101,120,116,61,111,58,115,61,111,44,116,104,105,115,46,111,112,116,105,111,110,115,61,116,46,101,120,116,101,110,100,40,123,125,44,105,44,115,41,125,44,112,114,111,99,101,115,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,117,112,40,41,44,116,104,105,115,46,97,100,100,84,111,68,111,109,40,41,44,116,104,105,115,46,112,111,115,105,116,105,111,110,40,41,44,116,104,105,115,46,98,105,110,100,84,111,97,115,116,40,41,44,116,104,105,115,46,97,110,105,109,97,116,101,40,41,125,44,115,101,116,117,112,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,34,34,59,105,102,40,116,104,105,115,46,95,116,111,97,115,116,69,108,61,116,104,105,115,46,95,116,111,97,115,116,69,108,124,124,116,40,34,60,100,105,118,62,60,47,100,105,118,62,34,44,123,99,108,97,115,115,58,34,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,125,41,44,111,43,61,39,60,115,112,97,110,32,99,108,97,115,115,61,34,106,113,45,116,111,97,115,116,45,108,111,97,100,101,114,34,62,60,47,115,112,97,110,62,39,44,116,104,105,115,46,111,112,116,105,111,110,115,46,97,108,108,111,119,84,111,97,115,116,67,108,111,115,101,38,38,40,111,43,61,39,60,115,112,97,110,32,99,108,97,115,115,61,34,99,108,111,115,101,45,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,62,38,116,105,109,101,115,59,60,47,115,112,97,110,62,39,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,41,123,116,104,105,115,46,111,112,116,105,111,110,115,46,104,101,97,100,105,110,103,38,38,40,111,43,61,39,60,104,50,32,99,108,97,115,115,61,34,106,113,45,116,111,97,115,116,45,104,101,97,100,105,110,103,34,62,39,43,116,104,105,115,46,111,112,116,105,111,110,115,46,104,101,97,100,105,110,103,43,34,60,47,104,50,62,34,41,44,111,43,61,39,60,117,108,32,99,108,97,115,115,61,34,106,113,45,116,111,97,115,116,45,117,108,34,62,39,59,102,111,114,40,118,97,114,32,105,61,48,59,105,60,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,46,108,101,110,103,116,104,59,105,43,43,41,111,43,61,39,60,108,105,32,99,108,97,115,115,61,34,106,113,45,116,111,97,115,116,45,108,105,34,32,105,100,61,34,106,113,45,116,111,97,115,116,45,105,116,101,109,45,39,43,105,43,39,34,62,39,43,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,91,105,93,43,34,60,47,108,105,62,34,59,111,43,61,34,60,47,117,108,62,34,125,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,104,101,97,100,105,110,103,38,38,40,111,43,61,39,60,104,50,32,99,108,97,115,115,61,34,106,113,45,116,111,97,115,116,45,104,101,97,100,105,110,103,34,62,39,43,116,104,105,115,46,111,112,116,105,111,110,115,46,104,101,97,100,105,110,103,43,34,60,47,104,50,62,34,41,44,111,43,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,59,116,104,105,115,46,95,116,111,97,115,116,69,108,46,104,116,109,108,40,111,41,44,33,49,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,98,103,67,111,108,111,114,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,99,115,115,40,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,34,44,116,104,105,115,46,111,112,116,105,111,110,115,46,98,103,67,111,108,111,114,41,44,33,49,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,67,111,108,111,114,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,99,115,115,40,34,99,111,108,111,114,34,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,67,111,108,111,114,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,65,108,105,103,110,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,99,115,115,40,34,116,101,120,116,45,97,108,105,103,110,34,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,65,108,105,103,110,41,44,33,49,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,105,99,111,110,38,38,40,116,104,105,115,46,95,116,111,97,115,116,69,108,46,97,100,100,67,108,97,115,115,40,34,106,113,45,104,97,115,45,105,99,111,110,34,41,44,45,49,33,61,61,116,46,105,110,65,114,114,97,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,105,99,111,110,44,116,104,105,115,46,95,100,101,102,97,117,108,116,73,99,111,110,115,41,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,97,100,100,67,108,97,115,115,40,34,106,113,45,105,99,111,110,45,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,105,99,111,110,41,41,44,33,49,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,97,115,115,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,97,100,100,67,108,97,115,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,97,115,115,41,125,44,112,111,115,105,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,38,38,45,49,33,61,61,116,46,105,110,65,114,114,97,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,44,116,104,105,115,46,95,112,111,115,105,116,105,111,110,67,108,97,115,115,101,115,41,63,34,98,111,116,116,111,109,45,99,101,110,116,101,114,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,63,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,99,115,115,40,123,108,101,102,116,58,116,40,111,41,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,45,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,44,98,111,116,116,111,109,58,50,48,125,41,58,34,116,111,112,45,99,101,110,116,101,114,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,63,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,99,115,115,40,123,108,101,102,116,58,116,40,111,41,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,45,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,44,116,111,112,58,50,48,125,41,58,34,109,105,100,45,99,101,110,116,101,114,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,63,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,99,115,115,40,123,108,101,102,116,58,116,40,111,41,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,45,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,44,116,111,112,58,116,40,111,41,46,111,117,116,101,114,72,101,105,103,104,116,40,41,47,50,45,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,111,117,116,101,114,72,101,105,103,104,116,40,41,47,50,125,41,58,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,97,100,100,67,108,97,115,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,41,58,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,63,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,99,115,115,40,123,116,111,112,58,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,116,111,112,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,116,111,112,58,34,97,117,116,111,34,44,98,111,116,116,111,109,58,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,98,111,116,116,111,109,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,98,111,116,116,111,109,58,34,97,117,116,111,34,44,108,101,102,116,58,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,108,101,102,116,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,108,101,102,116,58,34,97,117,116,111,34,44,114,105,103,104,116,58,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,114,105,103,104,116,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,114,105,103,104,116,58,34,97,117,116,111,34,125,41,58,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,97,100,100,67,108,97,115,115,40,34,98,111,116,116,111,109,45,108,101,102,116,34,41,125,44,98,105,110,100,84,111,97,115,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,97,102,116,101,114,83,104,111,119,110,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,112,114,111,99,101,115,115,76,111,97,100,101,114,40,41,125,41,44,116,104,105,115,46,95,116,111,97,115,116,69,108,46,102,105,110,100,40,34,46,99,108,111,115,101,45,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,41,46,111,110,40,34,99,108,105,99,107,34,44,102,117,110,99,116,105,111,110,40,111,41,123,111,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,34,102,97,100,101,34,61,61,61,116,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,63,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,102,97,100,101,79,117,116,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,58,34,115,108,105,100,101,34,61,61,61,116,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,63,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,115,108,105,100,101,85,112,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,58,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,104,105,100,101,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,98,101,102,111,114,101,83,104,111,119,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,98,101,102,111,114,101,83,104,111,119,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,111,112,116,105,111,110,115,46,98,101,102,111,114,101,83,104,111,119,40,116,46,95,116,111,97,115,116,69,108,41,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,97,102,116,101,114,83,104,111,119,110,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,97,102,116,101,114,83,104,111,119,110,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,111,112,116,105,111,110,115,46,97,102,116,101,114,83,104,111,119,110,40,116,46,95,116,111,97,115,116,69,108,41,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,98,101,102,111,114,101,72,105,100,101,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,98,101,102,111,114,101,72,105,100,101,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,111,112,116,105,111,110,115,46,98,101,102,111,114,101,72,105,100,101,40,116,46,95,116,111,97,115,116,69,108,41,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,97,102,116,101,114,72,105,100,100,101,110,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,97,102,116,101,114,72,105,100,100,101,110,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,111,112,116,105,111,110,115,46,97,102,116,101,114,72,105,100,100,101,110,40,116,46,95,116,111,97,115,116,69,108,41,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,108,105,99,107,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,99,108,105,99,107,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,111,112,116,105,111,110,115,46,111,110,67,108,105,99,107,40,116,46,95,116,111,97,115,116,69,108,41,125,41,125,44,97,100,100,84,111,68,111,109,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,116,40,34,46,106,113,45,116,111,97,115,116,45,119,114,97,112,34,41,59,105,102,40,48,61,61,61,111,46,108,101,110,103,116,104,63,40,111,61,116,40,34,60,100,105,118,62,60,47,100,105,118,62,34,44,123,99,108,97,115,115,58,34,106,113,45,116,111,97,115,116,45,119,114,97,112,34,44,114,111,108,101,58,34,97,108,101,114,116,34,44,34,97,114,105,97,45,108,105,118,101,34,58,34,112,111,108,105,116,101,34,125,41,44,116,40,34,98,111,100,121,34,41,46,97,112,112,101,110,100,40,111,41,41,58,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,97,99,107,38,38,33,105,115,78,97,78,40,112,97,114,115,101,73,110,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,97,99,107,44,49,48,41,41,124,124,111,46,101,109,112,116,121,40,41,44,111,46,102,105,110,100,40,34,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,58,104,105,100,100,101,110,34,41,46,114,101,109,111,118,101,40,41,44,111,46,97,112,112,101,110,100,40,116,104,105,115,46,95,116,111,97,115,116,69,108,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,97,99,107,38,38,33,105,115,78,97,78,40,112,97,114,115,101,73,110,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,97,99,107,41,44,49,48,41,41,123,118,97,114,32,105,61,111,46,102,105,110,100,40,34,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,41,46,108,101,110,103,116,104,45,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,97,99,107,59,105,62,48,38,38,116,40,34,46,106,113,45,116,111,97,115,116,45,119,114,97,112,34,41,46,102,105,110,100,40,34,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,41,46,115,108,105,99,101,40,48,44,105,41,46,114,101,109,111,118,101,40,41,125,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,61,111,125,44,99,97,110,65,117,116,111,72,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,49,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,65,102,116,101,114,38,38,33,105,115,78,97,78,40,112,97,114,115,101,73,110,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,65,102,116,101,114,44,49,48,41,41,125,44,112,114,111,99,101,115,115,76,111,97,100,101,114,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,99,97,110,65,117,116,111,72,105,100,101,40,41,124,124,33,49,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,108,111,97,100,101,114,41,114,101,116,117,114,110,33,49,59,118,97,114,32,116,61,116,104,105,115,46,95,116,111,97,115,116,69,108,46,102,105,110,100,40,34,46,106,113,45,116,111,97,115,116,45,108,111,97,100,101,114,34,41,44,111,61,40,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,65,102,116,101,114,45,52,48,48,41,47,49,101,51,43,34,115,34,44,105,61,116,104,105,115,46,111,112,116,105,111,110,115,46,108,111,97,100,101,114,66,103,44,115,61,116,46,97,116,116,114,40,34,115,116,121,108,101,34,41,124,124,34,34,59,115,61,115,46,115,117,98,115,116,114,105,110,103,40,48,44,115,46,105,110,100,101,120,79,102,40,34,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,34,41,41,44,115,43,61,34,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,32,119,105,100,116,104,32,34,43,111,43,34,32,101,97,115,101,45,105,110,59,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,45,111,45,116,114,97,110,115,105,116,105,111,110,58,32,119,105,100,116,104,32,34,43,111,43,34,32,101,97,115,101,45,105,110,59,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,114,97,110,115,105,116,105,111,110,58,32,119,105,100,116,104,32,34,43,111,43,34,32,101,97,115,101,45,105,110,59,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,34,43,105,43,34,59,34,44,116,46,97,116,116,114,40,34,115,116,121,108,101,34,44,115,41,46,97,100,100,67,108,97,115,115,40,34,106,113,45,116,111,97,115,116,45,108,111,97,100,101,100,34,41,125,44,97,110,105,109,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,116,61,116,104,105,115,59,105,102,40,116,104,105,115,46,95,116,111,97,115,116,69,108,46,104,105,100,101,40,41,44,116,104,105,115,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,83,104,111,119,34,41,44,34,102,97,100,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,116,104,105,115,46,95,116,111,97,115,116,69,108,46,102,97,100,101,73,110,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,83,104,111,119,110,34,41,125,41,58,34,115,108,105,100,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,116,104,105,115,46,95,116,111,97,115,116,69,108,46,115,108,105,100,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,83,104,111,119,110,34,41,125,41,58,116,104,105,115,46,95,116,111,97,115,116,69,108,46,115,104,111,119,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,83,104,111,119,110,34,41,125,41,44,116,104,105,115,46,99,97,110,65,117,116,111,72,105,100,101,40,41,41,123,118,97,114,32,116,61,116,104,105,115,59,111,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,34,102,97,100,101,34,61,61,61,116,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,102,97,100,101,79,117,116,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,58,34,115,108,105,100,101,34,61,61,61,116,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,115,108,105,100,101,85,112,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,58,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,104,105,100,101,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,125,44,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,65,102,116,101,114,41,125,125,44,114,101,115,101,116,58,102,117,110,99,116,105,111,110,40,111,41,123,34,97,108,108,34,61,61,61,111,63,116,40,34,46,106,113,45,116,111,97,115,116,45,119,114,97,112,34,41,46,114,101,109,111,118,101,40,41,58,116,104,105,115,46,95,116,111,97,115,116,69,108,46,114,101,109,111,118,101,40,41,125,44,117,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,112,114,101,112,97,114,101,79,112,116,105,111,110,115,40,116,44,116,104,105,115,46,111,112,116,105,111,110,115,41,44,116,104,105,115,46,115,101,116,117,112,40,41,44,116,104,105,115,46,98,105,110,100,84,111,97,115,116,40,41,125,44,99,108,111,115,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,116,111,97,115,116,69,108,46,102,105,110,100,40,34,46,99,108,111,115,101,45,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,41,46,99,108,105,99,107,40,41,125,125,59,116,46,116,111,97,115,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,111,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,41,59,114,101,116,117,114,110,32,111,46,105,110,105,116,40,116,44,116,104,105,115,41,44,123,114,101,115,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,111,46,114,101,115,101,116,40,116,41,125,44,117,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,111,46,117,112,100,97,116,101,40,116,41,125,44,99,108,111,115,101,58,102,117,110,99,116,105,111,110,40,41,123,111,46,99,108,111,115,101,40,41,125,125,125,44,116,46,116,111,97,115,116,46,111,112,116,105,111,110,115,61,123,116,101,120,116,58,34,34,44,104,101,97,100,105,110,103,58,34,34,44,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,58,34,102,97,100,101,34,44,97,108,108,111,119,84,111,97,115,116,67,108,111,115,101,58,33,48,44,104,105,100,101,65,102,116,101,114,58,51,101,51,44,108,111,97,100,101,114,58,33,48,44,108,111,97,100,101,114,66,103,58,34,35,57,69,67,54,48,48,34,44,115,116,97,99,107,58,53,44,112,111,115,105,116,105,111,110,58,34,98,111,116,116,111,109,45,108,101,102,116,34,44,98,103,67,111,108,111,114,58,33,49,44,116,101,120,116,67,111,108,111,114,58,33,49,44,116,101,120,116,65,108,105,103,110,58,34,108,101,102,116,34,44,105,99,111,110,58,33,49,44,98,101,102,111,114,101,83,104,111,119,58,102,117,110,99,116,105,111,110,40,41,123,125,44,97,102,116,101,114,83,104,111,119,110,58,102,117,110,99,116,105,111,110,40,41,123,125,44,98,101,102,111,114,101,72,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,125,44,97,102,116,101,114,72,105,100,100,101,110,58,102,117,110,99,116,105,111,110,40,41,123,125,44,111,110,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,41,123,125,125,125,40,106,81,117,101,114,121,44,119,105,110,100,111,119,44,100,111,99,117,109,101,110,116,41,59,10,33,102,117,110,99,116,105,111,110,32,116,40,101,44,110,44,114,41,123,102,117,110,99,116,105,111,110,32,111,40,115,44,117,41,123,105,102,40,33,110,91,115,93,41,123,105,102,40,33,101,91,115,93,41,123,118,97,114,32,108,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,114,101,113,117,105,114,101,38,38,114,101,113,117,105,114,101,59,105,102,40,33,117,38,38,108,41,114,101,116,117,114,110,32,108,40,115,44,33,48,41,59,105,102,40,105,41,114,101,116,117,114,110,32,105,40,115,44,33,48,41,59,118,97,114,32,97,61,110,101,119,32,69,114,114,111,114,40,34,67,97,110,110,111,116,32,102,105,110,100,32,109,111,100,117,108,101,32,39,34,43,115,43,34,39,34,41,59,116,104,114,111,119,32,97,46,99,111,100,101,61,34,77,79,68,85,76,69,95,78,79,84,95,70,79,85,78,68,34,44,97,125,118,97,114,32,112,61,110,91,115,93,61,123,101,120,112,111,114,116,115,58,123,125,125,59,101,91,115,93,91,48,93,46,99,97,108,108,40,112,46,101,120,112,111,114,116,115,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,101,91,115,93,91,49,93,91,116,93,59,114,101,116,117,114,110,32,111,40,110,63,110,58,116,41,125,44,112,44,112,46,101,120,112,111,114,116,115,44,116,44,101,44,110,44,114,41,125,114,101,116,117,114,110,32,110,91,115,93,46,101,120,112,111,114,116,115,125,102,111,114,40,118,97,114,32,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,114,101,113,117,105,114,101,38,38,114,101,113,117,105,114,101,44,115,61,48,59,115,60,114,46,108,101,110,103,116,104,59,115,43,43,41,111,40,114,91,115,93,41,59,114,101,116,117,114,110,32,111,125,40,123,49,58,91,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,44,111,61,116,104,105,115,38,38,116,104,105,115,46,95,95,101,120,116,101,110,100,115,124,124,102,117,110,99,116,105,111,110,40,116,44,101,41,123,102,117,110,99,116,105,111,110,32,110,40,41,123,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,61,116,125,102,111,114,40,118,97,114,32,114,32,105,110,32,101,41,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,114,41,38,38,40,116,91,114,93,61,101,91,114,93,41,59,116,46,112,114,111,116,111,116,121,112,101,61,110,117,108,108,61,61,61,101,63,79,98,106,101,99,116,46,99,114,101,97,116,101,40,101,41,58,40,110,46,112,114,111,116,111,116,121,112,101,61,101,46,112,114,111,116,111,116,121,112,101,44,110,101,119,32,110,41,125,59,33,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,110,40,116,44,101,44,110,41,123,105,102,40,119,105,110,100,111,119,46,67,117,115,116,111,109,69,118,101,110,116,41,118,97,114,32,114,61,110,101,119,32,67,117,115,116,111,109,69,118,101,110,116,40,101,44,123,100,101,116,97,105,108,58,110,125,41,59,101,108,115,101,123,118,97,114,32,114,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,118,101,110,116,40,34,67,117,115,116,111,109,69,118,101,110,116,34,41,59,114,46,105,110,105,116,67,117,115,116,111,109,69,118,101,110,116,40,101,44,33,48,44,33,48,44,110,41,125,114,101,116,117,114,110,32,116,46,100,105,115,112,97,116,99,104,69,118,101,110,116,40,114,41,125,118,97,114,32,114,61,123,114,117,108,101,114,67,108,97,115,115,78,97,109,101,58,34,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,34,44,99,111,108,117,109,110,67,108,97,115,115,78,97,109,101,58,34,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,34,125,44,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,116,41,123,116,104,105,115,46,101,108,101,109,101,110,116,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,44,116,104,105,115,46,101,108,101,109,101,110,116,46,99,108,97,115,115,78,97,109,101,61,116,125,114,101,116,117,114,110,32,116,46,112,114,111,116,111,116,121,112,101,46,100,101,115,116,114,111,121,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,104,105,115,46,101,108,101,109,101,110,116,41,125,44,116,125,40,41,44,115,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,114,101,116,117,114,110,32,111,40,101,44,116,41,44,101,46,112,114,111,116,111,116,121,112,101,46,103,101,116,87,105,100,116,104,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,34,92,110,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,92,110,32,32,32,32,32,32,32,32,118,105,115,105,98,105,108,105,116,121,58,32,104,105,100,100,101,110,32,33,105,109,112,111,114,116,97,110,116,59,92,110,32,32,32,32,32,32,32,32,116,111,112,58,32,45,49,48,48,48,112,120,32,33,105,109,112,111,114,116,97,110,116,59,92,110,32,32,32,32,32,32,34,41,59,118,97,114,32,116,61,116,104,105,115,46,101,108,101,109,101,110,116,46,111,102,102,115,101,116,87,105,100,116,104,59,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,41,44,116,125,44,101,125,40,105,41,44,117,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,114,101,116,117,114,110,32,111,40,101,44,116,41,44,101,125,40,105,41,44,108,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,116,44,101,41,123,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,114,41,44,116,104,105,115,46,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,111,112,116,105,111,110,115,61,101,44,116,104,105,115,46,98,117,105,108,100,40,41,44,116,104,105,115,46,98,117,105,108,100,82,101,115,112,111,110,115,105,118,101,40,41,125,114,101,116,117,114,110,32,116,46,112,114,111,116,111,116,121,112,101,46,97,112,112,101,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,114,101,116,117,114,110,32,118,111,105,100,32,116,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,97,112,112,101,110,100,40,116,41,125,41,59,118,97,114,32,114,61,116,104,105,115,46,102,105,110,100,77,105,110,72,101,105,103,104,116,67,111,108,117,109,110,40,41,59,116,104,105,115,46,101,108,101,109,101,110,116,115,61,101,40,116,104,105,115,46,101,108,101,109,101,110,116,115,41,46,99,111,110,99,97,116,40,91,116,93,41,44,116,104,105,115,46,97,112,112,108,121,80,111,115,105,116,105,111,110,40,34,97,112,112,101,110,100,34,44,114,44,116,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,114,101,116,117,114,110,32,118,111,105,100,32,116,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,112,114,101,112,101,110,100,40,116,41,125,41,59,118,97,114,32,114,61,116,104,105,115,46,102,105,110,100,77,105,110,72,101,105,103,104,116,67,111,108,117,109,110,40,41,59,116,104,105,115,46,101,108,101,109,101,110,116,115,61,91,116,93,46,99,111,110,99,97,116,40,101,40,116,104,105,115,46,101,108,101,109,101,110,116,115,41,41,44,116,104,105,115,46,97,112,112,108,121,80,111,115,105,116,105,111,110,40,34,112,114,101,112,101,110,100,34,44,114,44,116,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,111,110,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,98,114,105,99,107,108,97,121,101,114,46,34,43,116,44,101,41,44,116,104,105,115,125,44,116,46,112,114,111,116,111,116,121,112,101,46,114,101,100,114,97,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,108,117,109,110,67,111,117,110,116,59,116,104,105,115,46,99,104,101,99,107,67,111,108,117,109,110,67,111,117,110,116,40,33,49,41,44,116,104,105,115,46,114,101,111,114,100,101,114,69,108,101,109,101,110,116,115,40,116,41,44,110,40,116,104,105,115,46,101,108,101,109,101,110,116,44,34,98,114,105,99,107,108,97,121,101,114,46,114,101,100,114,97,119,34,44,123,99,111,108,117,109,110,67,111,117,110,116,58,116,125,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,100,101,115,116,114,111,121,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,116,104,105,115,46,114,117,108,101,114,46,100,101,115,116,114,111,121,40,41,44,101,40,116,104,105,115,46,101,108,101,109,101,110,116,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,101,108,101,109,101,110,116,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,125,41,44,101,40,116,104,105,115,46,103,101,116,67,111,108,117,109,110,115,40,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,41,125,41,44,110,40,116,104,105,115,46,101,108,101,109,101,110,116,44,34,98,114,105,99,107,108,97,121,101,114,46,100,101,115,116,114,111,121,34,44,123,125,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,98,117,105,108,100,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,117,108,101,114,61,110,101,119,32,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,114,117,108,101,114,67,108,97,115,115,78,97,109,101,41,44,116,104,105,115,46,101,108,101,109,101,110,116,115,61,116,104,105,115,46,103,101,116,69,108,101,109,101,110,116,115,73,110,79,114,100,101,114,40,41,44,116,104,105,115,46,101,108,101,109,101,110,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,104,105,115,46,114,117,108,101,114,46,101,108,101,109,101,110,116,44,116,104,105,115,46,101,108,101,109,101,110,116,46,102,105,114,115,116,67,104,105,108,100,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,98,117,105,108,100,82,101,115,112,111,110,115,105,118,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,114,101,115,105,122,101,34,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,99,104,101,99,107,67,111,108,117,109,110,67,111,117,110,116,40,41,125,41,44,116,104,105,115,46,99,104,101,99,107,67,111,108,117,109,110,67,111,117,110,116,40,41,44,116,104,105,115,46,111,110,40,34,98,114,101,97,107,112,111,105,110,116,34,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,114,101,111,114,100,101,114,69,108,101,109,101,110,116,115,40,101,46,100,101,116,97,105,108,46,99,111,108,117,109,110,67,111,117,110,116,41,125,41,44,116,104,105,115,46,99,111,108,117,109,110,67,111,117,110,116,62,61,49,38,38,116,104,105,115,46,114,101,111,114,100,101,114,69,108,101,109,101,110,116,115,40,116,104,105,115,46,99,111,108,117,109,110,67,111,117,110,116,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,103,101,116,67,111,108,117,109,110,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,58,115,99,111,112,101,32,62,32,46,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,67,108,97,115,115,78,97,109,101,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,77,105,110,72,101,105,103,104,116,67,111,108,117,109,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,101,40,116,104,105,115,46,103,101,116,67,111,108,117,109,110,115,40,41,41,44,110,61,116,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,111,102,102,115,101,116,72,101,105,103,104,116,125,41,44,114,61,77,97,116,104,46,109,105,110,46,97,112,112,108,121,40,110,117,108,108,44,110,41,59,114,101,116,117,114,110,32,116,91,110,46,105,110,100,101,120,79,102,40,114,41,93,125,44,116,46,112,114,111,116,111,116,121,112,101,46,103,101,116,69,108,101,109,101,110,116,115,73,110,79,114,100,101,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,58,115,99,111,112,101,32,62,32,42,58,110,111,116,40,46,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,67,108,97,115,115,78,97,109,101,43,34,41,58,110,111,116,40,46,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,114,117,108,101,114,67,108,97,115,115,78,97,109,101,43,34,41,34,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,99,104,101,99,107,67,111,108,117,109,110,67,111,117,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,33,48,41,59,118,97,114,32,101,61,116,104,105,115,46,103,101,116,67,111,108,117,109,110,67,111,117,110,116,40,41,59,116,104,105,115,46,99,111,108,117,109,110,67,111,117,110,116,33,61,61,101,38,38,40,116,38,38,110,40,116,104,105,115,46,101,108,101,109,101,110,116,44,34,98,114,105,99,107,108,97,121,101,114,46,98,114,101,97,107,112,111,105,110,116,34,44,123,99,111,108,117,109,110,67,111,117,110,116,58,101,125,41,44,116,104,105,115,46,99,111,108,117,109,110,67,111,117,110,116,61,101,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,114,101,111,114,100,101,114,69,108,101,109,101,110,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,59,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,49,41,44,40,116,61,61,49,47,48,124,124,49,62,116,41,38,38,40,116,61,49,41,59,102,111,114,40,118,97,114,32,114,61,101,40,116,104,105,115,46,101,108,101,109,101,110,116,115,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,112,97,114,101,110,116,78,111,100,101,63,116,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,41,58,116,59,114,101,116,117,114,110,32,101,125,41,44,111,61,116,104,105,115,46,103,101,116,67,111,108,117,109,110,115,40,41,44,105,61,48,59,105,60,111,46,108,101,110,103,116,104,59,105,43,43,41,111,91,105,93,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,111,91,105,93,41,59,102,111,114,40,118,97,114,32,105,61,48,59,116,62,105,59,105,43,43,41,123,118,97,114,32,115,61,110,101,119,32,117,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,67,108,97,115,115,78,97,109,101,41,46,101,108,101,109,101,110,116,59,116,104,105,115,46,101,108,101,109,101,110,116,46,97,112,112,101,110,100,67,104,105,108,100,40,115,41,125,114,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,110,46,102,105,110,100,77,105,110,72,101,105,103,104,116,67,111,108,117,109,110,40,41,59,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,41,125,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,103,101,116,67,111,108,117,109,110,67,111,117,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,101,108,101,109,101,110,116,46,111,102,102,115,101,116,87,105,100,116,104,44,101,61,116,104,105,115,46,114,117,108,101,114,46,103,101,116,87,105,100,116,104,40,41,59,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,47,101,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,97,112,112,108,121,80,111,115,105,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,44,101,44,114,41,123,118,97,114,32,111,61,116,104,105,115,44,105,61,102,117,110,99,116,105,111,110,40,105,41,123,118,97,114,32,115,61,105,43,116,46,99,104,97,114,65,116,40,48,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,116,46,115,117,98,115,116,114,40,49,41,59,110,40,111,46,101,108,101,109,101,110,116,44,34,98,114,105,99,107,108,97,121,101,114,46,34,43,115,44,123,105,116,101,109,58,114,44,99,111,108,117,109,110,58,101,125,41,125,59,115,119,105,116,99,104,40,105,40,34,98,101,102,111,114,101,34,41,44,116,41,123,99,97,115,101,34,97,112,112,101,110,100,34,58,101,46,97,112,112,101,110,100,67,104,105,108,100,40,114,41,59,98,114,101,97,107,59,99,97,115,101,34,112,114,101,112,101,110,100,34,58,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,114,44,101,46,102,105,114,115,116,67,104,105,108,100,41,125,105,40,34,97,102,116,101,114,34,41,125,44,116,125,40,41,59,116,46,67,111,110,116,97,105,110,101,114,61,108,125,40,114,124,124,40,114,61,123,125,41,41,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,40,41,125,41,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,38,38,116,61,61,61,119,105,110,100,111,119,63,116,46,66,114,105,99,107,108,97,121,101,114,61,110,40,41,58,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,101,46,101,120,112,111,114,116,115,38,38,40,101,46,101,120,112,111,114,116,115,61,110,40,41,41,125,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,116,104,105,115,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,46,67,111,110,116,97,105,110,101,114,125,41,125,44,123,125,93,125,44,123,125,44,91,49,93,41,59,239,187,191,40,102,117,110,99,116,105,111,110,40,102,41,123,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,106,113,117,101,114,121,34,93,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,102,40,110,44,100,111,99,117,109,101,110,116,44,119,105,110,100,111,119,44,110,97,118,105,103,97,116,111,114,41,125,41,58,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,63,102,40,114,101,113,117,105,114,101,40,34,106,113,117,101,114,121,34,41,44,100,111,99,117,109,101,110,116,44,119,105,110,100,111,119,44,110,97,118,105,103,97,116,111,114,41,58,102,40,106,81,117,101,114,121,44,100,111,99,117,109,101,110,116,44,119,105,110,100,111,119,44,110,97,118,105,103,97,116,111,114,41,125,41,40,102,117,110,99,116,105,111,110,40,102,44,110,44,107,44,114,44,112,41,123,118,97,114,32,116,61,48,44,109,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,114,46,117,115,101,114,65,103,101,110,116,44,98,61,47,109,115,105,101,92,115,92,100,43,47,105,59,114,101,116,117,114,110,32,48,60,97,46,115,101,97,114,99,104,40,98,41,38,38,40,97,61,98,46,101,120,101,99,40,97,41,46,116,111,83,116,114,105,110,103,40,41,44,97,61,97,46,115,112,108,105,116,40,34,32,34,41,91,49,93,44,57,62,97,41,63,40,102,40,34,104,116,109,108,34,41,46,97,100,100,67,108,97,115,115,40,34,108,116,45,105,101,57,34,41,44,33,48,41,58,33,49,125,40,41,59,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,46,98,105,110,100,124,124,40,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,46,98,105,110,100,61,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,98,61,116,104,105,115,44,100,61,91,93,46,115,108,105,99,101,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,10,116,121,112,101,111,102,32,98,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,59,118,97,114,32,99,61,100,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,44,49,41,44,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,101,41,123,118,97,114,32,103,61,102,117,110,99,116,105,111,110,40,41,123,125,59,103,46,112,114,111,116,111,116,121,112,101,61,98,46,112,114,111,116,111,116,121,112,101,59,118,97,114,32,103,61,110,101,119,32,103,44,108,61,98,46,97,112,112,108,121,40,103,44,99,46,99,111,110,99,97,116,40,100,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,41,59,114,101,116,117,114,110,32,79,98,106,101,99,116,40,108,41,61,61,61,108,63,108,58,103,125,114,101,116,117,114,110,32,98,46,97,112,112,108,121,40,97,44,99,46,99,111,110,99,97,116,40,100,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,41,125,59,114,101,116,117,114,110,32,101,125,41,59,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,105,110,100,101,120,79,102,124,124,40,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,105,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,97,44,98,41,123,105,102,40,110,117,108,108,61,61,116,104,105,115,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,34,116,104,105,115,34,32,105,115,32,110,117,108,108,32,111,114,32,110,111,116,32,100,101,102,105,110,101,100,39,41,59,118,97,114,32,100,61,79,98,106,101,99,116,40,116,104,105,115,41,44,99,61,100,46,108,101,110,103,116,104,62,62,62,48,59,105,102,40,48,61,61,61,99,41,114,101,116,117,114,110,45,49,59,118,97,114,32,101,61,43,98,124,124,48,59,73,110,102,105,110,105,116,121,61,61,61,77,97,116,104,46,97,98,115,40,101,41,38,38,40,101,61,48,41,59,105,102,40,101,62,61,99,41,114,101,116,117,114,110,45,49,59,10,102,111,114,40,101,61,77,97,116,104,46,109,97,120,40,48,60,61,101,63,101,58,99,45,77,97,116,104,46,97,98,115,40,101,41,44,48,41,59,101,60,99,59,41,123,105,102,40,101,32,105,110,32,100,38,38,100,91,101,93,61,61,61,97,41,114,101,116,117,114,110,32,101,59,101,43,43,125,114,101,116,117,114,110,45,49,125,41,59,118,97,114,32,113,61,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,116,104,105,115,46,86,69,82,83,73,79,78,61,34,50,46,50,46,48,34,59,116,104,105,115,46,105,110,112,117,116,61,97,59,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,61,100,59,116,104,105,115,46,111,108,100,95,116,111,61,116,104,105,115,46,111,108,100,95,102,114,111,109,61,116,104,105,115,46,117,112,100,97,116,101,95,116,109,61,116,104,105,115,46,99,97,108,99,95,99,111,117,110,116,61,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,61,48,59,116,104,105,115,46,114,97,102,95,105,100,61,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,61,110,117,108,108,59,116,104,105,115,46,110,111,95,100,105,97,112,97,115,111,110,61,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,116,104,105,115,46,100,114,97,103,103,105,110,103,61,33,49,59,116,104,105,115,46,104,97,115,95,116,97,98,95,105,110,100,101,120,61,33,48,59,116,104,105,115,46,105,115,95,117,112,100,97,116,101,61,116,104,105,115,46,105,115,95,107,101,121,61,33,49,59,116,104,105,115,46,105,115,95,115,116,97,114,116,61,33,48,59,116,104,105,115,46,105,115,95,99,108,105,99,107,61,116,104,105,115,46,105,115,95,114,101,115,105,122,101,61,116,104,105,115,46,105,115,95,97,99,116,105,118,101,61,116,104,105,115,46,105,115,95,102,105,110,105,115,104,61,33,49,59,98,61,98,124,124,123,125,59,116,104,105,115,46,36,99,97,99,104,101,61,123,119,105,110,58,102,40,107,41,44,98,111,100,121,58,102,40,110,46,98,111,100,121,41,44,10,105,110,112,117,116,58,102,40,97,41,44,99,111,110,116,58,110,117,108,108,44,114,115,58,110,117,108,108,44,109,105,110,58,110,117,108,108,44,109,97,120,58,110,117,108,108,44,102,114,111,109,58,110,117,108,108,44,116,111,58,110,117,108,108,44,115,105,110,103,108,101,58,110,117,108,108,44,98,97,114,58,110,117,108,108,44,108,105,110,101,58,110,117,108,108,44,115,95,115,105,110,103,108,101,58,110,117,108,108,44,115,95,102,114,111,109,58,110,117,108,108,44,115,95,116,111,58,110,117,108,108,44,115,104,97,100,95,115,105,110,103,108,101,58,110,117,108,108,44,115,104,97,100,95,102,114,111,109,58,110,117,108,108,44,115,104,97,100,95,116,111,58,110,117,108,108,44,101,100,103,101,58,110,117,108,108,44,103,114,105,100,58,110,117,108,108,44,103,114,105,100,95,108,97,98,101,108,115,58,91,93,125,59,116,104,105,115,46,99,111,111,114,100,115,61,123,120,95,103,97,112,58,48,44,120,95,112,111,105,110,116,101,114,58,48,44,119,95,114,115,58,48,44,119,95,114,115,95,111,108,100,58,48,44,119,95,104,97,110,100,108,101,58,48,44,112,95,103,97,112,58,48,44,112,95,103,97,112,95,108,101,102,116,58,48,44,112,95,103,97,112,95,114,105,103,104,116,58,48,44,112,95,115,116,101,112,58,48,44,112,95,112,111,105,110,116,101,114,58,48,44,112,95,104,97,110,100,108,101,58,48,44,112,95,115,105,110,103,108,101,95,102,97,107,101,58,48,44,112,95,115,105,110,103,108,101,95,114,101,97,108,58,48,44,112,95,102,114,111,109,95,102,97,107,101,58,48,44,112,95,102,114,111,109,95,114,101,97,108,58,48,44,112,95,116,111,95,102,97,107,101,58,48,44,112,95,116,111,95,114,101,97,108,58,48,44,112,95,98,97,114,95,120,58,48,44,112,95,98,97,114,95,119,58,48,44,103,114,105,100,95,103,97,112,58,48,44,98,105,103,95,110,117,109,58,48,44,98,105,103,58,91,93,44,98,105,103,95,119,58,91,93,44,98,105,103,95,112,58,91,93,44,98,105,103,95,120,58,91,93,125,59,10,116,104,105,115,46,108,97,98,101,108,115,61,123,119,95,109,105,110,58,48,44,119,95,109,97,120,58,48,44,119,95,102,114,111,109,58,48,44,119,95,116,111,58,48,44,119,95,115,105,110,103,108,101,58,48,44,112,95,109,105,110,58,48,44,112,95,109,97,120,58,48,44,112,95,102,114,111,109,95,102,97,107,101,58,48,44,112,95,102,114,111,109,95,108,101,102,116,58,48,44,112,95,116,111,95,102,97,107,101,58,48,44,112,95,116,111,95,108,101,102,116,58,48,44,112,95,115,105,110,103,108,101,95,102,97,107,101,58,48,44,112,95,115,105,110,103,108,101,95,108,101,102,116,58,48,125,59,118,97,114,32,99,61,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,59,97,61,99,46,112,114,111,112,40,34,118,97,108,117,101,34,41,59,118,97,114,32,101,59,100,61,123,116,121,112,101,58,34,115,105,110,103,108,101,34,44,109,105,110,58,49,48,44,109,97,120,58,49,48,48,44,102,114,111,109,58,110,117,108,108,44,116,111,58,110,117,108,108,44,115,116,101,112,58,49,44,109,105,110,95,105,110,116,101,114,118,97,108,58,48,44,109,97,120,95,105,110,116,101,114,118,97,108,58,48,44,100,114,97,103,95,105,110,116,101,114,118,97,108,58,33,49,44,118,97,108,117,101,115,58,91,93,44,112,95,118,97,108,117,101,115,58,91,93,44,102,114,111,109,95,102,105,120,101,100,58,33,49,44,102,114,111,109,95,109,105,110,58,110,117,108,108,44,102,114,111,109,95,109,97,120,58,110,117,108,108,44,102,114,111,109,95,115,104,97,100,111,119,58,33,49,44,116,111,95,102,105,120,101,100,58,33,49,44,116,111,95,109,105,110,58,110,117,108,108,44,116,111,95,109,97,120,58,110,117,108,108,44,116,111,95,115,104,97,100,111,119,58,33,49,44,112,114,101,116,116,105,102,121,95,101,110,97,98,108,101,100,58,33,48,44,112,114,101,116,116,105,102,121,95,115,101,112,97,114,97,116,111,114,58,34,32,34,44,112,114,101,116,116,105,102,121,58,110,117,108,108,44,102,111,114,99,101,95,101,100,103,101,115,58,33,49,44,10,107,101,121,98,111,97,114,100,58,33,48,44,103,114,105,100,58,33,49,44,103,114,105,100,95,109,97,114,103,105,110,58,33,48,44,103,114,105,100,95,110,117,109,58,52,44,103,114,105,100,95,115,110,97,112,58,33,49,44,104,105,100,101,95,109,105,110,95,109,97,120,58,33,49,44,104,105,100,101,95,102,114,111,109,95,116,111,58,33,49,44,112,114,101,102,105,120,58,34,34,44,112,111,115,116,102,105,120,58,34,34,44,109,97,120,95,112,111,115,116,102,105,120,58,34,34,44,100,101,99,111,114,97,116,101,95,98,111,116,104,58,33,48,44,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,58,34,32,92,117,50,48,49,52,32,34,44,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,58,34,59,34,44,100,105,115,97,98,108,101,58,33,49,44,98,108,111,99,107,58,33,49,44,101,120,116,114,97,95,99,108,97,115,115,101,115,58,34,34,44,115,99,111,112,101,58,110,117,108,108,44,111,110,83,116,97,114,116,58,110,117,108,108,44,111,110,67,104,97,110,103,101,58,110,117,108,108,44,111,110,70,105,110,105,115,104,58,110,117,108,108,44,111,110,85,112,100,97,116,101,58,110,117,108,108,125,59,34,73,78,80,85,84,34,33,61,61,99,91,48,93,46,110,111,100,101,78,97,109,101,38,38,99,111,110,115,111,108,101,38,38,99,111,110,115,111,108,101,46,119,97,114,110,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,66,97,115,101,32,101,108,101,109,101,110,116,32,115,104,111,117,108,100,32,98,101,32,60,105,110,112,117,116,62,33,34,44,99,91,48,93,41,59,99,61,123,116,121,112,101,58,99,46,100,97,116,97,40,34,116,121,112,101,34,41,44,109,105,110,58,99,46,100,97,116,97,40,34,109,105,110,34,41,44,109,97,120,58,99,46,100,97,116,97,40,34,109,97,120,34,41,44,102,114,111,109,58,99,46,100,97,116,97,40,34,102,114,111,109,34,41,44,116,111,58,99,46,100,97,116,97,40,34,116,111,34,41,44,115,116,101,112,58,99,46,100,97,116,97,40,34,115,116,101,112,34,41,44,10,109,105,110,95,105,110,116,101,114,118,97,108,58,99,46,100,97,116,97,40,34,109,105,110,73,110,116,101,114,118,97,108,34,41,44,109,97,120,95,105,110,116,101,114,118,97,108,58,99,46,100,97,116,97,40,34,109,97,120,73,110,116,101,114,118,97,108,34,41,44,100,114,97,103,95,105,110,116,101,114,118,97,108,58,99,46,100,97,116,97,40,34,100,114,97,103,73,110,116,101,114,118,97,108,34,41,44,118,97,108,117,101,115,58,99,46,100,97,116,97,40,34,118,97,108,117,101,115,34,41,44,102,114,111,109,95,102,105,120,101,100,58,99,46,100,97,116,97,40,34,102,114,111,109,70,105,120,101,100,34,41,44,102,114,111,109,95,109,105,110,58,99,46,100,97,116,97,40,34,102,114,111,109,77,105,110,34,41,44,102,114,111,109,95,109,97,120,58,99,46,100,97,116,97,40,34,102,114,111,109,77,97,120,34,41,44,102,114,111,109,95,115,104,97,100,111,119,58,99,46,100,97,116,97,40,34,102,114,111,109,83,104,97,100,111,119,34,41,44,116,111,95,102,105,120,101,100,58,99,46,100,97,116,97,40,34,116,111,70,105,120,101,100,34,41,44,116,111,95,109,105,110,58,99,46,100,97,116,97,40,34,116,111,77,105,110,34,41,44,116,111,95,109,97,120,58,99,46,100,97,116,97,40,34,116,111,77,97,120,34,41,44,116,111,95,115,104,97,100,111,119,58,99,46,100,97,116,97,40,34,116,111,83,104,97,100,111,119,34,41,44,112,114,101,116,116,105,102,121,95,101,110,97,98,108,101,100,58,99,46,100,97,116,97,40,34,112,114,101,116,116,105,102,121,69,110,97,98,108,101,100,34,41,44,112,114,101,116,116,105,102,121,95,115,101,112,97,114,97,116,111,114,58,99,46,100,97,116,97,40,34,112,114,101,116,116,105,102,121,83,101,112,97,114,97,116,111,114,34,41,44,102,111,114,99,101,95,101,100,103,101,115,58,99,46,100,97,116,97,40,34,102,111,114,99,101,69,100,103,101,115,34,41,44,107,101,121,98,111,97,114,100,58,99,46,100,97,116,97,40,34,107,101,121,98,111,97,114,100,34,41,44,10,103,114,105,100,58,99,46,100,97,116,97,40,34,103,114,105,100,34,41,44,103,114,105,100,95,109,97,114,103,105,110,58,99,46,100,97,116,97,40,34,103,114,105,100,77,97,114,103,105,110,34,41,44,103,114,105,100,95,110,117,109,58,99,46,100,97,116,97,40,34,103,114,105,100,78,117,109,34,41,44,103,114,105,100,95,115,110,97,112,58,99,46,100,97,116,97,40,34,103,114,105,100,83,110,97,112,34,41,44,104,105,100,101,95,109,105,110,95,109,97,120,58,99,46,100,97,116,97,40,34,104,105,100,101,77,105,110,77,97,120,34,41,44,104,105,100,101,95,102,114,111,109,95,116,111,58,99,46,100,97,116,97,40,34,104,105,100,101,70,114,111,109,84,111,34,41,44,112,114,101,102,105,120,58,99,46,100,97,116,97,40,34,112,114,101,102,105,120,34,41,44,112,111,115,116,102,105,120,58,99,46,100,97,116,97,40,34,112,111,115,116,102,105,120,34,41,44,109,97,120,95,112,111,115,116,102,105,120,58,99,46,100,97,116,97,40,34,109,97,120,80,111,115,116,102,105,120,34,41,44,100,101,99,111,114,97,116,101,95,98,111,116,104,58,99,46,100,97,116,97,40,34,100,101,99,111,114,97,116,101,66,111,116,104,34,41,44,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,58,99,46,100,97,116,97,40,34,118,97,108,117,101,115,83,101,112,97,114,97,116,111,114,34,41,44,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,58,99,46,100,97,116,97,40,34,105,110,112,117,116,86,97,108,117,101,115,83,101,112,97,114,97,116,111,114,34,41,44,100,105,115,97,98,108,101,58,99,46,100,97,116,97,40,34,100,105,115,97,98,108,101,34,41,44,98,108,111,99,107,58,99,46,100,97,116,97,40,34,98,108,111,99,107,34,41,44,101,120,116,114,97,95,99,108,97,115,115,101,115,58,99,46,100,97,116,97,40,34,101,120,116,114,97,67,108,97,115,115,101,115,34,41,125,59,99,46,118,97,108,117,101,115,61,99,46,118,97,108,117,101,115,38,38,99,46,118,97,108,117,101,115,46,115,112,108,105,116,40,34,44,34,41,59,10,102,111,114,40,101,32,105,110,32,99,41,99,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,101,41,38,38,40,99,91,101,93,33,61,61,112,38,38,34,34,33,61,61,99,91,101,93,124,124,100,101,108,101,116,101,32,99,91,101,93,41,59,97,33,61,61,112,38,38,34,34,33,61,61,97,38,38,40,97,61,97,46,115,112,108,105,116,40,99,46,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,124,124,98,46,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,124,124,34,59,34,41,44,97,91,48,93,38,38,97,91,48,93,61,61,43,97,91,48,93,38,38,40,97,91,48,93,61,43,97,91,48,93,41,44,97,91,49,93,38,38,97,91,49,93,61,61,43,97,91,49,93,38,38,40,97,91,49,93,61,43,97,91,49,93,41,44,98,38,38,98,46,118,97,108,117,101,115,38,38,98,46,118,97,108,117,101,115,46,108,101,110,103,116,104,63,40,100,46,102,114,111,109,61,97,91,48,93,38,38,98,46,118,97,108,117,101,115,46,105,110,100,101,120,79,102,40,97,91,48,93,41,44,100,46,116,111,61,97,91,49,93,38,38,98,46,118,97,108,117,101,115,46,105,110,100,101,120,79,102,40,97,91,49,93,41,41,58,40,100,46,102,114,111,109,61,97,91,48,93,38,38,43,97,91,48,93,44,100,46,116,111,61,97,91,49,93,38,38,43,97,91,49,93,41,41,59,102,46,101,120,116,101,110,100,40,100,44,98,41,59,102,46,101,120,116,101,110,100,40,100,44,99,41,59,116,104,105,115,46,111,112,116,105,111,110,115,61,100,59,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,61,123,125,59,116,104,105,115,46,118,97,108,105,100,97,116,101,40,41,59,116,104,105,115,46,114,101,115,117,108,116,61,123,105,110,112,117,116,58,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,44,115,108,105,100,101,114,58,110,117,108,108,44,109,105,110,58,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,44,10,109,97,120,58,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,44,102,114,111,109,58,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,44,102,114,111,109,95,112,101,114,99,101,110,116,58,48,44,102,114,111,109,95,118,97,108,117,101,58,110,117,108,108,44,116,111,58,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,44,116,111,95,112,101,114,99,101,110,116,58,48,44,116,111,95,118,97,108,117,101,58,110,117,108,108,125,59,116,104,105,115,46,105,110,105,116,40,41,125,59,113,46,112,114,111,116,111,116,121,112,101,61,123,105,110,105,116,58,102,117,110,99,116,105,111,110,40,97,41,123,116,104,105,115,46,110,111,95,100,105,97,112,97,115,111,110,61,33,49,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,116,101,112,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,44,33,48,41,59,116,104,105,115,46,116,97,114,103,101,116,61,34,98,97,115,101,34,59,116,104,105,115,46,116,111,103,103,108,101,73,110,112,117,116,40,41,59,116,104,105,115,46,97,112,112,101,110,100,40,41,59,116,104,105,115,46,115,101,116,77,105,110,77,97,120,40,41,59,97,63,40,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,116,104,105,115,46,99,97,108,99,40,33,48,41,44,116,104,105,115,46,99,97,108,108,79,110,85,112,100,97,116,101,40,41,41,58,40,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,116,104,105,115,46,99,97,108,99,40,33,48,41,44,116,104,105,115,46,99,97,108,108,79,110,83,116,97,114,116,40,41,41,59,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,40,41,125,44,97,112,112,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,98,101,102,111,114,101,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,32,106,115,45,105,114,115,45,39,43,10,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,43,34,32,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,101,120,116,114,97,95,99,108,97,115,115,101,115,43,39,34,62,60,47,115,112,97,110,62,39,41,59,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,114,101,97,100,111,110,108,121,34,44,33,48,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,61,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,101,118,40,41,59,116,104,105,115,46,114,101,115,117,108,116,46,115,108,105,100,101,114,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,104,116,109,108,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,34,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,108,105,110,101,34,32,116,97,98,105,110,100,101,120,61,34,48,34,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,108,105,110,101,45,108,101,102,116,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,108,105,110,101,45,109,105,100,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,108,105,110,101,45,114,105,103,104,116,34,62,60,47,115,112,97,110,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,109,105,110,34,62,48,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,109,97,120,34,62,49,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,102,114,111,109,34,62,48,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,116,111,34,62,48,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,105,110,103,108,101,34,62,48,60,47,115,112,97,110,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,103,114,105,100,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,98,97,114,34,62,60,47,115,112,97,110,62,39,41,59,10,116,104,105,115,46,36,99,97,99,104,101,46,114,115,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,109,105,110,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,109,97,120,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,102,114,111,109,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,116,111,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,116,111,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,115,105,110,103,108,101,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,98,97,114,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,108,105,110,101,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,103,114,105,100,34,41,59,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,112,112,101,110,100,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,98,97,114,45,101,100,103,101,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,104,97,100,111,119,32,115,104,97,100,111,119,45,115,105,110,103,108,101,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,108,105,100,101,114,32,115,105,110,103,108,101,34,62,60,47,115,112,97,110,62,39,41,44,10,116,104,105,115,46,36,99,97,99,104,101,46,101,100,103,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,98,97,114,45,101,100,103,101,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,105,110,103,108,101,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,104,97,100,111,119,45,115,105,110,103,108,101,34,41,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,112,112,101,110,100,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,104,97,100,111,119,32,115,104,97,100,111,119,45,102,114,111,109,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,104,97,100,111,119,32,115,104,97,100,111,119,45,116,111,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,108,105,100,101,114,32,102,114,111,109,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,108,105,100,101,114,32,116,111,34,62,60,47,115,112,97,110,62,39,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,102,114,111,109,34,41,44,10,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,116,111,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,102,114,111,109,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,104,97,100,111,119,45,102,114,111,109,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,116,111,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,104,97,100,111,119,45,116,111,34,41,44,116,104,105,115,46,115,101,116,84,111,112,72,97,110,100,108,101,114,40,41,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,95,102,114,111,109,95,116,111,38,38,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,41,59,116,104,105,115,46,97,112,112,101,110,100,71,114,105,100,40,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,100,105,115,97,98,108,101,63,40,116,104,105,115,46,97,112,112,101,110,100,68,105,115,97,98,108,101,77,97,115,107,40,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,91,48,93,46,100,105,115,97,98,108,101,100,61,33,48,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,91,48,93,46,100,105,115,97,98,108,101,100,61,33,49,44,116,104,105,115,46,114,101,109,111,118,101,68,105,115,97,98,108,101,77,97,115,107,40,41,44,116,104,105,115,46,98,105,110,100,69,118,101,110,116,115,40,41,41,59,10,116,104,105,115,46,111,112,116,105,111,110,115,46,100,105,115,97,98,108,101,124,124,40,116,104,105,115,46,111,112,116,105,111,110,115,46,98,108,111,99,107,63,116,104,105,115,46,97,112,112,101,110,100,68,105,115,97,98,108,101,77,97,115,107,40,41,58,116,104,105,115,46,114,101,109,111,118,101,68,105,115,97,98,108,101,77,97,115,107,40,41,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,100,114,97,103,95,105,110,116,101,114,118,97,108,38,38,40,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,91,48,93,46,115,116,121,108,101,46,99,117,114,115,111,114,61,34,109,111,118,101,34,41,125,44,115,101,116,84,111,112,72,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,44,98,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,59,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,62,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,38,38,98,61,61,61,97,63,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,97,100,100,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,58,98,60,97,38,38,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,97,100,100,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,125,44,99,104,97,110,103,101,76,101,118,101,108,58,102,117,110,99,116,105,111,110,40,97,41,123,115,119,105,116,99,104,40,97,41,123,99,97,115,101,32,34,115,105,110,103,108,101,34,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,97,100,100,67,108,97,115,115,40,34,115,116,97,116,101,95,104,111,118,101,114,34,41,59,10,98,114,101,97,107,59,99,97,115,101,32,34,102,114,111,109,34,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,97,100,100,67,108,97,115,115,40,34,115,116,97,116,101,95,104,111,118,101,114,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,97,100,100,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,114,101,109,111,118,101,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,59,98,114,101,97,107,59,99,97,115,101,32,34,116,111,34,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,97,100,100,67,108,97,115,115,40,34,115,116,97,116,101,95,104,111,118,101,114,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,97,100,100,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,114,101,109,111,118,101,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,59,98,114,101,97,107,59,99,97,115,101,32,34,98,111,116,104,34,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,95,108,101,102,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,41,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,95,114,105,103,104,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,114,101,109,111,118,101,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,114,101,109,111,118,101,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,125,125,44,97,112,112,101,110,100,68,105,115,97,98,108,101,77,97,115,107,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,112,112,101,110,100,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,100,105,115,97,98,108,101,45,109,97,115,107,34,62,60,47,115,112,97,110,62,39,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,100,100,67,108,97,115,115,40,34,105,114,115,45,100,105,115,97,98,108,101,100,34,41,125,44,114,101,109,111,118,101,68,105,115,97,98,108,101,77,97,115,107,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,114,101,109,111,118,101,40,34,46,105,114,115,45,100,105,115,97,98,108,101,45,109,97,115,107,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,114,101,109,111,118,101,67,108,97,115,115,40,34,105,114,115,45,100,105,115,97,98,108,101,100,34,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,114,101,109,111,118,101,40,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,61,10,110,117,108,108,59,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,102,102,40,34,107,101,121,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,102,102,40,34,116,111,117,99,104,109,111,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,102,102,40,34,109,111,117,115,101,109,111,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,116,104,105,115,46,36,99,97,99,104,101,46,119,105,110,46,111,102,102,40,34,116,111,117,99,104,101,110,100,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,116,104,105,115,46,36,99,97,99,104,101,46,119,105,110,46,111,102,102,40,34,109,111,117,115,101,117,112,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,109,38,38,40,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,102,102,40,34,109,111,117,115,101,117,112,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,44,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,102,102,40,34,109,111,117,115,101,108,101,97,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,61,91,93,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,61,91,93,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,119,61,91,93,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,61,91,93,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,61,10,91,93,59,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,116,104,105,115,46,114,97,102,95,105,100,41,125,44,98,105,110,100,69,118,101,110,116,115,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,110,111,95,100,105,97,112,97,115,111,110,41,123,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,110,40,34,116,111,117,99,104,109,111,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,77,111,118,101,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,110,40,34,109,111,117,115,101,109,111,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,77,111,118,101,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,119,105,110,46,111,110,40,34,116,111,117,99,104,101,110,100,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,85,112,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,119,105,110,46,111,110,40,34,109,111,117,115,101,117,112,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,85,112,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,59,10,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,110,40,34,102,111,99,117,115,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,70,111,99,117,115,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,100,114,97,103,95,105,110,116,101,114,118,97,108,38,38,34,100,111,117,98,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,98,111,116,104,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,98,111,116,104,34,41,41,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,10,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,41,59,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,115,105,110,103,108,101,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,115,105,110,103,108,101,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,115,105,110,103,108,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,10,34,115,105,110,103,108,101,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,115,105,110,103,108,101,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,101,100,103,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,115,105,110,103,108,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,110,117,108,108,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,110,117,108,108,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,10,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,102,114,111,109,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,102,114,111,109,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,116,111,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,116,111,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,102,114,111,109,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,116,111,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,10,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,102,114,111,109,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,102,114,111,109,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,116,111,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,116,111,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,102,114,111,109,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,116,111,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,10,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,107,101,121,98,111,97,114,100,41,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,110,40,34,107,101,121,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,107,101,121,46,98,105,110,100,40,116,104,105,115,44,34,107,101,121,98,111,97,114,100,34,41,41,59,109,38,38,40,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,110,40,34,109,111,117,115,101,117,112,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,85,112,46,98,105,110,100,40,116,104,105,115,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,110,40,34,109,111,117,115,101,108,101,97,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,85,112,46,98,105,110,100,40,116,104,105,115,41,41,41,125,125,44,112,111,105,110,116,101,114,70,111,99,117,115,58,102,117,110,99,116,105,111,110,40,97,41,123,105,102,40,33,116,104,105,115,46,116,97,114,103,101,116,41,123,118,97,114,32,98,61,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,58,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,59,97,61,98,46,111,102,102,115,101,116,40,41,46,108,101,102,116,59,97,43,61,98,46,119,105,100,116,104,40,41,47,50,45,49,59,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,40,34,115,105,110,103,108,101,34,44,10,123,112,114,101,118,101,110,116,68,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,125,44,112,97,103,101,88,58,97,125,41,125,125,44,112,111,105,110,116,101,114,77,111,118,101,58,102,117,110,99,116,105,111,110,40,97,41,123,116,104,105,115,46,100,114,97,103,103,105,110,103,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,40,97,46,112,97,103,101,88,124,124,97,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,97,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,41,45,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,44,116,104,105,115,46,99,97,108,99,40,41,41,125,44,112,111,105,110,116,101,114,85,112,58,102,117,110,99,116,105,111,110,40,97,41,123,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,61,61,61,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,38,38,116,104,105,115,46,105,115,95,97,99,116,105,118,101,38,38,40,116,104,105,115,46,105,115,95,97,99,116,105,118,101,61,33,49,44,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,116,97,116,101,95,104,111,118,101,114,34,41,46,114,101,109,111,118,101,67,108,97,115,115,40,34,115,116,97,116,101,95,104,111,118,101,114,34,41,44,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,109,38,38,102,40,34,42,34,41,46,112,114,111,112,40,34,117,110,115,101,108,101,99,116,97,98,108,101,34,44,33,49,41,44,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,40,41,44,116,104,105,115,46,114,101,115,116,111,114,101,79,114,105,103,105,110,97,108,77,105,110,73,110,116,101,114,118,97,108,40,41,44,40,102,46,99,111,110,116,97,105,110,115,40,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,91,48,93,44,10,97,46,116,97,114,103,101,116,41,124,124,116,104,105,115,46,100,114,97,103,103,105,110,103,41,38,38,116,104,105,115,46,99,97,108,108,79,110,70,105,110,105,115,104,40,41,44,116,104,105,115,46,100,114,97,103,103,105,110,103,61,33,49,41,125,44,112,111,105,110,116,101,114,68,111,119,110,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,98,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,100,61,98,46,112,97,103,101,88,124,124,98,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,98,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,59,50,33,61,61,98,46,98,117,116,116,111,110,38,38,40,34,98,111,116,104,34,61,61,61,97,38,38,116,104,105,115,46,115,101,116,84,101,109,112,77,105,110,73,110,116,101,114,118,97,108,40,41,44,97,124,124,40,97,61,116,104,105,115,46,116,97,114,103,101,116,124,124,34,102,114,111,109,34,41,44,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,61,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,116,97,114,103,101,116,61,97,44,116,104,105,115,46,100,114,97,103,103,105,110,103,61,116,104,105,115,46,105,115,95,97,99,116,105,118,101,61,33,48,44,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,102,102,115,101,116,40,41,46,108,101,102,116,44,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,100,45,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,44,116,104,105,115,46,99,97,108,99,80,111,105,110,116,101,114,80,101,114,99,101,110,116,40,41,44,116,104,105,115,46,99,104,97,110,103,101,76,101,118,101,108,40,97,41,44,109,38,38,102,40,34,42,34,41,46,112,114,111,112,40,34,117,110,115,101,108,101,99,116,97,98,108,101,34,44,10,33,48,41,44,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,116,114,105,103,103,101,114,40,34,102,111,99,117,115,34,41,44,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,40,41,41,125,44,112,111,105,110,116,101,114,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,98,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,100,61,98,46,112,97,103,101,88,124,124,98,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,98,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,59,50,33,61,61,98,46,98,117,116,116,111,110,38,38,40,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,61,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,116,97,114,103,101,116,61,97,44,116,104,105,115,46,105,115,95,99,108,105,99,107,61,33,48,44,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,102,102,115,101,116,40,41,46,108,101,102,116,44,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,43,40,100,45,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,41,46,116,111,70,105,120,101,100,40,41,44,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,116,104,105,115,46,99,97,108,99,40,41,44,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,116,114,105,103,103,101,114,40,34,102,111,99,117,115,34,41,41,125,44,107,101,121,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,105,102,40,33,40,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,33,61,61,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,124,124,98,46,97,108,116,75,101,121,124,124,10,98,46,99,116,114,108,75,101,121,124,124,98,46,115,104,105,102,116,75,101,121,124,124,98,46,109,101,116,97,75,101,121,41,41,123,115,119,105,116,99,104,40,98,46,119,104,105,99,104,41,123,99,97,115,101,32,56,51,58,99,97,115,101,32,54,53,58,99,97,115,101,32,52,48,58,99,97,115,101,32,51,55,58,98,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,116,104,105,115,46,109,111,118,101,66,121,75,101,121,40,33,49,41,59,98,114,101,97,107,59,99,97,115,101,32,56,55,58,99,97,115,101,32,54,56,58,99,97,115,101,32,51,56,58,99,97,115,101,32,51,57,58,98,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,109,111,118,101,66,121,75,101,121,40,33,48,41,125,114,101,116,117,114,110,33,48,125,125,44,109,111,118,101,66,121,75,101,121,58,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,98,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,44,100,61,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,49,48,48,44,100,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,47,100,59,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,47,49,48,48,42,40,97,63,98,43,100,58,98,45,100,41,41,59,116,104,105,115,46,105,115,95,107,101,121,61,33,48,59,116,104,105,115,46,99,97,108,99,40,41,125,44,115,101,116,77,105,110,77,97,120,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,95,109,105,110,95,109,97,120,41,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,10,34,110,111,110,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,59,101,108,115,101,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,41,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,46,104,116,109,108,40,116,104,105,115,46,100,101,99,111,114,97,116,101,40,116,104,105,115,46,111,112,116,105,111,110,115,46,112,95,118,97,108,117,101,115,91,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,93,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,46,104,116,109,108,40,116,104,105,115,46,100,101,99,111,114,97,116,101,40,116,104,105,115,46,111,112,116,105,111,110,115,46,112,95,118,97,108,117,101,115,91,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,93,41,41,59,101,108,115,101,123,118,97,114,32,97,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,44,98,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,41,59,116,104,105,115,46,114,101,115,117,108,116,46,109,105,110,95,112,114,101,116,116,121,61,97,59,116,104,105,115,46,114,101,115,117,108,116,46,109,97,120,95,112,114,101,116,116,121,61,98,59,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,46,104,116,109,108,40,116,104,105,115,46,100,101,99,111,114,97,116,101,40,97,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,46,104,116,109,108,40,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,41,41,125,116,104,105,115,46,108,97,98,101,108,115,46,119,95,109,105,110,61,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,59,10,116,104,105,115,46,108,97,98,101,108,115,46,119,95,109,97,120,61,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,125,125,44,115,101,116,84,101,109,112,77,105,110,73,110,116,101,114,118,97,108,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,45,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,59,110,117,108,108,61,61,61,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,38,38,40,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,95,105,110,116,101,114,118,97,108,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,95,105,110,116,101,114,118,97,108,61,97,125,44,114,101,115,116,111,114,101,79,114,105,103,105,110,97,108,77,105,110,73,110,116,101,114,118,97,108,58,102,117,110,99,116,105,111,110,40,41,123,110,117,108,108,33,61,61,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,38,38,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,95,105,110,116,101,114,118,97,108,61,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,44,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,61,110,117,108,108,41,125,44,99,97,108,99,58,102,117,110,99,116,105,111,110,40,97,41,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,41,123,116,104,105,115,46,99,97,108,99,95,99,111,117,110,116,43,43,59,105,102,40,49,48,61,61,61,116,104,105,115,46,99,97,108,99,95,99,111,117,110,116,124,124,97,41,116,104,105,115,46,99,97,108,99,95,99,111,117,110,116,61,48,44,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,10,116,104,105,115,46,99,97,108,99,72,97,110,100,108,101,80,101,114,99,101,110,116,40,41,59,105,102,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,41,123,116,104,105,115,46,99,97,108,99,80,111,105,110,116,101,114,80,101,114,99,101,110,116,40,41,59,97,61,116,104,105,115,46,103,101,116,72,97,110,100,108,101,88,40,41,59,34,98,111,116,104,34,61,61,61,116,104,105,115,46,116,97,114,103,101,116,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,48,44,97,61,116,104,105,115,46,103,101,116,72,97,110,100,108,101,88,40,41,41,59,34,99,108,105,99,107,34,61,61,61,116,104,105,115,46,116,97,114,103,101,116,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,97,61,116,104,105,115,46,103,101,116,72,97,110,100,108,101,88,40,41,44,116,104,105,115,46,116,97,114,103,101,116,61,116,104,105,115,46,111,112,116,105,111,110,115,46,100,114,97,103,95,105,110,116,101,114,118,97,108,63,34,98,111,116,104,95,111,110,101,34,58,116,104,105,115,46,99,104,111,111,115,101,72,97,110,100,108,101,40,97,41,41,59,115,119,105,116,99,104,40,116,104,105,115,46,116,97,114,103,101,116,41,123,99,97,115,101,32,34,98,97,115,101,34,58,118,97,114,32,98,61,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,49,48,48,59,97,61,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,98,59,98,61,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,98,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,59,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,116,111,70,105,120,101,100,40,98,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,61,10,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,116,104,105,115,46,116,97,114,103,101,116,61,110,117,108,108,59,98,114,101,97,107,59,99,97,115,101,32,34,115,105,110,103,108,101,34,58,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,41,98,114,101,97,107,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,41,59,10,98,114,101,97,107,59,99,97,115,101,32,34,102,114,111,109,34,58,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,41,98,114,101,97,107,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,62,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,34,102,114,111,109,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,10,116,104,105,115,46,99,104,101,99,107,77,97,120,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,34,102,114,111,109,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,98,114,101,97,107,59,99,97,115,101,32,34,116,111,34,58,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,102,105,120,101,100,41,98,114,101,97,107,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,60,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,97,120,41,59,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,34,116,111,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,97,120,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,34,116,111,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,98,114,101,97,107,59,99,97,115,101,32,34,98,111,116,104,34,58,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,124,124,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,102,105,120,101,100,41,98,114,101,97,107,59,97,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,43,46,48,48,49,42,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,95,108,101,102,116,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,34,102,114,111,109,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,95,114,105,103,104,116,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,105,110,44,10,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,34,116,111,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,98,114,101,97,107,59,99,97,115,101,32,34,98,111,116,104,95,111,110,101,34,58,105,102,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,38,38,33,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,102,105,120,101,100,41,123,118,97,114,32,100,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,59,97,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,101,114,99,101,110,116,45,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,101,114,99,101,110,116,59,118,97,114,32,99,61,97,47,50,44,98,61,100,45,99,44,100,61,100,43,99,59,48,62,98,38,38,40,98,61,48,44,100,61,98,43,97,41,59,49,48,48,60,100,38,38,40,100,61,49,48,48,44,98,61,100,45,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,98,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,10,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,100,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,125,125,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,120,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,119,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,44,10,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,41,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,114,101,116,116,121,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,41,58,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,120,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,41,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,119,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,41,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,114,101,116,116,121,61,10,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,114,101,116,116,121,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,41,59,116,104,105,115,46,99,97,108,99,77,105,110,77,97,120,40,41,59,116,104,105,115,46,99,97,108,99,76,97,98,101,108,115,40,41,125,125,125,44,99,97,108,99,80,111,105,110,116,101,114,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,63,40,48,62,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,124,124,105,115,78,97,78,40,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,41,63,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,10,48,58,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,62,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,41,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,41,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,61,48,125,44,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,47,40,49,48,48,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,41,42,49,48,48,125,44,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,47,49,48,48,42,40,49,48,48,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,41,125,44,103,101,116,72,97,110,100,108,101,88,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,49,48,48,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,44,98,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,41,59,48,62,98,63,98,61,48,58,98,62,97,38,38,40,98,61,97,41,59,114,101,116,117,114,110,32,98,125,44,99,97,108,99,72,97,110,100,108,101,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,104,97,110,100,108,101,61,10,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,58,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,104,97,110,100,108,101,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,125,44,99,104,111,111,115,101,72,97,110,100,108,101,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,34,115,105,110,103,108,101,34,58,97,62,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,43,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,47,50,63,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,102,105,120,101,100,63,34,102,114,111,109,34,58,34,116,111,34,58,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,63,34,116,111,34,58,34,102,114,111,109,34,125,44,99,97,108,99,77,105,110,77,97,120,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,105,110,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,109,105,110,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,97,120,61,10,116,104,105,115,46,108,97,98,101,108,115,46,119,95,109,97,120,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,125,44,99,97,108,99,76,97,98,101,108,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,33,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,95,102,114,111,109,95,116,111,38,38,40,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,108,97,98,101,108,115,46,119,95,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,115,105,110,103,108,101,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,47,50,41,58,40,116,104,105,115,46,108,97,98,101,108,115,46,119,95,102,114,111,109,61,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,102,97,107,101,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,102,114,111,109,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,61,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,102,97,107,101,47,50,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,61,116,104,105,115,46,99,104,101,99,107,69,100,103,101,115,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,102,97,107,101,41,44,116,104,105,115,46,108,97,98,101,108,115,46,119,95,116,111,61,116,104,105,115,46,36,99,97,99,104,101,46,116,111,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,116,111,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,47,50,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,61,10,116,104,105,115,46,99,104,101,99,107,69,100,103,101,115,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,41,44,116,104,105,115,46,108,97,98,101,108,115,46,119,95,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,115,105,110,103,108,101,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,61,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,41,47,50,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,47,50,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,41,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,61,116,104,105,115,46,99,104,101,99,107,69,100,103,101,115,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,41,41,125,44,117,112,100,97,116,101,83,99,101,110,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,97,102,95,105,100,38,38,10,40,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,116,104,105,115,46,114,97,102,95,105,100,41,44,116,104,105,115,46,114,97,102,95,105,100,61,110,117,108,108,41,59,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,117,112,100,97,116,101,95,116,109,41,59,116,104,105,115,46,117,112,100,97,116,101,95,116,109,61,110,117,108,108,59,116,104,105,115,46,111,112,116,105,111,110,115,38,38,40,116,104,105,115,46,100,114,97,119,72,97,110,100,108,101,115,40,41,44,116,104,105,115,46,105,115,95,97,99,116,105,118,101,63,116,104,105,115,46,114,97,102,95,105,100,61,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,46,98,105,110,100,40,116,104,105,115,41,41,58,116,104,105,115,46,117,112,100,97,116,101,95,116,109,61,115,101,116,84,105,109,101,111,117,116,40,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,46,98,105,110,100,40,116,104,105,115,41,44,51,48,48,41,41,125,44,100,114,97,119,72,97,110,100,108,101,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,59,105,102,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,33,61,61,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,95,111,108,100,38,38,40,116,104,105,115,46,116,97,114,103,101,116,61,34,98,97,115,101,34,44,116,104,105,115,46,105,115,95,114,101,115,105,122,101,61,33,48,41,59,105,102,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,33,61,61,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,95,111,108,100,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,41,116,104,105,115,46,115,101,116,77,105,110,77,97,120,40,41,44,10,116,104,105,115,46,99,97,108,99,40,33,48,41,44,116,104,105,115,46,100,114,97,119,76,97,98,101,108,115,40,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,103,114,105,100,38,38,40,116,104,105,115,46,99,97,108,99,71,114,105,100,77,97,114,103,105,110,40,41,44,116,104,105,115,46,99,97,108,99,71,114,105,100,76,97,98,101,108,115,40,41,41,44,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,95,111,108,100,61,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,44,116,104,105,115,46,100,114,97,119,83,104,97,100,111,119,40,41,59,105,102,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,40,116,104,105,115,46,100,114,97,103,103,105,110,103,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,124,124,116,104,105,115,46,105,115,95,107,101,121,41,41,123,105,102,40,116,104,105,115,46,111,108,100,95,102,114,111,109,33,61,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,124,124,116,104,105,115,46,111,108,100,95,116,111,33,61,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,124,124,116,104,105,115,46,105,115,95,107,101,121,41,123,116,104,105,115,46,100,114,97,119,76,97,98,101,108,115,40,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,120,43,34,37,34,59,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,119,43,34,37,34,59,105,102,40,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,41,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,43,34,37,34,59,101,108,115,101,123,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,43,34,37,34,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,43,34,37,34,59,105,102,40,116,104,105,115,46,111,108,100,95,102,114,111,109,33,61,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,41,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,43,34,37,34,59,105,102,40,116,104,105,115,46,111,108,100,95,116,111,33,61,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,41,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,43,34,37,34,125,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,43,34,37,34,59,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,116,104,105,115,46,111,108,100,95,102,114,111,109,61,61,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,38,38,116,104,105,115,46,111,108,100,95,116,111,61,61,61,10,116,104,105,115,46,114,101,115,117,108,116,46,116,111,124,124,116,104,105,115,46,105,115,95,115,116,97,114,116,124,124,40,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,116,114,105,103,103,101,114,40,34,99,104,97,110,103,101,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,116,114,105,103,103,101,114,40,34,105,110,112,117,116,34,41,41,59,116,104,105,115,46,111,108,100,95,102,114,111,109,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,59,116,104,105,115,46,111,108,100,95,116,111,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,59,116,104,105,115,46,105,115,95,114,101,115,105,122,101,124,124,116,104,105,115,46,105,115,95,117,112,100,97,116,101,124,124,116,104,105,115,46,105,115,95,115,116,97,114,116,124,124,116,104,105,115,46,105,115,95,102,105,110,105,115,104,124,124,116,104,105,115,46,99,97,108,108,79,110,67,104,97,110,103,101,40,41,59,105,102,40,116,104,105,115,46,105,115,95,107,101,121,124,124,116,104,105,115,46,105,115,95,99,108,105,99,107,41,116,104,105,115,46,105,115,95,99,108,105,99,107,61,116,104,105,115,46,105,115,95,107,101,121,61,33,49,44,116,104,105,115,46,99,97,108,108,79,110,70,105,110,105,115,104,40,41,59,116,104,105,115,46,105,115,95,102,105,110,105,115,104,61,116,104,105,115,46,105,115,95,114,101,115,105,122,101,61,116,104,105,115,46,105,115,95,117,112,100,97,116,101,61,33,49,125,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,116,104,105,115,46,105,115,95,99,108,105,99,107,61,116,104,105,115,46,105,115,95,107,101,121,61,116,104,105,115,46,105,115,95,115,116,97,114,116,61,33,49,125,125,125,44,100,114,97,119,76,97,98,101,108,115,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,44,10,98,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,95,118,97,108,117,101,115,59,105,102,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,95,102,114,111,109,95,116,111,41,105,102,40,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,41,123,105,102,40,97,41,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,59,101,108,115,101,123,118,97,114,32,100,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,59,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,100,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,125,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,104,116,109,108,40,97,41,59,116,104,105,115,46,99,97,108,99,76,97,98,101,108,115,40,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,60,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,105,110,43,49,63,34,104,105,100,100,101,110,34,58,34,118,105,115,105,98,108,101,34,59,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,62,49,48,48,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,97,120,45,49,63,34,104,105,100,100,101,110,34,58,34,118,105,115,105,98,108,101,34,125,101,108,115,101,123,97,63,40,116,104,105,115,46,111,112,116,105,111,110,115,46,100,101,99,111,114,97,116,101,95,98,111,116,104,63,10,40,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,44,97,43,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,44,97,43,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,41,58,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,43,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,43,98,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,44,100,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,44,98,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,41,58,40,100,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,98,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,100,101,99,111,114,97,116,101,95,98,111,116,104,63,40,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,100,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,97,43,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,44,97,43,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,41,58,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,100,43,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,43,10,98,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,44,100,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,100,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,98,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,104,116,109,108,40,97,41,59,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,46,104,116,109,108,40,100,41,59,116,104,105,115,46,36,99,97,99,104,101,46,116,111,46,104,116,109,108,40,98,41,59,116,104,105,115,46,99,97,108,99,76,97,98,101,108,115,40,41,59,97,61,77,97,116,104,46,109,105,110,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,41,59,100,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,59,118,97,114,32,98,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,44,99,61,77,97,116,104,46,109,97,120,40,100,44,98,41,59,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,102,97,107,101,62,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,63,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,10,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,61,61,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,63,40,34,102,114,111,109,34,61,61,61,116,104,105,115,46,116,97,114,103,101,116,63,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,58,34,116,111,34,61,61,61,116,104,105,115,46,116,97,114,103,101,116,63,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,58,116,104,105,115,46,116,97,114,103,101,116,124,124,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,99,61,98,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,44,99,61,77,97,116,104,46,109,97,120,40,100,44,98,41,41,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,10,34,118,105,115,105,98,108,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,97,60,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,105,110,43,49,63,34,104,105,100,100,101,110,34,58,34,118,105,115,105,98,108,101,34,59,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,99,62,49,48,48,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,97,120,45,49,63,34,104,105,100,100,101,110,34,58,34,118,105,115,105,98,108,101,34,125,125,125,44,100,114,97,119,83,104,97,100,111,119,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,44,98,61,116,104,105,115,46,36,99,97,99,104,101,44,100,61,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,105,110,38,38,33,105,115,78,97,78,40,97,46,102,114,111,109,95,109,105,110,41,44,99,61,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,97,120,38,38,33,105,115,78,97,78,40,97,46,102,114,111,109,95,109,97,120,41,44,101,61,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,105,110,38,38,33,105,115,78,97,78,40,97,46,116,111,95,109,105,110,41,44,103,61,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,97,120,38,38,33,105,115,78,97,78,40,97,46,116,111,95,109,97,120,41,59,10,34,115,105,110,103,108,101,34,61,61,61,97,46,116,121,112,101,63,97,46,102,114,111,109,95,115,104,97,100,111,119,38,38,40,100,124,124,99,41,63,40,100,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,100,63,97,46,102,114,111,109,95,109,105,110,58,97,46,109,105,110,41,44,99,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,99,63,97,46,102,114,111,109,95,109,97,120,58,97,46,109,97,120,41,45,100,44,100,61,116,104,105,115,46,116,111,70,105,120,101,100,40,100,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,100,41,44,99,61,116,104,105,115,46,116,111,70,105,120,101,100,40,99,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,99,41,44,100,43,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,98,46,115,104,97,100,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,98,108,111,99,107,34,44,98,46,115,104,97,100,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,100,43,34,37,34,44,98,46,115,104,97,100,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,99,43,34,37,34,41,58,98,46,115,104,97,100,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,58,40,97,46,102,114,111,109,95,115,104,97,100,111,119,38,38,40,100,124,124,99,41,63,40,100,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,100,63,97,46,102,114,111,109,95,109,105,110,58,97,46,109,105,110,41,44,99,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,99,63,97,46,102,114,111,109,95,109,97,120,58,97,46,109,97,120,41,45,10,100,44,100,61,116,104,105,115,46,116,111,70,105,120,101,100,40,100,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,100,41,44,99,61,116,104,105,115,46,116,111,70,105,120,101,100,40,99,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,99,41,44,100,43,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,98,46,115,104,97,100,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,98,108,111,99,107,34,44,98,46,115,104,97,100,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,100,43,34,37,34,44,98,46,115,104,97,100,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,99,43,34,37,34,41,58,98,46,115,104,97,100,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,97,46,116,111,95,115,104,97,100,111,119,38,38,40,101,124,124,103,41,63,40,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,101,63,97,46,116,111,95,109,105,110,58,97,46,109,105,110,41,44,97,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,103,63,97,46,116,111,95,109,97,120,58,97,46,109,97,120,41,45,101,44,101,61,116,104,105,115,46,116,111,70,105,120,101,100,40,101,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,101,41,44,97,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,97,41,44,101,43,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,98,46,115,104,97,100,95,116,111,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,10,34,98,108,111,99,107,34,44,98,46,115,104,97,100,95,116,111,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,101,43,34,37,34,44,98,46,115,104,97,100,95,116,111,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,97,43,34,37,34,41,58,98,46,115,104,97,100,95,116,111,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,41,125,44,119,114,105,116,101,84,111,73,110,112,117,116,58,102,117,110,99,116,105,111,110,40,41,123,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,63,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,41,58,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,100,97,116,97,40,34,102,114,111,109,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,41,58,40,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,63,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,43,116,104,105,115,46,111,112,116,105,111,110,115,46,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,43,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,118,97,108,117,101,41,58,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,10,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,43,116,104,105,115,46,111,112,116,105,111,110,115,46,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,43,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,100,97,116,97,40,34,102,114,111,109,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,100,97,116,97,40,34,116,111,34,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,41,125,44,99,97,108,108,79,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,83,116,97,114,116,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,83,116,97,114,116,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,41,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,83,116,97,114,116,46,99,97,108,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,44,116,104,105,115,46,114,101,115,117,108,116,41,59,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,83,116,97,114,116,40,116,104,105,115,46,114,101,115,117,108,116,41,125,44,99,97,108,108,79,110,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,104,97,110,103,101,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,104,97,110,103,101,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,41,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,104,97,110,103,101,46,99,97,108,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,44,10,116,104,105,115,46,114,101,115,117,108,116,41,59,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,104,97,110,103,101,40,116,104,105,115,46,114,101,115,117,108,116,41,125,44,99,97,108,108,79,110,70,105,110,105,115,104,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,70,105,110,105,115,104,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,70,105,110,105,115,104,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,41,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,70,105,110,105,115,104,46,99,97,108,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,44,116,104,105,115,46,114,101,115,117,108,116,41,59,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,70,105,110,105,115,104,40,116,104,105,115,46,114,101,115,117,108,116,41,125,44,99,97,108,108,79,110,85,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,41,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,46,99,97,108,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,44,116,104,105,115,46,114,101,115,117,108,116,41,59,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,40,116,104,105,115,46,114,101,115,117,108,116,41,125,44,10,116,111,103,103,108,101,73,110,112,117,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,116,111,103,103,108,101,67,108,97,115,115,40,34,105,114,115,45,104,105,100,100,101,110,45,105,110,112,117,116,34,41,59,116,104,105,115,46,104,97,115,95,116,97,98,95,105,110,100,101,120,63,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,116,97,98,105,110,100,101,120,34,44,45,49,41,58,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,114,101,109,111,118,101,80,114,111,112,40,34,116,97,98,105,110,100,101,120,34,41,59,116,104,105,115,46,104,97,115,95,116,97,98,95,105,110,100,101,120,61,33,116,104,105,115,46,104,97,115,95,116,97,98,95,105,110,100,101,120,125,44,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,118,97,114,32,100,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,59,114,101,116,117,114,110,32,100,63,116,104,105,115,46,116,111,70,105,120,101,100,40,40,98,63,97,58,97,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,40,100,47,49,48,48,41,41,58,40,116,104,105,115,46,110,111,95,100,105,97,112,97,115,111,110,61,33,48,44,48,41,125,44,99,111,110,118,101,114,116,84,111,86,97,108,117,101,58,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,98,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,44,100,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,44,99,61,98,46,116,111,83,116,114,105,110,103,40,41,46,115,112,108,105,116,40,34,46,34,41,91,49,93,44,101,61,100,46,116,111,83,116,114,105,110,103,40,41,46,115,112,108,105,116,40,34,46,34,41,91,49,93,44,103,44,108,44,102,61,48,44,104,61,48,59,10,105,102,40,48,61,61,61,97,41,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,59,105,102,40,49,48,48,61,61,61,97,41,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,59,99,38,38,40,102,61,103,61,99,46,108,101,110,103,116,104,41,59,101,38,38,40,102,61,108,61,101,46,108,101,110,103,116,104,41,59,103,38,38,108,38,38,40,102,61,103,62,61,108,63,103,58,108,41,59,48,62,98,38,38,40,104,61,77,97,116,104,46,97,98,115,40,98,41,44,98,61,43,40,98,43,104,41,46,116,111,70,105,120,101,100,40,102,41,44,100,61,43,40,100,43,104,41,46,116,111,70,105,120,101,100,40,102,41,41,59,97,61,40,100,45,98,41,47,49,48,48,42,97,43,98,59,40,98,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,46,116,111,83,116,114,105,110,103,40,41,46,115,112,108,105,116,40,34,46,34,41,91,49,93,41,63,97,61,43,97,46,116,111,70,105,120,101,100,40,98,46,108,101,110,103,116,104,41,58,40,97,47,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,44,97,42,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,44,97,61,43,97,46,116,111,70,105,120,101,100,40,48,41,41,59,104,38,38,40,97,45,61,104,41,59,104,61,98,63,43,97,46,116,111,70,105,120,101,100,40,98,46,108,101,110,103,116,104,41,58,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,59,104,60,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,63,104,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,58,104,62,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,38,38,40,104,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,41,59,114,101,116,117,114,110,32,104,125,44,99,97,108,99,87,105,116,104,83,116,101,112,58,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,98,61,10,77,97,116,104,46,114,111,117,110,100,40,97,47,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,116,101,112,41,42,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,116,101,112,59,49,48,48,60,98,38,38,40,98,61,49,48,48,41,59,49,48,48,61,61,61,97,38,38,40,98,61,49,48,48,41,59,114,101,116,117,114,110,32,116,104,105,115,46,116,111,70,105,120,101,100,40,98,41,125,44,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,58,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,118,97,114,32,99,61,116,104,105,115,46,111,112,116,105,111,110,115,59,105,102,40,33,99,46,109,105,110,95,105,110,116,101,114,118,97,108,41,114,101,116,117,114,110,32,97,59,97,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,97,41,59,98,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,98,41,59,34,102,114,111,109,34,61,61,61,100,63,98,45,97,60,99,46,109,105,110,95,105,110,116,101,114,118,97,108,38,38,40,97,61,98,45,99,46,109,105,110,95,105,110,116,101,114,118,97,108,41,58,97,45,98,60,99,46,109,105,110,95,105,110,116,101,114,118,97,108,38,38,40,97,61,98,43,99,46,109,105,110,95,105,110,116,101,114,118,97,108,41,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,97,41,125,44,99,104,101,99,107,77,97,120,73,110,116,101,114,118,97,108,58,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,118,97,114,32,99,61,116,104,105,115,46,111,112,116,105,111,110,115,59,105,102,40,33,99,46,109,97,120,95,105,110,116,101,114,118,97,108,41,114,101,116,117,114,110,32,97,59,97,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,97,41,59,98,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,98,41,59,34,102,114,111,109,34,61,61,61,10,100,63,98,45,97,62,99,46,109,97,120,95,105,110,116,101,114,118,97,108,38,38,40,97,61,98,45,99,46,109,97,120,95,105,110,116,101,114,118,97,108,41,58,97,45,98,62,99,46,109,97,120,95,105,110,116,101,114,118,97,108,38,38,40,97,61,98,43,99,46,109,97,120,95,105,110,116,101,114,118,97,108,41,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,97,41,125,44,99,104,101,99,107,68,105,97,112,97,115,111,110,58,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,97,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,97,41,59,118,97,114,32,99,61,116,104,105,115,46,111,112,116,105,111,110,115,59,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,98,38,38,40,98,61,99,46,109,105,110,41,59,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,100,38,38,40,100,61,99,46,109,97,120,41,59,97,60,98,38,38,40,97,61,98,41,59,97,62,100,38,38,40,97,61,100,41,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,97,41,125,44,116,111,70,105,120,101,100,58,102,117,110,99,116,105,111,110,40,97,41,123,97,61,97,46,116,111,70,105,120,101,100,40,50,48,41,59,114,101,116,117,114,110,43,97,125,44,95,112,114,101,116,116,105,102,121,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,95,101,110,97,98,108,101,100,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,40,97,41,58,10,116,104,105,115,46,112,114,101,116,116,105,102,121,40,97,41,58,97,125,44,112,114,101,116,116,105,102,121,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,116,111,83,116,114,105,110,103,40,41,46,114,101,112,108,97,99,101,40,47,40,92,100,123,49,44,51,125,40,63,61,40,63,58,92,100,92,100,92,100,41,43,40,63,33,92,100,41,41,41,47,103,44,34,36,49,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,95,115,101,112,97,114,97,116,111,114,41,125,44,99,104,101,99,107,69,100,103,101,115,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,105,102,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,102,111,114,99,101,95,101,100,103,101,115,41,114,101,116,117,114,110,32,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,59,48,62,97,63,97,61,48,58,97,62,49,48,48,45,98,38,38,40,97,61,49,48,48,45,98,41,59,114,101,116,117,114,110,32,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,125,44,118,97,108,105,100,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,44,98,61,116,104,105,115,46,114,101,115,117,108,116,44,100,61,97,46,118,97,108,117,101,115,44,99,61,100,46,108,101,110,103,116,104,44,101,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,109,105,110,38,38,40,97,46,109,105,110,61,43,97,46,109,105,110,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,109,97,120,38,38,40,97,46,109,97,120,61,43,97,46,109,97,120,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,38,38,40,97,46,102,114,111,109,61,43,97,46,102,114,111,109,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,38,38,40,97,46,116,111,61,43,97,46,116,111,41,59,10,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,115,116,101,112,38,38,40,97,46,115,116,101,112,61,43,97,46,115,116,101,112,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,105,110,38,38,40,97,46,102,114,111,109,95,109,105,110,61,43,97,46,102,114,111,109,95,109,105,110,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,97,120,38,38,40,97,46,102,114,111,109,95,109,97,120,61,43,97,46,102,114,111,109,95,109,97,120,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,105,110,38,38,40,97,46,116,111,95,109,105,110,61,43,97,46,116,111,95,109,105,110,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,97,120,38,38,40,97,46,116,111,95,109,97,120,61,43,97,46,116,111,95,109,97,120,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,103,114,105,100,95,110,117,109,38,38,40,97,46,103,114,105,100,95,110,117,109,61,43,97,46,103,114,105,100,95,110,117,109,41,59,97,46,109,97,120,60,97,46,109,105,110,38,38,40,97,46,109,97,120,61,97,46,109,105,110,41,59,105,102,40,99,41,102,111,114,40,97,46,112,95,118,97,108,117,101,115,61,91,93,44,97,46,109,105,110,61,48,44,97,46,109,97,120,61,99,45,49,44,97,46,115,116,101,112,61,49,44,97,46,103,114,105,100,95,110,117,109,61,97,46,109,97,120,44,97,46,103,114,105,100,95,115,110,97,112,61,33,48,44,101,61,48,59,101,60,99,59,101,43,43,41,123,118,97,114,32,103,61,43,100,91,101,93,59,105,115,78,97,78,40,103,41,63,103,61,100,91,101,93,58,40,100,91,101,93,61,103,44,103,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,103,41,41,59,97,46,112,95,118,97,108,117,101,115,46,112,117,115,104,40,103,41,125,105,102,40,34,110,117,109,98,101,114,34,33,61,61,10,116,121,112,101,111,102,32,97,46,102,114,111,109,124,124,105,115,78,97,78,40,97,46,102,114,111,109,41,41,97,46,102,114,111,109,61,97,46,109,105,110,59,105,102,40,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,97,46,116,111,124,124,105,115,78,97,78,40,97,46,116,111,41,41,97,46,116,111,61,97,46,109,97,120,59,34,115,105,110,103,108,101,34,61,61,61,97,46,116,121,112,101,63,40,97,46,102,114,111,109,60,97,46,109,105,110,38,38,40,97,46,102,114,111,109,61,97,46,109,105,110,41,44,97,46,102,114,111,109,62,97,46,109,97,120,38,38,40,97,46,102,114,111,109,61,97,46,109,97,120,41,41,58,40,97,46,102,114,111,109,60,97,46,109,105,110,38,38,40,97,46,102,114,111,109,61,97,46,109,105,110,41,44,97,46,102,114,111,109,62,97,46,109,97,120,38,38,40,97,46,102,114,111,109,61,97,46,109,97,120,41,44,97,46,116,111,60,97,46,109,105,110,38,38,40,97,46,116,111,61,97,46,109,105,110,41,44,97,46,116,111,62,97,46,109,97,120,38,38,40,97,46,116,111,61,97,46,109,97,120,41,44,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,102,114,111,109,38,38,40,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,102,114,111,109,33,61,61,97,46,102,114,111,109,38,38,97,46,102,114,111,109,62,97,46,116,111,38,38,40,97,46,102,114,111,109,61,97,46,116,111,41,44,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,116,111,33,61,61,97,46,116,111,38,38,97,46,116,111,60,97,46,102,114,111,109,38,38,40,97,46,116,111,61,97,46,102,114,111,109,41,41,44,97,46,102,114,111,109,62,97,46,116,111,38,38,40,97,46,102,114,111,109,61,97,46,116,111,41,44,97,46,116,111,60,97,46,102,114,111,109,38,38,40,97,46,116,111,61,97,46,102,114,111,109,41,41,59,105,102,40,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,97,46,115,116,101,112,124,124,10,105,115,78,97,78,40,97,46,115,116,101,112,41,124,124,33,97,46,115,116,101,112,124,124,48,62,97,46,115,116,101,112,41,97,46,115,116,101,112,61,49,59,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,105,110,38,38,97,46,102,114,111,109,60,97,46,102,114,111,109,95,109,105,110,38,38,40,97,46,102,114,111,109,61,97,46,102,114,111,109,95,109,105,110,41,59,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,97,120,38,38,97,46,102,114,111,109,62,97,46,102,114,111,109,95,109,97,120,38,38,40,97,46,102,114,111,109,61,97,46,102,114,111,109,95,109,97,120,41,59,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,105,110,38,38,97,46,116,111,60,97,46,116,111,95,109,105,110,38,38,40,97,46,116,111,61,97,46,116,111,95,109,105,110,41,59,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,97,120,38,38,97,46,102,114,111,109,62,97,46,116,111,95,109,97,120,38,38,40,97,46,116,111,61,97,46,116,111,95,109,97,120,41,59,105,102,40,98,41,123,98,46,109,105,110,33,61,61,97,46,109,105,110,38,38,40,98,46,109,105,110,61,97,46,109,105,110,41,59,98,46,109,97,120,33,61,61,97,46,109,97,120,38,38,40,98,46,109,97,120,61,97,46,109,97,120,41,59,105,102,40,98,46,102,114,111,109,60,98,46,109,105,110,124,124,98,46,102,114,111,109,62,98,46,109,97,120,41,98,46,102,114,111,109,61,97,46,102,114,111,109,59,105,102,40,98,46,116,111,60,98,46,109,105,110,124,124,98,46,116,111,62,98,46,109,97,120,41,98,46,116,111,61,97,46,116,111,125,105,102,40,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,97,46,109,105,110,95,105,110,116,101,114,118,97,108,124,124,105,115,78,97,78,40,97,46,109,105,110,95,105,110,116,101,114,118,97,108,41,124,124,10,33,97,46,109,105,110,95,105,110,116,101,114,118,97,108,124,124,48,62,97,46,109,105,110,95,105,110,116,101,114,118,97,108,41,97,46,109,105,110,95,105,110,116,101,114,118,97,108,61,48,59,105,102,40,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,97,46,109,97,120,95,105,110,116,101,114,118,97,108,124,124,105,115,78,97,78,40,97,46,109,97,120,95,105,110,116,101,114,118,97,108,41,124,124,33,97,46,109,97,120,95,105,110,116,101,114,118,97,108,124,124,48,62,97,46,109,97,120,95,105,110,116,101,114,118,97,108,41,97,46,109,97,120,95,105,110,116,101,114,118,97,108,61,48,59,97,46,109,105,110,95,105,110,116,101,114,118,97,108,38,38,97,46,109,105,110,95,105,110,116,101,114,118,97,108,62,97,46,109,97,120,45,97,46,109,105,110,38,38,40,97,46,109,105,110,95,105,110,116,101,114,118,97,108,61,97,46,109,97,120,45,97,46,109,105,110,41,59,97,46,109,97,120,95,105,110,116,101,114,118,97,108,38,38,97,46,109,97,120,95,105,110,116,101,114,118,97,108,62,97,46,109,97,120,45,97,46,109,105,110,38,38,40,97,46,109,97,120,95,105,110,116,101,114,118,97,108,61,97,46,109,97,120,45,97,46,109,105,110,41,125,44,100,101,99,111,114,97,116,101,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,118,97,114,32,100,61,34,34,44,99,61,116,104,105,115,46,111,112,116,105,111,110,115,59,99,46,112,114,101,102,105,120,38,38,40,100,43,61,99,46,112,114,101,102,105,120,41,59,100,43,61,97,59,99,46,109,97,120,95,112,111,115,116,102,105,120,38,38,40,99,46,118,97,108,117,101,115,46,108,101,110,103,116,104,38,38,97,61,61,61,99,46,112,95,118,97,108,117,101,115,91,99,46,109,97,120,93,63,40,100,43,61,99,46,109,97,120,95,112,111,115,116,102,105,120,44,99,46,112,111,115,116,102,105,120,38,38,40,100,43,61,34,32,34,41,41,58,98,61,61,61,99,46,109,97,120,38,38,40,100,43,61,99,46,109,97,120,95,112,111,115,116,102,105,120,44,10,99,46,112,111,115,116,102,105,120,38,38,40,100,43,61,34,32,34,41,41,41,59,99,46,112,111,115,116,102,105,120,38,38,40,100,43,61,99,46,112,111,115,116,102,105,120,41,59,114,101,116,117,114,110,32,100,125,44,117,112,100,97,116,101,70,114,111,109,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,61,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,59,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,59,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,114,101,116,116,121,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,38,38,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,125,44,117,112,100,97,116,101,84,111,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,115,117,108,116,46,116,111,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,59,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,59,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,114,101,116,116,121,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,38,38,10,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,125,44,117,112,100,97,116,101,82,101,115,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,115,117,108,116,46,109,105,110,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,59,116,104,105,115,46,114,101,115,117,108,116,46,109,97,120,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,59,116,104,105,115,46,117,112,100,97,116,101,70,114,111,109,40,41,59,116,104,105,115,46,117,112,100,97,116,101,84,111,40,41,125,44,97,112,112,101,110,100,71,114,105,100,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,103,114,105,100,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,44,98,59,118,97,114,32,100,61,97,46,109,97,120,45,97,46,109,105,110,59,118,97,114,32,99,61,97,46,103,114,105,100,95,110,117,109,44,101,61,52,44,103,61,34,34,59,116,104,105,115,46,99,97,108,99,71,114,105,100,77,97,114,103,105,110,40,41,59,105,102,40,97,46,103,114,105,100,95,115,110,97,112,41,105,102,40,53,48,60,100,41,123,99,61,53,48,47,97,46,115,116,101,112,59,118,97,114,32,102,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,46,115,116,101,112,47,46,53,41,125,101,108,115,101,32,99,61,100,47,97,46,115,116,101,112,44,102,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,46,115,116,101,112,47,40,100,47,49,48,48,41,41,59,101,108,115,101,32,102,61,116,104,105,115,46,116,111,70,105,120,101,100,40,49,48,48,47,99,41,59,52,60,99,38,38,40,101,61,51,41,59,55,60,99,38,38,40,101,61,50,41,59,49,52,60,99,38,38,40,101,61,49,41,59,50,56,60,99,38,38,40,101,61,48,41,59,10,102,111,114,40,100,61,48,59,100,60,99,43,49,59,100,43,43,41,123,118,97,114,32,107,61,101,59,118,97,114,32,104,61,116,104,105,115,46,116,111,70,105,120,101,100,40,102,42,100,41,59,49,48,48,60,104,38,38,40,104,61,49,48,48,41,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,91,100,93,61,104,59,118,97,114,32,109,61,40,104,45,102,42,40,100,45,49,41,41,47,40,107,43,49,41,59,102,111,114,40,98,61,49,59,98,60,61,107,38,38,48,33,61,61,104,59,98,43,43,41,123,118,97,114,32,110,61,116,104,105,115,46,116,111,70,105,120,101,100,40,104,45,109,42,98,41,59,103,43,61,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,103,114,105,100,45,112,111,108,32,115,109,97,108,108,34,32,115,116,121,108,101,61,34,108,101,102,116,58,32,39,43,110,43,39,37,34,62,60,47,115,112,97,110,62,39,125,103,43,61,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,103,114,105,100,45,112,111,108,34,32,115,116,121,108,101,61,34,108,101,102,116,58,32,39,43,104,43,39,37,34,62,60,47,115,112,97,110,62,39,59,98,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,104,41,59,98,61,97,46,118,97,108,117,101,115,46,108,101,110,103,116,104,63,97,46,112,95,118,97,108,117,101,115,91,98,93,58,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,98,41,59,103,43,61,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,103,114,105,100,45,116,101,120,116,32,106,115,45,103,114,105,100,45,116,101,120,116,45,39,43,100,43,39,34,32,115,116,121,108,101,61,34,108,101,102,116,58,32,39,43,104,43,39,37,34,62,39,43,98,43,34,60,47,115,112,97,110,62,34,125,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,110,117,109,61,77,97,116,104,46,99,101,105,108,40,99,43,49,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,100,100,67,108,97,115,115,40,34,105,114,115,45,119,105,116,104,45,103,114,105,100,34,41,59,10,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,46,104,116,109,108,40,103,41,59,116,104,105,115,46,99,97,99,104,101,71,114,105,100,76,97,98,101,108,115,40,41,125,125,44,99,97,99,104,101,71,114,105,100,76,97,98,101,108,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,44,98,61,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,110,117,109,59,102,111,114,40,97,61,48,59,97,60,98,59,97,43,43,41,123,118,97,114,32,100,61,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,46,102,105,110,100,40,34,46,106,115,45,103,114,105,100,45,116,101,120,116,45,34,43,97,41,59,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,46,112,117,115,104,40,100,41,125,116,104,105,115,46,99,97,108,99,71,114,105,100,76,97,98,101,108,115,40,41,125,44,99,97,108,99,71,114,105,100,76,97,98,101,108,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,59,118,97,114,32,98,61,91,93,59,118,97,114,32,100,61,91,93,44,99,61,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,110,117,109,59,102,111,114,40,97,61,48,59,97,60,99,59,97,43,43,41,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,119,91,97,93,61,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,91,97,93,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,97,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,119,91,97,93,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,97,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,97,93,47,10,50,41,44,98,91,97,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,91,97,93,45,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,97,93,41,44,100,91,97,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,98,91,97,93,43,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,97,93,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,102,111,114,99,101,95,101,100,103,101,115,38,38,40,98,91,48,93,60,45,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,38,38,40,98,91,48,93,61,45,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,44,100,91,48,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,98,91,48,93,43,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,48,93,41,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,48,93,61,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,41,44,100,91,99,45,49,93,62,49,48,48,43,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,38,38,40,100,91,99,45,49,93,61,49,48,48,43,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,44,98,91,99,45,49,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,100,91,99,45,49,93,45,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,99,45,49,93,41,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,99,45,49,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,99,45,49,93,45,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,41,41,41,59,116,104,105,115,46,99,97,108,99,71,114,105,100,67,111,108,108,105,115,105,111,110,40,50,44,10,98,44,100,41,59,116,104,105,115,46,99,97,108,99,71,114,105,100,67,111,108,108,105,115,105,111,110,40,52,44,98,44,100,41,59,102,111,114,40,97,61,48,59,97,60,99,59,97,43,43,41,98,61,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,91,97,93,91,48,93,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,97,93,33,61,61,78,117,109,98,101,114,46,80,79,83,73,84,73,86,69,95,73,78,70,73,78,73,84,89,38,38,40,98,46,115,116,121,108,101,46,109,97,114,103,105,110,76,101,102,116,61,45,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,97,93,43,34,37,34,41,125,44,99,97,108,99,71,114,105,100,67,111,108,108,105,115,105,111,110,58,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,118,97,114,32,99,44,101,61,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,110,117,109,59,102,111,114,40,99,61,48,59,99,60,101,59,99,43,61,97,41,123,118,97,114,32,103,61,99,43,97,47,50,59,105,102,40,103,62,61,101,41,98,114,101,97,107,59,118,97,114,32,102,61,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,91,103,93,91,48,93,59,102,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,100,91,99,93,60,61,98,91,103,93,63,34,118,105,115,105,98,108,101,34,58,34,104,105,100,100,101,110,34,125,125,44,99,97,108,99,71,114,105,100,77,97,114,103,105,110,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,111,112,116,105,111,110,115,46,103,114,105,100,95,109,97,114,103,105,110,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,104,97,110,100,108,101,61,10,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,58,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,104,97,110,100,108,101,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,44,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,45,46,49,41,44,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,116,104,105,115,46,116,111,70,105,120,101,100,40,49,48,48,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,41,43,34,37,34,44,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,43,34,37,34,41,41,125,44,117,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,97,41,123,116,104,105,115,46,105,110,112,117,116,38,38,40,116,104,105,115,46,105,115,95,117,112,100,97,116,101,61,33,48,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,44,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,102,114,111,109,61,10,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,44,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,116,111,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,44,116,104,105,115,46,111,112,116,105,111,110,115,61,102,46,101,120,116,101,110,100,40,116,104,105,115,46,111,112,116,105,111,110,115,44,97,41,44,116,104,105,115,46,118,97,108,105,100,97,116,101,40,41,44,116,104,105,115,46,117,112,100,97,116,101,82,101,115,117,108,116,40,97,41,44,116,104,105,115,46,116,111,103,103,108,101,73,110,112,117,116,40,41,44,116,104,105,115,46,114,101,109,111,118,101,40,41,44,116,104,105,115,46,105,110,105,116,40,33,48,41,41,125,44,114,101,115,101,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,110,112,117,116,38,38,40,116,104,105,115,46,117,112,100,97,116,101,82,101,115,117,108,116,40,41,44,116,104,105,115,46,117,112,100,97,116,101,40,41,41,125,44,100,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,110,112,117,116,38,38,40,116,104,105,115,46,116,111,103,103,108,101,73,110,112,117,116,40,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,114,101,97,100,111,110,108,121,34,44,33,49,41,44,102,46,100,97,116,97,40,116,104,105,115,46,105,110,112,117,116,44,34,105,111,110,82,97,110,103,101,83,108,105,100,101,114,34,44,110,117,108,108,41,44,116,104,105,115,46,114,101,109,111,118,101,40,41,44,116,104,105,115,46,111,112,116,105,111,110,115,61,116,104,105,115,46,105,110,112,117,116,61,110,117,108,108,41,125,125,59,102,46,102,110,46,105,111,110,82,97,110,103,101,83,108,105,100,101,114,61,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,102,46,100,97,116,97,40,116,104,105,115,44,34,105,111,110,82,97,110,103,101,83,108,105,100,101,114,34,41,124,124,10,102,46,100,97,116,97,40,116,104,105,115,44,34,105,111,110,82,97,110,103,101,83,108,105,100,101,114,34,44,110,101,119,32,113,40,116,104,105,115,44,97,44,116,43,43,41,41,125,41,125,59,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,97,61,48,44,98,61,91,34,109,115,34,44,34,109,111,122,34,44,34,119,101,98,107,105,116,34,44,34,111,34,93,44,100,61,48,59,100,60,98,46,108,101,110,103,116,104,38,38,33,107,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,59,43,43,100,41,107,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,61,107,91,98,91,100,93,43,34,82,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,34,93,44,107,46,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,61,107,91,98,91,100,93,43,34,67,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,34,93,124,124,107,91,98,91,100,93,43,34,67,97,110,99,101,108,82,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,34,93,59,107,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,124,124,40,107,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,61,102,117,110,99,116,105,111,110,40,98,44,100,41,123,118,97,114,32,99,61,40,110,101,119,32,68,97,116,101,41,46,103,101,116,84,105,109,101,40,41,44,101,61,77,97,116,104,46,109,97,120,40,48,44,49,54,45,40,99,45,97,41,41,44,102,61,107,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,98,40,99,43,101,41,125,44,101,41,59,97,61,99,43,101,59,114,101,116,117,114,110,32,102,125,41,59,107,46,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,124,124,40,107,46,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,61,10,102,117,110,99,116,105,111,110,40,97,41,123,99,108,101,97,114,84,105,109,101,111,117,116,40,97,41,125,41,125,41,40,41,125,41,59,10,10,47,42,33,32,76,105,116,121,32,45,32,118,51,46,48,46,48,45,100,101,118,32,45,32,50,48,49,57,45,48,56,45,48,55,10,42,32,104,116,116,112,58,47,47,115,111,114,103,97,108,108,97,46,99,111,109,47,108,105,116,121,47,10,42,32,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,53,45,50,48,49,57,32,74,97,110,32,83,111,114,103,97,108,108,97,59,32,76,105,99,101,110,115,101,100,32,77,73,84,32,42,47,10,10,33,102,117,110,99,116,105,111,110,40,97,44,98,41,123,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,106,113,117,101,114,121,34,93,44,102,117,110,99,116,105,111,110,40,99,41,123,114,101,116,117,114,110,32,98,40,97,44,99,41,125,41,58,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,109,111,100,117,108,101,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,98,40,97,44,114,101,113,117,105,114,101,40,34,106,113,117,101,114,121,34,41,41,58,97,46,108,105,116,121,61,98,40,97,44,97,46,106,81,117,101,114,121,124,124,97,46,90,101,112,116,111,41,125,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,116,104,105,115,44,102,117,110,99,116,105,111,110,40,97,44,98,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,99,40,97,41,123,118,97,114,32,98,61,121,40,41,59,114,101,116,117,114,110,32,71,38,38,97,46,108,101,110,103,116,104,63,40,97,46,111,110,101,40,71,44,98,46,114,101,115,111,108,118,101,41,44,115,101,116,84,105,109,101,111,117,116,40,98,46,114,101,115,111,108,118,101,44,53,48,48,41,41,58,98,46,114,101,115,111,108,118,101,40,41,44,98,46,112,114,111,109,105,115,101,40,41,125,102,117,110,99,116,105,111,110,32,100,40,97,44,99,44,100,41,123,105,102,40,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,98,46,101,120,116,101,110,100,40,123,125,44,97,41,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,99,41,123,105,102,40,118,111,105,100,32,48,61,61,61,100,41,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,97,91,99,93,63,110,117,108,108,58,97,91,99,93,59,97,91,99,93,61,100,125,101,108,115,101,32,98,46,101,120,116,101,110,100,40,97,44,99,41,59,114,101,116,117,114,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,101,40,97,41,123,118,97,114,32,98,61,97,46,105,110,100,101,120,79,102,40,34,63,34,41,59,98,62,45,49,38,38,40,97,61,97,46,115,117,98,115,116,114,40,98,43,49,41,41,59,102,111,114,40,118,97,114,32,99,44,100,61,100,101,99,111,100,101,85,82,73,40,97,46,115,112,108,105,116,40,34,35,34,41,91,48,93,41,46,115,112,108,105,116,40,34,38,34,41,44,101,61,123,125,44,102,61,48,44,103,61,100,46,108,101,110,103,116,104,59,102,60,103,59,102,43,43,41,100,91,102,93,38,38,40,99,61,100,91,102,93,46,115,112,108,105,116,40,34,61,34,41,44,101,91,99,91,48,93,93,61,99,91,49,93,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,102,40,97,44,99,41,123,105,102,40,33,99,41,114,101,116,117,114,110,32,97,59,105,102,40,34,115,116,114,105,110,103,34,61,61,61,98,46,116,121,112,101,40,99,41,38,38,40,99,61,101,40,99,41,41,44,97,46,105,110,100,101,120,79,102,40,34,63,34,41,62,45,49,41,123,118,97,114,32,100,61,97,46,115,112,108,105,116,40,34,63,34,41,59,97,61,100,46,115,104,105,102,116,40,41,44,99,61,98,46,101,120,116,101,110,100,40,123,125,44,101,40,100,91,48,93,41,44,99,41,125,114,101,116,117,114,110,32,97,43,34,63,34,43,98,46,112,97,114,97,109,40,99,41,125,102,117,110,99,116,105,111,110,32,103,40,97,44,98,41,123,118,97,114,32,99,61,97,46,105,110,100,101,120,79,102,40,34,35,34,41,59,114,101,116,117,114,110,45,49,61,61,61,99,63,98,58,40,99,62,48,38,38,40,97,61,97,46,115,117,98,115,116,114,40,99,41,41,44,98,43,97,41,125,102,117,110,99,116,105,111,110,32,104,40,97,44,98,44,99,44,100,41,123,114,101,116,117,114,110,32,98,38,38,98,46,101,108,101,109,101,110,116,40,41,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,105,102,114,97,109,101,34,41,44,99,38,38,40,97,61,102,40,97,44,99,41,41,44,100,38,38,40,97,61,103,40,100,44,97,41,41,44,39,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,45,105,102,114,97,109,101,45,99,111,110,116,97,105,110,101,114,34,62,60,105,102,114,97,109,101,32,102,114,97,109,101,98,111,114,100,101,114,61,34,48,34,32,97,108,108,111,119,102,117,108,108,115,99,114,101,101,110,32,97,108,108,111,119,61,34,102,117,108,108,115,99,114,101,101,110,34,32,115,114,99,61,34,39,43,97,43,39,34,47,62,60,47,100,105,118,62,39,125,102,117,110,99,116,105,111,110,32,105,40,97,41,123,114,101,116,117,114,110,32,98,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,108,105,116,121,45,101,114,114,111,114,34,47,62,39,41,46,97,112,112,101,110,100,40,97,41,125,102,117,110,99,116,105,111,110,32,106,40,97,44,99,41,123,118,97,114,32,100,61,99,46,111,112,101,110,101,114,40,41,38,38,99,46,111,112,101,110,101,114,40,41,46,100,97,116,97,40,34,108,105,116,121,45,100,101,115,99,34,41,124,124,34,105,109,103,34,44,101,61,98,40,39,60,105,109,103,32,115,114,99,61,34,39,43,97,43,39,34,32,97,108,116,61,34,39,43,100,43,39,34,47,62,39,41,44,102,61,121,40,41,44,103,61,102,117,110,99,116,105,111,110,40,41,123,102,46,114,101,106,101,99,116,40,105,40,34,70,97,105,108,101,100,32,108,111,97,100,105,110,103,32,105,109,97,103,101,34,41,41,125,59,114,101,116,117,114,110,32,101,46,111,110,40,34,108,111,97,100,34,44,102,117,110,99,116,105,111,110,40,41,123,105,102,40,48,61,61,61,116,104,105,115,46,110,97,116,117,114,97,108,87,105,100,116,104,41,114,101,116,117,114,110,32,103,40,41,59,102,46,114,101,115,111,108,118,101,40,101,41,125,41,46,111,110,40,34,101,114,114,111,114,34,44,103,41,44,102,46,112,114,111,109,105,115,101,40,41,125,102,117,110,99,116,105,111,110,32,107,40,97,44,99,41,123,118,97,114,32,100,44,101,44,102,59,116,114,121,123,100,61,98,40,97,41,125,99,97,116,99,104,40,97,41,123,114,101,116,117,114,110,33,49,125,114,101,116,117,114,110,33,33,100,46,108,101,110,103,116,104,38,38,40,101,61,98,40,39,60,105,32,115,116,121,108,101,61,34,100,105,115,112,108,97,121,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,34,47,62,39,41,44,102,61,100,46,104,97,115,67,108,97,115,115,40,34,108,105,116,121,45,104,105,100,101,34,41,44,99,46,101,108,101,109,101,110,116,40,41,46,111,110,101,40,34,108,105,116,121,58,114,101,109,111,118,101,34,44,102,117,110,99,116,105,111,110,40,41,123,101,46,98,101,102,111,114,101,40,100,41,46,114,101,109,111,118,101,40,41,44,102,38,38,33,100,46,99,108,111,115,101,115,116,40,34,46,108,105,116,121,45,99,111,110,116,101,110,116,34,41,46,108,101,110,103,116,104,38,38,100,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,104,105,100,101,34,41,125,41,44,100,46,114,101,109,111,118,101,67,108,97,115,115,40,34,108,105,116,121,45,104,105,100,101,34,41,46,97,102,116,101,114,40,101,41,41,125,102,117,110,99,116,105,111,110,32,108,40,97,44,98,41,123,114,101,116,117,114,110,32,104,40,97,44,98,41,125,102,117,110,99,116,105,111,110,32,109,40,41,123,114,101,116,117,114,110,32,119,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,99,108,105,101,110,116,72,101,105,103,104,116,63,119,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,99,108,105,101,110,116,72,101,105,103,104,116,58,77,97,116,104,46,114,111,117,110,100,40,120,46,104,101,105,103,104,116,40,41,41,125,102,117,110,99,116,105,111,110,32,110,40,97,41,123,118,97,114,32,98,61,115,40,41,59,98,38,38,40,50,55,61,61,61,97,46,107,101,121,67,111,100,101,38,38,98,46,111,112,116,105,111,110,115,40,34,101,115,99,34,41,38,38,98,46,99,108,111,115,101,40,41,44,57,61,61,61,97,46,107,101,121,67,111,100,101,38,38,111,40,97,44,98,41,41,125,102,117,110,99,116,105,111,110,32,111,40,97,44,98,41,123,118,97,114,32,99,61,98,46,101,108,101,109,101,110,116,40,41,46,102,105,110,100,40,68,41,44,100,61,99,46,105,110,100,101,120,40,119,46,97,99,116,105,118,101,69,108,101,109,101,110,116,41,59,97,46,115,104,105,102,116,75,101,121,38,38,100,60,61,48,63,40,99,46,103,101,116,40,99,46,108,101,110,103,116,104,45,49,41,46,102,111,99,117,115,40,41,44,97,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,41,58,97,46,115,104,105,102,116,75,101,121,124,124,100,33,61,61,99,46,108,101,110,103,116,104,45,49,124,124,40,99,46,103,101,116,40,48,41,46,102,111,99,117,115,40,41,44,97,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,41,125,102,117,110,99,116,105,111,110,32,112,40,41,123,98,46,101,97,99,104,40,65,44,102,117,110,99,116,105,111,110,40,97,44,98,41,123,98,46,114,101,115,105,122,101,40,41,125,41,125,102,117,110,99,116,105,111,110,32,113,40,97,41,123,49,61,61,61,65,46,117,110,115,104,105,102,116,40,97,41,38,38,40,122,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,97,99,116,105,118,101,34,41,44,120,46,111,110,40,123,114,101,115,105,122,101,58,112,44,107,101,121,100,111,119,110,58,110,125,41,41,44,98,40,34,98,111,100,121,32,62,32,42,34,41,46,110,111,116,40,97,46,101,108,101,109,101,110,116,40,41,41,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,104,105,100,100,101,110,34,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,98,40,116,104,105,115,41,59,118,111,105,100,32,48,61,61,61,97,46,100,97,116,97,40,67,41,38,38,97,46,100,97,116,97,40,67,44,97,46,97,116,116,114,40,66,41,124,124,110,117,108,108,41,125,41,46,97,116,116,114,40,66,44,34,116,114,117,101,34,41,125,102,117,110,99,116,105,111,110,32,114,40,97,41,123,118,97,114,32,99,59,97,46,101,108,101,109,101,110,116,40,41,46,97,116,116,114,40,66,44,34,116,114,117,101,34,41,44,49,61,61,61,65,46,108,101,110,103,116,104,38,38,40,122,46,114,101,109,111,118,101,67,108,97,115,115,40,34,108,105,116,121,45,97,99,116,105,118,101,34,41,44,120,46,111,102,102,40,123,114,101,115,105,122,101,58,112,44,107,101,121,100,111,119,110,58,110,125,41,41,44,65,61,98,46,103,114,101,112,40,65,44,102,117,110,99,116,105,111,110,40,98,41,123,114,101,116,117,114,110,32,97,33,61,61,98,125,41,44,99,61,65,46,108,101,110,103,116,104,63,65,91,48,93,46,101,108,101,109,101,110,116,40,41,58,98,40,34,46,108,105,116,121,45,104,105,100,100,101,110,34,41,44,99,46,114,101,109,111,118,101,67,108,97,115,115,40,34,108,105,116,121,45,104,105,100,100,101,110,34,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,98,40,116,104,105,115,41,44,99,61,97,46,100,97,116,97,40,67,41,59,99,63,97,46,97,116,116,114,40,66,44,99,41,58,97,46,114,101,109,111,118,101,65,116,116,114,40,66,41,44,97,46,114,101,109,111,118,101,68,97,116,97,40,67,41,125,41,125,102,117,110,99,116,105,111,110,32,115,40,41,123,114,101,116,117,114,110,32,48,61,61,61,65,46,108,101,110,103,116,104,63,110,117,108,108,58,65,91,48,93,125,102,117,110,99,116,105,111,110,32,116,40,97,44,99,44,100,44,101,41,123,118,97,114,32,102,44,103,61,34,105,110,108,105,110,101,34,44,104,61,98,46,101,120,116,101,110,100,40,123,125,44,100,41,59,114,101,116,117,114,110,32,101,38,38,104,91,101,93,63,40,102,61,104,91,101,93,40,97,44,99,41,44,103,61,101,41,58,40,98,46,101,97,99,104,40,91,34,105,110,108,105,110,101,34,44,34,105,102,114,97,109,101,34,93,44,102,117,110,99,116,105,111,110,40,97,44,98,41,123,100,101,108,101,116,101,32,104,91,98,93,44,104,91,98,93,61,100,91,98,93,125,41,44,98,46,101,97,99,104,40,104,44,102,117,110,99,116,105,111,110,40,98,44,100,41,123,114,101,116,117,114,110,33,100,124,124,40,33,40,33,100,46,116,101,115,116,124,124,100,46,116,101,115,116,40,97,44,99,41,41,124,124,40,102,61,100,40,97,44,99,41,44,33,49,33,61,61,102,63,40,103,61,98,44,33,49,41,58,118,111,105,100,32,48,41,41,125,41,41,44,123,104,97,110,100,108,101,114,58,103,44,99,111,110,116,101,110,116,58,102,124,124,34,34,125,125,102,117,110,99,116,105,111,110,32,117,40,97,44,101,44,102,44,103,41,123,102,117,110,99,116,105,111,110,32,104,40,97,41,123,107,61,98,40,97,41,46,99,115,115,40,34,109,97,120,45,104,101,105,103,104,116,34,44,109,40,41,43,34,112,120,34,41,44,106,46,102,105,110,100,40,34,46,108,105,116,121,45,108,111,97,100,101,114,34,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,98,40,116,104,105,115,41,59,99,40,97,41,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,97,46,114,101,109,111,118,101,40,41,125,41,125,41,44,106,46,114,101,109,111,118,101,67,108,97,115,115,40,34,108,105,116,121,45,108,111,97,100,105,110,103,34,41,46,102,105,110,100,40,34,46,108,105,116,121,45,99,111,110,116,101,110,116,34,41,46,101,109,112,116,121,40,41,46,97,112,112,101,110,100,40,107,41,44,110,61,33,48,44,107,46,116,114,105,103,103,101,114,40,34,108,105,116,121,58,114,101,97,100,121,34,44,91,108,93,41,125,118,97,114,32,105,44,106,44,107,44,108,61,116,104,105,115,44,110,61,33,49,44,111,61,33,49,59,101,61,98,46,101,120,116,101,110,100,40,123,125,44,69,44,101,41,44,106,61,98,40,101,46,116,101,109,112,108,97,116,101,41,44,108,46,101,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,125,44,108,46,111,112,101,110,101,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,125,44,108,46,99,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,125,44,108,46,111,112,116,105,111,110,115,61,98,46,112,114,111,120,121,40,100,44,108,44,101,41,44,108,46,104,97,110,100,108,101,114,115,61,98,46,112,114,111,120,121,40,100,44,108,44,101,46,104,97,110,100,108,101,114,115,41,44,108,46,114,101,115,105,122,101,61,102,117,110,99,116,105,111,110,40,41,123,110,38,38,33,111,38,38,107,46,99,115,115,40,34,109,97,120,45,104,101,105,103,104,116,34,44,109,40,41,43,34,112,120,34,41,46,116,114,105,103,103,101,114,40,34,108,105,116,121,58,114,101,115,105,122,101,34,44,91,108,93,41,125,44,108,46,99,108,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,110,38,38,33,111,41,123,111,61,33,48,44,114,40,108,41,59,118,97,114,32,97,61,121,40,41,59,105,102,40,103,38,38,40,119,46,97,99,116,105,118,101,69,108,101,109,101,110,116,61,61,61,106,91,48,93,124,124,98,46,99,111,110,116,97,105,110,115,40,106,91,48,93,44,119,46,97,99,116,105,118,101,69,108,101,109,101,110,116,41,41,41,116,114,121,123,103,46,102,111,99,117,115,40,41,125,99,97,116,99,104,40,97,41,123,125,114,101,116,117,114,110,32,107,46,116,114,105,103,103,101,114,40,34,108,105,116,121,58,99,108,111,115,101,34,44,91,108,93,41,44,106,46,114,101,109,111,118,101,67,108,97,115,115,40,34,108,105,116,121,45,111,112,101,110,101,100,34,41,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,99,108,111,115,101,100,34,41,44,99,40,107,46,97,100,100,40,106,41,41,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,107,46,116,114,105,103,103,101,114,40,34,108,105,116,121,58,114,101,109,111,118,101,34,44,91,108,93,41,44,106,46,114,101,109,111,118,101,40,41,44,106,61,118,111,105,100,32,48,44,97,46,114,101,115,111,108,118,101,40,41,125,41,44,97,46,112,114,111,109,105,115,101,40,41,125,125,44,105,61,116,40,97,44,108,44,101,46,104,97,110,100,108,101,114,115,44,101,46,104,97,110,100,108,101,114,41,44,106,46,97,116,116,114,40,66,44,34,102,97,108,115,101,34,41,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,108,111,97,100,105,110,103,32,108,105,116,121,45,111,112,101,110,101,100,32,108,105,116,121,45,34,43,105,46,104,97,110,100,108,101,114,41,46,97,112,112,101,110,100,84,111,40,34,98,111,100,121,34,41,46,102,111,99,117,115,40,41,46,111,110,40,34,99,108,105,99,107,34,44,34,91,100,97,116,97,45,108,105,116,121,45,99,108,111,115,101,93,34,44,102,117,110,99,116,105,111,110,40,97,41,123,98,40,97,46,116,97,114,103,101,116,41,46,105,115,40,34,91,100,97,116,97,45,108,105,116,121,45,99,108,111,115,101,93,34,41,38,38,108,46,99,108,111,115,101,40,41,125,41,46,116,114,105,103,103,101,114,40,34,108,105,116,121,58,111,112,101,110,34,44,91,108,93,41,44,113,40,108,41,44,98,46,119,104,101,110,40,105,46,99,111,110,116,101,110,116,41,46,97,108,119,97,121,115,40,104,41,125,102,117,110,99,116,105,111,110,32,118,40,97,44,99,44,100,41,123,97,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,63,40,97,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,100,61,98,40,116,104,105,115,41,44,97,61,100,46,100,97,116,97,40,34,108,105,116,121,45,116,97,114,103,101,116,34,41,124,124,100,46,97,116,116,114,40,34,104,114,101,102,34,41,124,124,100,46,97,116,116,114,40,34,115,114,99,34,41,41,58,100,61,98,40,100,41,59,118,97,114,32,101,61,110,101,119,32,117,40,97,44,98,46,101,120,116,101,110,100,40,123,125,44,100,46,100,97,116,97,40,34,108,105,116,121,45,111,112,116,105,111,110,115,34,41,124,124,100,46,100,97,116,97,40,34,108,105,116,121,34,41,44,99,41,44,100,44,119,46,97,99,116,105,118,101,69,108,101,109,101,110,116,41,59,105,102,40,33,97,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,41,114,101,116,117,114,110,32,101,125,118,97,114,32,119,61,97,46,100,111,99,117,109,101,110,116,44,120,61,98,40,97,41,44,121,61,98,46,68,101,102,101,114,114,101,100,44,122,61,98,40,34,104,116,109,108,34,41,44,65,61,91,93,44,66,61,34,97,114,105,97,45,104,105,100,100,101,110,34,44,67,61,34,108,105,116,121,45,34,43,66,44,68,61,39,97,91,104,114,101,102,93,44,97,114,101,97,91,104,114,101,102,93,44,105,110,112,117,116,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,44,115,101,108,101,99,116,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,44,116,101,120,116,97,114,101,97,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,44,98,117,116,116,111,110,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,44,105,102,114,97,109,101,44,111,98,106,101,99,116,44,101,109,98,101,100,44,91,99,111,110,116,101,110,116,101,100,105,116,97,98,108,101,93,44,91,116,97,98,105,110,100,101,120,93,58,110,111,116,40,91,116,97,98,105,110,100,101,120,94,61,34,45,34,93,41,39,44,69,61,123,101,115,99,58,33,48,44,104,97,110,100,108,101,114,58,110,117,108,108,44,104,97,110,100,108,101,114,115,58,123,105,109,97,103,101,58,106,44,105,110,108,105,110,101,58,107,44,105,102,114,97,109,101,58,108,125,44,116,101,109,112,108,97,116,101,58,39,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,34,32,114,111,108,101,61,34,100,105,97,108,111,103,34,32,97,114,105,97,45,108,97,98,101,108,61,34,68,105,97,108,111,103,32,87,105,110,100,111,119,32,40,80,114,101,115,115,32,101,115,99,97,112,101,32,116,111,32,99,108,111,115,101,41,34,32,116,97,98,105,110,100,101,120,61,34,45,49,34,62,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,45,119,114,97,112,34,32,100,97,116,97,45,108,105,116,121,45,99,108,111,115,101,32,114,111,108,101,61,34,100,111,99,117,109,101,110,116,34,62,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,45,108,111,97,100,101,114,34,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,62,76,111,97,100,105,110,103,46,46,46,60,47,100,105,118,62,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,45,99,111,110,116,97,105,110,101,114,34,62,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,45,99,111,110,116,101,110,116,34,62,60,47,100,105,118,62,60,98,117,116,116,111,110,32,99,108,97,115,115,61,34,108,105,116,121,45,99,108,111,115,101,34,32,116,121,112,101,61,34,98,117,116,116,111,110,34,32,97,114,105,97,45,108,97,98,101,108,61,34,67,108,111,115,101,32,40,80,114,101,115,115,32,101,115,99,97,112,101,32,116,111,32,99,108,111,115,101,41,34,32,100,97,116,97,45,108,105,116,121,45,99,108,111,115,101,62,38,116,105,109,101,115,59,60,47,98,117,116,116,111,110,62,60,47,100,105,118,62,60,47,100,105,118,62,60,47,100,105,118,62,39,125,44,70,61,47,40,94,100,97,116,97,58,105,109,97,103,101,92,47,41,124,40,92,46,40,112,110,103,124,106,112,101,63,103,124,103,105,102,124,115,118,103,124,119,101,98,112,124,98,109,112,124,105,99,111,124,116,105,102,102,63,41,40,92,63,92,83,42,41,63,36,41,47,105,44,71,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,119,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,44,98,61,123,87,101,98,107,105,116,84,114,97,110,115,105,116,105,111,110,58,34,119,101,98,107,105,116,84,114,97,110,115,105,116,105,111,110,69,110,100,34,44,77,111,122,84,114,97,110,115,105,116,105,111,110,58,34,116,114,97,110,115,105,116,105,111,110,101,110,100,34,44,79,84,114,97,110,115,105,116,105,111,110,58,34,111,84,114,97,110,115,105,116,105,111,110,69,110,100,32,111,116,114,97,110,115,105,116,105,111,110,101,110,100,34,44,116,114,97,110,115,105,116,105,111,110,58,34,116,114,97,110,115,105,116,105,111,110,101,110,100,34,125,59,102,111,114,40,118,97,114,32,99,32,105,110,32,98,41,105,102,40,118,111,105,100,32,48,33,61,61,97,46,115,116,121,108,101,91,99,93,41,114,101,116,117,114,110,32,98,91,99,93,59,114,101,116,117,114,110,33,49,125,40,41,59,114,101,116,117,114,110,32,106,46,116,101,115,116,61,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,70,46,116,101,115,116,40,97,41,125,44,118,46,118,101,114,115,105,111,110,61,34,51,46,48,46,48,45,100,101,118,34,44,118,46,111,112,116,105,111,110,115,61,98,46,112,114,111,120,121,40,100,44,118,44,69,41,44,118,46,104,97,110,100,108,101,114,115,61,98,46,112,114,111,120,121,40,100,44,118,44,69,46,104,97,110,100,108,101,114,115,41,44,118,46,99,117,114,114,101,110,116,61,115,44,118,46,105,102,114,97,109,101,61,104,44,98,40,119,41,46,111,110,40,34,99,108,105,99,107,46,108,105,116,121,34,44,34,91,100,97,116,97,45,108,105,116,121,93,34,44,118,41,44,118,125,41,59,47,42,42,10,32,42,32,104,116,116,112,115,58,47,47,115,116,97,99,107,111,118,101,114,102,108,111,119,46,99,111,109,47,113,117,101,115,116,105,111,110,115,47,49,48,52,50,48,51,53,50,10,32,42,47,10,102,117,110,99,116,105,111,110,32,104,117,109,97,110,70,105,108,101,83,105,122,101,40,98,121,116,101,115,41,32,123,10,32,32,32,32,105,102,32,40,98,121,116,101,115,32,61,61,61,32,48,41,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,34,48,32,66,34,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,116,104,114,101,115,104,32,61,32,49,48,48,48,59,10,32,32,32,32,105,102,32,40,77,97,116,104,46,97,98,115,40,98,121,116,101,115,41,32,60,32,116,104,114,101,115,104,41,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,121,116,101,115,32,43,32,39,32,66,39,59,10,32,32,32,32,125,10,32,32,32,32,108,101,116,32,117,110,105,116,115,32,61,32,91,39,107,39,44,32,39,77,39,44,32,39,71,39,44,32,39,84,39,44,32,39,80,39,44,32,39,69,39,44,32,39,90,39,44,32,39,89,39,93,59,10,32,32,32,32,108,101,116,32,117,32,61,32,45,49,59,10,32,32,32,32,100,111,32,123,10,32,32,32,32,32,32,32,32,98,121,116,101,115,32,47,61,32,116,104,114,101,115,104,59,10,32,32,32,32,32,32,32,32,43,43,117,59,10,32,32,32,32,125,32,119,104,105,108,101,32,40,77,97,116,104,46,97,98,115,40,98,121,116,101,115,41,32,62,61,32,116,104,114,101,115,104,32,38,38,32,117,32,60,32,117,110,105,116,115,46,108,101,110,103,116,104,32,45,32,49,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,98,121,116,101,115,46,116,111,70,105,120,101,100,40,49,41,32,43,32,117,110,105,116,115,91,117,93,59,10,125,10,10,47,42,42,10,32,42,32,104,116,116,112,115,58,47,47,115,116,97,99,107,111,118,101,114,102,108,111,119,46,99,111,109,47,113,117,101,115,116,105,111,110,115,47,54,51,49,50,57,57,51,10,32,42,47,10,102,117,110,99,116,105,111,110,32,104,117,109,97,110,84,105,109,101,40,115,101,99,95,110,117,109,41,32,123,10,32,32,32,32,115,101,99,95,110,117,109,32,61,32,77,97,116,104,46,102,108,111,111,114,40,115,101,99,95,110,117,109,41,59,10,32,32,32,32,108,101,116,32,104,111,117,114,115,32,61,32,77,97,116,104,46,102,108,111,111,114,40,115,101,99,95,110,117,109,32,47,32,51,54,48,48,41,59,10,32,32,32,32,108,101,116,32,109,105,110,117,116,101,115,32,61,32,77,97,116,104,46,102,108,111,111,114,40,40,115,101,99,95,110,117,109,32,45,32,40,104,111,117,114,115,32,42,32,51,54,48,48,41,41,32,47,32,54,48,41,59,10,32,32,32,32,108,101,116,32,115,101,99,111,110,100,115,32,61,32,115,101,99,95,110,117,109,32,45,32,40,104,111,117,114,115,32,42,32,51,54,48,48,41,32,45,32,40,109,105,110,117,116,101,115,32,42,32,54,48,41,59,10,10,32,32,32,32,105,102,32,40,104,111,117,114,115,32,60,32,49,48,41,32,123,10,32,32,32,32,32,32,32,32,104,111,117,114,115,32,61,32,34,48,34,32,43,32,104,111,117,114,115,59,10,32,32,32,32,125,10,32,32,32,32,105,102,32,40,109,105,110,117,116,101,115,32,60,32,49,48,41,32,123,10,32,32,32,32,32,32,32,32,109,105,110,117,116,101,115,32,61,32,34,48,34,32,43,32,109,105,110,117,116,101,115,59,10,32,32,32,32,125,10,32,32,32,32,105,102,32,40,115,101,99,111,110,100,115,32,60,32,49,48,41,32,123,10,32,32,32,32,32,32,32,32,115,101,99,111,110,100,115,32,61,32,34,48,34,32,43,32,115,101,99,111,110,100,115,59,10,32,32,32,32,125,10,32,32,32,32,114,101,116,117,114,110,32,104,111,117,114,115,32,43,32,34,58,34,32,43,32,109,105,110,117,116,101,115,32,43,32,34,58,34,32,43,32,115,101,99,111,110,100,115,59,10,125,10,10,102,117,110,99,116,105,111,110,32,100,101,98,111,117,110,99,101,40,102,117,110,99,44,32,119,97,105,116,41,32,123,10,32,32,32,32,108,101,116,32,116,105,109,101,111,117,116,59,10,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,99,111,110,116,101,120,116,32,61,32,116,104,105,115,44,32,97,114,103,115,32,61,32,97,114,103,117,109,101,110,116,115,59,10,32,32,32,32,32,32,32,32,108,101,116,32,108,97,116,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,105,109,101,111,117,116,32,61,32,110,117,108,108,59,10,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,46,97,112,112,108,121,40,99,111,110,116,101,120,116,44,32,97,114,103,115,41,59,10,32,32,32,32,32,32,32,32,125,59,10,32,32,32,32,32,32,32,32,99,108,101,97,114,84,105,109,101,111,117,116,40,116,105,109,101,111,117,116,41,59,10,32,32,32,32,32,32,32,32,116,105,109,101,111,117,116,32,61,32,115,101,116,84,105,109,101,111,117,116,40,108,97,116,101,114,44,32,119,97,105,116,41,59,10,32,32,32,32,32,32,32,32,102,117,110,99,46,97,112,112,108,121,40,99,111,110,116,101,120,116,44,32,97,114,103,115,41,59,10,32,32,32,32,125,59,10,125,10,10,102,117,110,99,116,105,111,110,32,108,117,109,40,99,41,32,123,10,32,32,32,32,99,32,61,32,99,46,115,117,98,115,116,114,105,110,103,40,49,41,59,10,32,32,32,32,108,101,116,32,114,103,98,32,61,32,112,97,114,115,101,73,110,116,40,99,44,32,49,54,41,59,10,32,32,32,32,108,101,116,32,114,32,61,32,40,114,103,98,32,62,62,32,49,54,41,32,38,32,48,120,102,102,59,10,32,32,32,32,108,101,116,32,103,32,61,32,40,114,103,98,32,62,62,32,56,41,32,38,32,48,120,102,102,59,10,32,32,32,32,108,101,116,32,98,32,61,32,40,114,103,98,32,62,62,32,48,41,32,38,32,48,120,102,102,59,10,10,32,32,32,32,114,101,116,117,114,110,32,48,46,50,49,50,54,32,42,32,114,32,43,32,48,46,55,49,53,50,32,42,32,103,32,43,32,48,46,48,55,50,50,32,42,32,98,59,10,125,10,10,102,117,110,99,116,105,111,110,32,115,116,114,85,110,101,115,99,97,112,101,40,115,116,114,41,32,123,10,32,32,32,32,108,101,116,32,114,101,115,117,108,116,32,61,32,34,34,59,10,10,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,115,116,114,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,99,32,61,32,115,116,114,91,105,93,59,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,110,101,120,116,32,61,32,115,116,114,91,105,43,49,93,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,99,32,61,61,61,32,39,93,39,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,101,120,116,32,61,61,61,32,39,93,39,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,43,61,32,99,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,32,43,61,32,49,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,43,61,32,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,40,112,97,114,115,101,73,110,116,40,115,116,114,46,115,108,105,99,101,40,105,44,32,105,32,43,32,50,41,44,32,49,54,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,32,43,61,32,50,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,43,61,32,99,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,10,125,10,47,42,42,10,32,42,32,69,110,97,98,108,101,32,103,105,102,32,108,111,97,100,105,110,103,32,111,110,32,104,111,118,101,114,10,32,42,47,10,102,117,110,99,116,105,111,110,32,103,105,102,79,118,101,114,40,116,104,117,109,98,110,97,105,108,44,32,104,105,116,41,32,123,10,32,32,32,32,108,101,116,32,99,97,108,108,101,101,32,61,32,97,114,103,117,109,101,110,116,115,46,99,97,108,108,101,101,59,10,10,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,111,118,101,114,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,109,111,117,115,101,83,116,97,121,101,100,79,118,101,114,32,61,32,116,114,117,101,59,10,10,32,32,32,32,32,32,32,32,119,105,110,100,111,119,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,46,109,111,117,115,101,83,116,97,121,101,100,79,118,101,114,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,109,111,117,115,101,111,118,101,114,39,44,32,99,97,108,108,101,101,44,32,102,97,108,115,101,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,76,111,97,100,32,103,105,102,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,44,32,34,102,47,34,32,43,32,104,105,116,91,34,95,105,100,34,93,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,44,32,54,48,48,41,59,10,10,32,32,32,32,125,41,59,10,10,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,111,117,116,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,47,47,82,101,115,101,116,32,116,105,109,101,114,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,109,111,117,115,101,83,116,97,121,101,100,79,118,101,114,32,61,32,102,97,108,115,101,59,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,44,32,96,116,47,36,123,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,105,110,100,101,120,34,93,125,47,36,123,104,105,116,91,34,95,105,100,34,93,125,96,41,59,10,32,32,32,32,125,41,10,125,10,10,102,117,110,99,116,105,111,110,32,103,101,116,67,111,110,116,101,110,116,72,105,103,104,108,105,103,104,116,40,104,105,116,41,32,123,10,32,32,32,32,99,111,110,115,116,32,114,101,32,61,32,82,101,103,69,120,112,40,47,60,109,97,114,107,62,47,103,41,59,10,10,32,32,32,32,99,111,110,115,116,32,115,111,114,116,66,121,77,97,116,104,67,111,117,110,116,32,61,32,40,97,44,32,98,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,46,109,97,116,99,104,40,114,101,41,46,108,101,110,103,116,104,32,45,32,97,46,109,97,116,99,104,40,114,101,41,46,108,101,110,103,116,104,59,10,32,32,32,32,125,59,10,10,32,32,32,32,105,102,32,40,104,105,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,104,105,103,104,108,105,103,104,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,99,111,110,116,101,110,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,99,111,110,116,101,110,116,34,93,46,115,111,114,116,40,115,111,114,116,66,121,77,97,116,104,67,111,117,110,116,41,91,48,93,59,10,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,93,46,115,111,114,116,40,115,111,114,116,66,121,77,97,116,104,67,111,117,110,116,41,91,48,93,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,114,101,116,117,114,110,32,117,110,100,101,102,105,110,101,100,59,10,125,10,10,102,117,110,99,116,105,111,110,32,103,101,116,80,97,116,104,72,105,103,104,108,105,103,104,116,40,104,105,116,41,32,123,10,32,32,32,32,105,102,32,40,104,105,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,104,105,103,104,108,105,103,104,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,112,97,116,104,46,116,101,120,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,112,97,116,104,46,116,101,120,116,34,93,91,48,93,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,112,97,116,104,46,110,71,114,97,109,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,112,97,116,104,46,110,71,114,97,109,34,93,91,48,93,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,114,101,116,117,114,110,32,117,110,100,101,102,105,110,101,100,59,10,125,10,10,102,117,110,99,116,105,111,110,32,97,112,112,108,121,78,97,109,101,84,111,84,105,116,108,101,40,104,105,116,44,32,116,105,116,108,101,44,32,101,120,116,101,110,115,105,111,110,41,32,123,10,32,32,32,32,105,102,32,40,104,105,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,104,105,103,104,108,105,103,104,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,110,97,109,101,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,39,97,102,116,101,114,98,101,103,105,110,39,44,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,110,97,109,101,34,93,32,43,32,101,120,116,101,110,115,105,111,110,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,110,97,109,101,46,110,71,114,97,109,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,39,97,102,116,101,114,98,101,103,105,110,39,44,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,110,97,109,101,46,110,71,114,97,109,34,93,32,43,32,101,120,116,101,110,115,105,111,110,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,116,105,116,108,101,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,110,97,109,101,34,93,32,43,32,101,120,116,101,110,115,105,111,110,41,41,59,10,125,10,10,102,117,110,99,116,105,111,110,32,115,104,111,117,108,100,80,108,97,121,86,105,100,101,111,40,104,105,116,41,32,123,10,32,32,32,32,99,111,110,115,116,32,118,105,100,101,111,99,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,59,10,32,32,32,32,99,111,110,115,116,32,109,105,109,101,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,59,10,10,32,32,32,32,114,101,116,117,114,110,32,109,105,109,101,32,38,38,10,32,32,32,32,32,32,32,32,109,105,109,101,46,115,116,97,114,116,115,87,105,116,104,40,34,118,105,100,101,111,47,34,41,32,38,38,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,101,120,116,101,110,115,105,111,110,34,93,32,33,61,61,32,34,109,107,118,34,32,38,38,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,101,120,116,101,110,115,105,111,110,34,93,32,33,61,61,32,34,97,118,105,34,32,38,38,10,32,32,32,32,32,32,32,32,118,105,100,101,111,99,32,33,61,61,32,34,104,101,118,99,34,32,38,38,10,32,32,32,32,32,32,32,32,118,105,100,101,111,99,32,33,61,61,32,34,109,112,101,103,50,118,105,100,101,111,34,32,38,38,10,32,32,32,32,32,32,32,32,118,105,100,101,111,99,32,33,61,61,32,34,119,109,118,51,34,59,10,125,10,10,102,117,110,99,116,105,111,110,32,115,104,111,117,108,100,68,105,115,112,108,97,121,82,97,119,73,109,97,103,101,40,104,105,116,41,32,123,10,32,32,32,32,99,111,110,115,116,32,109,105,109,101,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,59,10,10,32,32,32,32,114,101,116,117,114,110,32,109,105,109,101,32,38,38,10,32,32,32,32,32,32,32,32,109,105,109,101,46,115,116,97,114,116,115,87,105,116,104,40,34,105,109,97,103,101,47,34,41,32,38,38,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,32,38,38,10,32,32,32,32,32,32,32,32,33,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,114,101,110,116,34,93,32,38,38,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,32,33,61,61,32,34,116,105,102,102,34,32,38,38,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,32,33,61,61,32,34,112,112,109,34,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,80,108,97,99,101,104,111,108,100,101,114,40,119,44,32,104,44,32,115,109,97,108,108,41,32,123,10,32,32,32,32,108,101,116,32,99,97,108,99,59,10,32,32,32,32,105,102,32,40,115,109,97,108,108,41,32,123,10,32,32,32,32,32,32,32,32,99,97,108,99,32,61,32,119,32,62,32,104,10,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,54,52,32,47,32,119,32,47,32,104,41,32,62,61,32,49,48,48,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,54,52,32,42,32,119,32,47,32,104,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,54,52,10,32,32,32,32,32,32,32,32,32,32,32,32,58,32,54,52,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,99,97,108,99,32,61,32,119,32,62,32,104,10,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,49,55,53,32,47,32,119,32,47,32,104,41,32,62,61,32,50,55,50,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,49,55,53,32,42,32,119,32,47,32,104,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,49,55,53,10,32,32,32,32,32,32,32,32,32,32,32,32,58,32,49,55,53,59,10,32,32,32,32,125,10,10,32,32,32,32,99,111,110,115,116,32,101,108,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,101,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,32,96,104,101,105,103,104,116,58,32,36,123,99,97,108,99,125,112,120,96,41,59,10,32,32,32,32,114,101,116,117,114,110,32,101,108,59,10,125,10,10,102,117,110,99,116,105,111,110,32,101,120,116,40,104,105,116,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,101,120,116,101,110,115,105,111,110,34,41,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,101,120,116,101,110,115,105,111,110,34,93,32,33,61,61,32,34,34,32,63,32,34,46,34,32,43,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,101,120,116,101,110,115,105,111,110,34,93,32,58,32,34,34,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,84,105,116,108,101,40,104,105,116,41,32,123,10,32,32,32,32,108,101,116,32,116,105,116,108,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,105,116,108,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,102,105,108,101,45,116,105,116,108,101,34,41,59,10,32,32,32,32,108,101,116,32,101,120,116,101,110,115,105,111,110,32,61,32,101,120,116,40,104,105,116,41,59,10,10,32,32,32,32,97,112,112,108,121,78,97,109,101,84,111,84,105,116,108,101,40,104,105,116,44,32,116,105,116,108,101,44,32,101,120,116,101,110,115,105,111,110,41,59,10,10,32,32,32,32,116,105,116,108,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,32,43,32,34,47,34,32,43,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,110,97,109,101,34,93,32,43,32,101,120,116,101,110,115,105,111,110,41,59,10,32,32,32,32,114,101,116,117,114,110,32,116,105,116,108,101,59,10,125,10,10,102,117,110,99,116,105,111,110,32,103,101,116,84,97,103,115,40,104,105,116,44,32,109,105,109,101,67,97,116,101,103,111,114,121,41,32,123,10,10,32,32,32,32,108,101,116,32,116,97,103,115,32,61,32,91,93,59,10,32,32,32,32,115,119,105,116,99,104,32,40,109,105,109,101,67,97,116,101,103,111,114,121,41,32,123,10,32,32,32,32,32,32,32,32,99,97,115,101,32,34,118,105,100,101,111,34,58,10,32,32,32,32,32,32,32,32,99,97,115,101,32,34,105,109,97,103,101,34,58,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,118,105,100,101,111,99,34,41,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,102,111,114,109,97,116,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,98,97,100,103,101,45,118,105,100,101,111,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,46,114,101,112,108,97,99,101,40,34,32,34,44,32,34,34,41,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,115,46,112,117,115,104,40,102,111,114,109,97,116,84,97,103,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,10,32,32,32,32,32,32,32,32,99,97,115,101,32,34,97,117,100,105,111,34,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,97,117,100,105,111,99,34,41,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,97,117,100,105,111,99,34,93,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,102,111,114,109,97,116,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,98,97,100,103,101,45,97,117,100,105,111,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,97,117,100,105,111,99,34,93,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,115,46,112,117,115,104,40,102,111,114,109,97,116,84,97,103,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,10,32,32,32,32,125,10,32,32,32,32,47,47,32,85,115,101,114,32,116,97,103,115,10,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,116,97,103,34,41,41,32,123,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,116,97,103,34,93,46,102,111,114,69,97,99,104,40,116,97,103,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,117,115,101,114,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,117,115,101,114,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,98,97,100,103,101,45,117,115,101,114,34,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,116,111,107,101,110,115,32,61,32,116,97,103,46,115,112,108,105,116,40,34,35,34,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,111,107,101,110,115,46,108,101,110,103,116,104,32,62,32,49,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,98,103,32,61,32,34,35,34,32,43,32,116,111,107,101,110,115,91,49,93,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,102,103,32,61,32,108,117,109,40,116,111,107,101,110,115,91,49,93,41,32,62,32,52,48,32,63,32,34,35,48,48,48,34,32,58,32,34,35,102,102,102,34,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,115,101,114,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,32,96,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,36,123,98,103,125,59,32,99,111,108,111,114,58,32,36,123,102,103,125,96,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,110,97,109,101,32,61,32,116,111,107,101,110,115,91,48,93,46,115,112,108,105,116,40,34,46,34,41,91,116,111,107,101,110,115,91,48,93,46,115,112,108,105,116,40,34,46,34,41,46,108,101,110,103,116,104,32,45,32,49,93,59,10,32,32,32,32,32,32,32,32,32,32,32,32,117,115,101,114,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,110,97,109,101,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,115,46,112,117,115,104,40,117,115,101,114,84,97,103,41,59,10,32,32,32,32,32,32,32,32,125,41,10,32,32,32,32,125,10,10,32,32,32,32,114,101,116,117,114,110,32,116,97,103,115,10,125,10,10,102,117,110,99,116,105,111,110,32,105,110,102,111,66,117,116,116,111,110,67,98,40,104,105,116,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,103,101,116,68,111,99,117,109,101,110,116,73,110,102,111,40,104,105,116,91,34,95,105,100,34,93,41,46,116,104,101,110,40,100,111,99,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,109,111,100,97,108,45,116,105,116,108,101,34,41,46,116,101,120,116,40,100,111,99,91,34,110,97,109,101,34,93,32,43,32,101,120,116,40,104,105,116,41,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,116,98,111,100,121,32,61,32,36,40,34,60,116,98,111,100,121,62,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,109,111,100,97,108,45,98,111,100,121,34,41,46,101,109,112,116,121,40,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,97,98,108,101,32,99,108,97,115,115,61,39,116,97,98,108,101,32,116,97,98,108,101,45,115,109,39,62,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,104,101,97,100,62,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,114,62,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,104,62,34,41,46,116,101,120,116,40,34,70,105,101,108,100,34,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,104,62,34,41,46,116,101,120,116,40,34,86,97,108,117,101,34,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,116,98,111,100,121,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,100,105,115,112,108,97,121,70,105,101,108,100,115,32,61,32,110,101,119,32,83,101,116,40,91,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,34,109,105,109,101,34,44,32,34,115,105,122,101,34,44,32,34,109,116,105,109,101,34,44,32,34,112,97,116,104,34,44,32,34,116,105,116,108,101,34,44,32,34,119,105,100,116,104,34,44,32,34,104,101,105,103,104,116,34,44,32,34,100,117,114,97,116,105,111,110,34,44,32,34,97,117,100,105,111,99,34,44,32,34,118,105,100,101,111,99,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,34,98,105,116,114,97,116,101,34,44,32,34,97,114,116,105,115,116,34,44,32,34,97,108,98,117,109,34,44,32,34,97,108,98,117,109,95,97,114,116,105,115,116,34,44,32,34,103,101,110,114,101,34,44,32,34,116,105,116,108,101,34,44,32,34,102,111,110,116,95,110,97,109,101,34,44,32,34,116,97,103,34,10,32,32,32,32,32,32,32,32,32,32,32,32,93,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,100,111,99,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,102,105,108,116,101,114,40,107,101,121,32,61,62,32,107,101,121,46,115,116,97,114,116,115,87,105,116,104,40,34,95,107,101,121,119,111,114,100,46,34,41,32,124,124,32,107,101,121,46,115,116,97,114,116,115,87,105,116,104,40,34,95,116,101,120,116,46,34,41,32,124,124,32,100,105,115,112,108,97,121,70,105,101,108,100,115,46,104,97,115,40,107,101,121,41,32,124,124,32,107,101,121,46,115,116,97,114,116,115,87,105,116,104,40,34,101,120,105,102,95,34,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,102,111,114,69,97,99,104,40,107,101,121,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,98,111,100,121,46,97,112,112,101,110,100,40,36,40,34,60,116,114,62,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,100,62,34,41,46,116,101,120,116,40,107,101,121,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,100,62,34,41,46,116,101,120,116,40,100,111,99,91,107,101,121,93,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,111,99,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,99,111,110,116,101,110,116,34,41,32,38,38,32,100,111,99,91,34,99,111,110,116,101,110,116,34,93,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,109,111,100,97,108,45,98,111,100,121,34,41,46,97,112,112,101,110,100,40,36,40,34,60,100,105,118,32,99,108,97,115,115,61,39,99,111,110,116,101,110,116,45,100,105,118,39,62,34,41,46,116,101,120,116,40,100,111,99,91,34,99,111,110,116,101,110,116,34,93,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,109,111,100,97,108,34,41,46,109,111,100,97,108,40,41,59,10,32,32,32,32,32,32,32,32,125,41,59,10,32,32,32,32,125,10,125,10,10,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,68,111,99,67,97,114,100,40,104,105,116,41,32,123,10,32,32,32,32,108,101,116,32,100,111,99,67,97,114,100,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,100,111,99,67,97,114,100,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,34,41,59,10,10,32,32,32,32,108,101,116,32,100,111,99,67,97,114,100,66,111,100,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,100,111,99,67,97,114,100,66,111,100,121,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,98,111,100,121,32,100,111,99,117,109,101,110,116,34,41,59,10,10,32,32,32,32,47,47,84,105,116,108,101,10,32,32,32,32,108,101,116,32,116,105,116,108,101,32,61,32,109,97,107,101,84,105,116,108,101,40,104,105,116,41,59,10,32,32,32,32,108,101,116,32,105,115,83,117,98,68,111,99,117,109,101,110,116,32,61,32,102,97,108,115,101,59,10,10,32,32,32,32,108,101,116,32,108,105,110,107,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,10,32,32,32,32,108,105,110,107,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,44,32,34,102,47,34,32,43,32,104,105,116,91,34,95,105,100,34,93,41,59,10,32,32,32,32,108,105,110,107,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,97,114,103,101,116,34,44,32,34,95,98,108,97,110,107,34,41,59,10,32,32,32,32,108,105,110,107,46,115,116,121,108,101,46,109,97,120,87,105,100,116,104,32,61,32,34,99,97,108,99,40,49,48,48,37,32,45,32,49,46,50,114,101,109,41,34,59,10,32,32,32,32,108,105,110,107,46,97,112,112,101,110,100,67,104,105,108,100,40,116,105,116,108,101,41,59,10,10,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,112,97,114,101,110,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,100,111,99,67,97,114,100,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,115,117,98,45,100,111,99,117,109,101,110,116,34,41,59,10,32,32,32,32,32,32,32,32,105,115,83,117,98,68,111,99,117,109,101,110,116,32,61,32,116,114,117,101,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,116,97,103,67,111,110,116,97,105,110,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,116,101,120,116,34,41,59,10,10,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,109,105,109,101,34,41,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,32,33,61,61,32,110,117,108,108,41,32,123,10,10,32,32,32,32,32,32,32,32,108,101,116,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,32,61,32,110,117,108,108,59,10,32,32,32,32,32,32,32,32,108,101,116,32,105,109,103,87,114,97,112,112,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,32,34,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,34,41,59,10,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,105,109,103,45,119,114,97,112,112,101,114,34,41,59,10,10,32,32,32,32,32,32,32,32,108,101,116,32,109,105,109,101,67,97,116,101,103,111,114,121,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,46,115,112,108,105,116,40,34,47,34,41,91,48,93,59,10,10,32,32,32,32,32,32,32,32,47,47,84,104,117,109,98,110,97,105,108,10,32,32,32,32,32,32,32,32,108,101,116,32,116,104,117,109,98,110,97,105,108,32,61,32,109,97,107,101,84,104,117,109,98,110,97,105,108,40,109,105,109,101,67,97,116,101,103,111,114,121,44,32,104,105,116,44,32,105,109,103,87,114,97,112,112,101,114,44,32,102,97,108,115,101,41,59,10,10,32,32,32,32,32,32,32,32,47,47,84,104,117,109,98,110,97,105,108,32,111,118,101,114,108,97,121,10,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,109,105,109,101,67,97,116,101,103,111,114,121,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,34,105,109,97,103,101,34,58,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,34,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,82,101,115,111,108,117,116,105,111,110,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,119,105,100,116,104,34,41,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,119,105,100,116,104,34,93,32,62,32,51,50,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,104,101,105,103,104,116,34,93,32,62,32,51,50,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,114,101,115,111,108,117,116,105,111,110,66,97,100,103,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,111,108,117,116,105,111,110,66,97,100,103,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,119,105,100,116,104,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,111,108,117,116,105,111,110,66,97,100,103,101,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,119,105,100,116,104,34,93,32,43,32,34,120,34,32,43,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,104,101,105,103,104,116,34,93,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,46,97,112,112,101,110,100,67,104,105,108,100,40,114,101,115,111,108,117,116,105,111,110,66,97,100,103,101,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,72,111,118,101,114,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,32,61,61,61,32,34,103,105,102,34,32,38,38,32,33,105,115,83,117,98,68,111,99,117,109,101,110,116,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,103,105,102,79,118,101,114,40,116,104,117,109,98,110,97,105,108,44,32,104,105,116,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,34,118,105,100,101,111,34,58,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,68,117,114,97,116,105,111,110,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,100,117,114,97,116,105,111,110,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,100,117,114,97,116,105,111,110,66,97,100,103,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,117,114,97,116,105,111,110,66,97,100,103,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,117,114,97,116,105,111,110,66,97,100,103,101,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,117,109,97,110,84,105,109,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,100,117,114,97,116,105,111,110,34,93,41,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,46,97,112,112,101,110,100,67,104,105,108,100,40,100,117,114,97,116,105,111,110,66,97,100,103,101,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,47,47,32,84,97,103,115,10,32,32,32,32,32,32,32,32,108,101,116,32,116,97,103,115,32,61,32,103,101,116,84,97,103,115,40,104,105,116,44,32,109,105,109,101,67,97,116,101,103,111,114,121,41,59,10,32,32,32,32,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,116,97,103,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,116,97,103,115,91,105,93,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,47,47,67,111,110,116,101,110,116,10,32,32,32,32,32,32,32,32,108,101,116,32,99,111,110,116,101,110,116,72,108,32,61,32,103,101,116,67,111,110,116,101,110,116,72,105,103,104,108,105,103,104,116,40,104,105,116,41,59,10,32,32,32,32,32,32,32,32,105,102,32,40,99,111,110,116,101,110,116,72,108,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,99,111,110,116,101,110,116,68,105,118,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,68,105,118,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,111,110,116,101,110,116,45,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,68,105,118,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,39,97,102,116,101,114,98,101,103,105,110,39,44,32,99,111,110,116,101,110,116,72,108,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,99,111,110,116,101,110,116,68,105,118,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,32,33,61,61,32,110,117,108,108,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,105,109,103,87,114,97,112,112,101,114,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,47,47,65,117,100,105,111,10,32,32,32,32,32,32,32,32,105,102,32,40,109,105,109,101,67,97,116,101,103,111,114,121,32,61,61,61,32,34,97,117,100,105,111,34,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,97,117,100,105,111,99,34,41,32,38,38,32,33,105,115,83,117,98,68,111,99,117,109,101,110,116,41,32,123,10,10,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,97,117,100,105,111,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,117,100,105,111,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,112,114,101,108,111,97,100,34,44,32,34,110,111,110,101,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,97,117,100,105,111,45,102,105,116,32,102,105,116,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,111,110,116,114,111,108,115,34,44,32,34,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,44,32,34,102,47,34,32,43,32,104,105,116,91,34,95,105,100,34,93,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,97,117,100,105,111,41,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,32,33,61,61,32,110,117,108,108,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,47,47,83,105,122,101,32,116,97,103,10,32,32,32,32,108,101,116,32,115,105,122,101,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,109,97,108,108,34,41,59,10,32,32,32,32,115,105,122,101,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,117,109,97,110,70,105,108,101,83,105,122,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,115,105,122,101,34,93,41,41,41,59,10,32,32,32,32,115,105,122,101,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,116,101,120,116,45,109,117,116,101,100,34,41,59,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,115,105,122,101,84,97,103,41,59,10,10,32,32,32,32,99,111,110,115,116,32,116,105,116,108,101,87,114,97,112,112,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,115,116,121,108,101,46,100,105,115,112,108,97,121,32,61,32,34,102,108,101,120,34,59,10,10,32,32,32,32,99,111,110,115,116,32,105,110,102,111,66,117,116,116,111,110,32,61,32,109,97,107,101,73,110,102,111,66,117,116,116,111,110,40,104,105,116,41,59,10,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,105,110,102,111,66,117,116,116,111,110,41,59,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,108,105,110,107,41,59,10,10,32,32,32,32,100,111,99,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,116,105,116,108,101,87,114,97,112,112,101,114,41,59,10,32,32,32,32,100,111,99,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,67,97,114,100,66,111,100,121,41,59,10,10,32,32,32,32,100,111,99,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,116,97,103,67,111,110,116,97,105,110,101,114,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,100,111,99,67,97,114,100,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,84,104,117,109,98,110,97,105,108,40,109,105,109,101,67,97,116,101,103,111,114,121,44,32,104,105,116,44,32,105,109,103,87,114,97,112,112,101,114,44,32,115,109,97,108,108,41,32,123,10,10,32,32,32,32,105,102,32,40,33,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,116,104,117,109,98,110,97,105,108,34,41,41,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,116,104,117,109,98,110,97,105,108,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,109,103,34,41,59,10,32,32,32,32,105,102,32,40,115,109,97,108,108,41,32,123,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,102,105,116,45,115,109,34,41,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,105,109,103,45,116,111,112,32,102,105,116,34,41,59,10,32,32,32,32,125,10,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,44,32,96,116,47,36,123,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,105,110,100,101,120,34,93,125,47,36,123,104,105,116,91,34,95,105,100,34,93,125,96,41,59,10,10,32,32,32,32,105,102,32,40,115,104,111,117,108,100,68,105,115,112,108,97,121,82,97,119,73,109,97,103,101,40,104,105,116,41,41,32,123,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,108,32,61,32,108,105,116,121,40,96,102,47,36,123,104,105,116,91,34,95,105,100,34,93,125,35,46,106,112,103,96,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,115,99,114,111,108,108,34,44,32,40,41,32,61,62,32,108,46,99,108,111,115,101,40,41,41,59,10,32,32,32,32,32,32,32,32,125,41,59,10,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,112,111,105,110,116,101,114,34,41,59,10,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,104,111,117,108,100,80,108,97,121,86,105,100,101,111,40,104,105,116,41,41,32,123,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,108,105,116,121,40,96,102,47,36,123,104,105,116,91,34,95,105,100,34,93,125,35,46,109,112,52,96,41,41,59,10,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,112,111,105,110,116,101,114,34,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,33,115,109,97,108,108,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,112,108,97,121,79,118,101,114,108,97,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,112,108,97,121,79,118,101,114,108,97,121,46,105,110,110,101,114,72,84,77,76,32,61,32,39,60,115,118,103,32,118,105,101,119,66,111,120,61,34,48,32,48,32,52,57,52,46,57,52,50,32,52,57,52,46,57,52,50,34,32,120,109,108,110,115,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,62,60,112,97,116,104,32,100,61,34,109,51,53,46,51,53,51,32,48,32,52,50,52,46,50,51,54,32,50,52,55,46,52,55,49,45,52,50,52,46,50,51,54,32,50,52,55,46,52,55,49,122,34,47,62,60,47,115,118,103,62,39,59,10,32,32,32,32,32,32,32,32,32,32,32,32,112,108,97,121,79,118,101,114,108,97,121,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,112,108,97,121,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,112,114,101,112,101,110,100,40,112,108,97,121,79,118,101,114,108,97,121,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,99,111,110,115,116,32,112,108,97,99,101,104,111,108,100,101,114,32,61,32,109,97,107,101,80,108,97,99,101,104,111,108,100,101,114,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,119,105,100,116,104,34,93,44,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,104,101,105,103,104,116,34,93,44,32,115,109,97,108,108,41,59,10,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,112,108,97,99,101,104,111,108,100,101,114,41,59,10,10,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,101,114,114,111,114,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,114,101,109,111,118,101,40,41,59,10,32,32,32,32,125,41,59,10,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,108,111,97,100,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,112,108,97,99,101,104,111,108,100,101,114,46,114,101,109,111,118,101,40,41,59,10,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,116,104,117,109,98,110,97,105,108,41,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,116,104,117,109,98,110,97,105,108,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,73,110,102,111,66,117,116,116,111,110,40,104,105,116,41,32,123,10,32,32,32,32,99,111,110,115,116,32,105,110,102,111,66,117,116,116,111,110,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,105,110,102,111,66,117,116,116,111,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,105,110,102,111,45,105,99,111,110,34,41,59,10,32,32,32,32,105,110,102,111,66,117,116,116,111,110,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,105,110,102,111,66,117,116,116,111,110,67,98,40,104,105,116,41,41,59,10,32,32,32,32,114,101,116,117,114,110,32,105,110,102,111,66,117,116,116,111,110,59,10,125,10,10,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,68,111,99,76,105,110,101,40,104,105,116,41,32,123,10,10,32,32,32,32,99,111,110,115,116,32,109,105,109,101,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,59,10,32,32,32,32,108,101,116,32,109,105,109,101,67,97,116,101,103,111,114,121,32,61,32,109,105,109,101,32,63,32,109,105,109,101,46,115,112,108,105,116,40,34,47,34,41,91,48,93,32,58,32,110,117,108,108,59,10,32,32,32,32,108,101,116,32,116,97,103,115,32,61,32,103,101,116,84,97,103,115,40,104,105,116,44,32,109,105,109,101,67,97,116,101,103,111,114,121,41,59,10,10,32,32,32,32,108,101,116,32,105,109,103,87,114,97,112,112,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,97,108,105,103,110,45,115,101,108,102,45,115,116,97,114,116,32,109,114,45,49,32,119,114,97,112,112,101,114,45,115,109,34,41,59,10,10,32,32,32,32,108,101,116,32,109,101,100,105,97,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,109,101,100,105,97,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,109,101,100,105,97,34,41,59,10,10,32,32,32,32,99,111,110,115,116,32,108,105,110,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,108,105,110,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,32,102,108,101,120,45,99,111,108,117,109,110,32,97,108,105,103,110,45,105,116,101,109,115,45,115,116,97,114,116,34,41,59,10,10,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,112,97,114,101,110,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,108,105,110,101,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,115,117,98,45,100,111,99,117,109,101,110,116,34,41,59,10,32,32,32,32,32,32,32,32,105,115,83,117,98,68,111,99,117,109,101,110,116,32,61,32,116,114,117,101,59,10,32,32,32,32,125,10,10,32,32,32,32,99,111,110,115,116,32,105,110,102,111,66,117,116,116,111,110,32,61,32,109,97,107,101,73,110,102,111,66,117,116,116,111,110,40,104,105,116,41,59,10,10,32,32,32,32,99,111,110,115,116,32,116,105,116,108,101,32,61,32,109,97,107,101,84,105,116,108,101,40,104,105,116,41,59,10,10,32,32,32,32,108,101,116,32,108,105,110,107,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,10,32,32,32,32,108,105,110,107,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,44,32,34,102,47,34,32,43,32,104,105,116,91,34,95,105,100,34,93,41,59,10,32,32,32,32,108,105,110,107,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,97,114,103,101,116,34,44,32,34,95,98,108,97,110,107,34,41,59,10,32,32,32,32,108,105,110,107,46,115,116,121,108,101,46,109,97,120,87,105,100,116,104,32,61,32,34,99,97,108,99,40,49,48,48,37,32,45,32,49,46,50,114,101,109,41,34,59,10,32,32,32,32,108,105,110,107,46,97,112,112,101,110,100,67,104,105,108,100,40,116,105,116,108,101,41,59,10,10,32,32,32,32,99,111,110,115,116,32,116,105,116,108,101,68,105,118,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,10,32,32,32,32,99,111,110,115,116,32,116,105,116,108,101,87,114,97,112,112,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,115,116,121,108,101,46,100,105,115,112,108,97,121,32,61,32,34,102,108,101,120,34,59,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,105,110,102,111,66,117,116,116,111,110,41,59,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,108,105,110,107,41,59,10,10,32,32,32,32,116,105,116,108,101,68,105,118,46,97,112,112,101,110,100,67,104,105,108,100,40,116,105,116,108,101,87,114,97,112,112,101,114,41,59,10,10,32,32,32,32,108,105,110,101,46,97,112,112,101,110,100,67,104,105,108,100,40,109,101,100,105,97,41,59,10,10,32,32,32,32,108,101,116,32,116,104,117,109,98,110,97,105,108,32,61,32,109,97,107,101,84,104,117,109,98,110,97,105,108,40,109,105,109,101,67,97,116,101,103,111,114,121,44,32,104,105,116,44,32,105,109,103,87,114,97,112,112,101,114,44,32,116,114,117,101,41,59,10,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,41,32,123,10,32,32,32,32,32,32,32,32,109,101,100,105,97,46,97,112,112,101,110,100,67,104,105,108,100,40,105,109,103,87,114,97,112,112,101,114,41,59,10,32,32,32,32,32,32,32,32,116,105,116,108,101,68,105,118,46,115,116,121,108,101,46,109,97,120,87,105,100,116,104,32,61,32,34,99,97,108,99,40,49,48,48,37,32,45,32,54,52,112,120,41,34,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,116,105,116,108,101,68,105,118,46,115,116,121,108,101,46,109,97,120,87,105,100,116,104,32,61,32,34,49,48,48,37,34,59,10,32,32,32,32,125,10,32,32,32,32,109,101,100,105,97,46,97,112,112,101,110,100,67,104,105,108,100,40,116,105,116,108,101,68,105,118,41,59,10,10,32,32,32,32,47,47,32,67,111,110,116,101,110,116,10,32,32,32,32,108,101,116,32,99,111,110,116,101,110,116,72,108,32,61,32,103,101,116,67,111,110,116,101,110,116,72,105,103,104,108,105,103,104,116,40,104,105,116,41,59,10,32,32,32,32,105,102,32,40,99,111,110,116,101,110,116,72,108,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,99,111,110,116,101,110,116,68,105,118,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,68,105,118,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,111,110,116,101,110,116,45,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,68,105,118,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,34,97,102,116,101,114,98,101,103,105,110,34,44,32,99,111,110,116,101,110,116,72,108,41,59,10,32,32,32,32,32,32,32,32,116,105,116,108,101,68,105,118,46,97,112,112,101,110,100,67,104,105,108,100,40,99,111,110,116,101,110,116,68,105,118,41,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,112,97,116,104,76,105,110,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,112,97,116,104,76,105,110,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,112,97,116,104,45,114,111,119,34,41,59,10,10,32,32,32,32,108,101,116,32,112,97,116,104,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,112,97,116,104,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,112,97,116,104,45,108,105,110,101,34,41,59,10,32,32,32,32,112,97,116,104,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,32,43,32,34,47,34,41,59,10,10,32,32,32,32,99,111,110,115,116,32,112,97,116,104,72,105,103,104,108,105,103,104,116,32,61,32,103,101,116,80,97,116,104,72,105,103,104,108,105,103,104,116,40,104,105,116,41,59,10,32,32,32,32,105,102,32,40,112,97,116,104,72,105,103,104,108,105,103,104,116,41,32,123,10,32,32,32,32,32,32,32,32,112,97,116,104,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,34,97,102,116,101,114,98,101,103,105,110,34,44,32,112,97,116,104,72,105,103,104,108,105,103,104,116,32,43,32,34,47,34,41,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,112,97,116,104,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,32,43,32,34,47,34,41,41,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,116,97,103,67,111,110,116,97,105,110,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,116,97,103,45,99,111,110,116,97,105,110,101,114,34,41,59,10,10,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,116,97,103,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,32,32,32,32,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,116,97,103,115,91,105,93,41,59,10,32,32,32,32,125,10,10,32,32,32,32,47,47,83,105,122,101,32,116,97,103,10,32,32,32,32,108,101,116,32,115,105,122,101,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,109,97,108,108,34,41,59,10,32,32,32,32,115,105,122,101,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,117,109,97,110,70,105,108,101,83,105,122,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,115,105,122,101,34,93,41,41,41,59,10,32,32,32,32,115,105,122,101,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,116,101,120,116,45,109,117,116,101,100,34,41,59,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,115,105,122,101,84,97,103,41,59,10,10,32,32,32,32,116,105,116,108,101,68,105,118,46,97,112,112,101,110,100,67,104,105,108,100,40,112,97,116,104,76,105,110,101,41,59,10,32,32,32,32,112,97,116,104,76,105,110,101,46,97,112,112,101,110,100,67,104,105,108,100,40,112,97,116,104,41,59,10,32,32,32,32,112,97,116,104,76,105,110,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,97,103,67,111,110,116,97,105,110,101,114,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,108,105,110,101,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,80,114,101,108,111,97,100,101,114,40,41,32,123,10,32,32,32,32,99,111,110,115,116,32,101,108,101,109,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,101,108,101,109,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,112,114,111,103,114,101,115,115,34,41,59,10,32,32,32,32,99,111,110,115,116,32,98,97,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,98,97,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,112,114,111,103,114,101,115,115,45,98,97,114,32,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,100,32,112,114,111,103,114,101,115,115,45,98,97,114,45,97,110,105,109,97,116,101,100,34,41,59,10,32,32,32,32,98,97,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,32,34,119,105,100,116,104,58,32,49,48,48,37,34,41,59,10,32,32,32,32,101,108,101,109,46,97,112,112,101,110,100,67,104,105,108,100,40,98,97,114,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,101,108,101,109,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,80,97,103,101,73,110,100,105,99,97,116,111,114,40,115,101,97,114,99,104,82,101,115,117,108,116,41,32,123,10,32,32,32,32,108,101,116,32,112,97,103,101,73,110,100,105,99,97,116,111,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,112,97,103,101,73,110,100,105,99,97,116,111,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,112,97,103,101,45,105,110,100,105,99,97,116,111,114,32,102,111,110,116,45,119,101,105,103,104,116,45,108,105,103,104,116,34,41,59,10,32,32,32,32,99,111,110,115,116,32,116,111,116,97,108,72,105,116,115,32,61,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,116,111,116,97,108,95,99,111,117,110,116,34,93,91,34,118,97,108,117,101,34,93,59,10,32,32,32,32,112,97,103,101,73,110,100,105,99,97,116,111,114,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,100,111,99,67,111,117,110,116,32,43,32,34,32,47,32,34,32,43,32,116,111,116,97,108,72,105,116,115,41,41,59,10,32,32,32,32,114,101,116,117,114,110,32,112,97,103,101,73,110,100,105,99,97,116,111,114,59,10,125,10,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,83,116,97,116,115,67,97,114,100,40,115,101,97,114,99,104,82,101,115,117,108,116,41,32,123,10,10,32,32,32,32,108,101,116,32,115,116,97,116,115,67,97,114,100,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,115,116,97,116,115,67,97,114,100,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,32,115,116,97,116,34,41,59,10,32,32,32,32,108,101,116,32,115,116,97,116,115,67,97,114,100,66,111,100,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,98,111,100,121,34,41,59,10,10,32,32,32,32,47,47,32,83,116,97,116,115,10,32,32,32,32,108,101,116,32,115,116,97,116,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,99,111,110,115,116,32,116,111,116,97,108,72,105,116,115,32,61,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,116,111,116,97,108,95,99,111,117,110,116,34,93,91,34,118,97,108,117,101,34,93,59,10,32,32,32,32,115,116,97,116,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,116,111,116,97,108,72,105,116,115,32,43,32,34,32,114,101,115,117,108,116,115,32,105,110,32,34,32,43,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,116,111,111,107,34,93,32,43,32,34,109,115,34,41,41,59,10,10,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,115,116,97,116,41,59,10,10,32,32,32,32,47,47,32,68,105,115,112,108,97,121,32,109,111,100,101,10,32,32,32,32,99,111,110,115,116,32,114,101,115,117,108,116,77,111,100,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,116,110,45,103,114,111,117,112,32,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,34,41,59,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,116,111,103,103,108,101,34,44,32,34,98,117,116,116,111,110,115,34,41,59,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,115,116,121,108,101,46,99,115,115,70,108,111,97,116,32,61,32,34,114,105,103,104,116,34,59,10,10,32,32,32,32,99,111,110,115,116,32,108,105,115,116,77,111,100,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,108,97,98,101,108,34,41,59,10,32,32,32,32,108,105,115,116,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,116,110,32,98,116,110,45,112,114,105,109,97,114,121,34,41,59,10,32,32,32,32,108,105,115,116,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,34,76,105,115,116,32,109,111,100,101,34,41,59,10,32,32,32,32,108,105,115,116,77,111,100,101,46,105,110,110,101,114,72,84,77,76,32,61,32,39,60,115,118,103,32,119,105,100,116,104,61,34,50,48,112,120,34,32,104,101,105,103,104,116,61,34,50,48,112,120,34,32,114,111,108,101,61,34,105,109,103,34,32,120,109,108,110,115,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,32,118,105,101,119,66,111,120,61,34,48,32,48,32,53,49,50,32,53,49,50,34,62,60,112,97,116,104,32,102,105,108,108,61,34,99,117,114,114,101,110,116,67,111,108,111,114,34,32,100,61,34,77,56,48,32,51,54,56,72,49,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,54,52,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,45,51,50,48,72,49,54,65,49,54,32,49,54,32,48,32,48,32,48,32,48,32,54,52,118,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,86,54,52,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,32,49,54,48,72,49,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,54,52,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,52,49,54,32,49,55,54,72,49,55,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,51,50,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,51,50,48,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,51,50,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,45,51,50,48,72,49,55,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,51,50,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,51,50,48,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,86,56,48,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,32,49,54,48,72,49,55,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,51,50,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,51,50,48,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,51,50,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,34,62,60,47,112,97,116,104,62,60,47,115,118,103,62,39,59,10,10,32,32,32,32,99,111,110,115,116,32,103,114,105,100,77,111,100,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,108,97,98,101,108,34,41,59,10,32,32,32,32,103,114,105,100,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,116,110,32,98,116,110,45,112,114,105,109,97,114,121,34,41,59,10,32,32,32,32,103,114,105,100,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,34,71,114,105,100,32,109,111,100,101,34,41,59,10,32,32,32,32,103,114,105,100,77,111,100,101,46,105,110,110,101,114,72,84,77,76,32,61,32,39,60,115,118,103,32,119,105,100,116,104,61,34,50,48,112,120,34,32,104,101,105,103,104,116,61,34,50,48,112,120,34,32,114,111,108,101,61,34,105,109,103,34,32,120,109,108,110,115,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,32,118,105,101,119,66,111,120,61,34,48,32,48,32,53,49,50,32,53,49,50,34,62,60,112,97,116,104,32,102,105,108,108,61,34,99,117,114,114,101,110,116,67,111,108,111,114,34,32,100,61,34,77,49,52,57,46,51,51,51,32,53,54,118,56,48,99,48,32,49,51,46,50,53,53,45,49,48,46,55,52,53,32,50,52,45,50,52,32,50,52,72,50,52,99,45,49,51,46,50,53,53,32,48,45,50,52,45,49,48,46,55,52,53,45,50,52,45,50,52,86,53,54,99,48,45,49,51,46,50,53,53,32,49,48,46,55,52,53,45,50,52,32,50,52,45,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,32,49,48,46,55,52,53,32,50,52,32,50,52,122,109,49,56,49,46,51,51,52,32,50,52,48,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,48,53,46,51,51,51,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,54,32,48,32,50,52,46,48,48,49,45,49,48,46,55,52,53,32,50,52,46,48,48,49,45,50,52,122,109,51,50,45,50,52,48,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,72,52,56,56,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,86,53,54,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,51,56,54,46,54,54,55,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,122,109,45,51,50,32,56,48,86,53,54,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,48,53,46,51,51,51,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,54,32,48,32,50,52,46,48,48,49,45,49,48,46,55,52,53,32,50,52,46,48,48,49,45,50,52,122,109,45,50,48,53,46,51,51,52,32,53,54,72,50,52,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,122,77,48,32,51,55,54,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,52,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,122,109,51,56,54,46,54,54,55,45,53,54,72,52,56,56,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,51,56,54,46,54,54,55,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,122,109,48,32,49,54,48,72,52,56,56,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,51,56,54,46,54,54,55,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,122,77,49,56,49,46,51,51,51,32,51,55,54,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,48,53,46,51,51,51,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,122,34,62,60,47,112,97,116,104,62,60,47,115,118,103,62,39,59,10,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,103,114,105,100,77,111,100,101,41,59,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,108,105,115,116,77,111,100,101,41,59,10,10,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,61,61,32,34,103,114,105,100,34,41,32,123,10,32,32,32,32,32,32,32,32,103,114,105,100,77,111,100,101,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,97,99,116,105,118,101,34,41,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,108,105,115,116,77,111,100,101,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,97,99,116,105,118,101,34,41,10,32,32,32,32,125,10,10,32,32,32,32,103,114,105,100,77,111,100,101,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,32,34,103,114,105,100,34,59,10,32,32,32,32,32,32,32,32,67,79,78,70,46,115,97,118,101,40,41,59,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,125,41,59,10,32,32,32,32,108,105,115,116,77,111,100,101,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,32,34,108,105,115,116,34,59,10,32,32,32,32,32,32,32,32,67,79,78,70,46,115,97,118,101,40,41,59,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,114,101,115,117,108,116,77,111,100,101,41,59,10,10,32,32,32,32,47,47,32,83,111,114,116,32,109,111,100,101,10,32,32,32,32,99,111,110,115,116,32,115,111,114,116,77,111,100,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,100,114,111,112,100,111,119,110,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,46,115,116,121,108,101,46,99,115,115,70,108,111,97,116,32,61,32,34,114,105,103,104,116,34,59,10,32,32,32,32,115,111,114,116,77,111,100,101,46,115,116,121,108,101,46,109,97,114,103,105,110,82,105,103,104,116,32,61,32,34,49,48,112,120,34,59,10,10,32,32,32,32,99,111,110,115,116,32,115,111,114,116,77,111,100,101,66,116,110,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,98,117,116,116,111,110,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,116,110,32,98,116,110,45,109,100,32,98,116,110,45,112,114,105,109,97,114,121,32,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,44,32,34,115,111,114,116,77,111,100,101,66,116,110,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,32,34,98,117,116,116,111,110,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,116,111,103,103,108,101,34,44,32,34,100,114,111,112,100,111,119,110,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,104,97,115,112,111,112,117,112,34,44,32,34,116,114,117,101,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,32,34,102,97,108,115,101,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,34,83,111,114,116,32,111,112,116,105,111,110,115,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,105,110,110,101,114,72,84,77,76,32,61,32,39,60,115,118,103,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,32,119,105,100,116,104,61,34,50,48,112,120,34,32,104,101,105,103,104,116,61,34,50,48,112,120,34,32,120,109,108,110,115,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,32,118,105,101,119,66,111,120,61,34,48,32,48,32,51,50,48,32,53,49,50,34,62,60,112,97,116,104,32,102,105,108,108,61,34,99,117,114,114,101,110,116,67,111,108,111,114,34,32,100,61,34,77,52,49,32,50,56,56,104,50,51,56,99,50,49,46,52,32,48,32,51,50,46,49,32,50,53,46,57,32,49,55,32,52,49,76,49,55,55,32,52,52,56,99,45,57,46,52,32,57,46,52,45,50,52,46,54,32,57,46,52,45,51,51,46,57,32,48,76,50,52,32,51,50,57,99,45,49,53,46,49,45,49,53,46,49,45,52,46,52,45,52,49,32,49,55,45,52,49,122,109,50,53,53,45,49,48,53,76,49,55,55,32,54,52,99,45,57,46,52,45,57,46,52,45,50,52,46,54,45,57,46,52,45,51,51,46,57,32,48,76,50,52,32,49,56,51,99,45,49,53,46,49,32,49,53,46,49,45,52,46,52,32,52,49,32,49,55,32,52,49,104,50,51,56,99,50,49,46,52,32,48,32,51,50,46,49,45,50,53,46,57,32,49,55,45,52,49,122,34,62,60,47,112,97,116,104,62,60,47,115,118,103,62,39,59,10,10,32,32,32,32,99,111,110,115,116,32,115,111,114,116,77,111,100,101,77,101,110,117,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,77,101,110,117,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,100,114,111,112,100,111,119,110,45,109,101,110,117,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,77,101,110,117,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,34,44,32,34,115,111,114,116,77,111,100,101,66,116,110,34,41,59,10,10,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,83,79,82,84,95,77,79,68,69,83,41,46,102,111,114,69,97,99,104,40,109,111,100,101,32,61,62,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,105,116,101,109,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,105,116,101,109,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,100,114,111,112,100,111,119,110,45,105,116,101,109,34,41,59,10,32,32,32,32,32,32,32,32,105,116,101,109,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,83,79,82,84,95,77,79,68,69,83,91,109,111,100,101,93,46,116,101,120,116,41,41,59,10,32,32,32,32,32,32,32,32,115,111,114,116,77,111,100,101,77,101,110,117,46,97,112,112,101,110,100,67,104,105,108,100,40,105,116,101,109,41,59,10,10,32,32,32,32,32,32,32,32,105,116,101,109,46,111,110,99,108,105,99,107,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,115,111,114,116,32,61,32,109,111,100,101,59,10,32,32,32,32,32,32,32,32,32,32,32,32,67,79,78,70,46,115,97,118,101,40,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,32,32,32,32,125,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,115,111,114,116,77,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,115,111,114,116,77,111,100,101,66,116,110,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,115,111,114,116,77,111,100,101,77,101,110,117,41,59,10,10,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,115,111,114,116,77,111,100,101,41,59,10,10,32,32,32,32,105,102,32,40,116,111,116,97,108,72,105,116,115,32,33,61,61,32,48,41,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,115,105,122,101,83,116,97,116,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,115,105,122,101,83,116,97,116,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,117,109,97,110,70,105,108,101,83,105,122,101,40,115,101,97,114,99,104,82,101,115,117,108,116,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,116,111,116,97,108,95,115,105,122,101,34,93,91,34,118,97,108,117,101,34,93,41,41,41,59,10,32,32,32,32,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,115,105,122,101,83,116,97,116,41,59,10,32,32,32,32,125,10,10,32,32,32,32,115,116,97,116,115,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,115,116,97,116,115,67,97,114,100,66,111,100,121,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,115,116,97,116,115,67,97,114,100,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,82,101,115,117,108,116,67,111,110,116,97,105,110,101,114,40,41,32,123,10,32,32,32,32,108,101,116,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,10,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,61,61,32,34,103,114,105,100,34,41,32,123,10,32,32,32,32,32,32,32,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,114,105,99,107,108,97,121,101,114,34,41,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,108,105,115,116,45,103,114,111,117,112,34,41,59,10,32,32,32,32,125,10,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,59,10,125,10,99,111,110,115,116,32,83,73,90,69,32,61,32,52,48,59,10,108,101,116,32,109,105,109,101,77,97,112,32,61,32,91,93,59,10,108,101,116,32,116,97,103,77,97,112,32,61,32,91,93,59,10,108,101,116,32,109,105,109,101,84,114,101,101,59,10,108,101,116,32,116,97,103,84,114,101,101,59,10,10,108,101,116,32,115,101,97,114,99,104,66,97,114,32,61,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,115,101,97,114,99,104,66,97,114,34,41,59,10,108,101,116,32,112,97,116,104,66,97,114,32,61,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,112,97,116,104,66,97,114,34,41,59,10,108,101,116,32,108,97,115,116,68,111,99,32,61,32,110,117,108,108,59,10,108,101,116,32,114,101,97,99,104,101,100,69,110,100,32,61,32,102,97,108,115,101,59,10,108,101,116,32,100,111,99,67,111,117,110,116,32,61,32,48,59,10,108,101,116,32,99,111,111,108,105,110,103,68,111,119,110,32,61,32,102,97,108,115,101,59,10,108,101,116,32,115,101,97,114,99,104,66,117,115,121,32,61,32,116,114,117,101,59,10,108,101,116,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,32,61,32,91,93,59,10,108,101,116,32,105,110,100,101,120,77,97,112,32,61,32,123,125,59,10,10,108,101,116,32,115,105,122,101,95,109,105,110,32,61,32,48,59,10,108,101,116,32,115,105,122,101,95,109,97,120,32,61,32,49,48,48,48,48,48,48,48,48,48,48,48,48,48,59,10,10,108,101,116,32,100,97,116,101,95,109,105,110,32,61,32,110,117,108,108,59,10,108,101,116,32,100,97,116,101,95,109,97,120,32,61,32,110,117,108,108,59,10,10,99,111,110,115,116,32,67,79,78,70,32,61,32,110,101,119,32,83,101,116,116,105,110,103,115,40,41,59,10,10,99,111,110,115,116,32,95,100,101,102,97,117,108,116,115,32,61,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,34,103,114,105,100,34,44,10,32,32,32,32,102,117,122,122,121,58,32,116,114,117,101,44,10,32,32,32,32,104,105,103,104,108,105,103,104,116,58,32,116,114,117,101,44,10,32,32,32,32,115,111,114,116,58,32,34,115,99,111,114,101,34,44,10,32,32,32,32,115,101,97,114,99,104,73,110,80,97,116,104,58,32,102,97,108,115,101,44,10,125,59,10,10,83,79,82,84,95,77,79,68,69,83,32,61,32,123,10,32,32,32,32,115,99,111,114,101,58,32,123,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,82,101,108,101,118,97,110,99,101,34,44,10,32,32,32,32,32,32,32,32,109,111,100,101,58,32,91,10,32,32,32,32,32,32,32,32,32,32,32,32,123,95,115,99,111,114,101,58,32,123,111,114,100,101,114,58,32,34,100,101,115,99,34,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,123,95,116,105,101,58,32,123,111,114,100,101,114,58,32,34,97,115,99,34,125,125,10,32,32,32,32,32,32,32,32,93,44,10,32,32,32,32,32,32,32,32,107,101,121,58,32,104,105,116,32,61,62,32,104,105,116,91,34,95,115,99,111,114,101,34,93,10,32,32,32,32,125,44,10,32,32,32,32,100,97,116,101,95,97,115,99,58,32,123,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,68,97,116,101,32,40,65,115,99,101,110,100,105,110,103,41,34,44,32,109,111,100,101,58,32,91,10,32,32,32,32,32,32,32,32,32,32,32,32,123,109,116,105,109,101,58,32,123,111,114,100,101,114,58,32,34,97,115,99,34,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,123,95,116,105,101,58,32,123,111,114,100,101,114,58,32,34,97,115,99,34,125,125,10,32,32,32,32,32,32,32,32,93,44,10,32,32,32,32,32,32,32,32,107,101,121,58,32,104,105,116,32,61,62,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,116,105,109,101,34,93,10,32,32,32,32,125,44,10,32,32,32,32,100,97,116,101,95,100,101,115,99,58,32,123,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,68,97,116,101,32,40,68,101,115,99,101,110,100,105,110,103,41,34,44,32,109,111,100,101,58,32,91,10,32,32,32,32,32,32,32,32,32,32,32,32,123,109,116,105,109,101,58,32,123,111,114,100,101,114,58,32,34,100,101,115,99,34,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,123,95,116,105,101,58,32,123,111,114,100,101,114,58,32,34,97,115,99,34,125,125,10,32,32,32,32,32,32,32,32,93,44,10,32,32,32,32,32,32,32,32,107,101,121,58,32,104,105,116,32,61,62,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,116,105,109,101,34,93,10,32,32,32,32,125,44,10,32,32,32,32,115,105,122,101,95,97,115,99,58,32,123,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,83,105,122,101,32,40,65,115,99,101,110,100,105,110,103,41,34,44,32,109,111,100,101,58,32,91,10,32,32,32,32,32,32,32,32,32,32,32,32,123,115,105,122,101,58,32,123,111,114,100,101,114,58,32,34,97,115,99,34,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,123,95,116,105,101,58,32,123,111,114,100,101,114,58,32,34,97,115,99,34,125,125,10,32,32,32,32,32,32,32,32,93,44,10,32,32,32,32,32,32,32,32,107,101,121,58,32,104,105,116,32,61,62,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,115,105,122,101,34,93,10,32,32,32,32,125,44,10,32,32,32,32,115,105,122,101,95,100,101,115,99,58,32,123,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,83,105,122,101,32,40,68,101,115,99,101,110,100,105,110,103,41,34,44,32,109,111,100,101,58,32,91,10,32,32,32,32,32,32,32,32,32,32,32,32,123,115,105,122,101,58,32,123,111,114,100,101,114,58,32,34,100,101,115,99,34,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,123,95,116,105,101,58,32,123,111,114,100,101,114,58,32,34,97,115,99,34,125,125,10,32,32,32,32,32,32,32,32,93,44,10,32,32,32,32,32,32,32,32,107,101,121,58,32,104,105,116,32,61,62,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,115,105,122,101,34,93,10,32,32,32,32,125,44,10,125,59,10,10,102,117,110,99,116,105,111,110,32,83,101,116,116,105,110,103,115,40,41,32,123,10,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,123,125,59,10,10,32,32,32,32,116,104,105,115,46,95,111,110,85,112,100,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,36,40,34,35,102,117,122,122,121,84,111,103,103,108,101,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,44,32,116,104,105,115,46,111,112,116,105,111,110,115,46,102,117,122,122,121,41,59,10,32,32,32,32,125,59,10,10,32,32,32,32,116,104,105,115,46,108,111,97,100,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,114,97,119,32,61,32,119,105,110,100,111,119,46,108,111,99,97,108,83,116,111,114,97,103,101,46,103,101,116,73,116,101,109,40,34,111,112,116,105,111,110,115,34,41,59,10,32,32,32,32,32,32,32,32,105,102,32,40,114,97,119,32,61,61,61,32,110,117,108,108,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,95,100,101,102,97,117,108,116,115,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,106,32,61,32,74,83,79,78,46,112,97,114,115,101,40,114,97,119,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,106,32,124,124,32,79,98,106,101,99,116,46,107,101,121,115,40,95,100,101,102,97,117,108,116,115,41,46,115,111,109,101,40,107,32,61,62,32,33,106,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,107,41,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,95,100,101,102,97,117,108,116,115,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,106,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,111,110,85,112,100,97,116,101,40,41,59,10,32,32,32,32,125,59,10,10,32,32,32,32,116,104,105,115,46,115,97,118,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,119,105,110,100,111,119,46,108,111,99,97,108,83,116,111,114,97,103,101,46,115,101,116,73,116,101,109,40,34,111,112,116,105,111,110,115,34,44,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,116,104,105,115,46,111,112,116,105,111,110,115,41,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,111,110,85,112,100,97,116,101,40,41,59,10,32,32,32,32,125,10,125,10,10,10,102,117,110,99,116,105,111,110,32,115,104,111,119,69,115,69,114,114,111,114,40,41,32,123,10,32,32,32,32,36,46,116,111,97,115,116,40,123,10,32,32,32,32,32,32,32,32,104,101,97,100,105,110,103,58,32,34,69,108,97,115,116,105,99,115,101,97,114,99,104,32,99,111,110,110,101,99,116,105,111,110,32,101,114,114,111,114,34,44,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,115,105,115,116,50,32,119,101,98,32,109,111,100,117,108,101,32,101,110,99,111,117,110,116,101,114,101,100,32,97,110,32,101,114,114,111,114,32,119,104,105,108,101,32,99,111,110,110,101,99,116,105,110,103,32,34,32,43,10,32,32,32,32,32,32,32,32,32,32,32,32,34,116,111,32,69,108,97,115,116,105,99,115,101,97,114,99,104,46,32,83,101,101,32,115,101,114,118,101,114,32,108,111,103,115,32,102,111,114,32,109,111,114,101,32,105,110,102,111,114,109,97,116,105,111,110,46,34,44,10,32,32,32,32,32,32,32,32,115,116,97,99,107,58,32,102,97,108,115,101,44,10,32,32,32,32,32,32,32,32,98,103,67,111,108,111,114,58,32,34,35,97,57,52,52,52,50,34,44,10,32,32,32,32,32,32,32,32,116,101,120,116,67,111,108,111,114,58,32,34,35,102,50,100,101,100,101,34,44,10,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,58,32,39,98,111,116,116,111,109,45,114,105,103,104,116,39,44,10,32,32,32,32,32,32,32,32,104,105,100,101,65,102,116,101,114,58,32,102,97,108,115,101,10,32,32,32,32,125,41,59,10,125,10,10,106,81,117,101,114,121,91,34,106,115,111,110,80,111,115,116,34,93,32,61,32,102,117,110,99,116,105,111,110,32,40,117,114,108,44,32,100,97,116,97,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,106,81,117,101,114,121,46,97,106,97,120,40,123,10,32,32,32,32,32,32,32,32,117,114,108,58,32,117,114,108,44,10,32,32,32,32,32,32,32,32,116,121,112,101,58,32,34,112,111,115,116,34,44,10,32,32,32,32,32,32,32,32,100,97,116,97,58,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,100,97,116,97,41,44,10,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,84,121,112,101,58,32,34,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,34,10,32,32,32,32,125,41,46,102,97,105,108,40,101,114,114,32,61,62,32,123,10,32,32,32,32,32,32,32,32,115,104,111,119,69,115,69,114,114,111,114,40,41,59,10,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,101,114,114,41,59,10,32,32,32,32,125,41,59,10,125,59,10,10,119,105,110,100,111,119,46,111,110,108,111,97,100,32,61,32,40,41,32,61,62,32,123,10,32,32,32,32,36,40,34,35,116,104,101,109,101,34,41,46,111,110,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,46,105,110,99,108,117,100,101,115,40,34,115,105,115,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,32,61,32,34,115,105,115,116,61,100,97,114,107,34,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,32,61,32,34,115,105,115,116,61,59,32,77,97,120,45,65,103,101,61,45,57,57,57,57,57,57,57,57,59,34,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,114,101,108,111,97,100,40,41,59,10,32,32,32,32,125,41,10,32,32,32,32,67,79,78,70,46,108,111,97,100,40,41,59,10,125,59,10,10,102,117,110,99,116,105,111,110,32,116,111,103,103,108,101,70,117,122,122,121,40,41,32,123,10,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,125,10,10,36,46,106,115,111,110,80,111,115,116,40,34,105,34,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,10,10,32,32,32,32,99,111,110,115,116,32,117,114,108,73,110,100,105,99,101,115,32,61,32,40,110,101,119,32,85,82,76,83,101,97,114,99,104,80,97,114,97,109,115,40,108,111,99,97,116,105,111,110,46,115,101,97,114,99,104,41,41,46,103,101,116,40,34,105,34,41,59,10,32,32,32,32,114,101,115,112,91,34,105,110,100,105,99,101,115,34,93,46,102,111,114,69,97,99,104,40,105,100,120,32,61,62,32,123,10,32,32,32,32,32,32,32,32,105,110,100,101,120,77,97,112,91,105,100,120,46,105,100,93,32,61,32,105,100,120,46,110,97,109,101,59,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,111,112,116,32,61,32,36,40,34,60,111,112,116,105,111,110,62,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,118,97,108,117,101,34,44,32,105,100,120,46,105,100,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,105,100,120,46,110,97,109,101,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,117,114,108,73,110,100,105,99,101,115,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,117,114,108,73,110,100,105,99,101,115,46,115,112,108,105,116,40,34,44,34,41,46,105,110,100,101,120,79,102,40,105,100,120,46,110,97,109,101,41,32,33,61,61,32,45,49,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,46,97,116,116,114,40,34,115,101,108,101,99,116,101,100,34,44,32,116,114,117,101,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,112,117,115,104,40,105,100,120,46,105,100,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,105,100,120,46,110,97,109,101,46,105,110,99,108,117,100,101,115,40,34,40,110,115,102,119,41,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,46,97,116,116,114,40,34,115,101,108,101,99,116,101,100,34,44,32,116,114,117,101,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,112,117,115,104,40,105,100,120,46,105,100,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,36,40,34,35,105,110,100,105,99,101,115,34,41,46,97,112,112,101,110,100,40,111,112,116,41,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,99,114,101,97,116,101,80,97,116,104,84,114,101,101,40,34,35,112,97,116,104,84,114,101,101,34,41,59,10,125,41,59,10,10,102,117,110,99,116,105,111,110,32,103,101,116,68,111,99,117,109,101,110,116,73,110,102,111,40,105,100,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,36,46,103,101,116,74,83,79,78,40,34,100,47,34,32,43,32,105,100,41,46,102,97,105,108,40,101,32,61,62,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,101,41,59,10,32,32,32,32,32,32,32,32,115,104,111,119,69,115,69,114,114,111,114,40,41,59,10,32,32,32,32,125,41,10,125,10,10,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,40,116,114,101,101,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,40,110,111,100,101,44,32,101,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,101,32,33,61,61,32,34,99,104,101,99,107,101,100,34,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,105,100,32,61,61,61,32,34,97,110,121,34,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,110,111,100,101,46,105,116,114,101,101,46,115,116,97,116,101,46,99,104,101,99,107,101,100,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,100,101,115,101,108,101,99,116,40,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,110,111,100,101,40,34,97,110,121,34,41,46,100,101,115,101,108,101,99,116,40,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,125,10,125,10,10,36,46,106,115,111,110,80,111,115,116,40,34,101,115,34,44,32,123,10,32,32,32,32,97,103,103,115,58,32,123,10,32,32,32,32,32,32,32,32,109,105,109,101,84,121,112,101,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,101,114,109,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,34,109,105,109,101,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,49,48,48,48,48,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,44,10,32,32,32,32,115,105,122,101,58,32,48,44,10,125,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,10,32,32,32,32,114,101,115,112,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,109,105,109,101,84,121,112,101,115,34,93,91,34,98,117,99,107,101,116,115,34,93,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,97,46,107,101,121,32,62,32,98,46,107,101,121,41,46,102,111,114,69,97,99,104,40,98,117,99,107,101,116,32,61,62,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,116,109,112,32,61,32,98,117,99,107,101,116,91,34,107,101,121,34,93,46,115,112,108,105,116,40,34,47,34,41,59,10,32,32,32,32,32,32,32,32,108,101,116,32,99,97,116,101,103,111,114,121,32,61,32,116,109,112,91,48,93,59,10,32,32,32,32,32,32,32,32,108,101,116,32,109,105,109,101,32,61,32,116,109,112,91,49,93,59,10,10,32,32,32,32,32,32,32,32,108,101,116,32,99,97,116,101,103,111,114,121,95,101,120,105,115,116,115,32,61,32,102,97,108,115,101,59,10,10,32,32,32,32,32,32,32,32,108,101,116,32,99,104,105,108,100,32,61,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,34,105,100,34,58,32,98,117,99,107,101,116,91,34,107,101,121,34,93,44,10,32,32,32,32,32,32,32,32,32,32,32,32,34,116,101,120,116,34,58,32,96,36,123,109,105,109,101,125,32,40,36,123,98,117,99,107,101,116,91,34,100,111,99,95,99,111,117,110,116,34,93,125,41,96,10,32,32,32,32,32,32,32,32,125,59,10,10,32,32,32,32,32,32,32,32,109,105,109,101,77,97,112,46,102,111,114,69,97,99,104,40,110,111,100,101,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,116,101,120,116,32,61,61,61,32,99,97,116,101,103,111,114,121,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,99,104,105,108,100,114,101,110,46,112,117,115,104,40,99,104,105,108,100,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,116,101,103,111,114,121,95,101,120,105,115,116,115,32,61,32,116,114,117,101,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,33,99,97,116,101,103,111,114,121,95,101,120,105,115,116,115,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,109,105,109,101,77,97,112,46,112,117,115,104,40,123,34,116,101,120,116,34,58,32,99,97,116,101,103,111,114,121,44,32,99,104,105,108,100,114,101,110,58,32,91,99,104,105,108,100,93,125,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,41,59,10,32,32,32,32,109,105,109,101,77,97,112,46,112,117,115,104,40,123,34,116,101,120,116,34,58,32,34,65,108,108,34,44,32,34,105,100,34,58,32,34,97,110,121,34,125,41,59,10,10,32,32,32,32,109,105,109,101,84,114,101,101,32,61,32,110,101,119,32,73,110,115,112,105,114,101,84,114,101,101,40,123,10,32,32,32,32,32,32,32,32,115,101,108,101,99,116,105,111,110,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,109,111,100,101,58,32,39,99,104,101,99,107,98,111,120,39,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,100,97,116,97,58,32,109,105,109,101,77,97,112,10,32,32,32,32,125,41,59,10,32,32,32,32,110,101,119,32,73,110,115,112,105,114,101,84,114,101,101,68,79,77,40,109,105,109,101,84,114,101,101,44,32,123,10,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,39,35,109,105,109,101,84,114,101,101,39,10,32,32,32,32,125,41,59,10,32,32,32,32,109,105,109,101,84,114,101,101,46,111,110,40,34,110,111,100,101,46,115,116,97,116,101,46,99,104,97,110,103,101,100,34,44,32,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,40,109,105,109,101,84,114,101,101,41,41,59,10,32,32,32,32,109,105,109,101,84,114,101,101,46,100,101,115,101,108,101,99,116,40,41,59,10,32,32,32,32,109,105,109,101,84,114,101,101,46,110,111,100,101,40,34,97,110,121,34,41,46,115,101,108,101,99,116,40,41,59,10,125,41,59,10,10,47,47,32,84,97,103,115,32,116,114,101,101,10,36,46,106,115,111,110,80,111,115,116,40,34,101,115,34,44,32,123,10,32,32,32,32,97,103,103,115,58,32,123,10,32,32,32,32,32,32,32,32,116,97,103,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,101,114,109,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,34,116,97,103,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,49,48,48,48,48,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,44,10,32,32,32,32,115,105,122,101,58,32,48,44,10,125,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,10,32,32,32,32,114,101,115,112,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,116,97,103,115,34,93,91,34,98,117,99,107,101,116,115,34,93,10,32,32,32,32,32,32,32,32,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,97,91,34,107,101,121,34,93,46,108,111,99,97,108,101,67,111,109,112,97,114,101,40,98,91,34,107,101,121,34,93,41,41,10,32,32,32,32,32,32,32,32,46,102,111,114,69,97,99,104,40,98,117,99,107,101,116,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,84,97,103,40,116,97,103,77,97,112,44,32,98,117,99,107,101,116,91,34,107,101,121,34,93,44,32,98,117,99,107,101,116,91,34,107,101,121,34,93,44,32,98,117,99,107,101,116,91,34,100,111,99,95,99,111,117,110,116,34,93,41,10,32,32,32,32,32,32,32,32,125,41,59,10,10,32,32,32,32,116,97,103,77,97,112,46,112,117,115,104,40,123,34,116,101,120,116,34,58,32,34,65,108,108,34,44,32,34,105,100,34,58,32,34,97,110,121,34,125,41,59,10,32,32,32,32,116,97,103,84,114,101,101,32,61,32,110,101,119,32,73,110,115,112,105,114,101,84,114,101,101,40,123,10,32,32,32,32,32,32,32,32,115,101,108,101,99,116,105,111,110,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,109,111,100,101,58,32,39,99,104,101,99,107,98,111,120,39,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,100,97,116,97,58,32,116,97,103,77,97,112,10,32,32,32,32,125,41,59,10,32,32,32,32,110,101,119,32,73,110,115,112,105,114,101,84,114,101,101,68,79,77,40,116,97,103,84,114,101,101,44,32,123,10,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,39,35,116,97,103,84,114,101,101,39,10,32,32,32,32,125,41,59,10,32,32,32,32,116,97,103,84,114,101,101,46,111,110,40,34,110,111,100,101,46,115,116,97,116,101,46,99,104,97,110,103,101,100,34,44,32,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,40,116,97,103,84,114,101,101,41,41,59,10,32,32,32,32,116,97,103,84,114,101,101,46,110,111,100,101,40,34,97,110,121,34,41,46,115,101,108,101,99,116,40,41,59,10,32,32,32,32,115,101,97,114,99,104,66,117,115,121,32,61,32,102,97,108,115,101,59,10,125,41,59,10,10,102,117,110,99,116,105,111,110,32,97,100,100,84,97,103,40,109,97,112,44,32,116,97,103,44,32,105,100,44,32,99,111,117,110,116,41,32,123,10,32,32,32,32,108,101,116,32,116,97,103,115,32,61,32,116,97,103,46,115,112,108,105,116,40,34,35,34,41,91,48,93,46,115,112,108,105,116,40,34,46,34,41,59,10,10,32,32,32,32,108,101,116,32,99,104,105,108,100,32,61,32,123,10,32,32,32,32,32,32,32,32,105,100,58,32,105,100,44,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,97,103,115,46,108,101,110,103,116,104,32,33,61,61,32,49,32,63,32,116,97,103,115,91,48,93,32,58,32,96,36,123,116,97,103,115,91,48,93,125,32,40,36,123,99,111,117,110,116,125,41,96,44,10,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,58,32,91,93,10,32,32,32,32,125,59,10,10,32,32,32,32,108,101,116,32,102,111,117,110,100,32,61,32,102,97,108,115,101,59,10,32,32,32,32,109,97,112,46,102,111,114,69,97,99,104,40,110,111,100,101,32,61,62,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,116,101,120,116,32,61,61,61,32,99,104,105,108,100,46,116,101,120,116,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,102,111,117,110,100,32,61,32,116,114,117,101,59,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,97,103,115,46,108,101,110,103,116,104,32,33,61,61,32,49,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,84,97,103,40,110,111,100,101,46,99,104,105,108,100,114,101,110,44,32,116,97,103,115,46,115,108,105,99,101,40,49,41,46,106,111,105,110,40,34,46,34,41,44,32,105,100,44,32,99,111,117,110,116,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,41,59,10,32,32,32,32,105,102,32,40,33,102,111,117,110,100,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,116,97,103,115,46,108,101,110,103,116,104,32,33,61,61,32,49,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,84,97,103,40,99,104,105,108,100,46,99,104,105,108,100,114,101,110,44,32,116,97,103,115,46,115,108,105,99,101,40,49,41,46,106,111,105,110,40,34,46,34,41,44,32,105,100,44,32,99,111,117,110,116,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,109,97,112,46,112,117,115,104,40,99,104,105,108,100,41,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,109,97,112,46,112,117,115,104,40,99,104,105,108,100,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,125,10,10,102,117,110,99,116,105,111,110,32,105,110,115,101,114,116,72,105,116,115,40,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,44,32,104,105,116,115,41,32,123,10,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,104,105,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,10,32,32,32,32,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,61,61,32,34,103,114,105,100,34,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,46,95,98,114,105,99,107,46,97,112,112,101,110,100,40,99,114,101,97,116,101,68,111,99,67,97,114,100,40,104,105,116,115,91,105,93,41,41,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,99,114,101,97,116,101,68,111,99,76,105,110,101,40,104,105,116,115,91,105,93,41,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,100,111,99,67,111,117,110,116,43,43,59,10,32,32,32,32,125,10,125,10,10,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,115,99,114,111,108,108,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,105,102,32,40,33,115,101,97,114,99,104,66,117,115,121,41,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,116,104,114,101,115,104,111,108,100,32,61,32,52,48,48,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,40,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,32,43,32,119,105,110,100,111,119,46,115,99,114,111,108,108,89,41,32,62,61,32,100,111,99,117,109,101,110,116,46,98,111,100,121,46,111,102,102,115,101,116,72,101,105,103,104,116,32,45,32,116,104,114,101,115,104,111,108,100,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,114,101,97,99,104,101,100,69,110,100,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,111,108,105,110,103,68,111,119,110,32,61,32,116,114,117,101,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,40,108,97,115,116,68,111,99,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,125,41,59,10,10,102,117,110,99,116,105,111,110,32,103,101,116,83,101,108,101,99,116,101,100,78,111,100,101,115,40,116,114,101,101,41,32,123,10,32,32,32,32,108,101,116,32,115,101,108,101,99,116,101,100,78,111,100,101,115,32,61,32,91,93,59,10,10,32,32,32,32,108,101,116,32,115,101,108,101,99,116,101,100,32,61,32,116,114,101,101,46,115,101,108,101,99,116,101,100,40,41,59,10,10,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,115,101,108,101,99,116,101,100,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,10,32,32,32,32,32,32,32,32,105,102,32,40,115,101,108,101,99,116,101,100,91,105,93,46,105,100,32,61,61,61,32,34,97,110,121,34,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,34,97,110,121,34,93,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,47,47,79,110,108,121,32,103,101,116,32,99,104,105,108,100,114,101,110,10,32,32,32,32,32,32,32,32,105,102,32,40,115,101,108,101,99,116,101,100,91,105,93,46,116,101,120,116,46,105,110,100,101,120,79,102,40,34,40,34,41,32,33,61,61,32,45,49,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,78,111,100,101,115,46,112,117,115,104,40,115,101,108,101,99,116,101,100,91,105,93,46,105,100,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,114,101,116,117,114,110,32,115,101,108,101,99,116,101,100,78,111,100,101,115,10,125,10,10,102,117,110,99,116,105,111,110,32,115,101,97,114,99,104,40,97,102,116,101,114,32,61,32,110,117,108,108,41,32,123,10,32,32,32,32,108,97,115,116,68,111,99,32,61,32,110,117,108,108,59,10,10,32,32,32,32,105,102,32,40,115,101,97,114,99,104,66,117,115,121,41,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,10,32,32,32,32,125,10,32,32,32,32,115,101,97,114,99,104,66,117,115,121,32,61,32,116,114,117,101,59,10,10,32,32,32,32,108,101,116,32,115,101,97,114,99,104,82,101,115,117,108,116,115,32,61,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,115,101,97,114,99,104,82,101,115,117,108,116,115,34,41,59,10,32,32,32,32,47,47,67,108,101,97,114,32,111,108,100,32,115,101,97,114,99,104,32,114,101,115,117,108,116,115,10,32,32,32,32,108,101,116,32,112,114,101,108,111,97,100,59,10,32,32,32,32,105,102,32,40,33,97,102,116,101,114,41,32,123,10,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,115,101,97,114,99,104,82,101,115,117,108,116,115,46,102,105,114,115,116,67,104,105,108,100,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,82,101,115,117,108,116,115,46,114,101,109,111,118,101,67,104,105,108,100,40,115,101,97,114,99,104,82,101,115,117,108,116,115,46,102,105,114,115,116,67,104,105,108,100,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,112,114,101,108,111,97,100,32,61,32,109,97,107,101,80,114,101,108,111,97,100,101,114,40,41,59,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,82,101,115,117,108,116,115,46,97,112,112,101,110,100,67,104,105,108,100,40,112,114,101,108,111,97,100,41,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,113,117,101,114,121,32,61,32,115,101,97,114,99,104,66,97,114,46,118,97,108,117,101,59,10,32,32,32,32,108,101,116,32,101,109,112,116,121,32,61,32,113,117,101,114,121,32,61,61,61,32,34,34,59,10,32,32,32,32,108,101,116,32,99,111,110,100,105,116,105,111,110,32,61,32,101,109,112,116,121,32,63,32,34,115,104,111,117,108,100,34,32,58,32,34,109,117,115,116,34,59,10,32,32,32,32,108,101,116,32,102,105,108,116,101,114,115,32,61,32,91,10,32,32,32,32,32,32,32,32,123,114,97,110,103,101,58,32,123,115,105,122,101,58,32,123,103,116,101,58,32,115,105,122,101,95,109,105,110,44,32,108,116,101,58,32,115,105,122,101,95,109,97,120,125,125,125,44,10,32,32,32,32,32,32,32,32,123,116,101,114,109,115,58,32,123,105,110,100,101,120,58,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,125,125,10,32,32,32,32,93,59,10,32,32,32,32,108,101,116,32,102,105,101,108,100,115,32,61,32,91,10,32,32,32,32,32,32,32,32,34,110,97,109,101,94,56,34,44,10,32,32,32,32,32,32,32,32,34,99,111,110,116,101,110,116,94,51,34,44,10,32,32,32,32,32,32,32,32,34,97,108,98,117,109,94,56,34,44,32,34,97,114,116,105,115,116,94,56,34,44,32,34,116,105,116,108,101,94,56,34,44,32,34,103,101,110,114,101,94,50,34,44,32,34,97,108,98,117,109,95,97,114,116,105,115,116,94,56,34,44,10,32,32,32,32,32,32,32,32,34,102,111,110,116,95,110,97,109,101,94,54,34,10,32,32,32,32,93,59,10,10,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,115,101,97,114,99,104,73,110,80,97,116,104,41,32,123,10,32,32,32,32,32,32,32,32,102,105,101,108,100,115,46,112,117,115,104,40,34,112,97,116,104,46,116,101,120,116,94,53,34,41,59,10,32,32,32,32,125,10,10,32,32,32,32,105,102,32,40,36,40,34,35,102,117,122,122,121,84,111,103,103,108,101,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,41,41,32,123,10,32,32,32,32,32,32,32,32,102,105,101,108,100,115,46,112,117,115,104,40,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,41,59,10,32,32,32,32,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,115,101,97,114,99,104,73,110,80,97,116,104,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,115,46,112,117,115,104,40,34,112,97,116,104,46,110,71,114,97,109,34,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,102,105,101,108,100,115,46,112,117,115,104,40,34,110,97,109,101,46,110,71,114,97,109,94,51,34,41,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,112,97,116,104,32,61,32,112,97,116,104,66,97,114,46,118,97,108,117,101,46,114,101,112,108,97,99,101,40,47,92,47,36,47,44,32,34,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,32,47,47,114,101,109,111,118,101,32,116,114,97,105,108,105,110,103,32,115,108,97,115,104,101,115,10,32,32,32,32,105,102,32,40,112,97,116,104,32,33,61,61,32,34,34,41,32,123,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,91,123,116,101,114,109,58,32,123,112,97,116,104,58,32,112,97,116,104,125,125,93,41,10,32,32,32,32,125,10,32,32,32,32,108,101,116,32,109,105,109,101,84,121,112,101,115,32,61,32,103,101,116,83,101,108,101,99,116,101,100,78,111,100,101,115,40,109,105,109,101,84,114,101,101,41,59,10,32,32,32,32,105,102,32,40,33,109,105,109,101,84,121,112,101,115,46,105,110,99,108,117,100,101,115,40,34,97,110,121,34,41,41,32,123,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,91,123,116,101,114,109,115,58,32,123,34,109,105,109,101,34,58,32,109,105,109,101,84,121,112,101,115,125,125,93,41,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,116,97,103,115,32,61,32,103,101,116,83,101,108,101,99,116,101,100,78,111,100,101,115,40,116,97,103,84,114,101,101,41,59,10,32,32,32,32,105,102,32,40,33,116,97,103,115,46,105,110,99,108,117,100,101,115,40,34,97,110,121,34,41,41,32,123,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,91,123,116,101,114,109,115,58,32,123,34,116,97,103,34,58,32,116,97,103,115,125,125,93,41,59,10,32,32,32,32,125,10,10,32,32,32,32,105,102,32,40,100,97,116,101,95,109,105,110,32,38,38,32,100,97,116,101,95,109,97,120,41,32,123,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,91,123,114,97,110,103,101,58,32,123,109,116,105,109,101,58,32,123,103,116,101,58,32,100,97,116,101,95,109,105,110,44,32,108,116,101,58,32,100,97,116,101,95,109,97,120,125,125,125,93,41,10,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,100,97,116,101,95,109,105,110,41,32,123,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,91,123,114,97,110,103,101,58,32,123,109,116,105,109,101,58,32,123,103,116,101,58,32,100,97,116,101,95,109,105,110,125,125,125,93,41,10,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,100,97,116,101,95,109,97,120,41,32,123,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,91,123,114,97,110,103,101,58,32,123,109,116,105,109,101,58,32,123,108,116,101,58,32,100,97,116,101,95,109,97,120,125,125,125,93,41,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,113,32,61,32,123,10,32,32,32,32,32,32,32,32,34,95,115,111,117,114,99,101,34,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,101,120,99,108,117,100,101,115,58,32,91,34,99,111,110,116,101,110,116,34,44,32,34,95,116,105,101,34,93,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,98,111,111,108,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,99,111,110,100,105,116,105,111,110,93,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,105,109,112,108,101,95,113,117,101,114,121,95,115,116,114,105,110,103,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,113,117,101,114,121,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,115,58,32,102,105,101,108,100,115,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,95,111,112,101,114,97,116,111,114,58,32,34,97,110,100,34,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,58,32,102,105,108,116,101,114,115,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,34,115,111,114,116,34,58,32,83,79,82,84,95,77,79,68,69,83,91,67,79,78,70,46,111,112,116,105,111,110,115,46,115,111,114,116,93,46,109,111,100,101,44,10,32,32,32,32,32,32,32,32,97,103,103,115,58,10,32,32,32,32,32,32,32,32,32,32,32,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,111,116,97,108,95,115,105,122,101,58,32,123,34,115,117,109,34,58,32,123,34,102,105,101,108,100,34,58,32,34,115,105,122,101,34,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,111,116,97,108,95,99,111,117,110,116,58,32,123,34,118,97,108,117,101,95,99,111,117,110,116,34,58,32,123,34,102,105,101,108,100,34,58,32,34,115,105,122,101,34,125,125,10,32,32,32,32,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,115,105,122,101,58,32,83,73,90,69,44,10,32,32,32,32,125,59,10,10,32,32,32,32,105,102,32,40,97,102,116,101,114,41,32,123,10,32,32,32,32,32,32,32,32,113,46,115,101,97,114,99,104,95,97,102,116,101,114,32,61,32,91,83,79,82,84,95,77,79,68,69,83,91,67,79,78,70,46,111,112,116,105,111,110,115,46,115,111,114,116,93,46,107,101,121,40,97,102,116,101,114,41,44,32,97,102,116,101,114,91,34,95,105,100,34,93,93,59,10,32,32,32,32,125,10,10,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,104,105,103,104,108,105,103,104,116,41,32,123,10,32,32,32,32,32,32,32,32,113,46,104,105,103,104,108,105,103,104,116,32,61,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,95,116,97,103,115,58,32,91,34,60,109,97,114,107,62,34,93,44,10,32,32,32,32,32,32,32,32,32,32,32,32,112,111,115,116,95,116,97,103,115,58,32,91,34,60,47,109,97,114,107,62,34,93,44,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,58,32,123,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,58,32,123,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,97,109,101,58,32,123,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,34,110,97,109,101,46,110,71,114,97,109,34,58,32,123,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,110,116,95,110,97,109,101,58,32,123,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,59,10,32,32,32,32,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,115,101,97,114,99,104,73,110,80,97,116,104,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,113,46,104,105,103,104,108,105,103,104,116,46,102,105,101,108,100,115,91,34,112,97,116,104,46,116,101,120,116,34,93,32,61,32,123,125,59,10,32,32,32,32,32,32,32,32,32,32,32,32,113,46,104,105,103,104,108,105,103,104,116,46,102,105,101,108,100,115,91,34,112,97,116,104,46,110,71,114,97,109,34,93,32,61,32,123,125,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,36,46,106,115,111,110,80,111,115,116,40,34,101,115,34,44,32,113,41,46,116,104,101,110,40,115,101,97,114,99,104,82,101,115,117,108,116,32,61,62,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,104,105,116,115,32,61,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,104,105,116,115,34,93,91,34,104,105,116,115,34,93,59,10,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,115,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,108,97,115,116,68,111,99,32,61,32,104,105,116,115,91,104,105,116,115,46,108,101,110,103,116,104,32,45,32,49,93,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,104,105,116,115,46,102,111,114,69,97,99,104,40,104,105,116,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,110,97,109,101,34,93,32,61,32,115,116,114,85,110,101,115,99,97,112,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,110,97,109,101,34,93,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,32,61,32,115,116,114,85,110,101,115,99,97,112,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,41,59,10,32,32,32,32,32,32,32,32,125,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,33,97,102,116,101,114,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,108,111,97,100,46,114,101,109,111,118,101,40,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,82,101,115,117,108,116,115,46,97,112,112,101,110,100,67,104,105,108,100,40,109,97,107,101,83,116,97,116,115,67,97,114,100,40,115,101,97,114,99,104,82,101,115,117,108,116,41,41,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,112,97,103,101,73,110,100,105,99,97,116,111,114,32,61,32,109,97,107,101,80,97,103,101,73,110,100,105,99,97,116,111,114,40,115,101,97,114,99,104,82,101,115,117,108,116,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,82,101,115,117,108,116,115,46,97,112,112,101,110,100,67,104,105,108,100,40,112,97,103,101,73,110,100,105,99,97,116,111,114,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,47,47,83,101,116,117,112,32,112,97,103,101,10,32,32,32,32,32,32,32,32,108,101,116,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,32,61,32,109,97,107,101,82,101,115,117,108,116,67,111,110,116,97,105,110,101,114,40,41,59,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,82,101,115,117,108,116,115,46,97,112,112,101,110,100,67,104,105,108,100,40,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,61,61,32,34,103,114,105,100,34,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,46,95,98,114,105,99,107,32,61,32,110,101,119,32,66,114,105,99,107,108,97,121,101,114,40,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,105,102,32,40,33,97,102,116,101,114,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,67,111,117,110,116,32,61,32,48,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,114,101,97,99,104,101,100,69,110,100,32,61,32,104,105,116,115,46,108,101,110,103,116,104,32,33,61,61,32,83,73,90,69,59,10,32,32,32,32,32,32,32,32,105,110,115,101,114,116,72,105,116,115,40,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,44,32,104,105,116,115,41,59,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,66,117,115,121,32,61,32,102,97,108,115,101,59,10,32,32,32,32,125,41,59,10,125,10,10,10,108,101,116,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,32,61,32,95,46,100,101,98,111,117,110,99,101,40,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,99,111,111,108,105,110,103,68,111,119,110,32,61,32,102,97,108,115,101,59,10,32,32,32,32,115,101,97,114,99,104,40,41,10,125,44,32,53,48,48,41,59,10,10,115,101,97,114,99,104,66,97,114,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,107,101,121,117,112,34,44,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,41,59,10,112,97,116,104,66,97,114,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,107,101,121,117,112,34,44,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,41,59,10,10,47,47,83,105,122,101,32,115,108,105,100,101,114,10,36,40,34,35,115,105,122,101,83,108,105,100,101,114,34,41,46,105,111,110,82,97,110,103,101,83,108,105,100,101,114,40,123,10,32,32,32,32,116,121,112,101,58,32,34,100,111,117,98,108,101,34,44,10,32,32,32,32,103,114,105,100,58,32,102,97,108,115,101,44,10,32,32,32,32,102,111,114,99,101,95,101,100,103,101,115,58,32,116,114,117,101,44,10,32,32,32,32,109,105,110,58,32,48,44,10,32,32,32,32,109,97,120,58,32,51,54,56,52,46,48,51,49,52,57,56,54,52,44,10,32,32,32,32,102,114,111,109,58,32,48,44,10,32,32,32,32,116,111,58,32,51,54,56,52,46,48,51,49,52,57,56,54,52,44,10,32,32,32,32,109,105,110,95,105,110,116,101,114,118,97,108,58,32,53,44,10,32,32,32,32,100,114,97,103,95,105,110,116,101,114,118,97,108,58,32,116,114,117,101,44,10,32,32,32,32,112,114,101,116,116,105,102,121,58,32,102,117,110,99,116,105,111,110,32,40,110,117,109,41,32,123,10,10,32,32,32,32,32,32,32,32,105,102,32,40,110,117,109,32,61,61,61,32,48,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,34,48,32,66,34,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,117,109,32,62,61,32,51,54,56,52,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,117,109,97,110,70,105,108,101,83,105,122,101,40,110,117,109,32,42,32,110,117,109,32,42,32,110,117,109,41,32,43,32,34,43,34,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,117,109,97,110,70,105,108,101,83,105,122,101,40,110,117,109,32,42,32,110,117,109,32,42,32,110,117,109,41,10,32,32,32,32,125,44,10,32,32,32,32,111,110,67,104,97,110,103,101,58,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,10,32,32,32,32,32,32,32,32,115,105,122,101,95,109,105,110,32,61,32,40,101,46,102,114,111,109,32,42,32,101,46,102,114,111,109,32,42,32,101,46,102,114,111,109,41,59,10,32,32,32,32,32,32,32,32,115,105,122,101,95,109,97,120,32,61,32,40,101,46,116,111,32,42,32,101,46,116,111,32,42,32,101,46,116,111,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,101,46,116,111,32,62,61,32,51,54,56,52,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,95,109,97,120,32,61,32,49,48,48,48,48,48,48,48,48,48,48,48,48,48,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,125,10,125,41,59,10,10,47,47,68,97,116,101,32,115,108,105,100,101,114,10,36,46,106,115,111,110,80,111,115,116,40,34,101,115,34,44,32,123,10,32,32,32,32,97,103,103,115,58,32,123,10,32,32,32,32,32,32,32,32,100,97,116,101,95,109,105,110,58,32,123,109,105,110,58,32,123,102,105,101,108,100,58,32,34,109,116,105,109,101,34,125,125,44,10,32,32,32,32,32,32,32,32,100,97,116,101,95,109,97,120,58,32,123,109,97,120,58,32,123,102,105,101,108,100,58,32,34,109,116,105,109,101,34,125,125,44,10,32,32,32,32,125,44,10,32,32,32,32,115,105,122,101,58,32,48,10,125,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,10,32,32,32,32,36,40,34,35,100,97,116,101,83,108,105,100,101,114,34,41,46,105,111,110,82,97,110,103,101,83,108,105,100,101,114,40,123,10,32,32,32,32,32,32,32,32,116,121,112,101,58,32,34,100,111,117,98,108,101,34,44,10,32,32,32,32,32,32,32,32,103,114,105,100,58,32,102,97,108,115,101,44,10,32,32,32,32,32,32,32,32,102,111,114,99,101,95,101,100,103,101,115,58,32,116,114,117,101,44,10,32,32,32,32,32,32,32,32,109,105,110,58,32,114,101,115,112,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,100,97,116,101,95,109,105,110,34,93,91,34,118,97,108,117,101,34,93,44,10,32,32,32,32,32,32,32,32,109,97,120,58,32,114,101,115,112,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,100,97,116,101,95,109,97,120,34,93,91,34,118,97,108,117,101,34,93,44,10,32,32,32,32,32,32,32,32,102,114,111,109,58,32,114,101,115,112,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,100,97,116,101,95,109,105,110,34,93,91,34,118,97,108,117,101,34,93,44,10,32,32,32,32,32,32,32,32,116,111,58,32,40,68,97,116,101,46,110,111,119,40,41,32,47,32,49,48,48,48,41,44,10,32,32,32,32,32,32,32,32,109,105,110,95,105,110,116,101,114,118,97,108,58,32,51,54,48,48,32,42,32,50,52,32,42,32,55,44,10,32,32,32,32,32,32,32,32,115,116,101,112,58,32,51,54,48,48,32,42,32,50,52,44,10,32,32,32,32,32,32,32,32,100,114,97,103,95,105,110,116,101,114,118,97,108,58,32,116,114,117,101,44,10,32,32,32,32,32,32,32,32,112,114,101,116,116,105,102,121,58,32,102,117,110,99,116,105,111,110,32,40,110,117,109,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,100,97,116,101,32,61,32,40,110,101,119,32,68,97,116,101,40,110,117,109,32,42,32,49,48,48,48,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,116,101,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,32,43,32,34,45,34,32,43,32,40,34,48,34,32,43,32,40,100,97,116,101,46,103,101,116,85,84,67,77,111,110,116,104,40,41,32,43,32,49,41,41,46,115,108,105,99,101,40,45,50,41,32,43,32,34,45,34,32,43,32,40,34,48,34,32,43,32,100,97,116,101,46,103,101,116,85,84,67,68,97,116,101,40,41,41,46,115,108,105,99,101,40,45,50,41,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,111,110,70,105,110,105,115,104,58,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,100,97,116,101,95,109,105,110,32,61,32,101,46,102,114,111,109,32,61,61,61,32,101,46,109,105,110,32,63,32,110,117,108,108,32,58,32,101,46,102,114,111,109,59,10,32,32,32,32,32,32,32,32,32,32,32,32,100,97,116,101,95,109,97,120,32,61,32,101,46,116,111,32,61,61,61,32,101,46,109,97,120,32,63,32,110,117,108,108,32,58,32,101,46,116,111,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,41,59,10,125,41,10,10,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,73,110,100,105,99,101,115,40,41,32,123,10,32,32,32,32,108,101,116,32,115,101,108,101,99,116,101,100,32,61,32,36,40,39,35,105,110,100,105,99,101,115,39,41,46,102,105,110,100,40,39,111,112,116,105,111,110,58,115,101,108,101,99,116,101,100,39,41,59,10,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,32,61,32,91,93,59,10,32,32,32,32,36,40,115,101,108,101,99,116,101,100,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,112,117,115,104,40,36,40,116,104,105,115,41,46,118,97,108,40,41,41,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,125,10,10,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,105,110,100,105,99,101,115,34,41,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,104,97,110,103,101,34,44,32,117,112,100,97,116,101,73,110,100,105,99,101,115,41,59,10,117,112,100,97,116,101,73,110,100,105,99,101,115,40,41,59,10,10,119,105,110,100,111,119,46,111,110,107,101,121,117,112,32,61,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,10,32,32,32,32,105,102,32,40,101,46,107,101,121,32,61,61,61,32,34,47,34,32,124,124,32,101,46,107,101,121,32,61,61,61,32,34,69,115,99,97,112,101,34,41,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,98,97,114,32,61,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,115,101,97,114,99,104,66,97,114,34,41,59,10,32,32,32,32,32,32,32,32,98,97,114,46,115,99,114,111,108,108,73,110,116,111,86,105,101,119,40,41,59,10,32,32,32,32,32,32,32,32,98,97,114,46,102,111,99,117,115,40,41,59,10,32,32,32,32,125,10,125,59,10,10,102,117,110,99,116,105,111,110,32,103,101,116,78,101,120,116,68,101,112,116,104,40,110,111,100,101,41,32,123,10,32,32,32,32,108,101,116,32,113,32,61,32,123,10,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,98,111,111,108,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,58,32,91,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,116,101,114,109,58,32,123,105,110,100,101,120,58,32,110,111,100,101,46,105,110,100,101,120,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,114,97,110,103,101,58,32,123,95,100,101,112,116,104,58,32,123,103,116,101,58,32,110,111,100,101,46,100,101,112,116,104,32,43,32,49,44,32,108,116,101,58,32,110,111,100,101,46,100,101,112,116,104,32,43,32,51,125,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,97,103,103,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,101,114,109,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,34,112,97,116,104,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,49,48,48,48,48,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,115,105,122,101,58,32,48,10,32,32,32,32,125,10,10,32,32,32,32,105,102,32,40,110,111,100,101,46,100,101,112,116,104,32,62,32,48,41,32,123,10,32,32,32,32,32,32,32,32,113,46,113,117,101,114,121,46,98,111,111,108,46,109,117,115,116,32,61,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,102,105,120,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,58,32,110,111,100,101,46,105,100,44,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,59,10,32,32,32,32,125,10,10,32,32,32,32,114,101,116,117,114,110,32,36,46,106,115,111,110,80,111,115,116,40,34,101,115,34,44,32,113,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,98,117,99,107,101,116,115,32,61,32,114,101,115,112,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,112,97,116,104,115,34,93,91,34,98,117,99,107,101,116,115,34,93,59,10,32,32,32,32,32,32,32,32,105,102,32,40,33,98,117,99,107,101,116,115,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,112,97,116,104,115,32,61,32,91,93,59,10,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,117,99,107,101,116,115,10,32,32,32,32,32,32,32,32,32,32,32,32,46,102,105,108,116,101,114,40,98,117,99,107,101,116,32,61,62,32,98,117,99,107,101,116,46,107,101,121,46,108,101,110,103,116,104,32,62,32,110,111,100,101,46,105,100,46,108,101,110,103,116,104,32,124,124,32,110,111,100,101,46,105,100,46,115,116,97,114,116,115,87,105,116,104,40,34,47,34,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,97,46,107,101,121,32,62,32,98,46,107,101,121,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,109,97,112,40,98,117,99,107,101,116,32,61,62,32,123,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,97,116,104,115,46,115,111,109,101,40,110,32,61,62,32,98,117,99,107,101,116,46,107,101,121,46,115,116,97,114,116,115,87,105,116,104,40,110,41,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,110,97,109,101,32,61,32,110,111,100,101,46,105,100,46,115,116,97,114,116,115,87,105,116,104,40,34,47,34,41,32,63,32,98,117,99,107,101,116,46,107,101,121,32,58,32,98,117,99,107,101,116,46,107,101,121,46,115,108,105,99,101,40,110,111,100,101,46,105,100,46,108,101,110,103,116,104,32,43,32,49,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,115,46,112,117,115,104,40,98,117,99,107,101,116,46,107,101,121,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,100,58,32,98,117,99,107,101,116,46,107,101,121,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,96,36,123,110,97,109,101,125,47,32,40,36,123,98,117,99,107,101,116,46,100,111,99,95,99,111,117,110,116,125,41,96,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,101,112,116,104,58,32,110,111,100,101,46,100,101,112,116,104,32,43,32,49,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,58,32,110,111,100,101,46,105,110,100,101,120,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,58,32,116,114,117,101,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,125,41,46,102,105,108,116,101,114,40,120,32,61,62,32,120,32,33,61,61,32,110,117,108,108,41,10,32,32,32,32,125,41,10,125,10,10,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,80,97,116,104,84,114,101,101,67,108,105,99,107,40,116,114,101,101,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,40,101,118,101,110,116,44,32,110,111,100,101,44,32,104,97,110,100,108,101,114,41,32,61,62,32,123,10,10,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,100,101,112,116,104,32,33,61,61,32,48,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,112,97,116,104,66,97,114,34,41,46,118,97,108,40,110,111,100,101,46,105,100,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,112,97,116,104,84,114,101,101,77,111,100,97,108,34,41,46,109,111,100,97,108,40,34,104,105,100,101,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,40,41,59,10,32,32,32,32,125,10,125,10,10,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,80,97,116,104,84,114,101,101,40,116,97,114,103,101,116,41,32,123,10,32,32,32,32,108,101,116,32,112,97,116,104,84,114,101,101,32,61,32,110,101,119,32,73,110,115,112,105,114,101,84,114,101,101,40,123,10,32,32,32,32,32,32,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,40,110,111,100,101,44,32,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,103,101,116,78,101,120,116,68,101,112,116,104,40,110,111,100,101,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,41,59,10,10,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,102,111,114,69,97,99,104,40,105,110,100,101,120,32,61,62,32,123,10,32,32,32,32,32,32,32,32,112,97,116,104,84,114,101,101,46,97,100,100,78,111,100,101,40,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,100,58,32,34,47,34,32,43,32,105,110,100,101,120,44,10,32,32,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,96,47,91,36,123,105,110,100,101,120,77,97,112,91,105,110,100,101,120,93,125,93,96,44,10,32,32,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,58,32,105,110,100,101,120,44,10,32,32,32,32,32,32,32,32,32,32,32,32,100,101,112,116,104,58,32,48,44,10,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,58,32,116,114,117,101,10,32,32,32,32,32,32,32,32,125,41,10,32,32,32,32,125,41,59,10,10,32,32,32,32,110,101,119,32,73,110,115,112,105,114,101,84,114,101,101,68,79,77,40,112,97,116,104,84,114,101,101,44,32,123,10,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,116,97,114,103,101,116,10,32,32,32,32,125,41,59,10,10,32,32,32,32,112,97,116,104,84,114,101,101,46,111,110,40,34,110,111,100,101,46,99,108,105,99,107,34,44,32,104,97,110,100,108,101,80,97,116,104,84,114,101,101,67,108,105,99,107,40,112,97,116,104,84,114,101,101,41,41,59,10,125,10,10,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,83,101,116,116,105,110,103,115,40,41,32,123,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,32,36,40,34,35,115,101,116,116,105,110,103,68,105,115,112,108,97,121,34,41,46,118,97,108,40,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,102,117,122,122,121,32,61,32,36,40,34,35,115,101,116,116,105,110,103,70,117,122,122,121,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,104,105,103,104,108,105,103,104,116,32,61,32,36,40,34,35,115,101,116,116,105,110,103,72,105,103,104,108,105,103,104,116,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,115,101,97,114,99,104,73,110,80,97,116,104,32,61,32,36,40,34,35,115,101,116,116,105,110,103,83,101,97,114,99,104,73,110,80,97,116,104,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,41,59,10,32,32,32,32,67,79,78,70,46,115,97,118,101,40,41,59,10,10,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,10,32,32,32,32,36,46,116,111,97,115,116,40,123,10,32,32,32,32,32,32,32,32,104,101,97,100,105,110,103,58,32,34,83,101,116,116,105,110,103,115,32,117,112,100,97,116,101,100,34,44,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,83,101,116,116,105,110,103,115,32,115,97,118,101,100,32,116,111,32,98,114,111,119,115,101,114,32,115,116,111,114,97,103,101,34,44,10,32,32,32,32,32,32,32,32,115,116,97,99,107,58,32,51,44,10,32,32,32,32,32,32,32,32,98,103,67,111,108,111,114,58,32,34,35,48,48,97,52,98,99,34,44,10,32,32,32,32,32,32,32,32,116,101,120,116,67,111,108,111,114,58,32,34,35,102,102,102,34,44,10,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,58,32,39,98,111,116,116,111,109,45,114,105,103,104,116,39,44,10,32,32,32,32,32,32,32,32,104,105,100,101,65,102,116,101,114,58,32,51,48,48,48,44,10,32,32,32,32,32,32,32,32,108,111,97,100,101,114,66,103,58,32,34,35,48,56,99,55,101,56,34,44,10,32,32,32,32,125,41,59,10,125,10,10,102,117,110,99,116,105,111,110,32,108,111,97,100,83,101,116,116,105,110,103,115,40,41,32,123,10,32,32,32,32,67,79,78,70,46,108,111,97,100,40,41,59,10,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,68,105,115,112,108,97,121,34,41,46,118,97,108,40,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,70,117,122,122,121,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,44,32,67,79,78,70,46,111,112,116,105,111,110,115,46,102,117,122,122,121,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,72,105,103,104,108,105,103,104,116,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,44,32,67,79,78,70,46,111,112,116,105,111,110,115,46,104,105,103,104,108,105,103,104,116,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,83,101,97,114,99,104,73,110,80,97,116,104,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,44,32,67,79,78,70,46,111,112,116,105,111,110,115,46,115,101,97,114,99,104,73,110,80,97,116,104,41,59,10,125,10}; +char bundle_css[197527] = {47,42,33,10,32,42,32,66,111,111,116,115,116,114,97,112,32,118,52,46,51,46,49,32,40,104,116,116,112,115,58,47,47,103,101,116,98,111,111,116,115,116,114,97,112,46,99,111,109,47,41,10,32,42,32,67,111,112,121,114,105,103,104,116,32,50,48,49,49,45,50,48,49,57,32,84,104,101,32,66,111,111,116,115,116,114,97,112,32,65,117,116,104,111,114,115,10,32,42,32,67,111,112,121,114,105,103,104,116,32,50,48,49,49,45,50,48,49,57,32,84,119,105,116,116,101,114,44,32,73,110,99,46,10,32,42,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,32,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,119,98,115,47,98,111,111,116,115,116,114,97,112,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,41,10,32,42,47,58,114,111,111,116,123,45,45,98,108,117,101,58,35,48,48,55,98,102,102,59,45,45,105,110,100,105,103,111,58,35,54,54,49,48,102,50,59,45,45,112,117,114,112,108,101,58,35,54,102,52,50,99,49,59,45,45,112,105,110,107,58,35,101,56,51,101,56,99,59,45,45,114,101,100,58,35,100,99,51,53,52,53,59,45,45,111,114,97,110,103,101,58,35,102,100,55,101,49,52,59,45,45,121,101,108,108,111,119,58,35,102,102,99,49,48,55,59,45,45,103,114,101,101,110,58,35,50,56,97,55,52,53,59,45,45,116,101,97,108,58,35,50,48,99,57,57,55,59,45,45,99,121,97,110,58,35,49,55,97,50,98,56,59,45,45,119,104,105,116,101,58,35,102,102,102,59,45,45,103,114,97,121,58,35,54,99,55,53,55,100,59,45,45,103,114,97,121,45,100,97,114,107,58,35,51,52,51,97,52,48,59,45,45,112,114,105,109,97,114,121,58,35,48,48,55,98,102,102,59,45,45,115,101,99,111,110,100,97,114,121,58,35,54,99,55,53,55,100,59,45,45,115,117,99,99,101,115,115,58,35,50,56,97,55,52,53,59,45,45,105,110,102,111,58,35,49,55,97,50,98,56,59,45,45,119,97,114,110,105,110,103,58,35,102,102,99,49,48,55,59,45,45,100,97,110,103,101,114,58,35,100,99,51,53,52,53,59,45,45,108,105,103,104,116,58,35,102,56,102,57,102,97,59,45,45,100,97,114,107,58,35,51,52,51,97,52,48,59,45,45,98,114,101,97,107,112,111,105,110,116,45,120,115,58,48,59,45,45,98,114,101,97,107,112,111,105,110,116,45,115,109,58,53,55,54,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,109,100,58,55,54,56,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,108,103,58,57,57,50,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,120,108,58,49,50,48,48,112,120,59,45,45,102,111,110,116,45,102,97,109,105,108,121,45,115,97,110,115,45,115,101,114,105,102,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,45,45,102,111,110,116,45,102,97,109,105,108,121,45,109,111,110,111,115,112,97,99,101,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,34,67,111,117,114,105,101,114,32,78,101,119,34,44,109,111,110,111,115,112,97,99,101,125,42,44,58,58,97,102,116,101,114,44,58,58,98,101,102,111,114,101,123,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,104,116,109,108,123,102,111,110,116,45,102,97,109,105,108,121,58,115,97,110,115,45,115,101,114,105,102,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,49,53,59,45,119,101,98,107,105,116,45,116,101,120,116,45,115,105,122,101,45,97,100,106,117,115,116,58,49,48,48,37,59,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,97,114,116,105,99,108,101,44,97,115,105,100,101,44,102,105,103,99,97,112,116,105,111,110,44,102,105,103,117,114,101,44,102,111,111,116,101,114,44,104,101,97,100,101,114,44,104,103,114,111,117,112,44,109,97,105,110,44,110,97,118,44,115,101,99,116,105,111,110,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,98,111,100,121,123,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,91,116,97,98,105,110,100,101,120,61,34,45,49,34,93,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,33,105,109,112,111,114,116,97,110,116,125,104,114,123,98,111,120,45,115,105,122,105,110,103,58,99,111,110,116,101,110,116,45,98,111,120,59,104,101,105,103,104,116,58,48,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,104,49,44,104,50,44,104,51,44,104,52,44,104,53,44,104,54,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,112,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,97,98,98,114,91,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,93,44,97,98,98,114,91,116,105,116,108,101,93,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,59,45,119,101,98,107,105,116,45,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,32,100,111,116,116,101,100,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,32,100,111,116,116,101,100,59,99,117,114,115,111,114,58,104,101,108,112,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,45,119,101,98,107,105,116,45,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,115,107,105,112,45,105,110,107,58,110,111,110,101,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,115,107,105,112,45,105,110,107,58,110,111,110,101,125,97,100,100,114,101,115,115,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,125,100,108,44,111,108,44,117,108,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,111,108,32,111,108,44,111,108,32,117,108,44,117,108,32,111,108,44,117,108,32,117,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,100,116,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,100,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,98,108,111,99,107,113,117,111,116,101,123,109,97,114,103,105,110,58,48,32,48,32,49,114,101,109,125,98,44,115,116,114,111,110,103,123,102,111,110,116,45,119,101,105,103,104,116,58,98,111,108,100,101,114,125,115,109,97,108,108,123,102,111,110,116,45,115,105,122,101,58,56,48,37,125,115,117,98,44,115,117,112,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,102,111,110,116,45,115,105,122,101,58,55,53,37,59,108,105,110,101,45,104,101,105,103,104,116,58,48,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,125,115,117,98,123,98,111,116,116,111,109,58,45,46,50,53,101,109,125,115,117,112,123,116,111,112,58,45,46,53,101,109,125,97,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,97,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,58,102,111,99,117,115,44,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,58,104,111,118,101,114,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,125,99,111,100,101,44,107,98,100,44,112,114,101,44,115,97,109,112,123,102,111,110,116,45,102,97,109,105,108,121,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,34,67,111,117,114,105,101,114,32,78,101,119,34,44,109,111,110,111,115,112,97,99,101,59,102,111,110,116,45,115,105,122,101,58,49,101,109,125,112,114,101,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,111,118,101,114,102,108,111,119,58,97,117,116,111,125,102,105,103,117,114,101,123,109,97,114,103,105,110,58,48,32,48,32,49,114,101,109,125,105,109,103,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,98,111,114,100,101,114,45,115,116,121,108,101,58,110,111,110,101,125,115,118,103,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,116,97,98,108,101,123,98,111,114,100,101,114,45,99,111,108,108,97,112,115,101,58,99,111,108,108,97,112,115,101,125,99,97,112,116,105,111,110,123,112,97,100,100,105,110,103,45,116,111,112,58,46,55,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,99,97,112,116,105,111,110,45,115,105,100,101,58,98,111,116,116,111,109,125,116,104,123,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,125,108,97,98,101,108,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,98,117,116,116,111,110,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,98,117,116,116,111,110,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,49,112,120,32,100,111,116,116,101,100,59,111,117,116,108,105,110,101,58,53,112,120,32,97,117,116,111,32,45,119,101,98,107,105,116,45,102,111,99,117,115,45,114,105,110,103,45,99,111,108,111,114,125,98,117,116,116,111,110,44,105,110,112,117,116,44,111,112,116,103,114,111,117,112,44,115,101,108,101,99,116,44,116,101,120,116,97,114,101,97,123,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,105,110,104,101,114,105,116,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,125,98,117,116,116,111,110,44,105,110,112,117,116,123,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,98,117,116,116,111,110,44,115,101,108,101,99,116,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,115,101,108,101,99,116,123,119,111,114,100,45,119,114,97,112,58,110,111,114,109,97,108,125,91,116,121,112,101,61,98,117,116,116,111,110,93,44,91,116,121,112,101,61,114,101,115,101,116,93,44,91,116,121,112,101,61,115,117,98,109,105,116,93,44,98,117,116,116,111,110,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,98,117,116,116,111,110,125,91,116,121,112,101,61,98,117,116,116,111,110,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,91,116,121,112,101,61,114,101,115,101,116,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,91,116,121,112,101,61,115,117,98,109,105,116,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,98,117,116,116,111,110,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,91,116,121,112,101,61,98,117,116,116,111,110,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,91,116,121,112,101,61,114,101,115,101,116,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,91,116,121,112,101,61,115,117,98,109,105,116,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,98,117,116,116,111,110,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,123,112,97,100,100,105,110,103,58,48,59,98,111,114,100,101,114,45,115,116,121,108,101,58,110,111,110,101,125,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,112,97,100,100,105,110,103,58,48,125,105,110,112,117,116,91,116,121,112,101,61,100,97,116,101,93,44,105,110,112,117,116,91,116,121,112,101,61,100,97,116,101,116,105,109,101,45,108,111,99,97,108,93,44,105,110,112,117,116,91,116,121,112,101,61,109,111,110,116,104,93,44,105,110,112,117,116,91,116,121,112,101,61,116,105,109,101,93,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,108,105,115,116,98,111,120,125,116,101,120,116,97,114,101,97,123,111,118,101,114,102,108,111,119,58,97,117,116,111,59,114,101,115,105,122,101,58,118,101,114,116,105,99,97,108,125,102,105,101,108,100,115,101,116,123,109,105,110,45,119,105,100,116,104,58,48,59,112,97,100,100,105,110,103,58,48,59,109,97,114,103,105,110,58,48,59,98,111,114,100,101,114,58,48,125,108,101,103,101,110,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,125,112,114,111,103,114,101,115,115,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,125,91,116,121,112,101,61,110,117,109,98,101,114,93,58,58,45,119,101,98,107,105,116,45,105,110,110,101,114,45,115,112,105,110,45,98,117,116,116,111,110,44,91,116,121,112,101,61,110,117,109,98,101,114,93,58,58,45,119,101,98,107,105,116,45,111,117,116,101,114,45,115,112,105,110,45,98,117,116,116,111,110,123,104,101,105,103,104,116,58,97,117,116,111,125,91,116,121,112,101,61,115,101,97,114,99,104,93,123,111,117,116,108,105,110,101,45,111,102,102,115,101,116,58,45,50,112,120,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,91,116,121,112,101,61,115,101,97,114,99,104,93,58,58,45,119,101,98,107,105,116,45,115,101,97,114,99,104,45,100,101,99,111,114,97,116,105,111,110,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,58,58,45,119,101,98,107,105,116,45,102,105,108,101,45,117,112,108,111,97,100,45,98,117,116,116,111,110,123,102,111,110,116,58,105,110,104,101,114,105,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,98,117,116,116,111,110,125,111,117,116,112,117,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,115,117,109,109,97,114,121,123,100,105,115,112,108,97,121,58,108,105,115,116,45,105,116,101,109,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,116,101,109,112,108,97,116,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,91,104,105,100,100,101,110,93,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,104,49,44,46,104,50,44,46,104,51,44,46,104,52,44,46,104,53,44,46,104,54,44,104,49,44,104,50,44,104,51,44,104,52,44,104,53,44,104,54,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,53,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,104,49,44,104,49,123,102,111,110,116,45,115,105,122,101,58,50,46,53,114,101,109,125,46,104,50,44,104,50,123,102,111,110,116,45,115,105,122,101,58,50,114,101,109,125,46,104,51,44,104,51,123,102,111,110,116,45,115,105,122,101,58,49,46,55,53,114,101,109,125,46,104,52,44,104,52,123,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,125,46,104,53,44,104,53,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,104,54,44,104,54,123,102,111,110,116,45,115,105,122,101,58,49,114,101,109,125,46,108,101,97,100,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,125,46,100,105,115,112,108,97,121,45,49,123,102,111,110,116,45,115,105,122,101,58,54,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,100,105,115,112,108,97,121,45,50,123,102,111,110,116,45,115,105,122,101,58,53,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,100,105,115,112,108,97,121,45,51,123,102,111,110,116,45,115,105,122,101,58,52,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,100,105,115,112,108,97,121,45,52,123,102,111,110,116,45,115,105,122,101,58,51,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,104,114,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,125,46,115,109,97,108,108,44,115,109,97,108,108,123,102,111,110,116,45,115,105,122,101,58,56,48,37,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,125,46,109,97,114,107,44,109,97,114,107,123,112,97,100,100,105,110,103,58,46,50,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,99,102,56,101,51,125,46,108,105,115,116,45,117,110,115,116,121,108,101,100,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,108,105,115,116,45,105,110,108,105,110,101,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,108,105,115,116,45,105,110,108,105,110,101,45,105,116,101,109,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,108,105,115,116,45,105,110,108,105,110,101,45,105,116,101,109,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,125,46,105,110,105,116,105,97,108,105,115,109,123,102,111,110,116,45,115,105,122,101,58,57,48,37,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,117,112,112,101,114,99,97,115,101,125,46,98,108,111,99,107,113,117,111,116,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,98,108,111,99,107,113,117,111,116,101,45,102,111,111,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,108,111,99,107,113,117,111,116,101,45,102,111,111,116,101,114,58,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,34,92,50,48,49,52,92,48,48,65,48,34,125,46,105,109,103,45,102,108,117,105,100,123,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,97,117,116,111,125,46,105,109,103,45,116,104,117,109,98,110,97,105,108,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,97,117,116,111,125,46,102,105,103,117,114,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,102,105,103,117,114,101,45,105,109,103,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,125,46,102,105,103,117,114,101,45,99,97,112,116,105,111,110,123,102,111,110,116,45,115,105,122,101,58,57,48,37,59,99,111,108,111,114,58,35,54,99,55,53,55,100,125,99,111,100,101,123,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,101,56,51,101,56,99,59,119,111,114,100,45,98,114,101,97,107,58,98,114,101,97,107,45,119,111,114,100,125,97,62,99,111,100,101,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,107,98,100,123,112,97,100,100,105,110,103,58,46,50,114,101,109,32,46,52,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,107,98,100,32,107,98,100,123,112,97,100,100,105,110,103,58,48,59,102,111,110,116,45,115,105,122,101,58,49,48,48,37,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,112,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,112,114,101,32,99,111,100,101,123,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,125,46,112,114,101,45,115,99,114,111,108,108,97,98,108,101,123,109,97,120,45,104,101,105,103,104,116,58,51,52,48,112,120,59,111,118,101,114,102,108,111,119,45,121,58,115,99,114,111,108,108,125,46,99,111,110,116,97,105,110,101,114,123,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,53,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,59,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,53,52,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,55,50,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,57,54,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,49,49,52,48,112,120,125,125,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,53,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,59,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,125,46,114,111,119,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,53,112,120,125,46,110,111,45,103,117,116,116,101,114,115,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,110,111,45,103,117,116,116,101,114,115,62,46,99,111,108,44,46,110,111,45,103,117,116,116,101,114,115,62,91,99,108,97,115,115,42,61,99,111,108,45,93,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,99,111,108,44,46,99,111,108,45,49,44,46,99,111,108,45,49,48,44,46,99,111,108,45,49,49,44,46,99,111,108,45,49,50,44,46,99,111,108,45,50,44,46,99,111,108,45,51,44,46,99,111,108,45,52,44,46,99,111,108,45,53,44,46,99,111,108,45,54,44,46,99,111,108,45,55,44,46,99,111,108,45,56,44,46,99,111,108,45,57,44,46,99,111,108,45,97,117,116,111,44,46,99,111,108,45,108,103,44,46,99,111,108,45,108,103,45,49,44,46,99,111,108,45,108,103,45,49,48,44,46,99,111,108,45,108,103,45,49,49,44,46,99,111,108,45,108,103,45,49,50,44,46,99,111,108,45,108,103,45,50,44,46,99,111,108,45,108,103,45,51,44,46,99,111,108,45,108,103,45,52,44,46,99,111,108,45,108,103,45,53,44,46,99,111,108,45,108,103,45,54,44,46,99,111,108,45,108,103,45,55,44,46,99,111,108,45,108,103,45,56,44,46,99,111,108,45,108,103,45,57,44,46,99,111,108,45,108,103,45,97,117,116,111,44,46,99,111,108,45,109,100,44,46,99,111,108,45,109,100,45,49,44,46,99,111,108,45,109,100,45,49,48,44,46,99,111,108,45,109,100,45,49,49,44,46,99,111,108,45,109,100,45,49,50,44,46,99,111,108,45,109,100,45,50,44,46,99,111,108,45,109,100,45,51,44,46,99,111,108,45,109,100,45,52,44,46,99,111,108,45,109,100,45,53,44,46,99,111,108,45,109,100,45,54,44,46,99,111,108,45,109,100,45,55,44,46,99,111,108,45,109,100,45,56,44,46,99,111,108,45,109,100,45,57,44,46,99,111,108,45,109,100,45,97,117,116,111,44,46,99,111,108,45,115,109,44,46,99,111,108,45,115,109,45,49,44,46,99,111,108,45,115,109,45,49,48,44,46,99,111,108,45,115,109,45,49,49,44,46,99,111,108,45,115,109,45,49,50,44,46,99,111,108,45,115,109,45,50,44,46,99,111,108,45,115,109,45,51,44,46,99,111,108,45,115,109,45,52,44,46,99,111,108,45,115,109,45,53,44,46,99,111,108,45,115,109,45,54,44,46,99,111,108,45,115,109,45,55,44,46,99,111,108,45,115,109,45,56,44,46,99,111,108,45,115,109,45,57,44,46,99,111,108,45,115,109,45,97,117,116,111,44,46,99,111,108,45,120,108,44,46,99,111,108,45,120,108,45,49,44,46,99,111,108,45,120,108,45,49,48,44,46,99,111,108,45,120,108,45,49,49,44,46,99,111,108,45,120,108,45,49,50,44,46,99,111,108,45,120,108,45,50,44,46,99,111,108,45,120,108,45,51,44,46,99,111,108,45,120,108,45,52,44,46,99,111,108,45,120,108,45,53,44,46,99,111,108,45,120,108,45,54,44,46,99,111,108,45,120,108,45,55,44,46,99,111,108,45,120,108,45,56,44,46,99,111,108,45,120,108,45,57,44,46,99,111,108,45,120,108,45,97,117,116,111,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,53,112,120,125,46,99,111,108,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,111,108,45,115,109,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,115,109,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,115,109,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,115,109,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,115,109,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,115,109,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,115,109,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,115,109,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,115,109,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,115,109,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,115,109,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,115,109,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,115,109,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,115,109,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,115,109,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,115,109,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,115,109,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,115,109,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,115,109,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,115,109,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,115,109,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,115,109,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,115,109,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,115,109,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,115,109,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,115,109,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,99,111,108,45,109,100,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,109,100,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,109,100,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,109,100,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,109,100,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,109,100,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,109,100,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,109,100,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,109,100,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,109,100,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,109,100,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,109,100,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,109,100,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,109,100,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,109,100,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,109,100,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,109,100,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,109,100,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,109,100,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,109,100,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,109,100,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,109,100,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,109,100,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,109,100,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,109,100,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,109,100,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,99,111,108,45,108,103,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,108,103,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,108,103,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,108,103,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,108,103,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,108,103,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,108,103,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,108,103,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,108,103,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,108,103,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,108,103,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,108,103,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,108,103,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,108,103,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,108,103,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,108,103,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,108,103,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,108,103,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,108,103,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,108,103,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,108,103,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,108,103,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,108,103,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,108,103,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,108,103,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,108,103,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,99,111,108,45,120,108,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,120,108,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,120,108,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,120,108,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,120,108,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,120,108,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,120,108,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,120,108,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,120,108,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,120,108,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,120,108,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,120,108,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,120,108,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,120,108,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,120,108,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,120,108,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,120,108,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,120,108,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,120,108,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,120,108,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,120,108,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,120,108,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,120,108,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,120,108,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,120,108,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,120,108,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,46,116,97,98,108,101,123,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,116,97,98,108,101,32,116,100,44,46,116,97,98,108,101,32,116,104,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,116,104,101,97,100,32,116,104,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,111,116,116,111,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,50,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,116,98,111,100,121,43,116,98,111,100,121,123,98,111,114,100,101,114,45,116,111,112,58,50,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,115,109,32,116,100,44,46,116,97,98,108,101,45,115,109,32,116,104,123,112,97,100,100,105,110,103,58,46,51,114,101,109,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,101,97,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,119,105,100,116,104,58,50,112,120,125,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,104,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,58,48,125,46,116,97,98,108,101,45,115,116,114,105,112,101,100,32,116,98,111,100,121,32,116,114,58,110,116,104,45,111,102,45,116,121,112,101,40,111,100,100,41,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,53,41,125,46,116,97,98,108,101,45,104,111,118,101,114,32,116,98,111,100,121,32,116,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,45,112,114,105,109,97,114,121,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,62,116,100,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,100,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,104,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,55,97,98,97,102,102,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,62,116,100,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,100,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,104,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,51,98,55,98,98,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,116,97,98,108,101,45,115,117,99,99,101,115,115,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,62,116,100,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,100,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,104,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,102,100,49,57,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,116,97,98,108,101,45,105,110,102,111,44,46,116,97,98,108,101,45,105,110,102,111,62,116,100,44,46,116,97,98,108,101,45,105,110,102,111,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,116,97,98,108,101,45,105,110,102,111,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,105,110,102,111,32,116,100,44,46,116,97,98,108,101,45,105,110,102,111,32,116,104,44,46,116,97,98,108,101,45,105,110,102,111,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,54,99,102,100,97,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,116,97,98,108,101,45,119,97,114,110,105,110,103,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,62,116,100,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,100,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,104,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,100,102,55,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,116,97,98,108,101,45,100,97,110,103,101,114,44,46,116,97,98,108,101,45,100,97,110,103,101,114,62,116,100,44,46,116,97,98,108,101,45,100,97,110,103,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,100,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,104,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,100,57,54,57,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,116,97,98,108,101,45,108,105,103,104,116,44,46,116,97,98,108,101,45,108,105,103,104,116,62,116,100,44,46,116,97,98,108,101,45,108,105,103,104,116,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,116,97,98,108,101,45,108,105,103,104,116,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,100,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,104,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,98,102,99,102,99,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,116,97,98,108,101,45,100,97,114,107,44,46,116,97,98,108,101,45,100,97,114,107,62,116,100,44,46,116,97,98,108,101,45,100,97,114,107,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,116,97,98,108,101,45,100,97,114,107,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,57,53,57,57,57,99,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,116,97,98,108,101,45,97,99,116,105,118,101,44,46,116,97,98,108,101,45,97,99,116,105,118,101,62,116,100,44,46,116,97,98,108,101,45,97,99,116,105,118,101,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,100,97,114,107,32,116,104,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,53,52,100,53,53,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,108,105,103,104,116,32,116,104,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,53,52,100,53,53,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,115,116,114,105,112,101,100,32,116,98,111,100,121,32,116,114,58,110,116,104,45,111,102,45,116,121,112,101,40,111,100,100,41,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,48,53,41,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,104,111,118,101,114,32,116,98,111,100,121,32,116,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,48,55,53,41,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,53,55,53,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,115,109,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,115,109,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,55,54,55,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,109,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,109,100,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,57,57,49,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,108,103,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,108,103,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,49,49,57,57,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,120,108,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,120,108,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,102,111,114,109,45,99,111,110,116,114,111,108,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,109,115,45,101,120,112,97,110,100,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,119,101,98,107,105,116,45,105,110,112,117,116,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,109,111,122,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,45,109,115,45,105,110,112,117,116,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,109,115,45,105,110,112,117,116,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,100,105,115,97,98,108,101,100,44,46,102,111,114,109,45,99,111,110,116,114,111,108,91,114,101,97,100,111,110,108,121,93,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,111,112,97,99,105,116,121,58,49,125,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,58,58,45,109,115,45,118,97,108,117,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,114,97,110,103,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,51,55,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,51,55,53,114,101,109,32,43,32,49,112,120,41,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,45,108,103,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,53,114,101,109,32,43,32,49,112,120,41,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,45,115,109,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,49,112,120,41,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,116,111,112,58,46,51,55,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,51,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,119,105,100,116,104,58,49,112,120,32,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,46,102,111,114,109,45,99,111,110,116,114,111,108,45,108,103,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,46,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,108,103,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,91,109,117,108,116,105,112,108,101,93,44,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,91,115,105,122,101,93,123,104,101,105,103,104,116,58,97,117,116,111,125,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,123,104,101,105,103,104,116,58,97,117,116,111,125,46,102,111,114,109,45,103,114,111,117,112,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,46,102,111,114,109,45,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,125,46,102,111,114,109,45,114,111,119,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,53,112,120,125,46,102,111,114,109,45,114,111,119,62,46,99,111,108,44,46,102,111,114,109,45,114,111,119,62,91,99,108,97,115,115,42,61,99,111,108,45,93,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,53,112,120,125,46,102,111,114,109,45,99,104,101,99,107,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,50,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,109,97,114,103,105,110,45,116,111,112,58,46,51,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,50,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,55,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,51,49,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,123,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,122,45,105,110,100,101,120,58,53,59,100,105,115,112,108,97,121,58,110,111,110,101,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,46,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,57,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,50,56,97,55,52,53,39,32,100,61,39,77,50,46,51,32,54,46,55,51,76,46,54,32,52,46,53,51,99,45,46,52,45,49,46,48,52,46,52,54,45,49,46,52,32,49,46,49,45,46,56,108,49,46,49,32,49,46,52,32,51,46,52,45,51,46,56,99,46,54,45,46,54,51,32,49,46,54,45,46,50,55,32,49,46,50,46,55,108,45,52,32,52,46,54,99,45,46,52,51,46,53,45,46,56,46,52,45,49,46,49,46,49,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,99,101,110,116,101,114,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,44,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,116,111,112,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,40,49,101,109,32,43,32,46,55,53,114,101,109,41,32,42,32,51,32,47,32,52,32,43,32,49,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,53,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,51,52,51,97,52,48,39,32,100,61,39,77,50,32,48,76,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,110,111,45,114,101,112,101,97,116,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,44,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,50,56,97,55,52,53,39,32,100,61,39,77,50,46,51,32,54,46,55,51,76,46,54,32,52,46,53,51,99,45,46,52,45,49,46,48,52,46,52,54,45,49,46,52,32,49,46,49,45,46,56,108,49,46,49,32,49,46,52,32,51,46,52,45,51,46,56,99,46,54,45,46,54,51,32,49,46,54,45,46,50,55,32,49,46,50,46,55,108,45,52,32,52,46,54,99,45,46,52,51,46,53,45,46,56,46,52,45,49,46,49,46,49,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,35,102,102,102,32,110,111,45,114,101,112,101,97,116,32,99,101,110,116,101,114,32,114,105,103,104,116,32,49,46,55,53,114,101,109,47,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,99,101,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,99,101,53,55,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,123,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,122,45,105,110,100,101,120,58,53,59,100,105,115,112,108,97,121,58,110,111,110,101,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,46,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,57,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,100,99,51,53,52,53,39,32,118,105,101,119,66,111,120,61,39,45,50,32,45,50,32,55,32,55,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,37,50,51,100,99,51,53,52,53,39,32,100,61,39,77,48,32,48,108,51,32,51,109,48,45,51,76,48,32,51,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,47,115,118,103,37,51,69,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,99,101,110,116,101,114,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,44,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,116,111,112,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,40,49,101,109,32,43,32,46,55,53,114,101,109,41,32,42,32,51,32,47,32,52,32,43,32,49,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,53,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,51,52,51,97,52,48,39,32,100,61,39,77,50,32,48,76,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,110,111,45,114,101,112,101,97,116,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,44,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,100,99,51,53,52,53,39,32,118,105,101,119,66,111,120,61,39,45,50,32,45,50,32,55,32,55,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,37,50,51,100,99,51,53,52,53,39,32,100,61,39,77,48,32,48,108,51,32,51,109,48,45,51,76,48,32,51,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,47,115,118,103,37,51,69,34,41,32,35,102,102,102,32,110,111,45,114,101,112,101,97,116,32,99,101,110,116,101,114,32,114,105,103,104,116,32,49,46,55,53,114,101,109,47,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,52,54,48,54,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,52,54,48,54,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,123,119,105,100,116,104,58,49,48,48,37,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,111,114,109,45,105,110,108,105,110,101,32,108,97,98,101,108,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,111,110,116,114,111,108,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,97,117,116,111,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,102,111,114,109,45,105,110,108,105,110,101,32,46,105,110,112,117,116,45,103,114,111,117,112,123,119,105,100,116,104,58,97,117,116,111,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,119,105,100,116,104,58,97,117,116,111,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,59,102,108,101,120,45,115,104,114,105,110,107,58,48,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,125,46,98,116,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,116,110,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,98,116,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,116,110,46,102,111,99,117,115,44,46,98,116,110,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,98,116,110,46,100,105,115,97,98,108,101,100,44,46,98,116,110,58,100,105,115,97,98,108,101,100,123,111,112,97,99,105,116,121,58,46,54,53,125,97,46,98,116,110,46,100,105,115,97,98,108,101,100,44,102,105,101,108,100,115,101,116,58,100,105,115,97,98,108,101,100,32,97,46,98,116,110,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,116,110,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,57,100,57,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,54,50,99,99,125,46,98,116,110,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,51,56,44,49,52,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,112,114,105,109,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,112,114,105,109,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,53,99,98,102,125,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,51,56,44,49,52,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,97,54,50,54,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,53,52,53,98,54,50,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,51,48,44,49,51,56,44,49,52,53,44,46,53,41,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,101,53,53,53,98,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,51,48,44,49,51,56,44,49,52,53,44,46,53,41,125,46,98,116,110,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,49,56,56,51,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,101,55,101,51,52,125,46,98,116,110,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,46,98,116,110,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,55,50,44,49,56,48,44,57,55,44,46,53,41,125,46,98,116,110,45,115,117,99,99,101,115,115,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,115,117,99,99,101,115,115,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,99,55,52,51,48,125,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,55,50,44,49,56,48,44,57,55,44,46,53,41,125,46,98,116,110,45,105,110,102,111,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,51,56,52,57,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,49,55,97,56,98,125,46,98,116,110,45,105,110,102,111,46,102,111,99,117,115,44,46,98,116,110,45,105,110,102,111,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,56,44,49,55,54,44,49,57,53,44,46,53,41,125,46,98,116,110,45,105,110,102,111,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,105,110,102,111,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,48,55,48,55,102,125,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,56,44,49,55,54,44,49,57,53,44,46,53,41,125,46,98,116,110,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,48,97,56,48,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,51,57,101,48,48,125,46,98,116,110,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,46,98,116,110,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,50,44,49,55,48,44,49,50,44,46,53,41,125,46,98,116,110,45,119,97,114,110,105,110,103,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,119,97,114,110,105,110,103,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,54,57,53,48,48,125,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,50,44,49,55,48,44,49,50,44,46,53,41,125,46,98,116,110,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,50,51,51,51,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,100,50,49,51,48,125,46,98,116,110,45,100,97,110,103,101,114,46,102,111,99,117,115,44,46,98,116,110,45,100,97,110,103,101,114,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,53,44,56,51,44,57,55,44,46,53,41,125,46,98,116,110,45,100,97,110,103,101,114,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,100,97,110,103,101,114,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,50,49,102,50,100,125,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,53,44,56,51,44,57,55,44,46,53,41,125,46,98,116,110,45,108,105,103,104,116,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,50,101,54,101,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,97,101,48,101,53,125,46,98,116,110,45,108,105,103,104,116,46,102,111,99,117,115,44,46,98,116,110,45,108,105,103,104,116,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,49,54,44,50,49,55,44,50,49,57,44,46,53,41,125,46,98,116,110,45,108,105,103,104,116,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,108,105,103,104,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,51,100,57,100,102,125,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,49,54,44,50,49,55,44,50,49,57,44,46,53,41,125,46,98,116,110,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,51,50,55,50,98,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,100,50,49,50,52,125,46,98,116,110,45,100,97,114,107,46,102,111,99,117,115,44,46,98,116,110,45,100,97,114,107,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,56,50,44,56,56,44,57,51,44,46,53,41,125,46,98,116,110,45,100,97,114,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,100,97,114,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,49,97,49,100,125,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,56,50,44,56,56,44,57,51,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,48,56,44,49,49,55,44,49,50,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,48,56,44,49,49,55,44,49,50,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,123,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,123,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,123,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,98,116,110,45,108,105,110,107,123,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,116,110,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,98,116,110,45,108,105,110,107,46,102,111,99,117,115,44,46,98,116,110,45,108,105,110,107,58,102,111,99,117,115,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,125,46,98,116,110,45,108,105,110,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,108,105,110,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,116,110,45,103,114,111,117,112,45,108,103,62,46,98,116,110,44,46,98,116,110,45,108,103,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,115,109,62,46,98,116,110,44,46,98,116,110,45,115,109,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,98,116,110,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,98,116,110,45,98,108,111,99,107,43,46,98,116,110,45,98,108,111,99,107,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,125,105,110,112,117,116,91,116,121,112,101,61,98,117,116,116,111,110,93,46,98,116,110,45,98,108,111,99,107,44,105,110,112,117,116,91,116,121,112,101,61,114,101,115,101,116,93,46,98,116,110,45,98,108,111,99,107,44,105,110,112,117,116,91,116,121,112,101,61,115,117,98,109,105,116,93,46,98,116,110,45,98,108,111,99,107,123,119,105,100,116,104,58,49,48,48,37,125,46,102,97,100,101,123,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,49,53,115,32,108,105,110,101,97,114,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,102,97,100,101,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,102,97,100,101,58,110,111,116,40,46,115,104,111,119,41,123,111,112,97,99,105,116,121,58,48,125,46,99,111,108,108,97,112,115,101,58,110,111,116,40,46,115,104,111,119,41,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,111,108,108,97,112,115,105,110,103,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,104,101,105,103,104,116,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,116,114,97,110,115,105,116,105,111,110,58,104,101,105,103,104,116,32,46,51,53,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,111,108,108,97,112,115,105,110,103,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,100,114,111,112,100,111,119,110,44,46,100,114,111,112,108,101,102,116,44,46,100,114,111,112,114,105,103,104,116,44,46,100,114,111,112,117,112,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,48,48,59,100,105,115,112,108,97,121,58,110,111,110,101,59,102,108,111,97,116,58,108,101,102,116,59,109,105,110,45,119,105,100,116,104,58,49,48,114,101,109,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,48,59,109,97,114,103,105,110,58,46,49,50,53,114,101,109,32,48,32,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,53,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,115,109,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,115,109,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,109,100,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,109,100,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,103,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,103,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,120,108,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,120,108,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,97,117,116,111,59,98,111,116,116,111,109,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,49,50,53,114,101,109,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,48,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,48,59,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,46,49,50,53,114,101,109,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,48,59,114,105,103,104,116,58,49,48,48,37,59,108,101,102,116,58,97,117,116,111,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,49,50,53,114,101,109,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,98,101,102,111,114,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,123,114,105,103,104,116,58,97,117,116,111,59,98,111,116,116,111,109,58,97,117,116,111,125,46,100,114,111,112,100,111,119,110,45,100,105,118,105,100,101,114,123,104,101,105,103,104,116,58,48,59,109,97,114,103,105,110,58,46,53,114,101,109,32,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,101,57,101,99,101,102,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,49,46,53,114,101,109,59,99,108,101,97,114,58,98,111,116,104,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,102,111,99,117,115,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,54,49,56,49,98,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,46,97,99,116,105,118,101,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,46,100,105,115,97,98,108,101,100,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,46,115,104,111,119,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,100,114,111,112,100,111,119,110,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,46,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,45,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,49,46,53,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,98,116,110,45,103,114,111,117,112,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,104,111,118,101,114,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,49,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,46,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,102,111,99,117,115,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,46,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,49,125,46,98,116,110,45,116,111,111,108,98,97,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,98,116,110,45,116,111,111,108,98,97,114,32,46,105,110,112,117,116,45,103,114,111,117,112,123,119,105,100,116,104,58,97,117,116,111,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,54,50,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,54,50,53,114,101,109,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,97,102,116,101,114,44,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,97,102,116,101,114,44,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,98,101,102,111,114,101,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,125,46,98,116,110,45,103,114,111,117,112,45,115,109,62,46,98,116,110,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,44,46,98,116,110,45,115,109,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,51,55,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,51,55,53,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,108,103,62,46,98,116,110,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,44,46,98,116,110,45,108,103,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,55,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,55,53,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,123,119,105,100,116,104,58,49,48,48,37,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,116,111,112,58,45,49,112,120,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,99,108,105,112,58,114,101,99,116,40,48,44,48,44,48,44,48,41,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,105,110,112,117,116,45,103,114,111,117,112,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,59,119,105,100,116,104,58,49,48,48,37,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,119,105,100,116,104,58,49,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,102,111,114,109,45,99,111,110,116,114,111,108,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,51,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,52,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,58,102,111,99,117,115,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,51,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,109,97,114,103,105,110,45,116,111,112,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,116,101,120,116,97,114,101,97,41,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,116,101,120,116,97,114,101,97,41,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,125,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,55,53,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,108,97,115,116,45,99,104,105,108,100,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,108,97,115,116,45,99,104,105,108,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,102,105,114,115,116,45,99,104,105,108,100,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,102,105,114,115,116,45,99,104,105,108,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,105,110,45,104,101,105,103,104,116,58,49,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,45,49,59,111,112,97,99,105,116,121,58,48,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,46,50,53,114,101,109,59,108,101,102,116,58,45,49,46,53,114,101,109,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,35,97,100,98,53,98,100,32,115,111,108,105,100,32,49,112,120,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,46,50,53,114,101,109,59,108,101,102,116,58,45,49,46,53,114,101,109,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,58,110,111,45,114,101,112,101,97,116,32,53,48,37,47,53,48,37,32,53,48,37,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,100,61,39,77,54,46,53,54,52,46,55,53,108,45,51,46,53,57,32,51,46,54,49,50,45,49,46,53,51,56,45,49,46,53,53,76,48,32,52,46,50,54,32,50,46,57,55,52,32,55,46,50,53,32,56,32,50,46,49,57,51,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,52,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,37,50,51,102,102,102,39,32,100,61,39,77,48,32,50,104,52,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,45,52,32,45,52,32,56,32,56,39,37,51,101,37,51,99,99,105,114,99,108,101,32,114,61,39,51,39,32,102,105,108,108,61,39,37,50,51,102,102,102,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,123,112,97,100,100,105,110,103,45,108,101,102,116,58,50,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,108,101,102,116,58,45,50,46,50,53,114,101,109,59,119,105,100,116,104,58,49,46,55,53,114,101,109,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,108,108,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,116,111,112,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,50,112,120,41,59,108,101,102,116,58,99,97,108,99,40,45,50,46,50,53,114,101,109,32,43,32,50,112,120,41,59,119,105,100,116,104,58,99,97,108,99,40,49,114,101,109,32,45,32,52,112,120,41,59,104,101,105,103,104,116,58,99,97,108,99,40,49,114,101,109,32,45,32,52,112,120,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,46,55,53,114,101,109,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,46,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,49,46,55,53,114,101,109,32,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,53,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,51,52,51,97,52,48,39,32,100,61,39,77,50,32,48,76,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,110,111,45,114,101,112,101,97,116,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,58,58,45,109,115,45,118,97,108,117,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,91,109,117,108,116,105,112,108,101,93,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,91,115,105,122,101,93,58,110,111,116,40,91,115,105,122,101,61,34,49,34,93,41,123,104,101,105,103,104,116,58,97,117,116,111,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,58,45,109,115,45,101,120,112,97,110,100,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,45,115,109,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,45,108,103,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,102,105,108,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,109,97,114,103,105,110,58,48,59,111,112,97,99,105,116,121,58,48,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,108,97,110,103,40,101,110,41,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,34,66,114,111,119,115,101,34,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,91,100,97,116,97,45,98,114,111,119,115,101,93,58,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,97,116,116,114,40,100,97,116,97,45,98,114,111,119,115,101,41,125,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,122,45,105,110,100,101,120,58,51,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,99,111,110,116,101,110,116,58,34,66,114,111,119,115,101,34,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,108,101,102,116,58,105,110,104,101,114,105,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,32,46,50,53,114,101,109,32,46,50,53,114,101,109,32,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,114,101,109,32,43,32,46,52,114,101,109,41,59,112,97,100,100,105,110,103,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,109,115,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,102,111,99,117,115,45,111,117,116,101,114,123,98,111,114,100,101,114,58,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,102,105,108,108,45,108,111,119,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,102,105,108,108,45,117,112,112,101,114,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,112,120,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,115,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,110,97,118,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,110,97,118,45,108,105,110,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,125,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,110,97,118,45,116,97,98,115,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,105,116,101,109,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,57,101,99,101,102,32,35,101,57,101,99,101,102,32,35,100,101,101,50,101,54,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,105,116,101,109,46,115,104,111,119,32,46,110,97,118,45,108,105,110,107,44,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,32,35,100,101,101,50,101,54,32,35,102,102,102,125,46,110,97,118,45,116,97,98,115,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,109,97,114,103,105,110,45,116,111,112,58,45,49,112,120,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,110,97,118,45,112,105,108,108,115,32,46,110,97,118,45,108,105,110,107,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,45,112,105,108,108,115,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,45,112,105,108,108,115,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,110,97,118,45,102,105,108,108,32,46,110,97,118,45,105,116,101,109,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,46,110,97,118,45,106,117,115,116,105,102,105,101,100,32,46,110,97,118,45,105,116,101,109,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,46,116,97,98,45,99,111,110,116,101,110,116,62,46,116,97,98,45,112,97,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,45,99,111,110,116,101,110,116,62,46,97,99,116,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,110,97,118,98,97,114,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,125,46,110,97,118,98,97,114,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,125,46,110,97,118,98,97,114,45,98,114,97,110,100,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,45,116,111,112,58,46,51,49,50,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,51,49,50,53,114,101,109,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,98,97,114,45,110,97,118,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,102,108,111,97,116,58,110,111,110,101,125,46,110,97,118,98,97,114,45,116,101,120,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,49,48,48,37,59,102,108,101,120,45,98,97,115,105,115,58,49,48,48,37,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,46,53,101,109,59,104,101,105,103,104,116,58,49,46,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,58,110,111,45,114,101,112,101,97,116,32,99,101,110,116,101,114,32,99,101,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,48,48,37,32,49,48,48,37,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,53,55,53,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,55,54,55,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,57,57,49,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,49,49,57,57,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,55,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,51,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,97,99,116,105,118,101,62,46,110,97,118,45,108,105,110,107,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,115,104,111,119,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,49,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,118,105,101,119,66,111,120,61,39,48,32,48,32,51,48,32,51,48,39,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,53,41,39,32,115,116,114,111,107,101,45,119,105,100,116,104,61,39,50,39,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,39,114,111,117,110,100,39,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,39,49,48,39,32,100,61,39,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,55,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,50,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,97,99,116,105,118,101,62,46,110,97,118,45,108,105,110,107,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,115,104,111,119,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,118,105,101,119,66,111,120,61,39,48,32,48,32,51,48,32,51,48,39,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,53,41,39,32,115,116,114,111,107,101,45,119,105,100,116,104,61,39,50,39,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,39,114,111,117,110,100,39,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,39,49,48,39,32,100,61,39,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,125,46,99,97,114,100,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,109,105,110,45,119,105,100,116,104,58,48,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,98,111,114,100,101,114,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,97,114,100,62,104,114,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,99,97,114,100,62,46,108,105,115,116,45,103,114,111,117,112,58,102,105,114,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,97,114,100,62,46,108,105,115,116,45,103,114,111,117,112,58,108,97,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,97,114,100,45,98,111,100,121,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,112,97,100,100,105,110,103,58,49,46,50,53,114,101,109,125,46,99,97,114,100,45,116,105,116,108,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,46,99,97,114,100,45,115,117,98,116,105,116,108,101,123,109,97,114,103,105,110,45,116,111,112,58,45,46,51,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,116,101,120,116,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,108,105,110,107,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,99,97,114,100,45,108,105,110,107,43,46,99,97,114,100,45,108,105,110,107,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,50,53,114,101,109,125,46,99,97,114,100,45,104,101,97,100,101,114,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,51,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,99,97,114,100,45,104,101,97,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,48,32,48,125,46,99,97,114,100,45,104,101,97,100,101,114,43,46,108,105,115,116,45,103,114,111,117,112,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,58,48,125,46,99,97,114,100,45,102,111,111,116,101,114,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,51,41,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,99,97,114,100,45,102,111,111,116,101,114,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,32,48,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,104,101,97,100,101,114,45,116,97,98,115,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,54,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,55,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,46,54,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,104,101,97,100,101,114,45,112,105,108,108,115,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,54,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,46,54,50,53,114,101,109,125,46,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,112,97,100,100,105,110,103,58,49,46,50,53,114,101,109,125,46,99,97,114,100,45,105,109,103,123,119,105,100,116,104,58,49,48,48,37,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,105,109,103,45,116,111,112,123,119,105,100,116,104,58,49,48,48,37,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,119,105,100,116,104,58,49,48,48,37,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,100,101,99,107,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,125,46,99,97,114,100,45,100,101,99,107,32,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,53,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,100,101,99,107,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,53,112,120,125,46,99,97,114,100,45,100,101,99,107,32,46,99,97,114,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,58,49,32,48,32,48,37,59,102,108,101,120,58,49,32,48,32,48,37,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,49,53,112,120,125,125,46,99,97,114,100,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,53,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,103,114,111,117,112,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,123,45,109,115,45,102,108,101,120,58,49,32,48,32,48,37,59,102,108,101,120,58,49,32,48,32,48,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,43,46,99,97,114,100,123,109,97,114,103,105,110,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,108,101,102,116,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,104,101,97,100,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,102,111,111,116,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,104,101,97,100,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,102,111,111,116,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,46,99,97,114,100,45,99,111,108,117,109,110,115,32,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,99,111,108,117,109,110,115,123,45,119,101,98,107,105,116,45,99,111,108,117,109,110,45,99,111,117,110,116,58,51,59,45,109,111,122,45,99,111,108,117,109,110,45,99,111,117,110,116,58,51,59,99,111,108,117,109,110,45,99,111,117,110,116,58,51,59,45,119,101,98,107,105,116,45,99,111,108,117,109,110,45,103,97,112,58,49,46,50,53,114,101,109,59,45,109,111,122,45,99,111,108,117,109,110,45,103,97,112,58,49,46,50,53,114,101,109,59,99,111,108,117,109,110,45,103,97,112,58,49,46,50,53,114,101,109,59,111,114,112,104,97,110,115,58,49,59,119,105,100,111,119,115,58,49,125,46,99,97,114,100,45,99,111,108,117,109,110,115,32,46,99,97,114,100,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,111,102,45,116,121,112,101,41,32,46,99,97,114,100,45,104,101,97,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,111,102,45,116,121,112,101,41,58,110,111,116,40,58,108,97,115,116,45,111,102,45,116,121,112,101,41,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,102,105,114,115,116,45,111,102,45,116,121,112,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,108,97,115,116,45,111,102,45,116,121,112,101,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,32,46,99,97,114,100,45,104,101,97,100,101,114,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,125,46,98,114,101,97,100,99,114,117,109,98,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,99,111,110,116,101,110,116,58,34,47,34,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,112,97,103,105,110,97,116,105,111,110,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,108,105,110,107,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,53,59,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,112,97,103,101,45,108,105,110,107,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,50,59,99,111,108,111,114,58,35,48,48,53,54,98,51,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,112,97,103,101,45,108,105,110,107,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,50,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,109,97,114,103,105,110,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,105,116,101,109,46,97,99,116,105,118,101,32,46,112,97,103,101,45,108,105,110,107,123,122,45,105,110,100,101,120,58,49,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,112,97,103,101,45,105,116,101,109,46,100,105,115,97,98,108,101,100,32,46,112,97,103,101,45,108,105,110,107,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,99,117,114,115,111,114,58,97,117,116,111,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,108,105,110,107,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,108,105,110,107,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,98,97,100,103,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,50,53,101,109,32,46,52,101,109,59,102,111,110,116,45,115,105,122,101,58,55,53,37,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,97,100,103,101,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,97,46,98,97,100,103,101,58,102,111,99,117,115,44,97,46,98,97,100,103,101,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,97,100,103,101,58,101,109,112,116,121,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,98,116,110,32,46,98,97,100,103,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,111,112,58,45,49,112,120,125,46,98,97,100,103,101,45,112,105,108,108,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,54,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,54,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,48,114,101,109,125,46,98,97,100,103,101,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,125,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,125,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,48,56,44,49,49,55,44,49,50,53,44,46,53,41,125,46,98,97,100,103,101,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,125,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,97,100,103,101,45,105,110,102,111,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,97,46,98,97,100,103,101,45,105,110,102,111,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,125,97,46,98,97,100,103,101,45,105,110,102,111,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,105,110,102,111,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,97,100,103,101,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,125,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,97,100,103,101,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,125,97,46,98,97,100,103,101,45,100,97,110,103,101,114,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,97,100,103,101,45,108,105,103,104,116,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,97,46,98,97,100,103,101,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,125,97,46,98,97,100,103,101,45,108,105,103,104,116,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,108,105,103,104,116,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,97,100,103,101,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,97,46,98,97,100,103,101,45,100,97,114,107,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,125,97,46,98,97,100,103,101,45,100,97,114,107,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,114,107,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,106,117,109,98,111,116,114,111,110,123,112,97,100,100,105,110,103,58,50,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,50,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,106,117,109,98,111,116,114,111,110,123,112,97,100,100,105,110,103,58,52,114,101,109,32,50,114,101,109,125,125,46,106,117,109,98,111,116,114,111,110,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,97,108,101,114,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,97,108,101,114,116,45,104,101,97,100,105,110,103,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,97,108,101,114,116,45,108,105,110,107,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,52,114,101,109,125,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,32,46,99,108,111,115,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,99,101,53,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,48,50,55,53,50,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,50,101,51,101,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,50,48,50,51,50,54,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,52,101,100,100,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,98,50,101,49,51,125,46,97,108,101,114,116,45,105,110,102,111,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,49,101,99,102,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,97,108,101,114,116,45,105,110,102,111,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,97,108,101,114,116,45,105,110,102,111,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,54,50,99,51,51,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,51,99,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,53,51,51,102,48,51,125,46,97,108,101,114,116,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,100,55,100,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,97,108,101,114,116,45,100,97,110,103,101,114,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,97,108,101,114,116,45,100,97,110,103,101,114,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,52,57,49,50,49,55,125,46,97,108,101,114,116,45,108,105,103,104,116,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,101,102,101,102,101,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,97,108,101,114,116,45,108,105,103,104,116,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,97,108,101,114,116,45,108,105,103,104,116,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,54,56,54,56,54,56,125,46,97,108,101,114,116,45,100,97,114,107,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,57,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,97,108,101,114,116,45,100,97,114,107,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,97,108,101,114,116,45,100,97,114,107,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,52,48,53,48,53,125,64,45,119,101,98,107,105,116,45,107,101,121,102,114,97,109,101,115,32,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,123,102,114,111,109,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,114,101,109,32,48,125,116,111,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,125,125,64,107,101,121,102,114,97,109,101,115,32,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,123,102,114,111,109,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,114,101,109,32,48,125,116,111,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,125,125,46,112,114,111,103,114,101,115,115,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,104,101,105,103,104,116,58,49,114,101,109,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,102,111,110,116,45,115,105,122,101,58,46,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,114,111,103,114,101,115,115,45,98,97,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,114,97,110,115,105,116,105,111,110,58,119,105,100,116,104,32,46,54,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,112,114,111,103,114,101,115,115,45,98,97,114,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,53,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,53,48,37,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,53,41,32,53,48,37,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,53,41,32,55,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,116,114,97,110,115,112,97,114,101,110,116,41,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,114,101,109,32,49,114,101,109,125,46,112,114,111,103,114,101,115,115,45,98,97,114,45,97,110,105,109,97,116,101,100,123,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,32,49,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,59,97,110,105,109,97,116,105,111,110,58,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,32,49,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,112,114,111,103,114,101,115,115,45,98,97,114,45,97,110,105,109,97,116,101,100,123,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,110,111,110,101,59,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,46,109,101,100,105,97,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,125,46,109,101,100,105,97,45,98,111,100,121,123,45,109,115,45,102,108,101,120,58,49,59,102,108,101,120,58,49,125,46,108,105,115,116,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,123,119,105,100,116,104,58,49,48,48,37,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,49,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,97,99,116,105,118,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,100,105,115,97,98,108,101,100,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,122,45,105,110,100,101,120,58,50,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,98,111,114,100,101,114,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,58,102,105,114,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,58,108,97,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,52,48,56,53,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,56,51,100,52,49,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,53,53,55,50,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,99,53,52,54,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,53,54,52,48,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,55,50,49,99,50,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,49,56,49,56,50,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,98,49,101,50,49,125,46,99,108,111,115,101,123,102,108,111,97,116,58,114,105,103,104,116,59,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,99,111,108,111,114,58,35,48,48,48,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,49,112,120,32,48,32,35,102,102,102,59,111,112,97,99,105,116,121,58,46,53,125,46,99,108,111,115,101,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,48,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,99,108,111,115,101,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,102,111,99,117,115,44,46,99,108,111,115,101,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,104,111,118,101,114,123,111,112,97,99,105,116,121,58,46,55,53,125,98,117,116,116,111,110,46,99,108,111,115,101,123,112,97,100,100,105,110,103,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,97,46,99,108,111,115,101,46,100,105,115,97,98,108,101,100,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,116,111,97,115,116,123,109,97,120,45,119,105,100,116,104,58,51,53,48,112,120,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,56,53,41,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,46,50,53,114,101,109,32,46,55,53,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,59,45,119,101,98,107,105,116,45,98,97,99,107,100,114,111,112,45,102,105,108,116,101,114,58,98,108,117,114,40,49,48,112,120,41,59,98,97,99,107,100,114,111,112,45,102,105,108,116,101,114,58,98,108,117,114,40,49,48,112,120,41,59,111,112,97,99,105,116,121,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,116,111,97,115,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,46,116,111,97,115,116,46,115,104,111,119,105,110,103,123,111,112,97,99,105,116,121,58,49,125,46,116,111,97,115,116,46,115,104,111,119,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,111,112,97,99,105,116,121,58,49,125,46,116,111,97,115,116,46,104,105,100,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,111,97,115,116,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,56,53,41,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,48,53,41,125,46,116,111,97,115,116,45,98,111,100,121,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,125,46,109,111,100,97,108,45,111,112,101,110,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,109,111,100,97,108,45,111,112,101,110,32,46,109,111,100,97,108,123,111,118,101,114,102,108,111,119,45,120,58,104,105,100,100,101,110,59,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,125,46,109,111,100,97,108,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,53,48,59,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,111,117,116,108,105,110,101,58,48,125,46,109,111,100,97,108,45,100,105,97,108,111,103,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,97,117,116,111,59,109,97,114,103,105,110,58,46,53,114,101,109,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,109,111,100,97,108,46,102,97,100,101,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,48,44,45,53,48,112,120,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,48,44,45,53,48,112,120,41,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,109,111,100,97,108,46,102,97,100,101,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,109,111,100,97,108,46,115,104,111,119,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,49,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,49,114,101,109,41,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,102,111,111,116,101,114,44,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,104,101,97,100,101,114,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,59,102,108,101,120,45,115,104,114,105,110,107,58,48,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,98,111,100,121,123,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,49,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,49,114,101,109,41,59,99,111,110,116,101,110,116,58,34,34,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,104,101,105,103,104,116,58,49,48,48,37,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,110,111,110,101,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,58,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,110,111,110,101,125,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,119,105,100,116,104,58,49,48,48,37,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,59,111,117,116,108,105,110,101,58,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,52,48,59,119,105,100,116,104,58,49,48,48,118,119,59,104,101,105,103,104,116,58,49,48,48,118,104,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,46,102,97,100,101,123,111,112,97,99,105,116,121,58,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,46,115,104,111,119,123,111,112,97,99,105,116,121,58,46,53,125,46,109,111,100,97,108,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,59,112,97,100,100,105,110,103,58,49,114,101,109,32,49,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,109,111,100,97,108,45,104,101,97,100,101,114,32,46,99,108,111,115,101,123,112,97,100,100,105,110,103,58,49,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,58,45,49,114,101,109,32,45,49,114,101,109,32,45,49,114,101,109,32,97,117,116,111,125,46,109,111,100,97,108,45,116,105,116,108,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,109,111,100,97,108,45,98,111,100,121,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,112,97,100,100,105,110,103,58,49,114,101,109,125,46,109,111,100,97,108,45,102,111,111,116,101,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,59,112,97,100,100,105,110,103,58,49,114,101,109,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,109,111,100,97,108,45,102,111,111,116,101,114,62,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,125,46,109,111,100,97,108,45,102,111,111,116,101,114,62,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,125,46,109,111,100,97,108,45,115,99,114,111,108,108,98,97,114,45,109,101,97,115,117,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,45,57,57,57,57,112,120,59,119,105,100,116,104,58,53,48,112,120,59,104,101,105,103,104,116,58,53,48,112,120,59,111,118,101,114,102,108,111,119,58,115,99,114,111,108,108,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,109,111,100,97,108,45,100,105,97,108,111,103,123,109,97,120,45,119,105,100,116,104,58,53,48,48,112,120,59,109,97,114,103,105,110,58,49,46,55,53,114,101,109,32,97,117,116,111,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,123,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,58,58,98,101,102,111,114,101,123,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,115,109,123,109,97,120,45,119,105,100,116,104,58,51,48,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,109,111,100,97,108,45,108,103,44,46,109,111,100,97,108,45,120,108,123,109,97,120,45,119,105,100,116,104,58,56,48,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,109,111,100,97,108,45,120,108,123,109,97,120,45,119,105,100,116,104,58,49,49,52,48,112,120,125,125,46,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,49,48,55,48,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,115,116,97,114,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,59,119,111,114,100,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,108,105,110,101,45,98,114,101,97,107,58,97,117,116,111,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,111,112,97,99,105,116,121,58,48,125,46,116,111,111,108,116,105,112,46,115,104,111,119,123,111,112,97,99,105,116,121,58,46,57,125,46,116,111,111,108,116,105,112,32,46,97,114,114,111,119,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,46,56,114,101,109,59,104,101,105,103,104,116,58,46,52,114,101,109,125,46,116,111,111,108,116,105,112,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,115,116,121,108,101,58,115,111,108,105,100,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,123,112,97,100,100,105,110,103,58,46,52,114,101,109,32,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,123,98,111,116,116,111,109,58,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,116,111,112,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,46,52,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,123,112,97,100,100,105,110,103,58,48,32,46,52,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,123,108,101,102,116,58,48,59,119,105,100,116,104,58,46,52,114,101,109,59,104,101,105,103,104,116,58,46,56,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,46,52,114,101,109,32,46,52,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,123,112,97,100,100,105,110,103,58,46,52,114,101,109,32,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,123,116,111,112,58,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,52,114,101,109,32,46,52,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,123,112,97,100,100,105,110,103,58,48,32,46,52,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,123,114,105,103,104,116,58,48,59,119,105,100,116,104,58,46,52,114,101,109,59,104,101,105,103,104,116,58,46,56,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,108,101,102,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,48,32,46,52,114,101,109,32,46,52,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,48,48,48,125,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,109,97,120,45,119,105,100,116,104,58,50,48,48,112,120,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,111,112,111,118,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,54,48,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,120,45,119,105,100,116,104,58,50,55,54,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,115,116,97,114,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,59,119,111,114,100,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,108,105,110,101,45,98,114,101,97,107,58,97,117,116,111,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,46,53,114,101,109,59,109,97,114,103,105,110,58,48,32,46,51,114,101,109,125,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,115,116,121,108,101,58,115,111,108,105,100,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,123,98,111,116,116,111,109,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,116,116,111,109,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,123,108,101,102,116,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,59,119,105,100,116,104,58,46,53,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,58,46,51,114,101,109,32,48,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,108,101,102,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,108,101,102,116,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,123,116,111,112,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,116,111,112,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,116,111,112,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,53,48,37,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,102,55,102,55,102,55,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,123,114,105,103,104,116,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,59,119,105,100,116,104,58,46,53,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,58,46,51,114,101,109,32,48,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,48,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,114,105,103,104,116,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,48,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,102,102,125,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,55,102,55,102,55,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,101,98,101,98,101,98,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,125,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,101,109,112,116,121,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,112,111,112,111,118,101,114,45,98,111,100,121,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,99,97,114,111,117,115,101,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,99,97,114,111,117,115,101,108,46,112,111,105,110,116,101,114,45,101,118,101,110,116,123,45,109,115,45,116,111,117,99,104,45,97,99,116,105,111,110,58,112,97,110,45,121,59,116,111,117,99,104,45,97,99,116,105,111,110,58,112,97,110,45,121,125,46,99,97,114,111,117,115,101,108,45,105,110,110,101,114,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,99,97,114,111,117,115,101,108,45,105,110,110,101,114,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,34,34,125,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,110,111,110,101,59,102,108,111,97,116,58,108,101,102,116,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,48,48,37,59,45,119,101,98,107,105,116,45,98,97,99,107,102,97,99,101,45,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,59,98,97,99,107,102,97,99,101,45,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,59,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,46,97,99,116,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,58,110,111,116,40,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,41,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,49,48,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,49,48,48,37,41,125,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,58,110,111,116,40,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,41,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,45,49,48,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,45,49,48,48,37,41,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,105,116,105,111,110,45,112,114,111,112,101,114,116,121,58,111,112,97,99,105,116,121,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,46,97,99,116,105,118,101,123,122,45,105,110,100,101,120,58,49,59,111,112,97,99,105,116,121,58,49,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,123,122,45,105,110,100,101,120,58,48,59,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,105,116,105,111,110,58,48,115,32,46,54,115,32,111,112,97,99,105,116,121,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,122,45,105,110,100,101,120,58,49,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,119,105,100,116,104,58,49,53,37,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,111,112,97,99,105,116,121,58,46,53,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,49,53,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,58,102,111,99,117,115,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,58,104,111,118,101,114,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,58,102,111,99,117,115,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,111,117,116,108,105,110,101,58,48,59,111,112,97,99,105,116,121,58,46,57,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,108,101,102,116,58,48,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,123,114,105,103,104,116,58,48,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,45,105,99,111,110,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,45,105,99,111,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,48,112,120,59,104,101,105,103,104,116,58,50,48,112,120,59,98,97,99,107,103,114,111,117,110,100,58,110,111,45,114,101,112,101,97,116,32,53,48,37,47,49,48,48,37,32,49,48,48,37,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,100,61,39,77,53,46,50,53,32,48,108,45,52,32,52,32,52,32,52,32,49,46,53,45,49,46,53,45,50,46,53,45,50,46,53,32,50,46,53,45,50,46,53,45,49,46,53,45,49,46,53,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,100,61,39,77,50,46,55,53,32,48,108,45,49,46,53,32,49,46,53,32,50,46,53,32,50,46,53,45,50,46,53,32,50,46,53,32,49,46,53,32,49,46,53,32,52,45,52,45,52,45,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,53,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,37,59,109,97,114,103,105,110,45,108,101,102,116,58,49,53,37,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,108,105,123,98,111,120,45,115,105,122,105,110,103,58,99,111,110,116,101,110,116,45,98,111,120,59,45,109,115,45,102,108,101,120,58,48,32,49,32,97,117,116,111,59,102,108,101,120,58,48,32,49,32,97,117,116,111,59,119,105,100,116,104,58,51,48,112,120,59,104,101,105,103,104,116,58,51,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,51,112,120,59,116,101,120,116,45,105,110,100,101,110,116,58,45,57,57,57,112,120,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,45,116,111,112,58,49,48,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,48,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,111,112,97,99,105,116,121,58,46,53,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,54,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,108,105,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,46,97,99,116,105,118,101,123,111,112,97,99,105,116,121,58,49,125,46,99,97,114,111,117,115,101,108,45,99,97,112,116,105,111,110,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,49,53,37,59,98,111,116,116,111,109,58,50,48,112,120,59,108,101,102,116,58,49,53,37,59,122,45,105,110,100,101,120,58,49,48,59,112,97,100,100,105,110,103,45,116,111,112,58,50,48,112,120,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,50,48,112,120,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,64,45,119,101,98,107,105,116,45,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,98,111,114,100,101,114,123,116,111,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,59,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,125,125,64,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,98,111,114,100,101,114,123,116,111,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,59,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,125,125,46,115,112,105,110,110,101,114,45,98,111,114,100,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,114,101,109,59,104,101,105,103,104,116,58,50,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,59,98,111,114,100,101,114,58,46,50,53,101,109,32,115,111,108,105,100,32,99,117,114,114,101,110,116,67,111,108,111,114,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,59,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,98,111,114,100,101,114,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,59,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,98,111,114,100,101,114,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,125,46,115,112,105,110,110,101,114,45,98,111,114,100,101,114,45,115,109,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,50,101,109,125,64,45,119,101,98,107,105,116,45,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,103,114,111,119,123,48,37,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,125,53,48,37,123,111,112,97,99,105,116,121,58,49,125,125,64,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,103,114,111,119,123,48,37,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,125,53,48,37,123,111,112,97,99,105,116,121,58,49,125,125,46,115,112,105,110,110,101,114,45,103,114,111,119,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,114,101,109,59,104,101,105,103,104,116,58,50,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,99,117,114,114,101,110,116,67,111,108,111,114,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,59,111,112,97,99,105,116,121,58,48,59,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,103,114,111,119,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,59,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,103,114,111,119,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,125,46,115,112,105,110,110,101,114,45,103,114,111,119,45,115,109,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,125,46,97,108,105,103,110,45,98,97,115,101,108,105,110,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,111,112,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,109,105,100,100,108,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,98,111,116,116,111,109,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,111,116,116,111,109,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,101,120,116,45,98,111,116,116,111,109,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,101,120,116,45,116,111,112,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,112,114,105,109,97,114,121,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,98,103,45,112,114,105,109,97,114,121,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,115,101,99,111,110,100,97,114,121,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,98,103,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,115,117,99,99,101,115,115,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,98,103,45,115,117,99,99,101,115,115,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,105,110,102,111,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,105,110,102,111,58,102,111,99,117,115,44,97,46,98,103,45,105,110,102,111,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,105,110,102,111,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,105,110,102,111,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,119,97,114,110,105,110,103,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,98,103,45,119,97,114,110,105,110,103,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,100,97,110,103,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,98,103,45,100,97,110,103,101,114,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,100,97,110,103,101,114,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,100,97,110,103,101,114,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,108,105,103,104,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,98,103,45,108,105,103,104,116,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,108,105,103,104,116,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,108,105,103,104,116,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,100,97,114,107,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,100,97,114,107,58,102,111,99,117,115,44,97,46,98,103,45,100,97,114,107,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,100,97,114,107,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,100,97,114,107,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,119,104,105,116,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,116,114,97,110,115,112,97,114,101,110,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,114,105,103,104,116,123,98,111,114,100,101,114,45,114,105,103,104,116,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,101,102,116,123,98,111,114,100,101,114,45,108,101,102,116,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,48,123,98,111,114,100,101,114,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,116,111,112,45,48,123,98,111,114,100,101,114,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,114,105,103,104,116,45,48,123,98,111,114,100,101,114,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,98,111,116,116,111,109,45,48,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,101,102,116,45,48,123,98,111,114,100,101,114,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,112,114,105,109,97,114,121,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,115,101,99,111,110,100,97,114,121,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,115,117,99,99,101,115,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,105,110,102,111,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,119,97,114,110,105,110,103,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,100,97,110,103,101,114,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,105,103,104,116,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,100,97,114,107,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,119,104,105,116,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,115,109,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,114,105,103,104,116,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,108,101,102,116,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,108,103,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,99,105,114,99,108,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,112,105,108,108,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,48,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,33,105,109,112,111,114,116,97,110,116,125,46,99,108,101,97,114,102,105,120,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,34,34,125,46,100,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,100,45,115,109,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,100,45,109,100,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,100,45,108,103,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,100,45,120,108,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,112,114,105,110,116,123,46,100,45,112,114,105,110,116,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,111,110,116,101,110,116,58,34,34,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,105,116,101,109,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,101,109,98,101,100,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,105,102,114,97,109,101,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,111,98,106,101,99,116,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,118,105,100,101,111,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,98,111,114,100,101,114,58,48,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,50,49,98,121,57,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,52,50,46,56,53,55,49,52,51,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,49,54,98,121,57,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,53,54,46,50,53,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,52,98,121,51,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,55,53,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,49,98,121,49,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,49,48,48,37,125,46,102,108,101,120,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,108,101,120,45,115,109,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,108,101,120,45,109,100,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,102,108,101,120,45,108,103,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,102,108,101,120,45,120,108,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,46,102,108,111,97,116,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,108,111,97,116,45,115,109,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,115,109,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,115,109,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,108,111,97,116,45,109,100,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,109,100,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,109,100,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,102,108,111,97,116,45,108,103,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,108,103,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,108,103,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,102,108,111,97,116,45,120,108,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,120,108,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,120,108,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,46,111,118,101,114,102,108,111,119,45,97,117,116,111,123,111,118,101,114,102,108,111,119,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,111,118,101,114,102,108,111,119,45,104,105,100,100,101,110,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,115,116,97,116,105,99,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,114,101,108,97,116,105,118,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,97,98,115,111,108,117,116,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,102,105,120,101,100,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,115,116,105,99,107,121,123,112,111,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,115,116,105,99,107,121,33,105,109,112,111,114,116,97,110,116,59,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,33,105,109,112,111,114,116,97,110,116,125,46,102,105,120,101,100,45,116,111,112,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,51,48,125,46,102,105,120,101,100,45,98,111,116,116,111,109,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,51,48,125,64,115,117,112,112,111,114,116,115,32,40,40,112,111,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,115,116,105,99,107,121,41,32,111,114,32,40,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,41,41,123,46,115,116,105,99,107,121,45,116,111,112,123,112,111,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,115,116,105,99,107,121,59,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,59,116,111,112,58,48,59,122,45,105,110,100,101,120,58,49,48,50,48,125,125,46,115,114,45,111,110,108,121,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,119,105,100,116,104,58,49,112,120,59,104,101,105,103,104,116,58,49,112,120,59,112,97,100,100,105,110,103,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,99,108,105,112,58,114,101,99,116,40,48,44,48,44,48,44,48,41,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,111,114,100,101,114,58,48,125,46,115,114,45,111,110,108,121,45,102,111,99,117,115,97,98,108,101,58,97,99,116,105,118,101,44,46,115,114,45,111,110,108,121,45,102,111,99,117,115,97,98,108,101,58,102,111,99,117,115,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,119,105,100,116,104,58,97,117,116,111,59,104,101,105,103,104,116,58,97,117,116,111,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,59,99,108,105,112,58,97,117,116,111,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,125,46,115,104,97,100,111,119,45,115,109,123,98,111,120,45,115,104,97,100,111,119,58,48,32,46,49,50,53,114,101,109,32,46,50,53,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,123,98,111,120,45,115,104,97,100,111,119,58,48,32,46,53,114,101,109,32,49,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,45,108,103,123,98,111,120,45,115,104,97,100,111,119,58,48,32,49,114,101,109,32,51,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,55,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,45,110,111,110,101,123,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,119,45,50,53,123,119,105,100,116,104,58,50,53,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,53,48,123,119,105,100,116,104,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,55,53,123,119,105,100,116,104,58,55,53,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,49,48,48,123,119,105,100,116,104,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,97,117,116,111,123,119,105,100,116,104,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,104,45,50,53,123,104,101,105,103,104,116,58,50,53,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,53,48,123,104,101,105,103,104,116,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,55,53,123,104,101,105,103,104,116,58,55,53,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,49,48,48,123,104,101,105,103,104,116,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,97,117,116,111,123,104,101,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,119,45,49,48,48,123,109,97,120,45,119,105,100,116,104,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,109,104,45,49,48,48,123,109,97,120,45,104,101,105,103,104,116,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,109,105,110,45,118,119,45,49,48,48,123,109,105,110,45,119,105,100,116,104,58,49,48,48,118,119,33,105,109,112,111,114,116,97,110,116,125,46,109,105,110,45,118,104,45,49,48,48,123,109,105,110,45,104,101,105,103,104,116,58,49,48,48,118,104,33,105,109,112,111,114,116,97,110,116,125,46,118,119,45,49,48,48,123,119,105,100,116,104,58,49,48,48,118,119,33,105,109,112,111,114,116,97,110,116,125,46,118,104,45,49,48,48,123,104,101,105,103,104,116,58,49,48,48,118,104,33,105,109,112,111,114,116,97,110,116,125,46,115,116,114,101,116,99,104,101,100,45,108,105,110,107,58,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,48,41,125,46,109,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,48,44,46,109,121,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,48,44,46,109,120,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,48,44,46,109,121,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,48,44,46,109,120,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,49,44,46,109,121,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,49,44,46,109,120,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,49,44,46,109,121,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,49,44,46,109,120,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,50,44,46,109,121,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,50,44,46,109,120,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,50,44,46,109,121,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,50,44,46,109,120,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,51,44,46,109,121,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,51,44,46,109,120,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,51,44,46,109,121,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,51,44,46,109,120,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,52,44,46,109,121,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,52,44,46,109,120,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,52,44,46,109,121,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,52,44,46,109,120,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,53,44,46,109,121,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,53,44,46,109,120,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,53,44,46,109,121,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,53,44,46,109,120,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,48,44,46,112,121,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,48,44,46,112,120,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,48,44,46,112,121,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,48,44,46,112,120,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,49,44,46,112,121,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,49,44,46,112,120,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,49,44,46,112,121,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,49,44,46,112,120,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,50,44,46,112,121,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,50,44,46,112,120,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,50,44,46,112,121,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,50,44,46,112,120,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,51,44,46,112,121,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,51,44,46,112,120,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,51,44,46,112,121,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,51,44,46,112,120,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,52,44,46,112,121,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,52,44,46,112,120,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,52,44,46,112,121,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,52,44,46,112,120,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,53,44,46,112,121,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,53,44,46,112,120,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,53,44,46,112,121,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,53,44,46,112,120,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,49,44,46,109,121,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,49,44,46,109,120,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,49,44,46,109,121,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,49,44,46,109,120,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,50,44,46,109,121,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,50,44,46,109,120,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,50,44,46,109,121,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,50,44,46,109,120,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,51,44,46,109,121,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,51,44,46,109,120,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,51,44,46,109,121,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,51,44,46,109,120,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,52,44,46,109,121,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,52,44,46,109,120,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,52,44,46,109,121,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,52,44,46,109,120,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,53,44,46,109,121,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,53,44,46,109,120,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,53,44,46,109,121,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,53,44,46,109,120,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,97,117,116,111,44,46,109,121,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,97,117,116,111,44,46,109,120,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,97,117,116,111,44,46,109,121,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,97,117,116,111,44,46,109,120,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,109,45,115,109,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,48,44,46,109,121,45,115,109,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,48,44,46,109,120,45,115,109,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,48,44,46,109,121,45,115,109,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,48,44,46,109,120,45,115,109,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,49,44,46,109,121,45,115,109,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,49,44,46,109,120,45,115,109,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,49,44,46,109,121,45,115,109,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,49,44,46,109,120,45,115,109,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,50,44,46,109,121,45,115,109,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,50,44,46,109,120,45,115,109,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,50,44,46,109,121,45,115,109,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,50,44,46,109,120,45,115,109,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,51,44,46,109,121,45,115,109,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,51,44,46,109,120,45,115,109,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,51,44,46,109,121,45,115,109,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,51,44,46,109,120,45,115,109,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,52,44,46,109,121,45,115,109,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,52,44,46,109,120,45,115,109,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,52,44,46,109,121,45,115,109,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,52,44,46,109,120,45,115,109,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,53,44,46,109,121,45,115,109,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,53,44,46,109,120,45,115,109,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,53,44,46,109,121,45,115,109,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,53,44,46,109,120,45,115,109,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,48,44,46,112,121,45,115,109,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,48,44,46,112,120,45,115,109,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,48,44,46,112,121,45,115,109,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,48,44,46,112,120,45,115,109,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,49,44,46,112,121,45,115,109,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,49,44,46,112,120,45,115,109,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,49,44,46,112,121,45,115,109,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,49,44,46,112,120,45,115,109,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,50,44,46,112,121,45,115,109,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,50,44,46,112,120,45,115,109,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,50,44,46,112,121,45,115,109,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,50,44,46,112,120,45,115,109,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,51,44,46,112,121,45,115,109,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,51,44,46,112,120,45,115,109,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,51,44,46,112,121,45,115,109,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,51,44,46,112,120,45,115,109,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,52,44,46,112,121,45,115,109,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,52,44,46,112,120,45,115,109,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,52,44,46,112,121,45,115,109,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,52,44,46,112,120,45,115,109,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,53,44,46,112,121,45,115,109,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,53,44,46,112,120,45,115,109,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,53,44,46,112,121,45,115,109,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,53,44,46,112,120,45,115,109,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,49,44,46,109,121,45,115,109,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,49,44,46,109,120,45,115,109,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,49,44,46,109,121,45,115,109,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,49,44,46,109,120,45,115,109,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,50,44,46,109,121,45,115,109,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,50,44,46,109,120,45,115,109,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,50,44,46,109,121,45,115,109,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,50,44,46,109,120,45,115,109,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,51,44,46,109,121,45,115,109,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,51,44,46,109,120,45,115,109,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,51,44,46,109,121,45,115,109,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,51,44,46,109,120,45,115,109,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,52,44,46,109,121,45,115,109,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,52,44,46,109,120,45,115,109,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,52,44,46,109,121,45,115,109,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,52,44,46,109,120,45,115,109,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,53,44,46,109,121,45,115,109,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,53,44,46,109,120,45,115,109,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,53,44,46,109,121,45,115,109,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,53,44,46,109,120,45,115,109,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,97,117,116,111,44,46,109,121,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,97,117,116,111,44,46,109,120,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,97,117,116,111,44,46,109,121,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,97,117,116,111,44,46,109,120,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,109,45,109,100,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,48,44,46,109,121,45,109,100,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,48,44,46,109,120,45,109,100,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,48,44,46,109,121,45,109,100,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,48,44,46,109,120,45,109,100,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,49,44,46,109,121,45,109,100,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,49,44,46,109,120,45,109,100,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,49,44,46,109,121,45,109,100,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,49,44,46,109,120,45,109,100,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,50,44,46,109,121,45,109,100,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,50,44,46,109,120,45,109,100,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,50,44,46,109,121,45,109,100,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,50,44,46,109,120,45,109,100,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,51,44,46,109,121,45,109,100,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,51,44,46,109,120,45,109,100,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,51,44,46,109,121,45,109,100,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,51,44,46,109,120,45,109,100,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,52,44,46,109,121,45,109,100,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,52,44,46,109,120,45,109,100,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,52,44,46,109,121,45,109,100,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,52,44,46,109,120,45,109,100,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,53,44,46,109,121,45,109,100,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,53,44,46,109,120,45,109,100,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,53,44,46,109,121,45,109,100,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,53,44,46,109,120,45,109,100,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,48,44,46,112,121,45,109,100,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,48,44,46,112,120,45,109,100,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,48,44,46,112,121,45,109,100,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,48,44,46,112,120,45,109,100,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,49,44,46,112,121,45,109,100,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,49,44,46,112,120,45,109,100,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,49,44,46,112,121,45,109,100,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,49,44,46,112,120,45,109,100,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,50,44,46,112,121,45,109,100,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,50,44,46,112,120,45,109,100,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,50,44,46,112,121,45,109,100,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,50,44,46,112,120,45,109,100,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,51,44,46,112,121,45,109,100,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,51,44,46,112,120,45,109,100,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,51,44,46,112,121,45,109,100,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,51,44,46,112,120,45,109,100,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,52,44,46,112,121,45,109,100,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,52,44,46,112,120,45,109,100,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,52,44,46,112,121,45,109,100,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,52,44,46,112,120,45,109,100,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,53,44,46,112,121,45,109,100,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,53,44,46,112,120,45,109,100,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,53,44,46,112,121,45,109,100,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,53,44,46,112,120,45,109,100,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,49,44,46,109,121,45,109,100,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,49,44,46,109,120,45,109,100,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,49,44,46,109,121,45,109,100,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,49,44,46,109,120,45,109,100,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,50,44,46,109,121,45,109,100,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,50,44,46,109,120,45,109,100,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,50,44,46,109,121,45,109,100,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,50,44,46,109,120,45,109,100,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,51,44,46,109,121,45,109,100,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,51,44,46,109,120,45,109,100,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,51,44,46,109,121,45,109,100,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,51,44,46,109,120,45,109,100,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,52,44,46,109,121,45,109,100,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,52,44,46,109,120,45,109,100,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,52,44,46,109,121,45,109,100,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,52,44,46,109,120,45,109,100,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,53,44,46,109,121,45,109,100,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,53,44,46,109,120,45,109,100,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,53,44,46,109,121,45,109,100,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,53,44,46,109,120,45,109,100,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,97,117,116,111,44,46,109,121,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,97,117,116,111,44,46,109,120,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,97,117,116,111,44,46,109,121,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,97,117,116,111,44,46,109,120,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,109,45,108,103,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,48,44,46,109,121,45,108,103,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,48,44,46,109,120,45,108,103,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,48,44,46,109,121,45,108,103,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,48,44,46,109,120,45,108,103,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,49,44,46,109,121,45,108,103,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,49,44,46,109,120,45,108,103,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,49,44,46,109,121,45,108,103,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,49,44,46,109,120,45,108,103,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,50,44,46,109,121,45,108,103,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,50,44,46,109,120,45,108,103,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,50,44,46,109,121,45,108,103,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,50,44,46,109,120,45,108,103,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,51,44,46,109,121,45,108,103,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,51,44,46,109,120,45,108,103,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,51,44,46,109,121,45,108,103,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,51,44,46,109,120,45,108,103,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,52,44,46,109,121,45,108,103,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,52,44,46,109,120,45,108,103,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,52,44,46,109,121,45,108,103,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,52,44,46,109,120,45,108,103,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,53,44,46,109,121,45,108,103,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,53,44,46,109,120,45,108,103,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,53,44,46,109,121,45,108,103,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,53,44,46,109,120,45,108,103,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,48,44,46,112,121,45,108,103,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,48,44,46,112,120,45,108,103,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,48,44,46,112,121,45,108,103,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,48,44,46,112,120,45,108,103,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,49,44,46,112,121,45,108,103,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,49,44,46,112,120,45,108,103,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,49,44,46,112,121,45,108,103,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,49,44,46,112,120,45,108,103,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,50,44,46,112,121,45,108,103,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,50,44,46,112,120,45,108,103,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,50,44,46,112,121,45,108,103,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,50,44,46,112,120,45,108,103,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,51,44,46,112,121,45,108,103,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,51,44,46,112,120,45,108,103,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,51,44,46,112,121,45,108,103,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,51,44,46,112,120,45,108,103,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,52,44,46,112,121,45,108,103,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,52,44,46,112,120,45,108,103,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,52,44,46,112,121,45,108,103,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,52,44,46,112,120,45,108,103,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,53,44,46,112,121,45,108,103,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,53,44,46,112,120,45,108,103,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,53,44,46,112,121,45,108,103,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,53,44,46,112,120,45,108,103,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,49,44,46,109,121,45,108,103,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,49,44,46,109,120,45,108,103,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,49,44,46,109,121,45,108,103,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,49,44,46,109,120,45,108,103,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,50,44,46,109,121,45,108,103,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,50,44,46,109,120,45,108,103,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,50,44,46,109,121,45,108,103,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,50,44,46,109,120,45,108,103,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,51,44,46,109,121,45,108,103,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,51,44,46,109,120,45,108,103,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,51,44,46,109,121,45,108,103,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,51,44,46,109,120,45,108,103,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,52,44,46,109,121,45,108,103,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,52,44,46,109,120,45,108,103,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,52,44,46,109,121,45,108,103,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,52,44,46,109,120,45,108,103,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,53,44,46,109,121,45,108,103,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,53,44,46,109,120,45,108,103,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,53,44,46,109,121,45,108,103,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,53,44,46,109,120,45,108,103,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,97,117,116,111,44,46,109,121,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,97,117,116,111,44,46,109,120,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,97,117,116,111,44,46,109,121,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,97,117,116,111,44,46,109,120,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,109,45,120,108,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,48,44,46,109,121,45,120,108,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,48,44,46,109,120,45,120,108,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,48,44,46,109,121,45,120,108,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,48,44,46,109,120,45,120,108,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,49,44,46,109,121,45,120,108,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,49,44,46,109,120,45,120,108,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,49,44,46,109,121,45,120,108,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,49,44,46,109,120,45,120,108,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,50,44,46,109,121,45,120,108,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,50,44,46,109,120,45,120,108,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,50,44,46,109,121,45,120,108,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,50,44,46,109,120,45,120,108,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,51,44,46,109,121,45,120,108,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,51,44,46,109,120,45,120,108,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,51,44,46,109,121,45,120,108,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,51,44,46,109,120,45,120,108,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,52,44,46,109,121,45,120,108,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,52,44,46,109,120,45,120,108,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,52,44,46,109,121,45,120,108,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,52,44,46,109,120,45,120,108,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,53,44,46,109,121,45,120,108,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,53,44,46,109,120,45,120,108,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,53,44,46,109,121,45,120,108,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,53,44,46,109,120,45,120,108,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,48,44,46,112,121,45,120,108,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,48,44,46,112,120,45,120,108,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,48,44,46,112,121,45,120,108,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,48,44,46,112,120,45,120,108,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,49,44,46,112,121,45,120,108,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,49,44,46,112,120,45,120,108,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,49,44,46,112,121,45,120,108,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,49,44,46,112,120,45,120,108,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,50,44,46,112,121,45,120,108,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,50,44,46,112,120,45,120,108,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,50,44,46,112,121,45,120,108,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,50,44,46,112,120,45,120,108,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,51,44,46,112,121,45,120,108,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,51,44,46,112,120,45,120,108,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,51,44,46,112,121,45,120,108,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,51,44,46,112,120,45,120,108,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,52,44,46,112,121,45,120,108,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,52,44,46,112,120,45,120,108,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,52,44,46,112,121,45,120,108,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,52,44,46,112,120,45,120,108,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,53,44,46,112,121,45,120,108,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,53,44,46,112,120,45,120,108,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,53,44,46,112,121,45,120,108,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,53,44,46,112,120,45,120,108,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,49,44,46,109,121,45,120,108,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,49,44,46,109,120,45,120,108,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,49,44,46,109,121,45,120,108,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,49,44,46,109,120,45,120,108,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,50,44,46,109,121,45,120,108,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,50,44,46,109,120,45,120,108,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,50,44,46,109,121,45,120,108,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,50,44,46,109,120,45,120,108,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,51,44,46,109,121,45,120,108,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,51,44,46,109,120,45,120,108,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,51,44,46,109,121,45,120,108,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,51,44,46,109,120,45,120,108,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,52,44,46,109,121,45,120,108,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,52,44,46,109,120,45,120,108,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,52,44,46,109,121,45,120,108,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,52,44,46,109,120,45,120,108,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,53,44,46,109,121,45,120,108,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,53,44,46,109,120,45,120,108,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,53,44,46,109,121,45,120,108,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,53,44,46,109,120,45,120,108,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,97,117,116,111,44,46,109,121,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,97,117,116,111,44,46,109,120,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,97,117,116,111,44,46,109,121,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,97,117,116,111,44,46,109,120,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,46,116,101,120,116,45,109,111,110,111,115,112,97,99,101,123,102,111,110,116,45,102,97,109,105,108,121,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,34,67,111,117,114,105,101,114,32,78,101,119,34,44,109,111,110,111,115,112,97,99,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,106,117,115,116,105,102,121,123,116,101,120,116,45,97,108,105,103,110,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,114,97,112,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,110,111,119,114,97,112,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,116,114,117,110,99,97,116,101,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,116,101,120,116,45,111,118,101,114,102,108,111,119,58,101,108,108,105,112,115,105,115,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,116,101,120,116,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,116,101,120,116,45,115,109,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,109,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,109,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,116,101,120,116,45,109,100,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,100,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,100,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,116,101,120,116,45,108,103,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,103,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,103,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,116,101,120,116,45,120,108,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,120,108,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,120,108,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,46,116,101,120,116,45,108,111,119,101,114,99,97,115,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,108,111,119,101,114,99,97,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,117,112,112,101,114,99,97,115,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,117,112,112,101,114,99,97,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,99,97,112,105,116,97,108,105,122,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,99,97,112,105,116,97,108,105,122,101,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,108,105,103,104,116,123,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,108,105,103,104,116,101,114,123,102,111,110,116,45,119,101,105,103,104,116,58,108,105,103,104,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,110,111,114,109,97,108,123,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,98,111,108,100,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,98,111,108,100,101,114,123,102,111,110,116,45,119,101,105,103,104,116,58,98,111,108,100,101,114,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,105,116,97,108,105,99,123,102,111,110,116,45,115,116,121,108,101,58,105,116,97,108,105,99,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,104,105,116,101,123,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,116,101,120,116,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,52,57,52,102,53,52,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,116,101,120,116,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,57,54,57,50,99,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,105,110,102,111,123,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,105,110,102,111,58,102,111,99,117,115,44,97,46,116,101,120,116,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,102,54,54,55,52,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,116,101,120,116,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,98,97,56,98,48,48,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,116,101,120,116,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,97,55,49,100,50,97,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,105,103,104,116,123,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,116,101,120,116,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,99,98,100,51,100,97,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,100,97,114,107,123,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,100,97,114,107,58,102,111,99,117,115,44,97,46,116,101,120,116,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,50,49,52,49,54,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,111,100,121,123,99,111,108,111,114,58,35,50,49,50,53,50,57,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,117,116,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,108,97,99,107,45,53,48,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,104,105,116,101,45,53,48,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,104,105,100,101,123,102,111,110,116,58,48,47,48,32,97,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,110,111,110,101,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,114,101,97,107,123,119,111,114,100,45,98,114,101,97,107,58,98,114,101,97,107,45,119,111,114,100,33,105,109,112,111,114,116,97,110,116,59,111,118,101,114,102,108,111,119,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,114,101,115,101,116,123,99,111,108,111,114,58,105,110,104,101,114,105,116,33,105,109,112,111,114,116,97,110,116,125,46,118,105,115,105,98,108,101,123,118,105,115,105,98,105,108,105,116,121,58,118,105,115,105,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,105,110,118,105,115,105,98,108,101,123,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,112,114,105,110,116,123,42,44,58,58,97,102,116,101,114,44,58,58,98,101,102,111,114,101,123,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,97,58,110,111,116,40,46,98,116,110,41,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,97,98,98,114,91,116,105,116,108,101,93,58,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,34,32,40,34,32,97,116,116,114,40,116,105,116,108,101,41,32,34,41,34,125,112,114,101,123,119,104,105,116,101,45,115,112,97,99,101,58,112,114,101,45,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,98,108,111,99,107,113,117,111,116,101,44,112,114,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,97,100,98,53,98,100,59,112,97,103,101,45,98,114,101,97,107,45,105,110,115,105,100,101,58,97,118,111,105,100,125,116,104,101,97,100,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,104,101,97,100,101,114,45,103,114,111,117,112,125,105,109,103,44,116,114,123,112,97,103,101,45,98,114,101,97,107,45,105,110,115,105,100,101,58,97,118,111,105,100,125,104,50,44,104,51,44,112,123,111,114,112,104,97,110,115,58,51,59,119,105,100,111,119,115,58,51,125,104,50,44,104,51,123,112,97,103,101,45,98,114,101,97,107,45,97,102,116,101,114,58,97,118,111,105,100,125,64,112,97,103,101,123,115,105,122,101,58,97,51,125,98,111,100,121,123,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,33,105,109,112,111,114,116,97,110,116,125,46,99,111,110,116,97,105,110,101,114,123,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,33,105,109,112,111,114,116,97,110,116,125,46,110,97,118,98,97,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,98,97,100,103,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,48,48,48,125,46,116,97,98,108,101,123,98,111,114,100,101,114,45,99,111,108,108,97,112,115,101,58,99,111,108,108,97,112,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,32,116,100,44,46,116,97,98,108,101,32,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,45,100,97,114,107,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,116,97,98,108,101,45,100,97,114,107,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,100,97,114,107,32,116,104,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,125,10,46,98,114,105,99,107,108,97,121,101,114,123,100,105,115,112,108,97,121,58,45,119,101,98,107,105,116,45,98,111,120,59,100,105,115,112,108,97,121,58,45,119,101,98,107,105,116,45,102,108,101,120,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,119,101,98,107,105,116,45,98,111,120,45,97,108,105,103,110,58,115,116,97,114,116,59,45,119,101,98,107,105,116,45,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,119,101,98,107,105,116,45,98,111,120,45,112,97,99,107,58,99,101,110,116,101,114,59,45,119,101,98,107,105,116,45,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,45,119,101,98,107,105,116,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,125,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,49,48,48,37,59,100,105,115,112,108,97,121,58,110,111,110,101,125,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,54,52,48,112,120,41,123,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,53,48,37,125,125,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,57,56,48,112,120,41,123,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,51,51,46,51,51,51,37,125,125,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,50,53,37,125,125,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,123,45,119,101,98,107,105,116,45,98,111,120,45,102,108,101,120,58,49,59,45,119,101,98,107,105,116,45,102,108,101,120,58,49,59,45,109,115,45,102,108,101,120,58,49,59,102,108,101,120,58,49,59,112,97,100,100,105,110,103,45,108,101,102,116,58,53,112,120,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,53,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,52,41,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,48,112,120,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,97,108,108,32,49,53,48,109,115,32,108,105,110,101,97,114,59,116,114,97,110,115,105,116,105,111,110,58,97,108,108,32,49,53,48,109,115,32,108,105,110,101,97,114,59,119,105,100,116,104,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,58,104,111,118,101,114,123,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,50,112,120,32,51,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,49,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,50,112,120,32,51,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,49,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,32,43,32,46,98,116,110,123,109,97,114,103,105,110,45,108,101,102,116,58,53,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,46,105,99,111,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,46,105,99,111,110,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,49,52,112,120,59,108,101,102,116,58,53,48,37,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,125,46,105,116,114,101,101,45,109,101,110,117,123,98,97,99,107,103,114,111,117,110,100,58,35,100,100,100,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,52,99,52,99,52,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,115,97,110,115,45,115,101,114,105,102,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,109,97,114,103,105,110,58,48,59,109,105,110,45,119,105,100,116,104,58,49,53,48,112,120,59,112,97,100,100,105,110,103,58,48,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,49,48,125,46,105,116,114,101,101,45,109,101,110,117,32,97,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,51,112,120,32,56,112,120,125,46,105,116,114,101,101,45,109,101,110,117,32,97,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,50,49,56,44,32,50,53,48,44,32,50,53,53,44,32,48,46,53,41,59,99,111,108,111,114,58,114,103,98,97,40,49,54,52,44,32,50,51,52,44,32,50,52,53,44,32,48,46,53,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,123,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,42,123,45,119,101,98,107,105,116,45,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,111,108,123,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,111,108,32,111,108,123,112,97,100,100,105,110,103,45,108,101,102,116,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,99,111,108,108,97,112,115,101,100,32,62,32,111,108,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,104,105,100,100,101,110,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,32,62,32,46,116,105,116,108,101,45,119,114,97,112,123,109,105,110,45,104,101,105,103,104,116,58,50,53,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,111,103,103,108,101,123,104,101,105,103,104,116,58,50,53,112,120,59,108,101,102,116,58,48,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,119,105,100,116,104,58,50,53,112,120,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,111,103,103,108,101,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,101,102,116,58,53,48,37,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,91,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,93,123,108,101,102,116,58,50,50,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,55,112,120,59,119,105,100,116,104,58,50,48,112,120,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,52,50,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,101,120,116,45,111,118,101,114,102,108,111,119,58,101,108,108,105,112,115,105,115,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,122,45,105,110,100,101,120,58,49,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,46,108,111,97,100,45,109,111,114,101,123,99,111,108,111,114,58,35,52,55,54,99,98,56,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,46,108,111,97,100,45,109,111,114,101,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,58,58,98,101,102,111,114,101,123,108,101,102,116,58,50,52,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,45,53,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,45,53,48,37,41,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,100,114,97,103,45,97,110,100,45,100,114,111,112,32,108,105,58,110,111,116,40,46,100,114,111,112,45,116,97,114,103,101,116,41,123,111,112,97,99,105,116,121,58,48,46,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,62,32,46,116,105,116,108,101,44,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,46,105,110,115,112,105,114,101,45,116,114,101,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,97,98,111,118,101,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,62,32,46,116,105,116,108,101,123,98,111,114,100,101,114,45,116,111,112,58,51,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,98,101,108,111,119,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,62,32,46,116,105,116,108,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,51,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,59,112,97,100,100,105,110,103,45,116,111,112,58,50,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,105,110,112,117,116,123,104,101,105,103,104,116,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,46,98,116,110,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,105,110,112,117,116,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,62,32,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,110,111,110,101,59,112,97,100,100,105,110,103,45,116,111,112,58,50,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,49,48,112,120,59,122,45,105,110,100,101,120,58,51,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,58,104,111,118,101,114,32,62,32,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,105,110,112,117,116,32,43,32,46,98,116,110,45,103,114,111,117,112,123,109,97,114,103,105,110,45,108,101,102,116,58,49,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,46,98,116,110,46,105,99,111,110,123,109,97,114,103,105,110,45,108,101,102,116,58,50,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,111,108,32,62,32,46,102,111,108,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,49,51,112,120,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,101,100,105,116,97,98,108,101,45,97,100,100,32,62,32,111,108,32,62,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,114,101,112,101,97,116,45,121,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,111,108,32,46,101,120,112,97,110,100,101,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,46,101,120,112,97,110,100,101,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,62,32,111,108,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,114,101,112,101,97,116,45,121,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,46,101,120,112,97,110,100,101,100,46,102,111,108,100,101,114,58,110,111,116,40,46,108,111,97,100,105,110,103,41,32,62,32,46,116,105,116,108,101,45,119,114,97,112,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,51,49,112,120,32,49,51,112,120,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,101,116,97,99,104,101,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,89,67,65,89,65,65,65,65,104,56,72,100,85,65,65,65,65,78,48,108,69,81,86,81,52,84,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,76,111,48,100,66,68,68,122,48,83,77,117,53,111,50,111,77,70,70,103,66,88,98,69,101,73,48,88,119,89,73,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,65,65,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,78,67,65,89,65,65,65,66,121,54,43,82,56,65,65,65,65,75,107,108,69,81,86,81,111,85,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,74,111,65,71,85,90,77,51,50,90,48,85,56,116,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,46,100,101,116,97,99,104,101,100,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,101,100,105,116,97,98,108,101,45,97,100,100,32,62,32,111,108,32,62,32,46,108,101,97,102,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,89,67,65,89,65,65,65,65,104,56,72,100,85,65,65,65,65,78,48,108,69,81,86,81,52,84,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,76,111,48,100,66,68,68,122,48,83,77,117,53,111,50,111,77,70,70,103,66,88,98,69,101,73,48,88,119,89,73,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,65,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,99,111,110,116,101,110,116,58,39,39,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,49,52,112,120,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,104,101,99,107,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,104,101,99,107,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,111,108,108,97,112,115,101,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,56,37,50,48,49,49,104,56,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,56,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,119,104,105,116,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,114,111,115,115,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,114,111,115,115,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,101,120,112,97,110,100,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,49,50,37,50,48,55,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,118,51,104,51,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,51,118,51,113,48,37,50,48,48,46,52,49,52,45,48,46,50,57,51,37,50,48,48,46,55,48,55,116,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,45,48,46,50,57,51,45,48,46,50,57,51,45,48,46,55,48,55,118,45,51,104,45,51,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,104,51,118,45,51,113,48,45,48,46,52,49,52,37,50,48,48,46,50,57,51,45,48,46,55,48,55,116,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,119,104,105,116,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,53,97,53,97,53,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,111,108,100,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,111,108,100,101,114,45,111,112,101,110,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,105,110,117,115,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,105,110,117,115,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,111,114,101,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,50,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,49,56,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,54,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,101,110,99,105,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,101,110,99,105,108,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,108,117,115,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,108,117,115,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,111,108,100,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,111,108,100,101,114,45,111,112,101,110,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,111,97,100,105,110,103,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,105,110,112,117,116,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,111,97,100,105,110,103,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,116,105,116,108,101,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,119,105,100,116,104,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,104,101,105,103,104,116,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,49,48,48,37,50,48,49,48,48,37,50,50,37,50,48,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,37,51,68,37,50,50,120,77,105,100,89,77,105,100,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,117,105,108,45,114,105,110,103,37,50,50,37,51,69,37,51,67,114,101,99,116,37,50,48,120,37,51,68,37,50,50,48,37,50,50,37,50,48,121,37,51,68,37,50,50,48,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,110,111,110,101,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,98,107,37,50,50,37,51,69,37,51,67,37,50,70,114,101,99,116,37,51,69,37,51,67,100,101,102,115,37,51,69,37,51,67,102,105,108,116,101,114,37,50,48,105,100,37,51,68,37,50,50,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,37,50,50,37,50,48,120,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,121,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,51,69,37,51,67,102,101,79,102,102,115,101,116,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,100,120,37,51,68,37,50,50,48,37,50,50,37,50,48,100,121,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,79,102,102,115,101,116,37,51,69,37,51,67,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,115,116,100,68,101,118,105,97,116,105,111,110,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,51,69,37,51,67,102,101,66,108,101,110,100,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,105,110,50,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,109,111,100,101,37,51,68,37,50,50,110,111,114,109,97,108,37,50,50,37,51,69,37,51,67,37,50,70,102,101,66,108,101,110,100,37,51,69,37,51,67,37,50,70,102,105,108,116,101,114,37,51,69,37,51,67,37,50,70,100,101,102,115,37,51,69,37,51,67,112,97,116,104,37,50,48,100,37,51,68,37,50,50,77,49,48,37,50,67,53,48,99,48,37,50,67,48,37,50,67,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,37,50,67,48,46,50,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,46,49,37,50,67,48,46,55,37,50,67,48,46,49,37,50,67,49,46,49,99,48,46,49,37,50,67,48,46,52,37,50,67,48,46,49,37,50,67,48,46,56,37,50,67,48,46,50,37,50,67,49,46,50,99,48,46,50,37,50,67,48,46,56,37,50,67,48,46,51,37,50,67,49,46,56,37,50,67,48,46,53,37,50,67,50,46,56,37,50,48,99,48,46,51,37,50,67,49,37,50,67,48,46,54,37,50,67,50,46,49,37,50,67,48,46,57,37,50,67,51,46,50,99,48,46,51,37,50,67,49,46,49,37,50,67,48,46,57,37,50,67,50,46,51,37,50,67,49,46,52,37,50,67,51,46,53,99,48,46,53,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,50,46,52,37,50,67,49,46,56,37,50,67,51,46,55,99,48,46,51,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,49,46,57,99,48,46,52,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,51,37,50,67,49,46,51,37,50,67,49,46,57,37,50,48,99,49,37,50,67,49,46,50,37,50,67,49,46,57,37,50,67,50,46,54,37,50,67,51,46,49,37,50,67,51,46,55,99,50,46,50,37,50,67,50,46,53,37,50,67,53,37,50,67,52,46,55,37,50,67,55,46,57,37,50,67,54,46,55,99,51,37,50,67,50,37,50,67,54,46,53,37,50,67,51,46,52,37,50,67,49,48,46,49,37,50,67,52,46,54,99,51,46,54,37,50,67,49,46,49,37,50,67,55,46,53,37,50,67,49,46,53,37,50,67,49,49,46,50,37,50,67,49,46,54,99,52,45,48,46,49,37,50,67,55,46,55,45,48,46,54,37,50,67,49,49,46,51,45,49,46,54,37,50,48,99,51,46,54,45,49,46,50,37,50,67,55,45,50,46,54,37,50,67,49,48,45,52,46,54,99,51,45,50,37,50,67,53,46,56,45,52,46,50,37,50,67,55,46,57,45,54,46,55,99,49,46,50,45,49,46,50,37,50,67,50,46,49,45,50,46,53,37,50,67,51,46,49,45,51,46,55,99,48,46,53,45,48,46,54,37,50,67,48,46,57,45,49,46,51,37,50,67,49,46,51,45,49,46,57,99,48,46,52,45,48,46,54,37,50,67,48,46,56,45,49,46,51,37,50,67,49,46,50,45,49,46,57,37,50,48,99,48,46,54,45,49,46,51,37,50,67,49,46,51,45,50,46,53,37,50,67,49,46,56,45,51,46,55,99,48,46,53,45,49,46,50,37,50,67,49,45,50,46,52,37,50,67,49,46,52,45,51,46,53,99,48,46,51,45,49,46,49,37,50,67,48,46,54,45,50,46,50,37,50,67,48,46,57,45,51,46,50,99,48,46,50,45,49,37,50,67,48,46,52,45,49,46,57,37,50,67,48,46,53,45,50,46,56,99,48,46,49,45,48,46,52,37,50,67,48,46,49,45,48,46,56,37,50,67,48,46,50,45,49,46,50,37,50,48,99,48,45,48,46,52,37,50,67,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,49,99,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,50,37,50,67,48,46,50,45,49,46,55,67,57,48,37,50,67,53,48,46,53,37,50,67,57,48,37,50,67,53,48,37,50,67,57,48,37,50,67,53,48,115,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,37,50,67,48,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,37,50,67,48,46,55,37,50,67,48,37,50,67,49,46,49,37,50,48,99,48,37,50,67,48,46,52,45,48,46,49,37,50,67,48,46,56,45,48,46,49,37,50,67,49,46,50,99,45,48,46,49,37,50,67,48,46,57,45,48,46,50,37,50,67,49,46,56,45,48,46,52,37,50,67,50,46,56,99,45,48,46,50,37,50,67,49,45,48,46,53,37,50,67,50,46,49,45,48,46,55,37,50,67,51,46,51,99,45,48,46,51,37,50,67,49,46,50,45,48,46,56,37,50,67,50,46,52,45,49,46,50,37,50,67,51,46,55,99,45,48,46,50,37,50,67,48,46,55,45,48,46,53,37,50,67,49,46,51,45,48,46,56,37,50,67,49,46,57,37,50,48,99,45,48,46,51,37,50,67,48,46,55,45,48,46,54,37,50,67,49,46,51,45,48,46,57,37,50,67,50,99,45,48,46,51,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,51,45,49,46,49,37,50,67,50,99,45,48,46,52,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,52,45,49,46,50,37,50,67,50,99,45,49,37,50,67,49,46,51,45,49,46,57,37,50,67,50,46,55,45,51,46,49,37,50,67,52,99,45,50,46,50,37,50,67,50,46,55,45,53,37,50,67,53,45,56,46,49,37,50,67,55,46,49,37,50,48,99,45,48,46,56,37,50,67,48,46,53,45,49,46,54,37,50,67,49,45,50,46,52,37,50,67,49,46,53,99,45,48,46,56,37,50,67,48,46,53,45,49,46,55,37,50,67,48,46,57,45,50,46,54,37,50,67,49,46,51,76,54,54,37,50,67,56,55,46,55,108,45,49,46,52,37,50,67,48,46,53,99,45,48,46,57,37,50,67,48,46,51,45,49,46,56,37,50,67,48,46,55,45,50,46,56,37,50,67,49,99,45,51,46,56,37,50,67,49,46,49,45,55,46,57,37,50,67,49,46,55,45,49,49,46,56,37,50,67,49,46,56,76,52,55,37,50,67,57,48,46,56,37,50,48,99,45,49,37,50,67,48,45,50,45,48,46,50,45,51,45,48,46,51,108,45,49,46,53,45,48,46,50,108,45,48,46,55,45,48,46,49,76,52,49,46,49,37,50,67,57,48,99,45,49,45,48,46,51,45,49,46,57,45,48,46,53,45,50,46,57,45,48,46,55,99,45,48,46,57,45,48,46,51,45,49,46,57,45,48,46,55,45,50,46,56,45,49,76,51,52,37,50,67,56,55,46,55,108,45,49,46,51,45,48,46,54,37,50,48,99,45,48,46,57,45,48,46,52,45,49,46,56,45,48,46,56,45,50,46,54,45,49,46,51,99,45,48,46,56,45,48,46,53,45,49,46,54,45,49,45,50,46,52,45,49,46,53,99,45,51,46,49,45,50,46,49,45,53,46,57,45,52,46,53,45,56,46,49,45,55,46,49,99,45,49,46,50,45,49,46,50,45,50,46,49,45,50,46,55,45,51,46,49,45,52,99,45,48,46,53,45,48,46,54,45,48,46,56,45,49,46,52,45,49,46,50,45,50,37,50,48,99,45,48,46,52,45,48,46,55,45,48,46,56,45,49,46,51,45,49,46,49,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,57,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,56,45,49,46,57,99,45,48,46,52,45,49,46,51,45,48,46,57,45,50,46,53,45,49,46,50,45,51,46,55,99,45,48,46,51,45,49,46,50,45,48,46,53,45,50,46,51,45,48,46,55,45,51,46,51,37,50,48,99,45,48,46,50,45,49,45,48,46,51,45,50,45,48,46,52,45,50,46,56,99,45,48,46,49,45,48,46,52,45,48,46,49,45,48,46,56,45,48,46,49,45,49,46,50,99,48,45,48,46,52,37,50,67,48,45,48,46,55,37,50,67,48,45,49,46,49,99,48,45,48,46,55,37,50,67,48,45,49,46,50,37,50,67,48,45,49,46,55,67,49,48,37,50,67,53,48,46,53,37,50,67,49,48,37,50,67,53,48,37,50,67,49,48,37,50,67,53,48,122,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,49,51,49,51,56,37,50,50,37,50,48,102,105,108,116,101,114,37,51,68,37,50,50,117,114,108,40,37,50,51,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,41,37,50,50,37,51,69,37,51,67,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,50,48,97,116,116,114,105,98,117,116,101,78,97,109,101,37,51,68,37,50,50,116,114,97,110,115,102,111,114,109,37,50,50,37,50,48,116,121,112,101,37,51,68,37,50,50,114,111,116,97,116,101,37,50,50,37,50,48,102,114,111,109,37,51,68,37,50,50,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,116,111,37,51,68,37,50,50,51,54,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,114,101,112,101,97,116,67,111,117,110,116,37,51,68,37,50,50,105,110,100,101,102,105,110,105,116,101,37,50,50,37,50,48,100,117,114,37,51,68,37,50,50,49,115,37,50,50,37,51,69,37,51,67,37,50,70,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,59,99,111,110,116,101,110,116,58,39,39,59,104,101,105,103,104,116,58,49,52,112,120,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,111,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,119,104,111,108,101,114,111,119,123,104,101,105,103,104,116,58,50,53,112,120,59,108,101,102,116,58,48,59,109,97,114,103,105,110,45,116,111,112,58,45,50,53,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,119,105,100,116,104,58,49,48,48,37,59,122,45,105,110,100,101,120,58,49,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,102,111,99,117,115,101,100,58,110,111,116,40,46,115,101,108,101,99,116,101,100,41,32,62,32,46,119,104,111,108,101,114,111,119,123,111,117,116,108,105,110,101,58,49,112,120,32,100,111,116,116,101,100,32,98,108,97,99,107,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,32,43,32,46,119,104,111,108,101,114,111,119,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,119,104,111,108,101,114,111,119,123,98,97,99,107,103,114,111,117,110,100,58,35,66,66,68,69,70,66,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,97,123,99,111,108,111,114,58,35,52,57,53,48,53,55,125,46,105,114,115,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,45,119,101,98,107,105,116,45,116,111,117,99,104,45,99,97,108,108,111,117,116,58,110,111,110,101,59,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,107,104,116,109,108,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,125,46,105,114,115,45,108,105,110,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,125,46,105,114,115,45,108,105,110,101,45,108,101,102,116,44,46,105,114,115,45,108,105,110,101,45,109,105,100,44,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,125,46,105,114,115,45,108,105,110,101,45,108,101,102,116,123,108,101,102,116,58,48,59,119,105,100,116,104,58,49,49,37,125,46,105,114,115,45,108,105,110,101,45,109,105,100,123,108,101,102,116,58,57,37,59,119,105,100,116,104,58,56,50,37,125,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,119,105,100,116,104,58,49,49,37,125,46,105,114,115,45,98,97,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,101,102,116,58,48,59,119,105,100,116,104,58,48,125,46,105,114,115,45,98,97,114,45,101,100,103,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,48,125,46,105,114,115,45,115,104,97,100,111,119,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,110,111,110,101,59,108,101,102,116,58,48,59,119,105,100,116,104,58,48,125,46,105,114,115,45,115,108,105,100,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,122,45,105,110,100,101,120,58,49,125,46,105,114,115,45,115,108,105,100,101,114,46,115,105,110,103,108,101,123,125,46,105,114,115,45,115,108,105,100,101,114,46,102,114,111,109,123,125,46,105,114,115,45,115,108,105,100,101,114,46,116,111,123,125,46,105,114,115,45,115,108,105,100,101,114,46,116,121,112,101,95,108,97,115,116,123,122,45,105,110,100,101,120,58,50,125,46,105,114,115,45,109,105,110,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,101,102,116,58,48,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,105,114,115,45,109,97,120,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,114,105,103,104,116,58,48,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,105,114,115,45,102,114,111,109,44,46,105,114,115,45,115,105,110,103,108,101,44,46,105,114,115,45,116,111,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,48,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,105,114,115,45,103,114,105,100,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,110,111,110,101,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,50,48,112,120,125,46,105,114,115,45,119,105,116,104,45,103,114,105,100,32,46,105,114,115,45,103,114,105,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,105,114,115,45,103,114,105,100,45,112,111,108,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,112,120,59,104,101,105,103,104,116,58,56,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,48,48,48,125,46,105,114,115,45,103,114,105,100,45,112,111,108,46,115,109,97,108,108,123,104,101,105,103,104,116,58,52,112,120,125,46,105,114,115,45,103,114,105,100,45,116,101,120,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,102,111,110,116,45,115,105,122,101,58,57,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,57,112,120,59,112,97,100,100,105,110,103,58,48,32,51,112,120,59,99,111,108,111,114,58,35,48,48,48,125,46,105,114,115,45,100,105,115,97,98,108,101,45,109,97,115,107,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,45,49,37,59,119,105,100,116,104,58,49,48,50,37,59,104,101,105,103,104,116,58,49,48,48,37,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,48,44,48,44,48,44,48,46,48,41,59,122,45,105,110,100,101,120,58,50,125,46,105,114,115,45,100,105,115,97,98,108,101,100,123,111,112,97,99,105,116,121,58,48,46,52,125,46,108,116,45,105,101,57,32,46,105,114,115,45,100,105,115,97,98,108,101,100,123,102,105,108,116,101,114,58,32,97,108,112,104,97,40,111,112,97,99,105,116,121,61,52,48,41,125,46,105,114,115,45,104,105,100,100,101,110,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,32,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,98,108,111,99,107,32,33,105,109,112,111,114,116,97,110,116,59,116,111,112,58,48,32,33,105,109,112,111,114,116,97,110,116,59,108,101,102,116,58,48,32,33,105,109,112,111,114,116,97,110,116,59,119,105,100,116,104,58,48,32,33,105,109,112,111,114,116,97,110,116,59,104,101,105,103,104,116,58,48,32,33,105,109,112,111,114,116,97,110,116,59,102,111,110,116,45,115,105,122,101,58,48,32,33,105,109,112,111,114,116,97,110,116,59,108,105,110,101,45,104,101,105,103,104,116,58,48,32,33,105,109,112,111,114,116,97,110,116,59,112,97,100,100,105,110,103,58,48,32,33,105,109,112,111,114,116,97,110,116,59,109,97,114,103,105,110,58,48,32,33,105,109,112,111,114,116,97,110,116,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,122,45,105,110,100,101,120,58,45,57,57,57,57,32,33,105,109,112,111,114,116,97,110,116,59,98,97,99,107,103,114,111,117,110,100,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,115,116,121,108,101,58,115,111,108,105,100,32,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,32,33,105,109,112,111,114,116,97,110,116,125,10,46,105,114,115,45,98,97,114,44,46,105,114,115,45,98,97,114,45,101,100,103,101,44,46,105,114,115,45,108,105,110,101,45,108,101,102,116,44,46,105,114,115,45,108,105,110,101,45,109,105,100,44,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,44,46,105,114,115,45,115,108,105,100,101,114,123,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,46,46,47,105,109,103,47,115,112,114,105,116,101,45,115,107,105,110,45,102,108,97,116,46,112,110,103,34,41,32,114,101,112,101,97,116,45,120,125,46,105,114,115,123,104,101,105,103,104,116,58,52,48,112,120,125,46,105,114,115,45,119,105,116,104,45,103,114,105,100,123,104,101,105,103,104,116,58,54,48,112,120,125,46,105,114,115,45,108,105,110,101,123,104,101,105,103,104,116,58,49,50,112,120,59,116,111,112,58,50,53,112,120,125,46,105,114,115,45,108,105,110,101,45,108,101,102,116,123,104,101,105,103,104,116,58,49,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,51,48,112,120,125,46,105,114,115,45,108,105,110,101,45,109,105,100,123,104,101,105,103,104,116,58,49,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,125,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,123,104,101,105,103,104,116,58,49,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,48,48,37,32,45,51,48,112,120,125,46,105,114,115,45,98,97,114,123,104,101,105,103,104,116,58,49,50,112,120,59,116,111,112,58,50,53,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,54,48,112,120,125,46,105,114,115,45,98,97,114,45,101,100,103,101,123,116,111,112,58,50,53,112,120,59,104,101,105,103,104,116,58,49,50,112,120,59,119,105,100,116,104,58,57,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,57,48,112,120,125,46,105,114,115,45,115,104,97,100,111,119,123,104,101,105,103,104,116,58,51,112,120,59,116,111,112,58,51,52,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,48,48,48,59,111,112,97,99,105,116,121,58,48,46,50,53,125,46,108,116,45,105,101,57,32,46,105,114,115,45,115,104,97,100,111,119,123,102,105,108,116,101,114,58,32,97,108,112,104,97,40,111,112,97,99,105,116,121,61,50,53,41,125,46,105,114,115,45,115,108,105,100,101,114,123,119,105,100,116,104,58,49,54,112,120,59,104,101,105,103,104,116,58,49,56,112,120,59,116,111,112,58,50,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,49,50,48,112,120,125,46,105,114,115,45,115,108,105,100,101,114,46,115,116,97,116,101,95,104,111,118,101,114,44,46,105,114,115,45,115,108,105,100,101,114,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,49,53,48,112,120,125,46,105,114,115,45,109,97,120,44,46,105,114,115,45,109,105,110,123,99,111,108,111,114,58,35,57,57,57,59,102,111,110,116,45,115,105,122,101,58,49,48,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,51,51,51,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,116,111,112,58,48,59,112,97,100,100,105,110,103,58,49,112,120,32,51,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,101,49,101,52,101,57,59,45,109,111,122,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,125,46,105,114,115,45,102,114,111,109,44,46,105,114,115,45,115,105,110,103,108,101,44,46,105,114,115,45,116,111,123,99,111,108,111,114,58,35,102,102,102,59,102,111,110,116,45,115,105,122,101,58,49,48,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,51,51,51,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,112,97,100,100,105,110,103,58,49,112,120,32,53,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,50,49,57,54,70,51,59,45,109,111,122,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,125,46,105,114,115,45,102,114,111,109,58,97,102,116,101,114,44,46,105,114,115,45,115,105,110,103,108,101,58,97,102,116,101,114,44,46,105,114,115,45,116,111,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,111,110,116,101,110,116,58,34,34,59,98,111,116,116,111,109,58,45,54,112,120,59,108,101,102,116,58,53,48,37,59,119,105,100,116,104,58,48,59,104,101,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,45,51,112,120,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,98,111,114,100,101,114,58,51,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,50,49,57,54,70,51,125,46,105,114,115,45,103,114,105,100,45,112,111,108,123,98,97,99,107,103,114,111,117,110,100,58,35,101,49,101,52,101,57,125,46,105,114,115,45,103,114,105,100,45,116,101,120,116,123,99,111,108,111,114,58,35,57,57,57,125,46,105,114,115,45,100,105,115,97,98,108,101,100,123,125,10,46,106,113,45,116,111,97,115,116,45,119,114,97,112,44,46,106,113,45,116,111,97,115,116,45,119,114,97,112,32,42,123,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,119,105,100,116,104,58,50,53,48,112,120,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,122,45,105,110,100,101,120,58,57,48,48,48,33,105,109,112,111,114,116,97,110,116,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,98,111,116,116,111,109,45,108,101,102,116,123,98,111,116,116,111,109,58,50,48,112,120,59,108,101,102,116,58,50,48,112,120,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,98,111,116,116,111,109,45,114,105,103,104,116,123,98,111,116,116,111,109,58,50,48,112,120,59,114,105,103,104,116,58,52,48,112,120,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,116,111,112,45,108,101,102,116,123,116,111,112,58,50,48,112,120,59,108,101,102,116,58,50,48,112,120,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,116,111,112,45,114,105,103,104,116,123,116,111,112,58,50,48,112,120,59,114,105,103,104,116,58,52,48,112,120,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,49,48,112,120,59,109,97,114,103,105,110,58,48,32,48,32,53,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,59,102,111,110,116,45,115,105,122,101,58,49,50,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,97,114,105,97,108,44,115,97,110,115,45,115,101,114,105,102,59,108,105,110,101,45,104,101,105,103,104,116,58,49,55,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,108,108,33,105,109,112,111,114,116,97,110,116,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,52,52,52,59,99,111,108,111,114,58,35,102,102,102,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,104,50,123,102,111,110,116,45,102,97,109,105,108,121,58,97,114,105,97,108,44,115,97,110,115,45,115,101,114,105,102,59,102,111,110,116,45,115,105,122,101,58,49,52,112,120,59,109,97,114,103,105,110,58,48,32,48,32,55,112,120,59,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,97,123,99,111,108,111,114,58,35,101,101,101,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,102,102,102,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,112,120,59,102,111,110,116,45,115,105,122,101,58,49,50,112,120,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,117,108,123,109,97,114,103,105,110,58,48,32,48,32,48,32,49,53,112,120,59,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,112,97,100,100,105,110,103,58,48,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,117,108,32,108,105,123,108,105,115,116,45,115,116,121,108,101,45,116,121,112,101,58,100,105,115,99,33,105,109,112,111,114,116,97,110,116,59,108,105,110,101,45,104,101,105,103,104,116,58,49,55,112,120,59,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,125,46,99,108,111,115,101,45,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,51,112,120,59,114,105,103,104,116,58,55,112,120,59,102,111,110,116,45,115,105,122,101,58,49,52,112,120,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,106,113,45,116,111,97,115,116,45,108,111,97,100,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,45,50,112,120,59,104,101,105,103,104,116,58,53,112,120,59,119,105,100,116,104,58,48,59,108,101,102,116,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,112,120,59,98,97,99,107,103,114,111,117,110,100,58,114,101,100,125,46,106,113,45,116,111,97,115,116,45,108,111,97,100,101,100,123,119,105,100,116,104,58,49,48,48,37,125,46,106,113,45,104,97,115,45,105,99,111,110,123,112,97,100,100,105,110,103,58,49,48,112,120,32,49,48,112,120,32,49,48,112,120,32,53,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,48,112,120,125,46,106,113,45,105,99,111,110,45,105,110,102,111,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,71,119,83,85,82,66,86,69,104,76,116,90,97,57,83,103,78,66,69,77,99,57,115,85,120,120,82,99,111,85,75,83,122,83,87,73,104,88,112,70,77,104,104,89,87,70,104,97,66,103,52,121,80,89,105,87,67,88,90,120,66,76,69,82,115,76,82,83,51,69,81,107,69,102,119,67,75,100,106,87,74,65,119,83,75,67,103,111,75,67,99,117,100,118,52,79,53,89,76,114,116,55,69,122,103,88,104,105,85,51,47,52,43,98,50,99,107,109,119,86,106,74,83,112,75,107,81,54,119,65,105,52,103,119,104,84,43,122,51,119,82,66,99,69,122,48,121,106,83,115,101,85,84,114,99,82,121,102,115,72,115,88,109,68,48,65,109,98,72,79,67,57,73,105,56,86,73,109,110,117,88,66,80,103,108,72,112,81,53,119,119,83,86,77,55,115,78,110,84,71,55,90,97,52,74,119,68,100,67,106,120,121,65,105,72,51,110,121,65,50,109,116,97,84,74,117,102,105,68,90,53,100,67,97,113,108,73,116,73,76,104,49,78,72,97,116,102,78,53,115,107,118,106,120,57,90,51,56,109,54,57,67,103,122,117,88,109,90,103,86,114,80,73,71,69,55,54,51,74,120,57,113,75,115,82,111,122,87,89,119,54,120,79,72,100,69,82,43,110,110,50,75,107,79,43,66,98,43,85,86,53,67,66,78,54,87,67,54,81,116,66,103,98,82,86,111,122,114,97,104,65,98,109,109,54,72,116,85,115,103,116,80,67,49,57,116,70,100,120,88,90,89,66,79,102,107,98,109,70,74,49,86,97,72,65,49,86,65,72,106,100,48,112,112,55,48,111,84,90,122,118,82,43,69,86,114,120,50,89,103,102,100,115,113,54,101,117,53,53,66,72,89,82,56,104,108,99,107,105,43,110,43,107,69,82,85,70,71,56,66,114,65,48,66,119,106,101,65,118,50,77,56,87,76,81,66,116,99,121,43,83,68,54,102,78,115,109,110,66,51,65,108,66,76,114,103,84,116,86,87,49,99,50,81,78,52,98,86,87,76,65,84,97,73,83,54,48,74,50,68,117,53,121,49,84,105,74,103,106,83,66,118,70,86,90,103,84,109,119,67,85,43,100,65,90,70,111,80,120,71,69,69,115,56,110,121,72,67,57,66,119,101,50,71,118,69,74,118,50,87,88,90,98,48,118,106,100,121,70,84,52,67,120,107,51,101,47,107,73,113,108,79,71,111,86,76,119,119,80,101,118,112,89,72,84,43,48,48,84,43,104,87,119,88,68,102,52,65,74,65,79,85,113,87,99,68,104,98,119,65,65,65,65,65,83,85,86,79,82,75,53,67,89,73,73,61,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,49,55,48,56,102,59,99,111,108,111,114,58,35,100,57,101,100,102,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,99,101,56,102,49,125,46,106,113,45,105,99,111,110,45,119,97,114,110,105,110,103,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,71,89,83,85,82,66,86,69,104,76,53,90,83,118,84,115,78,81,70,77,98,88,90,71,73,67,77,89,71,89,109,74,104,65,81,73,74,65,73,67,89,81,80,65,65,67,105,83,68,66,56,65,105,73,67,81,81,74,84,52,67,113,81,69,119,103,74,118,89,65,83,65,81,67,105,90,105,89,109,74,104,65,73,66,65,84,67,65,82,74,121,43,57,114,84,115,108,100,100,56,115,75,117,49,77,48,43,100,76,98,48,53,55,118,54,47,108,98,113,47,50,114,75,48,109,83,47,84,82,78,106,57,99,87,78,65,75,80,89,73,74,73,73,55,103,73,120,67,99,81,53,49,99,118,113,73,68,43,71,73,69,88,56,65,83,71,52,66,49,98,75,53,103,73,90,70,101,81,102,111,74,100,69,88,79,102,103,88,52,81,65,81,103,55,107,72,50,65,54,53,121,81,56,55,108,121,120,98,50,55,115,103,103,107,65,122,65,117,70,104,98,98,103,49,75,50,107,103,67,107,66,49,98,86,119,121,73,82,57,109,50,76,55,80,82,80,73,104,68,85,73,88,103,71,116,121,75,119,53,55,53,121,122,51,108,84,78,115,54,88,52,74,88,110,106,86,43,76,75,77,47,109,51,77,121,100,110,84,98,116,79,75,73,106,116,122,54,86,104,67,66,113,52,118,83,109,51,110,99,100,114,68,50,108,107,48,86,103,85,88,83,86,75,106,86,68,74,88,74,122,105,106,87,49,82,81,100,115,85,55,70,55,55,72,101,56,117,54,56,107,111,78,90,84,122,56,79,122,53,121,71,97,54,74,51,72,51,108,90,48,120,89,103,88,66,75,50,81,121,109,108,87,87,65,43,82,87,110,89,104,115,107,76,66,118,50,118,109,69,43,104,66,77,67,116,98,65,55,75,88,53,100,114,87,121,82,84,47,50,74,115,113,90,50,73,118,102,66,57,89,52,98,87,68,78,77,70,98,74,82,70,109,67,57,69,55,52,83,111,83,48,67,113,117,108,119,106,107,67,48,43,53,98,112,99,86,49,67,90,56,78,77,101,106,52,112,106,121,48,85,43,100,111,68,81,115,71,121,111,49,104,122,86,74,116,116,73,106,104,81,55,71,110,66,116,82,70,78,49,85,97,114,85,108,72,56,70,51,120,105,99,116,43,72,89,48,55,114,69,122,111,85,71,80,108,87,99,106,82,70,82,114,52,47,103,67,104,90,103,99,51,90,76,50,100,56,111,65,65,65,65,65,83,85,86,79,82,75,53,67,89,73,73,61,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,56,97,54,100,51,98,59,99,111,108,111,114,58,35,102,99,102,56,101,51,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,97,101,98,99,99,125,46,106,113,45,105,99,111,110,45,101,114,114,111,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,72,79,83,85,82,66,86,69,104,76,114,90,97,47,83,103,78,66,69,77,90,122,104,48,87,75,67,67,108,83,67,75,97,73,89,79,69,68,43,65,65,75,101,81,81,76,71,56,72,87,122,116,76,67,73,109,66,114,89,97,100,103,73,100,89,43,103,73,75,78,89,107,66,70,83,119,117,55,67,65,111,113,67,103,107,107,111,71,66,73,47,69,50,56,80,100,98,76,90,109,101,68,76,103,122,90,122,99,120,56,51,47,122,90,50,83,83,88,67,49,106,57,102,114,43,73,49,72,113,57,51,103,50,121,120,72,52,105,119,77,49,118,107,111,66,87,65,100,120,67,109,112,122,84,120,102,107,78,50,82,99,121,90,78,97,72,70,73,107,83,111,49,48,43,56,107,103,120,107,88,73,85,82,86,53,72,71,120,84,109,70,117,99,55,53,66,50,82,102,81,107,112,120,72,71,56,97,65,103,97,65,70,97,48,116,65,72,113,89,70,102,81,55,73,119,101,50,121,104,79,68,107,56,43,74,52,67,55,121,65,111,82,84,87,73,51,119,47,52,107,108,71,82,103,82,52,108,79,55,82,112,110,57,43,103,118,77,121,87,112,43,117,120,70,104,56,43,72,43,65,82,108,103,78,49,110,74,117,74,117,81,65,89,118,78,107,69,110,119,71,70,99,107,49,56,69,114,52,113,51,101,103,69,99,47,111,79,43,109,104,76,100,75,103,82,121,104,100,78,70,105,97,99,67,48,114,108,79,67,98,104,78,86,122,52,72,57,70,110,65,89,103,68,66,118,85,51,81,73,105,111,90,108,74,70,76,74,116,115,111,72,89,82,68,102,105,90,111,85,121,73,120,113,67,116,82,112,86,108,65,78,113,48,69,85,52,100,65,112,106,114,116,103,101,122,80,70,97,100,53,83,49,57,87,103,106,107,99,48,104,78,86,110,117,70,52,72,106,86,65,54,67,55,81,114,83,73,98,121,108,66,43,111,90,101,51,97,72,103,66,115,113,108,78,113,75,89,72,52,56,106,88,121,74,75,77,117,65,98,105,121,86,74,56,75,122,97,66,51,101,82,99,48,112,103,57,86,119,81,52,110,105,70,114,121,73,54,56,113,105,79,105,51,65,98,106,119,100,115,102,110,65,116,107,48,98,67,106,84,76,74,75,114,54,109,114,68,57,103,56,105,113,47,83,47,66,56,49,104,103,117,79,77,108,81,84,110,86,121,71,52,48,119,65,99,106,110,109,103,115,67,78,69,83,68,114,106,109,101,55,119,102,102,116,80,52,80,55,83,80,52,78,51,67,74,90,100,118,122,111,78,121,71,113,50,99,47,72,87,79,88,74,71,115,118,86,103,43,82,65,47,107,50,77,67,47,119,78,54,73,50,89,65,50,80,116,56,71,107,65,65,65,65,65,83,85,86,79,82,75,53,67,89,73,73,61,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,57,52,52,52,50,59,99,111,108,111,114,58,35,102,50,100,101,100,101,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,98,99,99,100,49,125,46,106,113,45,105,99,111,110,45,115,117,99,99,101,115,115,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,68,115,83,85,82,66,86,69,104,76,89,50,65,89,66,102,81,77,103,102,47,47,47,51,80,56,43,47,101,118,65,73,103,118,65,47,70,115,73,70,43,66,97,118,89,68,68,87,77,66,71,114,111,97,83,77,77,66,105,69,56,86,67,55,65,90,68,114,73,70,97,77,70,110,105,105,51,65,90,84,106,85,103,115,85,85,87,85,68,65,56,79,100,65,72,54,105,81,98,81,69,104,119,52,72,121,71,115,80,69,99,75,66,88,66,73,67,52,65,82,104,101,120,52,71,52,66,115,106,109,119,101,85,49,115,111,73,70,97,71,103,47,87,116,111,70,90,82,73,90,100,69,118,73,77,104,120,107,67,67,106,88,73,86,115,65,84,86,54,103,70,71,65,67,115,52,82,115,119,48,69,71,103,73,73,72,51,81,74,89,74,103,72,83,65,82,81,90,68,114,87,65,66,43,106,97,119,122,103,115,43,81,50,85,79,52,57,68,55,106,110,82,83,82,71,111,69,70,82,73,76,99,100,109,69,77,87,71,73,48,99,109,48,74,74,50,81,112,89,65,49,82,68,118,99,109,122,74,69,87,104,65,66,104,68,47,112,113,114,76,48,83,48,67,87,117,65,66,75,103,110,82,107,105,57,108,76,115,101,83,55,103,50,65,108,113,119,72,87,81,83,75,72,52,111,75,76,114,73,76,112,82,71,104,69,81,67,119,50,76,105,82,85,73,97,52,108,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,61,61,41,59,99,111,108,111,114,58,35,100,102,102,48,100,56,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,99,55,54,51,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,54,101,57,99,54,125,47,42,33,32,76,105,116,121,32,45,32,118,50,46,52,46,48,32,45,32,50,48,49,57,45,48,56,45,49,48,10,42,32,104,116,116,112,58,47,47,115,111,114,103,97,108,108,97,46,99,111,109,47,108,105,116,121,47,10,42,32,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,53,45,50,48,49,57,32,74,97,110,32,83,111,114,103,97,108,108,97,59,32,76,105,99,101,110,115,101,100,32,77,73,84,32,42,47,46,108,105,116,121,123,122,45,105,110,100,101,120,58,57,57,57,48,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,58,35,48,98,48,98,48,98,59,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,48,44,48,44,48,44,48,46,57,41,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,111,112,97,99,105,116,121,58,48,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,45,111,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,125,46,108,105,116,121,46,108,105,116,121,45,111,112,101,110,101,100,123,111,112,97,99,105,116,121,58,49,125,46,108,105,116,121,46,108,105,116,121,45,99,108,111,115,101,100,123,111,112,97,99,105,116,121,58,48,125,46,108,105,116,121,32,42,123,45,119,101,98,107,105,116,45,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,45,109,111,122,45,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,46,108,105,116,121,45,119,114,97,112,123,122,45,105,110,100,101,120,58,57,57,57,48,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,125,46,108,105,116,121,45,119,114,97,112,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,39,39,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,49,48,48,37,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,48,46,50,53,101,109,125,46,108,105,116,121,45,108,111,97,100,101,114,123,122,45,105,110,100,101,120,58,57,57,57,49,59,99,111,108,111,114,58,35,102,102,102,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,109,97,114,103,105,110,45,116,111,112,58,45,48,46,56,101,109,59,119,105,100,116,104,58,49,48,48,37,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,102,111,110,116,45,115,105,122,101,58,49,52,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,65,114,105,97,108,44,72,101,108,118,101,116,105,99,97,44,115,97,110,115,45,115,101,114,105,102,59,111,112,97,99,105,116,121,58,48,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,45,111,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,125,46,108,105,116,121,45,108,111,97,100,105,110,103,32,46,108,105,116,121,45,108,111,97,100,101,114,123,111,112,97,99,105,116,121,58,49,125,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,123,122,45,105,110,100,101,120,58,57,57,57,50,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,104,101,105,103,104,116,58,49,48,48,37,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,125,46,108,105,116,121,45,99,111,110,116,101,110,116,123,122,45,105,110,100,101,120,58,57,57,57,51,59,119,105,100,116,104,58,49,48,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,45,109,115,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,45,111,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,45,111,45,116,114,97,110,115,105,116,105,111,110,58,45,111,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,44,32,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,44,32,45,111,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,125,46,108,105,116,121,45,108,111,97,100,105,110,103,32,46,108,105,116,121,45,99,111,110,116,101,110,116,44,46,108,105,116,121,45,99,108,111,115,101,100,32,46,108,105,116,121,45,99,111,110,116,101,110,116,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,59,45,109,115,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,59,45,111,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,125,46,108,105,116,121,45,99,111,110,116,101,110,116,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,39,39,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,108,101,102,116,58,48,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,114,105,103,104,116,58,48,59,119,105,100,116,104,58,97,117,116,111,59,104,101,105,103,104,116,58,97,117,116,111,59,122,45,105,110,100,101,120,58,45,49,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,125,46,108,105,116,121,45,99,108,111,115,101,123,122,45,105,110,100,101,120,58,57,57,57,52,59,119,105,100,116,104,58,51,53,112,120,59,104,101,105,103,104,116,58,51,53,112,120,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,114,105,103,104,116,58,48,59,116,111,112,58,48,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,48,59,99,111,108,111,114,58,35,102,102,102,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,115,105,122,101,58,51,53,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,65,114,105,97,108,44,66,97,115,107,101,114,118,105,108,108,101,44,109,111,110,111,115,112,97,99,101,59,108,105,110,101,45,104,101,105,103,104,116,58,51,53,112,120,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,49,112,120,32,50,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,114,100,101,114,58,48,59,98,97,99,107,103,114,111,117,110,100,58,110,111,110,101,59,111,117,116,108,105,110,101,58,110,111,110,101,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,125,46,108,105,116,121,45,99,108,111,115,101,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,123,98,111,114,100,101,114,58,48,59,112,97,100,100,105,110,103,58,48,125,46,108,105,116,121,45,99,108,111,115,101,58,104,111,118,101,114,44,46,108,105,116,121,45,99,108,111,115,101,58,102,111,99,117,115,44,46,108,105,116,121,45,99,108,111,115,101,58,97,99,116,105,118,101,44,46,108,105,116,121,45,99,108,111,115,101,58,118,105,115,105,116,101,100,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,48,59,99,111,108,111,114,58,35,102,102,102,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,115,105,122,101,58,51,53,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,65,114,105,97,108,44,66,97,115,107,101,114,118,105,108,108,101,44,109,111,110,111,115,112,97,99,101,59,108,105,110,101,45,104,101,105,103,104,116,58,51,53,112,120,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,49,112,120,32,50,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,114,100,101,114,58,48,59,98,97,99,107,103,114,111,117,110,100,58,110,111,110,101,59,111,117,116,108,105,110,101,58,110,111,110,101,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,125,46,108,105,116,121,45,99,108,111,115,101,58,97,99,116,105,118,101,123,116,111,112,58,49,112,120,125,46,108,105,116,121,45,105,109,97,103,101,32,105,109,103,123,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,105,110,101,45,104,101,105,103,104,116,58,48,59,98,111,114,100,101,114,58,48,125,46,108,105,116,121,45,105,102,114,97,109,101,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,121,111,117,116,117,98,101,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,118,105,109,101,111,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,102,97,99,101,98,111,111,107,118,105,100,101,111,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,103,111,111,103,108,101,109,97,112,115,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,123,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,57,54,52,112,120,125,46,108,105,116,121,45,105,102,114,97,109,101,45,99,111,110,116,97,105,110,101,114,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,116,111,112,58,53,54,46,50,53,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,108,108,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,90,40,48,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,90,40,48,41,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,108,105,116,121,45,105,102,114,97,109,101,45,99,111,110,116,97,105,110,101,114,32,105,102,114,97,109,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,97,99,107,103,114,111,117,110,100,58,35,48,48,48,125,46,108,105,116,121,45,104,105,100,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,42,58,102,111,99,117,115,32,123,10,32,32,32,32,111,117,116,108,105,110,101,58,32,48,59,10,125,10,10,46,105,110,102,111,45,105,99,111,110,32,123,10,32,32,32,32,119,105,100,116,104,58,32,49,114,101,109,59,10,32,32,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,48,46,50,114,101,109,59,10,32,32,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,10,32,32,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,32,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,98,97,115,101,54,52,44,80,72,78,50,90,121,66,52,98,87,120,117,99,122,48,105,97,72,82,48,99,68,111,118,76,51,100,51,100,121,53,51,77,121,53,118,99,109,99,118,77,106,65,119,77,67,57,122,100,109,99,105,73,72,104,116,98,71,53,122,79,110,104,115,97,87,53,114,80,83,74,111,100,72,82,119,79,105,56,118,100,51,100,51,76,110,99,122,76,109,57,121,90,121,56,120,79,84,107,53,76,51,104,115,97,87,53,114,73,105,66,52,80,83,73,119,99,72,103,105,73,72,107,57,73,106,66,119,101,67,73,75,73,67,65,103,73,67,66,50,97,87,86,51,81,109,57,52,80,83,73,119,73,68,65,103,78,68,73,50,76,106,89,50,78,121,65,48,77,106,89,117,78,106,89,51,73,105,66,122,100,72,108,115,90,84,48,105,90,87,53,104,89,109,120,108,76,87,74,104,89,50,116,110,99,109,57,49,98,109,81,54,98,109,86,51,73,68,65,103,77,67,65,48,77,106,89,117,78,106,89,51,73,68,81,121,78,105,52,50,78,106,99,55,73,105,66,109,97,87,120,115,80,83,73,106,90,109,90,109,73,106,52,75,80,71,99,43,67,105,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,80,72,74,108,89,51,81,103,101,68,48,105,77,84,107,121,73,105,66,53,80,83,73,120,79,84,73,105,73,72,100,112,90,72,82,111,80,83,73,48,77,105,52,50,78,106,99,105,73,71,104,108,97,87,100,111,100,68,48,105,77,84,73,52,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,119,89,88,82,111,73,71,81,57,73,107,48,121,77,84,77,117,77,122,77,122,76,68,66,68,79,84,85,117,78,68,89,51,76,68,65,115,77,67,119,53,78,83,52,48,78,106,99,115,77,67,119,121,77,84,77,117,77,122,77,122,99,122,107,49,76,106,81,50,78,121,119,121,77,84,77,117,77,122,77,122,76,68,73,120,77,121,52,122,77,122,77,115,77,106,69,122,76,106,77,122,77,49,77,48,77,106,89,117,78,106,89,51,76,68,77,122,77,83,52,121,76,68,81,121,78,105,52,50,78,106,99,115,77,106,69,122,76,106,77,122,77,119,111,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,85,122,77,122,77,83,52,121,76,68,65,115,77,106,69,122,76,106,77,122,77,121,119,119,101,105,66,78,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,106,76,84,107,48,76,106,65,52,76,68,65,116,77,84,99,119,76,106,89,50,78,121,48,51,78,105,52,49,79,68,99,116,77,84,99,119,76,106,89,50,78,121,48,120,78,122,65,117,78,106,89,51,85,122,69,120,79,83,52,121,78,84,77,115,78,68,73,117,78,106,89,51,76,68,73,120,77,121,52,122,77,122,77,115,78,68,73,117,78,106,89,51,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,66,84,77,122,103,48,76,68,69,120,79,83,52,121,78,84,77,115,77,122,103,48,76,68,73,120,77,121,52,122,77,122,78,84,77,122,65,51,76,106,81,120,77,121,119,122,79,68,81,115,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,54,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,121,90,87,78,48,73,72,103,57,73,106,69,53,77,105,73,103,101,84,48,105,77,84,65,50,76,106,89,50,78,121,73,103,100,50,108,107,100,71,103,57,73,106,81,121,76,106,89,50,78,121,73,103,97,71,86,112,90,50,104,48,80,83,73,48,77,105,52,50,78,106,99,105,76,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,76,50,99,43,67,105,65,103,73,67,65,56,76,50,99,43,67,106,119,118,90,122,52,75,80,67,57,122,100,109,99,43,67,103,61,61,41,59,10,32,32,32,32,102,105,108,116,101,114,58,32,98,114,105,103,104,116,110,101,115,115,40,52,53,37,41,59,10,125,10,10,46,105,110,102,111,45,105,99,111,110,58,104,111,118,101,114,32,123,10,32,32,32,32,99,111,108,111,114,58,32,105,110,104,101,114,105,116,59,10,125,10,10,46,109,111,100,97,108,45,116,105,116,108,101,32,123,10,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,99,97,108,99,40,49,48,48,37,32,45,32,50,114,101,109,41,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,10,32,32,32,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,10,125,10,10,46,112,97,116,104,45,114,111,119,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,45,109,115,45,102,108,101,120,98,111,120,59,10,32,32,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,10,32,32,32,32,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,32,115,116,97,114,116,59,10,32,32,32,32,97,108,105,103,110,45,105,116,101,109,115,58,32,102,108,101,120,45,115,116,97,114,116,59,10,125,10,10,46,116,97,103,45,99,111,110,116,97,105,110,101,114,32,123,10,32,32,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,48,46,51,114,101,109,59,10,125,10,10,46,112,97,116,104,45,108,105,110,101,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,52,52,52,59,10,32,32,32,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,10,32,32,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,119,114,97,112,59,10,125,10,10,98,111,100,121,32,123,10,32,32,32,32,111,118,101,114,102,108,111,119,45,121,58,32,115,99,114,111,108,108,59,10,125,10,10,46,112,114,111,103,114,101,115,115,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,125,10,10,46,99,97,114,100,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,32,32,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,46,49,50,53,114,101,109,32,46,50,53,114,101,109,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,48,56,41,32,33,105,109,112,111,114,116,97,110,116,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,10,32,32,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,10,125,10,10,46,115,117,98,45,100,111,99,117,109,101,110,116,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,65,66,52,55,66,67,49,70,32,33,105,109,112,111,114,116,97,110,116,59,10,125,10,10,46,110,97,118,98,97,114,45,98,114,97,110,100,32,123,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,46,55,53,114,101,109,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,59,10,125,10,10,46,110,97,118,98,97,114,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,70,55,70,55,70,55,59,10,32,32,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,115,111,108,105,100,32,49,112,120,32,35,100,102,100,102,100,102,59,10,125,10,10,46,100,111,99,117,109,101,110,116,32,123,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,46,53,114,101,109,59,10,125,10,10,46,100,111,99,117,109,101,110,116,32,112,32,123,10,32,32,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,48,59,10,125,10,10,46,100,111,99,117,109,101,110,116,58,104,111,118,101,114,32,112,32,123,10,32,32,32,32,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,32,117,110,100,101,114,108,105,110,101,59,10,125,10,10,46,98,97,100,103,101,45,118,105,100,101,111,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,50,55,55,54,49,59,10,125,10,10,46,98,97,100,103,101,45,105,109,97,103,101,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,65,65,57,57,67,57,59,10,125,10,10,46,98,97,100,103,101,45,97,117,100,105,111,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,48,48,65,68,69,70,59,10,125,10,10,46,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,50,49,50,53,50,57,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,70,67,49,48,55,59,10,125,10,10,46,98,97,100,103,101,45,117,115,101,114,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,50,49,50,53,50,57,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,125,10,10,46,98,97,100,103,101,45,116,101,120,116,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,65,65,66,51,67,59,10,125,10,10,46,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,32,123,10,32,32,32,32,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,32,110,111,110,101,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,46,55,53,114,101,109,59,10,10,32,32,32,32,98,111,116,116,111,109,58,32,117,110,115,101,116,59,10,32,32,32,32,116,111,112,58,32,48,59,10,32,32,32,32,108,101,102,116,58,32,117,110,115,101,116,59,10,32,32,32,32,114,105,103,104,116,58,32,117,110,115,101,116,59,10,125,10,10,46,102,105,108,101,45,116,105,116,108,101,32,123,10,32,32,32,32,119,105,100,116,104,58,32,49,48,48,37,59,10,32,32,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,104,101,105,103,104,116,58,32,49,46,49,114,101,109,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,48,112,116,59,10,32,32,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,119,114,97,112,59,10,32,32,32,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,10,125,10,10,46,98,97,100,103,101,32,123,10,32,32,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,51,112,120,59,10,125,10,10,46,102,105,116,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,10,32,32,32,32,109,105,110,45,119,105,100,116,104,58,32,54,52,112,120,59,10,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,49,48,48,37,59,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,49,55,53,112,120,59,10,32,32,32,32,109,97,114,103,105,110,58,32,48,32,97,117,116,111,32,48,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,51,112,120,32,51,112,120,32,48,32,51,112,120,59,10,32,32,32,32,119,105,100,116,104,58,32,97,117,116,111,59,10,32,32,32,32,104,101,105,103,104,116,58,32,97,117,116,111,59,10,125,10,10,46,102,105,116,45,115,109,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,10,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,54,52,112,120,59,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,54,52,112,120,59,10,32,32,32,32,109,97,114,103,105,110,58,32,48,32,97,117,116,111,32,48,59,10,32,32,32,32,119,105,100,116,104,58,32,97,117,116,111,59,10,32,32,32,32,104,101,105,103,104,116,58,32,97,117,116,111,59,10,125,10,10,46,97,117,100,105,111,45,102,105,116,32,123,10,32,32,32,32,104,101,105,103,104,116,58,32,51,57,112,120,59,10,32,32,32,32,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,32,98,111,116,116,111,109,59,10,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,108,105,110,101,59,10,32,32,32,32,119,105,100,116,104,58,32,49,48,48,37,59,10,125,10,10,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,97,120,45,119,105,100,116,104,58,32,49,50,48,48,112,120,41,32,123,10,32,32,32,32,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,49,48,48,37,59,10,32,32,32,32,125,10,125,10,10,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,32,49,53,48,48,112,120,41,32,123,10,32,32,32,32,46,99,111,110,116,97,105,110,101,114,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,49,52,52,48,112,120,59,10,32,32,32,32,125,10,10,32,32,32,32,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,32,123,10,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,50,48,37,32,33,105,109,112,111,114,116,97,110,116,59,10,32,32,32,32,125,10,10,32,32,32,32,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,50,48,37,59,10,32,32,32,32,125,10,125,10,10,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,32,49,56,48,48,112,120,41,32,123,10,32,32,32,32,46,99,111,110,116,97,105,110,101,114,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,49,53,53,48,112,120,59,10,32,32,32,32,125,10,125,10,10,109,97,114,107,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,50,49,55,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,49,112,120,32,48,59,10,32,32,32,32,99,111,108,111,114,58,32,105,110,104,101,114,105,116,59,10,125,10,10,46,99,111,110,116,101,110,116,45,100,105,118,32,123,10,32,32,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,32,77,101,110,108,111,44,32,77,111,110,97,99,111,44,32,67,111,110,115,111,108,97,115,44,32,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,32,34,67,111,117,114,105,101,114,32,78,101,119,34,44,32,109,111,110,111,115,112,97,99,101,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,49,101,109,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,102,53,102,53,102,53,59,10,32,32,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,99,99,99,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,52,112,120,59,10,32,32,32,32,109,97,114,103,105,110,58,32,51,112,120,59,10,32,32,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,114,109,97,108,59,10,32,32,32,32,99,111,108,111,114,58,32,35,48,48,48,59,10,125,10,10,46,105,114,115,45,115,105,110,103,108,101,44,32,46,105,114,115,45,102,114,111,109,44,32,46,105,114,115,45,116,111,32,123,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,10,125,10,10,46,105,114,115,45,115,108,105,100,101,114,32,123,10,32,32,32,32,99,117,114,115,111,114,58,32,99,111,108,45,114,101,115,105,122,101,59,10,125,10,10,46,99,117,115,116,111,109,45,115,101,108,101,99,116,32,123,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,59,10,125,10,10,46,105,114,115,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,32,32,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,49,101,109,59,10,125,10,10,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,119,104,111,108,101,114,111,119,44,32,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,32,43,32,46,119,104,111,108,101,114,111,119,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,110,111,110,101,59,10,125,10,10,46,105,110,115,112,105,114,101,45,116,114,101,101,32,123,10,32,32,32,32,102,111,110,116,45,119,101,105,103,104,116,58,32,52,48,48,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,52,112,120,59,10,32,32,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,72,101,108,118,101,116,105,99,97,44,32,78,117,101,117,101,44,32,86,101,114,100,97,110,97,44,32,115,97,110,115,45,115,101,114,105,102,59,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,51,53,48,112,120,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,59,10,125,10,10,46,112,97,103,101,45,105,110,100,105,99,97,116,111,114,32,123,10,32,32,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,46,53,114,101,109,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,56,102,57,102,97,59,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,125,10,10,46,98,116,110,45,120,115,32,123,10,32,32,32,32,112,97,100,100,105,110,103,58,32,46,49,114,101,109,32,46,51,114,101,109,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,46,56,55,53,114,101,109,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,46,50,114,101,109,59,10,125,10,10,46,110,97,118,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,48,46,53,114,101,109,59,10,125,10,10,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,32,56,48,48,112,120,41,32,123,10,32,32,32,32,35,116,114,101,101,84,97,98,115,32,123,10,32,32,32,32,32,32,32,32,102,108,101,120,45,98,97,115,105,115,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,32,32,32,32,102,108,101,120,45,103,114,111,119,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,125,10,125,10,10,46,108,105,115,116,45,103,114,111,117,112,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,125,10,10,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,32,123,10,32,32,32,32,112,97,100,100,105,110,103,58,32,46,50,53,114,101,109,32,48,46,53,114,101,109,59,10,125,10,10,46,119,114,97,112,112,101,114,45,115,109,32,123,10,32,32,32,32,109,105,110,45,119,105,100,116,104,58,32,54,52,112,120,59,10,125,10,10,46,109,101,100,105,97,45,101,120,112,97,110,100,101,100,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,104,101,114,105,116,59,10,125,10,10,46,109,101,100,105,97,45,101,120,112,97,110,100,101,100,32,46,102,105,116,32,123,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,50,53,48,112,120,59,10,125,10,10,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,32,54,53,48,112,120,41,32,123,10,32,32,32,32,46,109,101,100,105,97,45,101,120,112,97,110,100,101,100,32,46,102,105,116,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,110,111,110,101,59,10,32,32,32,32,125,10,10,32,32,32,32,46,116,97,103,108,105,110,101,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,10,32,32,32,32,125,10,125,10,10,46,118,101,114,115,105,111,110,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,48,48,55,98,102,102,59,10,32,32,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,45,49,56,112,120,59,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,45,49,52,112,120,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,49,112,120,59,10,125,10,10,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,32,56,48,48,112,120,41,32,123,10,32,32,32,32,46,115,109,97,108,108,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,10,32,32,32,32,125,10,10,32,32,32,32,46,108,97,114,103,101,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,125,10,125,10,10,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,32,56,48,49,112,120,41,32,123,10,32,32,32,32,46,115,109,97,108,108,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,125,10,10,32,32,32,32,46,108,97,114,103,101,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,10,32,32,32,32,125,10,125,10,10,35,115,101,97,114,99,104,66,97,114,32,123,10,32,32,32,32,98,111,114,100,101,114,45,114,105,103,104,116,58,32,110,111,110,101,59,10,125,10,10,35,112,97,116,104,84,114,101,101,32,46,116,105,116,108,101,32,123,10,32,32,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,10,125,10,10,46,112,108,97,121,32,123,10,32,32,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,10,32,32,32,32,119,105,100,116,104,58,32,53,48,112,120,59,10,32,32,32,32,104,101,105,103,104,116,58,32,53,48,112,120,59,10,32,32,32,32,108,101,102,116,58,32,53,48,37,59,10,32,32,32,32,116,111,112,58,32,53,48,37,59,10,32,32,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,10,32,32,32,32,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,32,110,111,110,101,59,10,125,10,10,46,112,108,97,121,32,115,118,103,32,123,10,32,32,32,32,102,105,108,108,58,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,55,41,59,10,125,10,10,46,105,109,103,45,119,114,97,112,112,101,114,58,104,111,118,101,114,32,115,118,103,32,123,10,32,32,32,32,102,105,108,108,58,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,49,41,59,10,125,10,10,46,112,111,105,110,116,101,114,32,123,10,32,32,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,10,125,10,10,46,115,116,97,116,115,45,99,97,114,100,32,123,10,32,32,32,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,49,101,109,59,10,10,32,32,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,46,49,50,53,114,101,109,32,46,50,53,114,101,109,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,48,56,41,32,33,105,109,112,111,114,116,97,110,116,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,10,32,32,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,10,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,59,10,125,10,10,46,103,114,97,112,104,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,108,105,110,101,45,98,108,111,99,107,59,10,32,32,32,32,119,105,100,116,104,58,32,52,48,37,59,10,125,10,10,46,102,117,108,108,45,115,99,114,101,101,110,32,123,10,32,32,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,10,32,32,32,32,108,101,102,116,58,32,48,59,10,32,32,32,32,119,105,100,116,104,58,32,49,48,48,37,59,10,125,10,10,46,115,116,97,116,115,45,98,116,110,32,123,10,32,32,32,32,102,108,111,97,116,58,32,114,105,103,104,116,59,10,32,32,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,49,48,112,120,59,10,125,10}; +char bundle_dark_css[199650] = {47,42,33,10,32,42,32,66,111,111,116,115,116,114,97,112,32,118,52,46,51,46,49,32,40,104,116,116,112,115,58,47,47,103,101,116,98,111,111,116,115,116,114,97,112,46,99,111,109,47,41,10,32,42,32,67,111,112,121,114,105,103,104,116,32,50,48,49,49,45,50,48,49,57,32,84,104,101,32,66,111,111,116,115,116,114,97,112,32,65,117,116,104,111,114,115,10,32,42,32,67,111,112,121,114,105,103,104,116,32,50,48,49,49,45,50,48,49,57,32,84,119,105,116,116,101,114,44,32,73,110,99,46,10,32,42,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,32,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,119,98,115,47,98,111,111,116,115,116,114,97,112,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,41,10,32,42,47,58,114,111,111,116,123,45,45,98,108,117,101,58,35,48,48,55,98,102,102,59,45,45,105,110,100,105,103,111,58,35,54,54,49,48,102,50,59,45,45,112,117,114,112,108,101,58,35,54,102,52,50,99,49,59,45,45,112,105,110,107,58,35,101,56,51,101,56,99,59,45,45,114,101,100,58,35,100,99,51,53,52,53,59,45,45,111,114,97,110,103,101,58,35,102,100,55,101,49,52,59,45,45,121,101,108,108,111,119,58,35,102,102,99,49,48,55,59,45,45,103,114,101,101,110,58,35,50,56,97,55,52,53,59,45,45,116,101,97,108,58,35,50,48,99,57,57,55,59,45,45,99,121,97,110,58,35,49,55,97,50,98,56,59,45,45,119,104,105,116,101,58,35,102,102,102,59,45,45,103,114,97,121,58,35,54,99,55,53,55,100,59,45,45,103,114,97,121,45,100,97,114,107,58,35,51,52,51,97,52,48,59,45,45,112,114,105,109,97,114,121,58,35,48,48,55,98,102,102,59,45,45,115,101,99,111,110,100,97,114,121,58,35,54,99,55,53,55,100,59,45,45,115,117,99,99,101,115,115,58,35,50,56,97,55,52,53,59,45,45,105,110,102,111,58,35,49,55,97,50,98,56,59,45,45,119,97,114,110,105,110,103,58,35,102,102,99,49,48,55,59,45,45,100,97,110,103,101,114,58,35,100,99,51,53,52,53,59,45,45,108,105,103,104,116,58,35,102,56,102,57,102,97,59,45,45,100,97,114,107,58,35,51,52,51,97,52,48,59,45,45,98,114,101,97,107,112,111,105,110,116,45,120,115,58,48,59,45,45,98,114,101,97,107,112,111,105,110,116,45,115,109,58,53,55,54,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,109,100,58,55,54,56,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,108,103,58,57,57,50,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,120,108,58,49,50,48,48,112,120,59,45,45,102,111,110,116,45,102,97,109,105,108,121,45,115,97,110,115,45,115,101,114,105,102,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,45,45,102,111,110,116,45,102,97,109,105,108,121,45,109,111,110,111,115,112,97,99,101,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,34,67,111,117,114,105,101,114,32,78,101,119,34,44,109,111,110,111,115,112,97,99,101,125,42,44,58,58,97,102,116,101,114,44,58,58,98,101,102,111,114,101,123,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,104,116,109,108,123,102,111,110,116,45,102,97,109,105,108,121,58,115,97,110,115,45,115,101,114,105,102,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,49,53,59,45,119,101,98,107,105,116,45,116,101,120,116,45,115,105,122,101,45,97,100,106,117,115,116,58,49,48,48,37,59,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,97,114,116,105,99,108,101,44,97,115,105,100,101,44,102,105,103,99,97,112,116,105,111,110,44,102,105,103,117,114,101,44,102,111,111,116,101,114,44,104,101,97,100,101,114,44,104,103,114,111,117,112,44,109,97,105,110,44,110,97,118,44,115,101,99,116,105,111,110,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,98,111,100,121,123,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,91,116,97,98,105,110,100,101,120,61,34,45,49,34,93,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,33,105,109,112,111,114,116,97,110,116,125,104,114,123,98,111,120,45,115,105,122,105,110,103,58,99,111,110,116,101,110,116,45,98,111,120,59,104,101,105,103,104,116,58,48,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,104,49,44,104,50,44,104,51,44,104,52,44,104,53,44,104,54,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,112,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,97,98,98,114,91,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,93,44,97,98,98,114,91,116,105,116,108,101,93,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,59,45,119,101,98,107,105,116,45,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,32,100,111,116,116,101,100,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,32,100,111,116,116,101,100,59,99,117,114,115,111,114,58,104,101,108,112,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,45,119,101,98,107,105,116,45,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,115,107,105,112,45,105,110,107,58,110,111,110,101,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,115,107,105,112,45,105,110,107,58,110,111,110,101,125,97,100,100,114,101,115,115,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,125,100,108,44,111,108,44,117,108,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,111,108,32,111,108,44,111,108,32,117,108,44,117,108,32,111,108,44,117,108,32,117,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,100,116,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,100,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,98,108,111,99,107,113,117,111,116,101,123,109,97,114,103,105,110,58,48,32,48,32,49,114,101,109,125,98,44,115,116,114,111,110,103,123,102,111,110,116,45,119,101,105,103,104,116,58,98,111,108,100,101,114,125,115,109,97,108,108,123,102,111,110,116,45,115,105,122,101,58,56,48,37,125,115,117,98,44,115,117,112,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,102,111,110,116,45,115,105,122,101,58,55,53,37,59,108,105,110,101,45,104,101,105,103,104,116,58,48,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,125,115,117,98,123,98,111,116,116,111,109,58,45,46,50,53,101,109,125,115,117,112,123,116,111,112,58,45,46,53,101,109,125,97,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,97,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,58,102,111,99,117,115,44,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,58,104,111,118,101,114,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,125,99,111,100,101,44,107,98,100,44,112,114,101,44,115,97,109,112,123,102,111,110,116,45,102,97,109,105,108,121,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,34,67,111,117,114,105,101,114,32,78,101,119,34,44,109,111,110,111,115,112,97,99,101,59,102,111,110,116,45,115,105,122,101,58,49,101,109,125,112,114,101,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,111,118,101,114,102,108,111,119,58,97,117,116,111,125,102,105,103,117,114,101,123,109,97,114,103,105,110,58,48,32,48,32,49,114,101,109,125,105,109,103,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,98,111,114,100,101,114,45,115,116,121,108,101,58,110,111,110,101,125,115,118,103,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,116,97,98,108,101,123,98,111,114,100,101,114,45,99,111,108,108,97,112,115,101,58,99,111,108,108,97,112,115,101,125,99,97,112,116,105,111,110,123,112,97,100,100,105,110,103,45,116,111,112,58,46,55,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,99,97,112,116,105,111,110,45,115,105,100,101,58,98,111,116,116,111,109,125,116,104,123,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,125,108,97,98,101,108,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,98,117,116,116,111,110,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,98,117,116,116,111,110,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,49,112,120,32,100,111,116,116,101,100,59,111,117,116,108,105,110,101,58,53,112,120,32,97,117,116,111,32,45,119,101,98,107,105,116,45,102,111,99,117,115,45,114,105,110,103,45,99,111,108,111,114,125,98,117,116,116,111,110,44,105,110,112,117,116,44,111,112,116,103,114,111,117,112,44,115,101,108,101,99,116,44,116,101,120,116,97,114,101,97,123,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,105,110,104,101,114,105,116,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,125,98,117,116,116,111,110,44,105,110,112,117,116,123,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,98,117,116,116,111,110,44,115,101,108,101,99,116,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,115,101,108,101,99,116,123,119,111,114,100,45,119,114,97,112,58,110,111,114,109,97,108,125,91,116,121,112,101,61,98,117,116,116,111,110,93,44,91,116,121,112,101,61,114,101,115,101,116,93,44,91,116,121,112,101,61,115,117,98,109,105,116,93,44,98,117,116,116,111,110,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,98,117,116,116,111,110,125,91,116,121,112,101,61,98,117,116,116,111,110,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,91,116,121,112,101,61,114,101,115,101,116,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,91,116,121,112,101,61,115,117,98,109,105,116,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,98,117,116,116,111,110,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,91,116,121,112,101,61,98,117,116,116,111,110,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,91,116,121,112,101,61,114,101,115,101,116,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,91,116,121,112,101,61,115,117,98,109,105,116,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,98,117,116,116,111,110,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,123,112,97,100,100,105,110,103,58,48,59,98,111,114,100,101,114,45,115,116,121,108,101,58,110,111,110,101,125,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,112,97,100,100,105,110,103,58,48,125,105,110,112,117,116,91,116,121,112,101,61,100,97,116,101,93,44,105,110,112,117,116,91,116,121,112,101,61,100,97,116,101,116,105,109,101,45,108,111,99,97,108,93,44,105,110,112,117,116,91,116,121,112,101,61,109,111,110,116,104,93,44,105,110,112,117,116,91,116,121,112,101,61,116,105,109,101,93,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,108,105,115,116,98,111,120,125,116,101,120,116,97,114,101,97,123,111,118,101,114,102,108,111,119,58,97,117,116,111,59,114,101,115,105,122,101,58,118,101,114,116,105,99,97,108,125,102,105,101,108,100,115,101,116,123,109,105,110,45,119,105,100,116,104,58,48,59,112,97,100,100,105,110,103,58,48,59,109,97,114,103,105,110,58,48,59,98,111,114,100,101,114,58,48,125,108,101,103,101,110,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,125,112,114,111,103,114,101,115,115,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,125,91,116,121,112,101,61,110,117,109,98,101,114,93,58,58,45,119,101,98,107,105,116,45,105,110,110,101,114,45,115,112,105,110,45,98,117,116,116,111,110,44,91,116,121,112,101,61,110,117,109,98,101,114,93,58,58,45,119,101,98,107,105,116,45,111,117,116,101,114,45,115,112,105,110,45,98,117,116,116,111,110,123,104,101,105,103,104,116,58,97,117,116,111,125,91,116,121,112,101,61,115,101,97,114,99,104,93,123,111,117,116,108,105,110,101,45,111,102,102,115,101,116,58,45,50,112,120,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,91,116,121,112,101,61,115,101,97,114,99,104,93,58,58,45,119,101,98,107,105,116,45,115,101,97,114,99,104,45,100,101,99,111,114,97,116,105,111,110,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,58,58,45,119,101,98,107,105,116,45,102,105,108,101,45,117,112,108,111,97,100,45,98,117,116,116,111,110,123,102,111,110,116,58,105,110,104,101,114,105,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,98,117,116,116,111,110,125,111,117,116,112,117,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,115,117,109,109,97,114,121,123,100,105,115,112,108,97,121,58,108,105,115,116,45,105,116,101,109,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,116,101,109,112,108,97,116,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,91,104,105,100,100,101,110,93,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,104,49,44,46,104,50,44,46,104,51,44,46,104,52,44,46,104,53,44,46,104,54,44,104,49,44,104,50,44,104,51,44,104,52,44,104,53,44,104,54,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,53,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,104,49,44,104,49,123,102,111,110,116,45,115,105,122,101,58,50,46,53,114,101,109,125,46,104,50,44,104,50,123,102,111,110,116,45,115,105,122,101,58,50,114,101,109,125,46,104,51,44,104,51,123,102,111,110,116,45,115,105,122,101,58,49,46,55,53,114,101,109,125,46,104,52,44,104,52,123,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,125,46,104,53,44,104,53,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,104,54,44,104,54,123,102,111,110,116,45,115,105,122,101,58,49,114,101,109,125,46,108,101,97,100,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,125,46,100,105,115,112,108,97,121,45,49,123,102,111,110,116,45,115,105,122,101,58,54,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,100,105,115,112,108,97,121,45,50,123,102,111,110,116,45,115,105,122,101,58,53,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,100,105,115,112,108,97,121,45,51,123,102,111,110,116,45,115,105,122,101,58,52,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,100,105,115,112,108,97,121,45,52,123,102,111,110,116,45,115,105,122,101,58,51,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,104,114,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,125,46,115,109,97,108,108,44,115,109,97,108,108,123,102,111,110,116,45,115,105,122,101,58,56,48,37,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,125,46,109,97,114,107,44,109,97,114,107,123,112,97,100,100,105,110,103,58,46,50,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,99,102,56,101,51,125,46,108,105,115,116,45,117,110,115,116,121,108,101,100,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,108,105,115,116,45,105,110,108,105,110,101,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,108,105,115,116,45,105,110,108,105,110,101,45,105,116,101,109,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,108,105,115,116,45,105,110,108,105,110,101,45,105,116,101,109,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,125,46,105,110,105,116,105,97,108,105,115,109,123,102,111,110,116,45,115,105,122,101,58,57,48,37,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,117,112,112,101,114,99,97,115,101,125,46,98,108,111,99,107,113,117,111,116,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,98,108,111,99,107,113,117,111,116,101,45,102,111,111,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,108,111,99,107,113,117,111,116,101,45,102,111,111,116,101,114,58,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,34,92,50,48,49,52,92,48,48,65,48,34,125,46,105,109,103,45,102,108,117,105,100,123,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,97,117,116,111,125,46,105,109,103,45,116,104,117,109,98,110,97,105,108,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,97,117,116,111,125,46,102,105,103,117,114,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,102,105,103,117,114,101,45,105,109,103,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,125,46,102,105,103,117,114,101,45,99,97,112,116,105,111,110,123,102,111,110,116,45,115,105,122,101,58,57,48,37,59,99,111,108,111,114,58,35,54,99,55,53,55,100,125,99,111,100,101,123,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,101,56,51,101,56,99,59,119,111,114,100,45,98,114,101,97,107,58,98,114,101,97,107,45,119,111,114,100,125,97,62,99,111,100,101,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,107,98,100,123,112,97,100,100,105,110,103,58,46,50,114,101,109,32,46,52,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,107,98,100,32,107,98,100,123,112,97,100,100,105,110,103,58,48,59,102,111,110,116,45,115,105,122,101,58,49,48,48,37,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,112,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,112,114,101,32,99,111,100,101,123,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,125,46,112,114,101,45,115,99,114,111,108,108,97,98,108,101,123,109,97,120,45,104,101,105,103,104,116,58,51,52,48,112,120,59,111,118,101,114,102,108,111,119,45,121,58,115,99,114,111,108,108,125,46,99,111,110,116,97,105,110,101,114,123,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,53,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,59,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,53,52,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,55,50,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,57,54,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,49,49,52,48,112,120,125,125,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,53,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,59,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,125,46,114,111,119,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,53,112,120,125,46,110,111,45,103,117,116,116,101,114,115,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,110,111,45,103,117,116,116,101,114,115,62,46,99,111,108,44,46,110,111,45,103,117,116,116,101,114,115,62,91,99,108,97,115,115,42,61,99,111,108,45,93,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,99,111,108,44,46,99,111,108,45,49,44,46,99,111,108,45,49,48,44,46,99,111,108,45,49,49,44,46,99,111,108,45,49,50,44,46,99,111,108,45,50,44,46,99,111,108,45,51,44,46,99,111,108,45,52,44,46,99,111,108,45,53,44,46,99,111,108,45,54,44,46,99,111,108,45,55,44,46,99,111,108,45,56,44,46,99,111,108,45,57,44,46,99,111,108,45,97,117,116,111,44,46,99,111,108,45,108,103,44,46,99,111,108,45,108,103,45,49,44,46,99,111,108,45,108,103,45,49,48,44,46,99,111,108,45,108,103,45,49,49,44,46,99,111,108,45,108,103,45,49,50,44,46,99,111,108,45,108,103,45,50,44,46,99,111,108,45,108,103,45,51,44,46,99,111,108,45,108,103,45,52,44,46,99,111,108,45,108,103,45,53,44,46,99,111,108,45,108,103,45,54,44,46,99,111,108,45,108,103,45,55,44,46,99,111,108,45,108,103,45,56,44,46,99,111,108,45,108,103,45,57,44,46,99,111,108,45,108,103,45,97,117,116,111,44,46,99,111,108,45,109,100,44,46,99,111,108,45,109,100,45,49,44,46,99,111,108,45,109,100,45,49,48,44,46,99,111,108,45,109,100,45,49,49,44,46,99,111,108,45,109,100,45,49,50,44,46,99,111,108,45,109,100,45,50,44,46,99,111,108,45,109,100,45,51,44,46,99,111,108,45,109,100,45,52,44,46,99,111,108,45,109,100,45,53,44,46,99,111,108,45,109,100,45,54,44,46,99,111,108,45,109,100,45,55,44,46,99,111,108,45,109,100,45,56,44,46,99,111,108,45,109,100,45,57,44,46,99,111,108,45,109,100,45,97,117,116,111,44,46,99,111,108,45,115,109,44,46,99,111,108,45,115,109,45,49,44,46,99,111,108,45,115,109,45,49,48,44,46,99,111,108,45,115,109,45,49,49,44,46,99,111,108,45,115,109,45,49,50,44,46,99,111,108,45,115,109,45,50,44,46,99,111,108,45,115,109,45,51,44,46,99,111,108,45,115,109,45,52,44,46,99,111,108,45,115,109,45,53,44,46,99,111,108,45,115,109,45,54,44,46,99,111,108,45,115,109,45,55,44,46,99,111,108,45,115,109,45,56,44,46,99,111,108,45,115,109,45,57,44,46,99,111,108,45,115,109,45,97,117,116,111,44,46,99,111,108,45,120,108,44,46,99,111,108,45,120,108,45,49,44,46,99,111,108,45,120,108,45,49,48,44,46,99,111,108,45,120,108,45,49,49,44,46,99,111,108,45,120,108,45,49,50,44,46,99,111,108,45,120,108,45,50,44,46,99,111,108,45,120,108,45,51,44,46,99,111,108,45,120,108,45,52,44,46,99,111,108,45,120,108,45,53,44,46,99,111,108,45,120,108,45,54,44,46,99,111,108,45,120,108,45,55,44,46,99,111,108,45,120,108,45,56,44,46,99,111,108,45,120,108,45,57,44,46,99,111,108,45,120,108,45,97,117,116,111,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,53,112,120,125,46,99,111,108,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,111,108,45,115,109,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,115,109,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,115,109,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,115,109,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,115,109,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,115,109,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,115,109,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,115,109,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,115,109,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,115,109,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,115,109,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,115,109,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,115,109,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,115,109,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,115,109,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,115,109,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,115,109,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,115,109,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,115,109,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,115,109,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,115,109,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,115,109,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,115,109,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,115,109,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,115,109,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,115,109,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,99,111,108,45,109,100,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,109,100,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,109,100,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,109,100,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,109,100,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,109,100,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,109,100,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,109,100,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,109,100,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,109,100,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,109,100,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,109,100,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,109,100,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,109,100,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,109,100,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,109,100,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,109,100,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,109,100,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,109,100,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,109,100,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,109,100,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,109,100,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,109,100,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,109,100,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,109,100,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,109,100,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,99,111,108,45,108,103,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,108,103,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,108,103,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,108,103,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,108,103,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,108,103,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,108,103,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,108,103,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,108,103,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,108,103,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,108,103,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,108,103,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,108,103,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,108,103,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,108,103,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,108,103,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,108,103,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,108,103,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,108,103,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,108,103,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,108,103,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,108,103,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,108,103,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,108,103,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,108,103,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,108,103,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,99,111,108,45,120,108,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,120,108,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,120,108,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,120,108,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,120,108,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,120,108,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,120,108,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,120,108,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,120,108,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,120,108,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,120,108,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,120,108,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,120,108,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,120,108,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,120,108,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,120,108,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,120,108,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,120,108,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,120,108,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,120,108,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,120,108,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,120,108,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,120,108,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,120,108,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,120,108,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,120,108,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,46,116,97,98,108,101,123,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,116,97,98,108,101,32,116,100,44,46,116,97,98,108,101,32,116,104,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,116,104,101,97,100,32,116,104,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,111,116,116,111,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,50,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,116,98,111,100,121,43,116,98,111,100,121,123,98,111,114,100,101,114,45,116,111,112,58,50,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,115,109,32,116,100,44,46,116,97,98,108,101,45,115,109,32,116,104,123,112,97,100,100,105,110,103,58,46,51,114,101,109,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,101,97,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,119,105,100,116,104,58,50,112,120,125,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,104,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,58,48,125,46,116,97,98,108,101,45,115,116,114,105,112,101,100,32,116,98,111,100,121,32,116,114,58,110,116,104,45,111,102,45,116,121,112,101,40,111,100,100,41,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,53,41,125,46,116,97,98,108,101,45,104,111,118,101,114,32,116,98,111,100,121,32,116,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,45,112,114,105,109,97,114,121,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,62,116,100,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,100,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,104,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,55,97,98,97,102,102,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,62,116,100,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,100,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,104,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,51,98,55,98,98,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,116,97,98,108,101,45,115,117,99,99,101,115,115,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,62,116,100,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,100,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,104,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,102,100,49,57,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,116,97,98,108,101,45,105,110,102,111,44,46,116,97,98,108,101,45,105,110,102,111,62,116,100,44,46,116,97,98,108,101,45,105,110,102,111,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,116,97,98,108,101,45,105,110,102,111,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,105,110,102,111,32,116,100,44,46,116,97,98,108,101,45,105,110,102,111,32,116,104,44,46,116,97,98,108,101,45,105,110,102,111,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,54,99,102,100,97,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,116,97,98,108,101,45,119,97,114,110,105,110,103,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,62,116,100,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,100,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,104,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,100,102,55,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,116,97,98,108,101,45,100,97,110,103,101,114,44,46,116,97,98,108,101,45,100,97,110,103,101,114,62,116,100,44,46,116,97,98,108,101,45,100,97,110,103,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,100,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,104,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,100,57,54,57,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,116,97,98,108,101,45,108,105,103,104,116,44,46,116,97,98,108,101,45,108,105,103,104,116,62,116,100,44,46,116,97,98,108,101,45,108,105,103,104,116,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,116,97,98,108,101,45,108,105,103,104,116,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,100,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,104,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,98,102,99,102,99,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,116,97,98,108,101,45,100,97,114,107,44,46,116,97,98,108,101,45,100,97,114,107,62,116,100,44,46,116,97,98,108,101,45,100,97,114,107,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,116,97,98,108,101,45,100,97,114,107,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,57,53,57,57,57,99,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,116,97,98,108,101,45,97,99,116,105,118,101,44,46,116,97,98,108,101,45,97,99,116,105,118,101,62,116,100,44,46,116,97,98,108,101,45,97,99,116,105,118,101,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,100,97,114,107,32,116,104,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,53,52,100,53,53,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,108,105,103,104,116,32,116,104,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,53,52,100,53,53,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,115,116,114,105,112,101,100,32,116,98,111,100,121,32,116,114,58,110,116,104,45,111,102,45,116,121,112,101,40,111,100,100,41,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,48,53,41,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,104,111,118,101,114,32,116,98,111,100,121,32,116,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,48,55,53,41,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,53,55,53,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,115,109,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,115,109,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,55,54,55,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,109,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,109,100,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,57,57,49,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,108,103,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,108,103,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,49,49,57,57,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,120,108,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,120,108,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,102,111,114,109,45,99,111,110,116,114,111,108,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,109,115,45,101,120,112,97,110,100,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,119,101,98,107,105,116,45,105,110,112,117,116,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,109,111,122,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,45,109,115,45,105,110,112,117,116,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,109,115,45,105,110,112,117,116,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,100,105,115,97,98,108,101,100,44,46,102,111,114,109,45,99,111,110,116,114,111,108,91,114,101,97,100,111,110,108,121,93,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,111,112,97,99,105,116,121,58,49,125,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,58,58,45,109,115,45,118,97,108,117,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,114,97,110,103,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,51,55,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,51,55,53,114,101,109,32,43,32,49,112,120,41,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,45,108,103,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,53,114,101,109,32,43,32,49,112,120,41,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,45,115,109,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,49,112,120,41,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,116,111,112,58,46,51,55,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,51,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,119,105,100,116,104,58,49,112,120,32,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,46,102,111,114,109,45,99,111,110,116,114,111,108,45,108,103,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,46,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,108,103,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,91,109,117,108,116,105,112,108,101,93,44,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,91,115,105,122,101,93,123,104,101,105,103,104,116,58,97,117,116,111,125,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,123,104,101,105,103,104,116,58,97,117,116,111,125,46,102,111,114,109,45,103,114,111,117,112,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,46,102,111,114,109,45,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,125,46,102,111,114,109,45,114,111,119,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,53,112,120,125,46,102,111,114,109,45,114,111,119,62,46,99,111,108,44,46,102,111,114,109,45,114,111,119,62,91,99,108,97,115,115,42,61,99,111,108,45,93,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,53,112,120,125,46,102,111,114,109,45,99,104,101,99,107,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,50,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,109,97,114,103,105,110,45,116,111,112,58,46,51,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,50,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,55,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,51,49,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,123,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,122,45,105,110,100,101,120,58,53,59,100,105,115,112,108,97,121,58,110,111,110,101,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,46,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,57,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,50,56,97,55,52,53,39,32,100,61,39,77,50,46,51,32,54,46,55,51,76,46,54,32,52,46,53,51,99,45,46,52,45,49,46,48,52,46,52,54,45,49,46,52,32,49,46,49,45,46,56,108,49,46,49,32,49,46,52,32,51,46,52,45,51,46,56,99,46,54,45,46,54,51,32,49,46,54,45,46,50,55,32,49,46,50,46,55,108,45,52,32,52,46,54,99,45,46,52,51,46,53,45,46,56,46,52,45,49,46,49,46,49,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,99,101,110,116,101,114,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,44,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,116,111,112,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,40,49,101,109,32,43,32,46,55,53,114,101,109,41,32,42,32,51,32,47,32,52,32,43,32,49,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,53,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,51,52,51,97,52,48,39,32,100,61,39,77,50,32,48,76,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,110,111,45,114,101,112,101,97,116,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,44,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,50,56,97,55,52,53,39,32,100,61,39,77,50,46,51,32,54,46,55,51,76,46,54,32,52,46,53,51,99,45,46,52,45,49,46,48,52,46,52,54,45,49,46,52,32,49,46,49,45,46,56,108,49,46,49,32,49,46,52,32,51,46,52,45,51,46,56,99,46,54,45,46,54,51,32,49,46,54,45,46,50,55,32,49,46,50,46,55,108,45,52,32,52,46,54,99,45,46,52,51,46,53,45,46,56,46,52,45,49,46,49,46,49,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,35,102,102,102,32,110,111,45,114,101,112,101,97,116,32,99,101,110,116,101,114,32,114,105,103,104,116,32,49,46,55,53,114,101,109,47,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,99,101,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,99,101,53,55,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,123,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,122,45,105,110,100,101,120,58,53,59,100,105,115,112,108,97,121,58,110,111,110,101,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,46,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,57,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,100,99,51,53,52,53,39,32,118,105,101,119,66,111,120,61,39,45,50,32,45,50,32,55,32,55,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,37,50,51,100,99,51,53,52,53,39,32,100,61,39,77,48,32,48,108,51,32,51,109,48,45,51,76,48,32,51,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,47,115,118,103,37,51,69,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,99,101,110,116,101,114,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,44,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,116,111,112,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,40,49,101,109,32,43,32,46,55,53,114,101,109,41,32,42,32,51,32,47,32,52,32,43,32,49,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,53,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,51,52,51,97,52,48,39,32,100,61,39,77,50,32,48,76,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,110,111,45,114,101,112,101,97,116,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,44,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,100,99,51,53,52,53,39,32,118,105,101,119,66,111,120,61,39,45,50,32,45,50,32,55,32,55,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,37,50,51,100,99,51,53,52,53,39,32,100,61,39,77,48,32,48,108,51,32,51,109,48,45,51,76,48,32,51,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,47,115,118,103,37,51,69,34,41,32,35,102,102,102,32,110,111,45,114,101,112,101,97,116,32,99,101,110,116,101,114,32,114,105,103,104,116,32,49,46,55,53,114,101,109,47,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,52,54,48,54,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,52,54,48,54,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,123,119,105,100,116,104,58,49,48,48,37,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,111,114,109,45,105,110,108,105,110,101,32,108,97,98,101,108,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,111,110,116,114,111,108,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,97,117,116,111,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,102,111,114,109,45,105,110,108,105,110,101,32,46,105,110,112,117,116,45,103,114,111,117,112,123,119,105,100,116,104,58,97,117,116,111,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,119,105,100,116,104,58,97,117,116,111,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,59,102,108,101,120,45,115,104,114,105,110,107,58,48,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,125,46,98,116,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,116,110,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,98,116,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,116,110,46,102,111,99,117,115,44,46,98,116,110,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,98,116,110,46,100,105,115,97,98,108,101,100,44,46,98,116,110,58,100,105,115,97,98,108,101,100,123,111,112,97,99,105,116,121,58,46,54,53,125,97,46,98,116,110,46,100,105,115,97,98,108,101,100,44,102,105,101,108,100,115,101,116,58,100,105,115,97,98,108,101,100,32,97,46,98,116,110,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,116,110,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,57,100,57,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,54,50,99,99,125,46,98,116,110,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,51,56,44,49,52,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,112,114,105,109,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,112,114,105,109,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,53,99,98,102,125,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,51,56,44,49,52,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,97,54,50,54,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,53,52,53,98,54,50,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,51,48,44,49,51,56,44,49,52,53,44,46,53,41,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,101,53,53,53,98,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,51,48,44,49,51,56,44,49,52,53,44,46,53,41,125,46,98,116,110,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,49,56,56,51,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,101,55,101,51,52,125,46,98,116,110,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,46,98,116,110,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,55,50,44,49,56,48,44,57,55,44,46,53,41,125,46,98,116,110,45,115,117,99,99,101,115,115,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,115,117,99,99,101,115,115,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,99,55,52,51,48,125,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,55,50,44,49,56,48,44,57,55,44,46,53,41,125,46,98,116,110,45,105,110,102,111,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,51,56,52,57,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,49,55,97,56,98,125,46,98,116,110,45,105,110,102,111,46,102,111,99,117,115,44,46,98,116,110,45,105,110,102,111,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,56,44,49,55,54,44,49,57,53,44,46,53,41,125,46,98,116,110,45,105,110,102,111,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,105,110,102,111,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,48,55,48,55,102,125,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,56,44,49,55,54,44,49,57,53,44,46,53,41,125,46,98,116,110,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,48,97,56,48,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,51,57,101,48,48,125,46,98,116,110,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,46,98,116,110,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,50,44,49,55,48,44,49,50,44,46,53,41,125,46,98,116,110,45,119,97,114,110,105,110,103,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,119,97,114,110,105,110,103,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,54,57,53,48,48,125,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,50,44,49,55,48,44,49,50,44,46,53,41,125,46,98,116,110,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,50,51,51,51,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,100,50,49,51,48,125,46,98,116,110,45,100,97,110,103,101,114,46,102,111,99,117,115,44,46,98,116,110,45,100,97,110,103,101,114,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,53,44,56,51,44,57,55,44,46,53,41,125,46,98,116,110,45,100,97,110,103,101,114,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,100,97,110,103,101,114,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,50,49,102,50,100,125,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,53,44,56,51,44,57,55,44,46,53,41,125,46,98,116,110,45,108,105,103,104,116,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,50,101,54,101,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,97,101,48,101,53,125,46,98,116,110,45,108,105,103,104,116,46,102,111,99,117,115,44,46,98,116,110,45,108,105,103,104,116,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,49,54,44,50,49,55,44,50,49,57,44,46,53,41,125,46,98,116,110,45,108,105,103,104,116,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,108,105,103,104,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,51,100,57,100,102,125,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,49,54,44,50,49,55,44,50,49,57,44,46,53,41,125,46,98,116,110,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,51,50,55,50,98,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,100,50,49,50,52,125,46,98,116,110,45,100,97,114,107,46,102,111,99,117,115,44,46,98,116,110,45,100,97,114,107,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,56,50,44,56,56,44,57,51,44,46,53,41,125,46,98,116,110,45,100,97,114,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,100,97,114,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,49,97,49,100,125,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,56,50,44,56,56,44,57,51,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,48,56,44,49,49,55,44,49,50,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,48,56,44,49,49,55,44,49,50,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,123,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,123,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,123,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,98,116,110,45,108,105,110,107,123,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,116,110,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,98,116,110,45,108,105,110,107,46,102,111,99,117,115,44,46,98,116,110,45,108,105,110,107,58,102,111,99,117,115,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,125,46,98,116,110,45,108,105,110,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,108,105,110,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,116,110,45,103,114,111,117,112,45,108,103,62,46,98,116,110,44,46,98,116,110,45,108,103,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,115,109,62,46,98,116,110,44,46,98,116,110,45,115,109,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,98,116,110,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,98,116,110,45,98,108,111,99,107,43,46,98,116,110,45,98,108,111,99,107,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,125,105,110,112,117,116,91,116,121,112,101,61,98,117,116,116,111,110,93,46,98,116,110,45,98,108,111,99,107,44,105,110,112,117,116,91,116,121,112,101,61,114,101,115,101,116,93,46,98,116,110,45,98,108,111,99,107,44,105,110,112,117,116,91,116,121,112,101,61,115,117,98,109,105,116,93,46,98,116,110,45,98,108,111,99,107,123,119,105,100,116,104,58,49,48,48,37,125,46,102,97,100,101,123,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,49,53,115,32,108,105,110,101,97,114,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,102,97,100,101,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,102,97,100,101,58,110,111,116,40,46,115,104,111,119,41,123,111,112,97,99,105,116,121,58,48,125,46,99,111,108,108,97,112,115,101,58,110,111,116,40,46,115,104,111,119,41,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,111,108,108,97,112,115,105,110,103,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,104,101,105,103,104,116,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,116,114,97,110,115,105,116,105,111,110,58,104,101,105,103,104,116,32,46,51,53,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,111,108,108,97,112,115,105,110,103,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,100,114,111,112,100,111,119,110,44,46,100,114,111,112,108,101,102,116,44,46,100,114,111,112,114,105,103,104,116,44,46,100,114,111,112,117,112,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,48,48,59,100,105,115,112,108,97,121,58,110,111,110,101,59,102,108,111,97,116,58,108,101,102,116,59,109,105,110,45,119,105,100,116,104,58,49,48,114,101,109,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,48,59,109,97,114,103,105,110,58,46,49,50,53,114,101,109,32,48,32,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,53,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,115,109,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,115,109,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,109,100,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,109,100,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,103,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,103,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,120,108,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,120,108,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,97,117,116,111,59,98,111,116,116,111,109,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,49,50,53,114,101,109,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,48,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,48,59,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,46,49,50,53,114,101,109,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,48,59,114,105,103,104,116,58,49,48,48,37,59,108,101,102,116,58,97,117,116,111,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,49,50,53,114,101,109,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,98,101,102,111,114,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,123,114,105,103,104,116,58,97,117,116,111,59,98,111,116,116,111,109,58,97,117,116,111,125,46,100,114,111,112,100,111,119,110,45,100,105,118,105,100,101,114,123,104,101,105,103,104,116,58,48,59,109,97,114,103,105,110,58,46,53,114,101,109,32,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,101,57,101,99,101,102,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,49,46,53,114,101,109,59,99,108,101,97,114,58,98,111,116,104,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,102,111,99,117,115,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,54,49,56,49,98,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,46,97,99,116,105,118,101,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,46,100,105,115,97,98,108,101,100,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,46,115,104,111,119,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,100,114,111,112,100,111,119,110,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,46,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,45,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,49,46,53,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,98,116,110,45,103,114,111,117,112,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,104,111,118,101,114,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,49,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,46,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,102,111,99,117,115,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,46,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,49,125,46,98,116,110,45,116,111,111,108,98,97,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,98,116,110,45,116,111,111,108,98,97,114,32,46,105,110,112,117,116,45,103,114,111,117,112,123,119,105,100,116,104,58,97,117,116,111,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,54,50,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,54,50,53,114,101,109,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,97,102,116,101,114,44,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,97,102,116,101,114,44,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,98,101,102,111,114,101,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,125,46,98,116,110,45,103,114,111,117,112,45,115,109,62,46,98,116,110,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,44,46,98,116,110,45,115,109,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,51,55,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,51,55,53,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,108,103,62,46,98,116,110,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,44,46,98,116,110,45,108,103,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,55,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,55,53,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,123,119,105,100,116,104,58,49,48,48,37,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,116,111,112,58,45,49,112,120,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,99,108,105,112,58,114,101,99,116,40,48,44,48,44,48,44,48,41,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,105,110,112,117,116,45,103,114,111,117,112,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,59,119,105,100,116,104,58,49,48,48,37,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,119,105,100,116,104,58,49,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,102,111,114,109,45,99,111,110,116,114,111,108,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,51,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,52,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,58,102,111,99,117,115,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,51,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,109,97,114,103,105,110,45,116,111,112,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,116,101,120,116,97,114,101,97,41,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,116,101,120,116,97,114,101,97,41,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,125,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,55,53,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,108,97,115,116,45,99,104,105,108,100,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,108,97,115,116,45,99,104,105,108,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,102,105,114,115,116,45,99,104,105,108,100,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,102,105,114,115,116,45,99,104,105,108,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,105,110,45,104,101,105,103,104,116,58,49,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,45,49,59,111,112,97,99,105,116,121,58,48,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,46,50,53,114,101,109,59,108,101,102,116,58,45,49,46,53,114,101,109,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,35,97,100,98,53,98,100,32,115,111,108,105,100,32,49,112,120,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,46,50,53,114,101,109,59,108,101,102,116,58,45,49,46,53,114,101,109,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,58,110,111,45,114,101,112,101,97,116,32,53,48,37,47,53,48,37,32,53,48,37,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,100,61,39,77,54,46,53,54,52,46,55,53,108,45,51,46,53,57,32,51,46,54,49,50,45,49,46,53,51,56,45,49,46,53,53,76,48,32,52,46,50,54,32,50,46,57,55,52,32,55,46,50,53,32,56,32,50,46,49,57,51,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,52,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,37,50,51,102,102,102,39,32,100,61,39,77,48,32,50,104,52,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,45,52,32,45,52,32,56,32,56,39,37,51,101,37,51,99,99,105,114,99,108,101,32,114,61,39,51,39,32,102,105,108,108,61,39,37,50,51,102,102,102,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,123,112,97,100,100,105,110,103,45,108,101,102,116,58,50,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,108,101,102,116,58,45,50,46,50,53,114,101,109,59,119,105,100,116,104,58,49,46,55,53,114,101,109,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,108,108,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,116,111,112,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,50,112,120,41,59,108,101,102,116,58,99,97,108,99,40,45,50,46,50,53,114,101,109,32,43,32,50,112,120,41,59,119,105,100,116,104,58,99,97,108,99,40,49,114,101,109,32,45,32,52,112,120,41,59,104,101,105,103,104,116,58,99,97,108,99,40,49,114,101,109,32,45,32,52,112,120,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,46,55,53,114,101,109,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,46,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,49,46,55,53,114,101,109,32,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,53,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,51,52,51,97,52,48,39,32,100,61,39,77,50,32,48,76,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,110,111,45,114,101,112,101,97,116,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,58,58,45,109,115,45,118,97,108,117,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,91,109,117,108,116,105,112,108,101,93,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,91,115,105,122,101,93,58,110,111,116,40,91,115,105,122,101,61,34,49,34,93,41,123,104,101,105,103,104,116,58,97,117,116,111,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,58,45,109,115,45,101,120,112,97,110,100,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,45,115,109,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,45,108,103,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,102,105,108,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,109,97,114,103,105,110,58,48,59,111,112,97,99,105,116,121,58,48,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,108,97,110,103,40,101,110,41,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,34,66,114,111,119,115,101,34,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,91,100,97,116,97,45,98,114,111,119,115,101,93,58,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,97,116,116,114,40,100,97,116,97,45,98,114,111,119,115,101,41,125,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,122,45,105,110,100,101,120,58,51,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,99,111,110,116,101,110,116,58,34,66,114,111,119,115,101,34,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,108,101,102,116,58,105,110,104,101,114,105,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,32,46,50,53,114,101,109,32,46,50,53,114,101,109,32,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,114,101,109,32,43,32,46,52,114,101,109,41,59,112,97,100,100,105,110,103,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,109,115,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,102,111,99,117,115,45,111,117,116,101,114,123,98,111,114,100,101,114,58,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,102,105,108,108,45,108,111,119,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,102,105,108,108,45,117,112,112,101,114,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,112,120,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,115,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,110,97,118,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,110,97,118,45,108,105,110,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,125,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,110,97,118,45,116,97,98,115,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,105,116,101,109,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,57,101,99,101,102,32,35,101,57,101,99,101,102,32,35,100,101,101,50,101,54,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,105,116,101,109,46,115,104,111,119,32,46,110,97,118,45,108,105,110,107,44,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,32,35,100,101,101,50,101,54,32,35,102,102,102,125,46,110,97,118,45,116,97,98,115,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,109,97,114,103,105,110,45,116,111,112,58,45,49,112,120,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,110,97,118,45,112,105,108,108,115,32,46,110,97,118,45,108,105,110,107,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,45,112,105,108,108,115,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,45,112,105,108,108,115,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,110,97,118,45,102,105,108,108,32,46,110,97,118,45,105,116,101,109,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,46,110,97,118,45,106,117,115,116,105,102,105,101,100,32,46,110,97,118,45,105,116,101,109,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,46,116,97,98,45,99,111,110,116,101,110,116,62,46,116,97,98,45,112,97,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,45,99,111,110,116,101,110,116,62,46,97,99,116,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,110,97,118,98,97,114,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,125,46,110,97,118,98,97,114,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,125,46,110,97,118,98,97,114,45,98,114,97,110,100,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,45,116,111,112,58,46,51,49,50,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,51,49,50,53,114,101,109,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,98,97,114,45,110,97,118,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,102,108,111,97,116,58,110,111,110,101,125,46,110,97,118,98,97,114,45,116,101,120,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,49,48,48,37,59,102,108,101,120,45,98,97,115,105,115,58,49,48,48,37,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,46,53,101,109,59,104,101,105,103,104,116,58,49,46,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,58,110,111,45,114,101,112,101,97,116,32,99,101,110,116,101,114,32,99,101,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,48,48,37,32,49,48,48,37,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,53,55,53,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,55,54,55,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,57,57,49,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,49,49,57,57,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,55,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,51,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,97,99,116,105,118,101,62,46,110,97,118,45,108,105,110,107,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,115,104,111,119,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,49,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,118,105,101,119,66,111,120,61,39,48,32,48,32,51,48,32,51,48,39,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,53,41,39,32,115,116,114,111,107,101,45,119,105,100,116,104,61,39,50,39,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,39,114,111,117,110,100,39,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,39,49,48,39,32,100,61,39,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,55,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,50,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,97,99,116,105,118,101,62,46,110,97,118,45,108,105,110,107,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,115,104,111,119,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,118,105,101,119,66,111,120,61,39,48,32,48,32,51,48,32,51,48,39,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,53,41,39,32,115,116,114,111,107,101,45,119,105,100,116,104,61,39,50,39,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,39,114,111,117,110,100,39,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,39,49,48,39,32,100,61,39,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,125,46,99,97,114,100,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,109,105,110,45,119,105,100,116,104,58,48,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,98,111,114,100,101,114,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,97,114,100,62,104,114,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,99,97,114,100,62,46,108,105,115,116,45,103,114,111,117,112,58,102,105,114,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,97,114,100,62,46,108,105,115,116,45,103,114,111,117,112,58,108,97,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,97,114,100,45,98,111,100,121,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,112,97,100,100,105,110,103,58,49,46,50,53,114,101,109,125,46,99,97,114,100,45,116,105,116,108,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,46,99,97,114,100,45,115,117,98,116,105,116,108,101,123,109,97,114,103,105,110,45,116,111,112,58,45,46,51,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,116,101,120,116,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,108,105,110,107,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,99,97,114,100,45,108,105,110,107,43,46,99,97,114,100,45,108,105,110,107,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,50,53,114,101,109,125,46,99,97,114,100,45,104,101,97,100,101,114,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,51,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,99,97,114,100,45,104,101,97,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,48,32,48,125,46,99,97,114,100,45,104,101,97,100,101,114,43,46,108,105,115,116,45,103,114,111,117,112,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,58,48,125,46,99,97,114,100,45,102,111,111,116,101,114,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,51,41,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,99,97,114,100,45,102,111,111,116,101,114,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,32,48,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,104,101,97,100,101,114,45,116,97,98,115,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,54,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,55,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,46,54,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,104,101,97,100,101,114,45,112,105,108,108,115,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,54,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,46,54,50,53,114,101,109,125,46,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,112,97,100,100,105,110,103,58,49,46,50,53,114,101,109,125,46,99,97,114,100,45,105,109,103,123,119,105,100,116,104,58,49,48,48,37,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,105,109,103,45,116,111,112,123,119,105,100,116,104,58,49,48,48,37,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,119,105,100,116,104,58,49,48,48,37,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,100,101,99,107,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,125,46,99,97,114,100,45,100,101,99,107,32,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,53,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,100,101,99,107,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,53,112,120,125,46,99,97,114,100,45,100,101,99,107,32,46,99,97,114,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,58,49,32,48,32,48,37,59,102,108,101,120,58,49,32,48,32,48,37,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,49,53,112,120,125,125,46,99,97,114,100,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,53,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,103,114,111,117,112,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,123,45,109,115,45,102,108,101,120,58,49,32,48,32,48,37,59,102,108,101,120,58,49,32,48,32,48,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,43,46,99,97,114,100,123,109,97,114,103,105,110,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,108,101,102,116,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,104,101,97,100,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,102,111,111,116,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,104,101,97,100,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,102,111,111,116,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,46,99,97,114,100,45,99,111,108,117,109,110,115,32,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,99,111,108,117,109,110,115,123,45,119,101,98,107,105,116,45,99,111,108,117,109,110,45,99,111,117,110,116,58,51,59,45,109,111,122,45,99,111,108,117,109,110,45,99,111,117,110,116,58,51,59,99,111,108,117,109,110,45,99,111,117,110,116,58,51,59,45,119,101,98,107,105,116,45,99,111,108,117,109,110,45,103,97,112,58,49,46,50,53,114,101,109,59,45,109,111,122,45,99,111,108,117,109,110,45,103,97,112,58,49,46,50,53,114,101,109,59,99,111,108,117,109,110,45,103,97,112,58,49,46,50,53,114,101,109,59,111,114,112,104,97,110,115,58,49,59,119,105,100,111,119,115,58,49,125,46,99,97,114,100,45,99,111,108,117,109,110,115,32,46,99,97,114,100,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,111,102,45,116,121,112,101,41,32,46,99,97,114,100,45,104,101,97,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,111,102,45,116,121,112,101,41,58,110,111,116,40,58,108,97,115,116,45,111,102,45,116,121,112,101,41,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,102,105,114,115,116,45,111,102,45,116,121,112,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,108,97,115,116,45,111,102,45,116,121,112,101,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,32,46,99,97,114,100,45,104,101,97,100,101,114,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,125,46,98,114,101,97,100,99,114,117,109,98,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,99,111,110,116,101,110,116,58,34,47,34,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,112,97,103,105,110,97,116,105,111,110,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,108,105,110,107,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,53,59,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,112,97,103,101,45,108,105,110,107,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,50,59,99,111,108,111,114,58,35,48,48,53,54,98,51,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,112,97,103,101,45,108,105,110,107,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,50,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,109,97,114,103,105,110,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,105,116,101,109,46,97,99,116,105,118,101,32,46,112,97,103,101,45,108,105,110,107,123,122,45,105,110,100,101,120,58,49,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,112,97,103,101,45,105,116,101,109,46,100,105,115,97,98,108,101,100,32,46,112,97,103,101,45,108,105,110,107,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,99,117,114,115,111,114,58,97,117,116,111,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,108,105,110,107,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,108,105,110,107,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,98,97,100,103,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,50,53,101,109,32,46,52,101,109,59,102,111,110,116,45,115,105,122,101,58,55,53,37,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,97,100,103,101,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,97,46,98,97,100,103,101,58,102,111,99,117,115,44,97,46,98,97,100,103,101,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,97,100,103,101,58,101,109,112,116,121,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,98,116,110,32,46,98,97,100,103,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,111,112,58,45,49,112,120,125,46,98,97,100,103,101,45,112,105,108,108,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,54,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,54,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,48,114,101,109,125,46,98,97,100,103,101,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,125,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,125,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,48,56,44,49,49,55,44,49,50,53,44,46,53,41,125,46,98,97,100,103,101,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,125,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,97,100,103,101,45,105,110,102,111,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,97,46,98,97,100,103,101,45,105,110,102,111,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,125,97,46,98,97,100,103,101,45,105,110,102,111,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,105,110,102,111,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,97,100,103,101,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,125,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,97,100,103,101,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,125,97,46,98,97,100,103,101,45,100,97,110,103,101,114,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,97,100,103,101,45,108,105,103,104,116,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,97,46,98,97,100,103,101,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,125,97,46,98,97,100,103,101,45,108,105,103,104,116,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,108,105,103,104,116,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,97,100,103,101,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,97,46,98,97,100,103,101,45,100,97,114,107,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,125,97,46,98,97,100,103,101,45,100,97,114,107,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,114,107,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,106,117,109,98,111,116,114,111,110,123,112,97,100,100,105,110,103,58,50,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,50,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,106,117,109,98,111,116,114,111,110,123,112,97,100,100,105,110,103,58,52,114,101,109,32,50,114,101,109,125,125,46,106,117,109,98,111,116,114,111,110,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,97,108,101,114,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,97,108,101,114,116,45,104,101,97,100,105,110,103,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,97,108,101,114,116,45,108,105,110,107,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,52,114,101,109,125,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,32,46,99,108,111,115,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,99,101,53,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,48,50,55,53,50,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,50,101,51,101,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,50,48,50,51,50,54,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,52,101,100,100,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,98,50,101,49,51,125,46,97,108,101,114,116,45,105,110,102,111,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,49,101,99,102,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,97,108,101,114,116,45,105,110,102,111,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,97,108,101,114,116,45,105,110,102,111,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,54,50,99,51,51,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,51,99,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,53,51,51,102,48,51,125,46,97,108,101,114,116,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,100,55,100,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,97,108,101,114,116,45,100,97,110,103,101,114,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,97,108,101,114,116,45,100,97,110,103,101,114,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,52,57,49,50,49,55,125,46,97,108,101,114,116,45,108,105,103,104,116,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,101,102,101,102,101,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,97,108,101,114,116,45,108,105,103,104,116,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,97,108,101,114,116,45,108,105,103,104,116,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,54,56,54,56,54,56,125,46,97,108,101,114,116,45,100,97,114,107,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,57,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,97,108,101,114,116,45,100,97,114,107,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,97,108,101,114,116,45,100,97,114,107,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,52,48,53,48,53,125,64,45,119,101,98,107,105,116,45,107,101,121,102,114,97,109,101,115,32,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,123,102,114,111,109,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,114,101,109,32,48,125,116,111,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,125,125,64,107,101,121,102,114,97,109,101,115,32,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,123,102,114,111,109,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,114,101,109,32,48,125,116,111,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,125,125,46,112,114,111,103,114,101,115,115,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,104,101,105,103,104,116,58,49,114,101,109,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,102,111,110,116,45,115,105,122,101,58,46,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,114,111,103,114,101,115,115,45,98,97,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,114,97,110,115,105,116,105,111,110,58,119,105,100,116,104,32,46,54,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,112,114,111,103,114,101,115,115,45,98,97,114,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,53,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,53,48,37,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,53,41,32,53,48,37,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,53,41,32,55,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,116,114,97,110,115,112,97,114,101,110,116,41,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,114,101,109,32,49,114,101,109,125,46,112,114,111,103,114,101,115,115,45,98,97,114,45,97,110,105,109,97,116,101,100,123,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,32,49,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,59,97,110,105,109,97,116,105,111,110,58,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,32,49,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,112,114,111,103,114,101,115,115,45,98,97,114,45,97,110,105,109,97,116,101,100,123,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,110,111,110,101,59,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,46,109,101,100,105,97,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,125,46,109,101,100,105,97,45,98,111,100,121,123,45,109,115,45,102,108,101,120,58,49,59,102,108,101,120,58,49,125,46,108,105,115,116,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,123,119,105,100,116,104,58,49,48,48,37,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,49,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,97,99,116,105,118,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,100,105,115,97,98,108,101,100,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,122,45,105,110,100,101,120,58,50,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,98,111,114,100,101,114,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,58,102,105,114,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,58,108,97,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,52,48,56,53,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,56,51,100,52,49,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,53,53,55,50,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,99,53,52,54,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,53,54,52,48,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,55,50,49,99,50,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,49,56,49,56,50,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,98,49,101,50,49,125,46,99,108,111,115,101,123,102,108,111,97,116,58,114,105,103,104,116,59,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,99,111,108,111,114,58,35,48,48,48,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,49,112,120,32,48,32,35,102,102,102,59,111,112,97,99,105,116,121,58,46,53,125,46,99,108,111,115,101,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,48,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,99,108,111,115,101,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,102,111,99,117,115,44,46,99,108,111,115,101,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,104,111,118,101,114,123,111,112,97,99,105,116,121,58,46,55,53,125,98,117,116,116,111,110,46,99,108,111,115,101,123,112,97,100,100,105,110,103,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,97,46,99,108,111,115,101,46,100,105,115,97,98,108,101,100,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,116,111,97,115,116,123,109,97,120,45,119,105,100,116,104,58,51,53,48,112,120,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,56,53,41,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,46,50,53,114,101,109,32,46,55,53,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,59,45,119,101,98,107,105,116,45,98,97,99,107,100,114,111,112,45,102,105,108,116,101,114,58,98,108,117,114,40,49,48,112,120,41,59,98,97,99,107,100,114,111,112,45,102,105,108,116,101,114,58,98,108,117,114,40,49,48,112,120,41,59,111,112,97,99,105,116,121,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,116,111,97,115,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,46,116,111,97,115,116,46,115,104,111,119,105,110,103,123,111,112,97,99,105,116,121,58,49,125,46,116,111,97,115,116,46,115,104,111,119,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,111,112,97,99,105,116,121,58,49,125,46,116,111,97,115,116,46,104,105,100,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,111,97,115,116,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,56,53,41,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,48,53,41,125,46,116,111,97,115,116,45,98,111,100,121,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,125,46,109,111,100,97,108,45,111,112,101,110,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,109,111,100,97,108,45,111,112,101,110,32,46,109,111,100,97,108,123,111,118,101,114,102,108,111,119,45,120,58,104,105,100,100,101,110,59,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,125,46,109,111,100,97,108,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,53,48,59,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,111,117,116,108,105,110,101,58,48,125,46,109,111,100,97,108,45,100,105,97,108,111,103,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,97,117,116,111,59,109,97,114,103,105,110,58,46,53,114,101,109,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,109,111,100,97,108,46,102,97,100,101,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,48,44,45,53,48,112,120,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,48,44,45,53,48,112,120,41,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,109,111,100,97,108,46,102,97,100,101,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,109,111,100,97,108,46,115,104,111,119,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,49,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,49,114,101,109,41,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,102,111,111,116,101,114,44,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,104,101,97,100,101,114,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,59,102,108,101,120,45,115,104,114,105,110,107,58,48,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,98,111,100,121,123,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,49,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,49,114,101,109,41,59,99,111,110,116,101,110,116,58,34,34,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,104,101,105,103,104,116,58,49,48,48,37,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,110,111,110,101,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,58,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,110,111,110,101,125,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,119,105,100,116,104,58,49,48,48,37,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,59,111,117,116,108,105,110,101,58,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,52,48,59,119,105,100,116,104,58,49,48,48,118,119,59,104,101,105,103,104,116,58,49,48,48,118,104,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,46,102,97,100,101,123,111,112,97,99,105,116,121,58,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,46,115,104,111,119,123,111,112,97,99,105,116,121,58,46,53,125,46,109,111,100,97,108,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,59,112,97,100,100,105,110,103,58,49,114,101,109,32,49,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,109,111,100,97,108,45,104,101,97,100,101,114,32,46,99,108,111,115,101,123,112,97,100,100,105,110,103,58,49,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,58,45,49,114,101,109,32,45,49,114,101,109,32,45,49,114,101,109,32,97,117,116,111,125,46,109,111,100,97,108,45,116,105,116,108,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,109,111,100,97,108,45,98,111,100,121,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,112,97,100,100,105,110,103,58,49,114,101,109,125,46,109,111,100,97,108,45,102,111,111,116,101,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,59,112,97,100,100,105,110,103,58,49,114,101,109,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,109,111,100,97,108,45,102,111,111,116,101,114,62,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,125,46,109,111,100,97,108,45,102,111,111,116,101,114,62,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,125,46,109,111,100,97,108,45,115,99,114,111,108,108,98,97,114,45,109,101,97,115,117,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,45,57,57,57,57,112,120,59,119,105,100,116,104,58,53,48,112,120,59,104,101,105,103,104,116,58,53,48,112,120,59,111,118,101,114,102,108,111,119,58,115,99,114,111,108,108,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,109,111,100,97,108,45,100,105,97,108,111,103,123,109,97,120,45,119,105,100,116,104,58,53,48,48,112,120,59,109,97,114,103,105,110,58,49,46,55,53,114,101,109,32,97,117,116,111,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,123,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,58,58,98,101,102,111,114,101,123,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,115,109,123,109,97,120,45,119,105,100,116,104,58,51,48,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,109,111,100,97,108,45,108,103,44,46,109,111,100,97,108,45,120,108,123,109,97,120,45,119,105,100,116,104,58,56,48,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,109,111,100,97,108,45,120,108,123,109,97,120,45,119,105,100,116,104,58,49,49,52,48,112,120,125,125,46,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,49,48,55,48,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,115,116,97,114,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,59,119,111,114,100,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,108,105,110,101,45,98,114,101,97,107,58,97,117,116,111,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,111,112,97,99,105,116,121,58,48,125,46,116,111,111,108,116,105,112,46,115,104,111,119,123,111,112,97,99,105,116,121,58,46,57,125,46,116,111,111,108,116,105,112,32,46,97,114,114,111,119,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,46,56,114,101,109,59,104,101,105,103,104,116,58,46,52,114,101,109,125,46,116,111,111,108,116,105,112,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,115,116,121,108,101,58,115,111,108,105,100,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,123,112,97,100,100,105,110,103,58,46,52,114,101,109,32,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,123,98,111,116,116,111,109,58,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,116,111,112,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,46,52,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,123,112,97,100,100,105,110,103,58,48,32,46,52,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,123,108,101,102,116,58,48,59,119,105,100,116,104,58,46,52,114,101,109,59,104,101,105,103,104,116,58,46,56,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,46,52,114,101,109,32,46,52,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,123,112,97,100,100,105,110,103,58,46,52,114,101,109,32,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,123,116,111,112,58,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,52,114,101,109,32,46,52,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,123,112,97,100,100,105,110,103,58,48,32,46,52,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,123,114,105,103,104,116,58,48,59,119,105,100,116,104,58,46,52,114,101,109,59,104,101,105,103,104,116,58,46,56,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,108,101,102,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,48,32,46,52,114,101,109,32,46,52,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,48,48,48,125,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,109,97,120,45,119,105,100,116,104,58,50,48,48,112,120,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,111,112,111,118,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,54,48,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,120,45,119,105,100,116,104,58,50,55,54,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,115,116,97,114,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,59,119,111,114,100,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,108,105,110,101,45,98,114,101,97,107,58,97,117,116,111,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,46,53,114,101,109,59,109,97,114,103,105,110,58,48,32,46,51,114,101,109,125,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,115,116,121,108,101,58,115,111,108,105,100,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,123,98,111,116,116,111,109,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,116,116,111,109,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,123,108,101,102,116,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,59,119,105,100,116,104,58,46,53,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,58,46,51,114,101,109,32,48,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,108,101,102,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,108,101,102,116,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,123,116,111,112,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,116,111,112,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,116,111,112,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,53,48,37,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,102,55,102,55,102,55,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,123,114,105,103,104,116,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,59,119,105,100,116,104,58,46,53,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,58,46,51,114,101,109,32,48,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,48,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,114,105,103,104,116,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,48,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,102,102,125,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,55,102,55,102,55,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,101,98,101,98,101,98,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,125,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,101,109,112,116,121,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,112,111,112,111,118,101,114,45,98,111,100,121,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,99,97,114,111,117,115,101,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,99,97,114,111,117,115,101,108,46,112,111,105,110,116,101,114,45,101,118,101,110,116,123,45,109,115,45,116,111,117,99,104,45,97,99,116,105,111,110,58,112,97,110,45,121,59,116,111,117,99,104,45,97,99,116,105,111,110,58,112,97,110,45,121,125,46,99,97,114,111,117,115,101,108,45,105,110,110,101,114,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,99,97,114,111,117,115,101,108,45,105,110,110,101,114,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,34,34,125,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,110,111,110,101,59,102,108,111,97,116,58,108,101,102,116,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,48,48,37,59,45,119,101,98,107,105,116,45,98,97,99,107,102,97,99,101,45,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,59,98,97,99,107,102,97,99,101,45,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,59,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,46,97,99,116,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,58,110,111,116,40,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,41,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,49,48,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,49,48,48,37,41,125,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,58,110,111,116,40,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,41,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,45,49,48,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,45,49,48,48,37,41,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,105,116,105,111,110,45,112,114,111,112,101,114,116,121,58,111,112,97,99,105,116,121,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,46,97,99,116,105,118,101,123,122,45,105,110,100,101,120,58,49,59,111,112,97,99,105,116,121,58,49,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,123,122,45,105,110,100,101,120,58,48,59,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,105,116,105,111,110,58,48,115,32,46,54,115,32,111,112,97,99,105,116,121,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,122,45,105,110,100,101,120,58,49,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,119,105,100,116,104,58,49,53,37,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,111,112,97,99,105,116,121,58,46,53,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,49,53,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,58,102,111,99,117,115,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,58,104,111,118,101,114,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,58,102,111,99,117,115,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,111,117,116,108,105,110,101,58,48,59,111,112,97,99,105,116,121,58,46,57,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,108,101,102,116,58,48,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,123,114,105,103,104,116,58,48,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,45,105,99,111,110,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,45,105,99,111,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,48,112,120,59,104,101,105,103,104,116,58,50,48,112,120,59,98,97,99,107,103,114,111,117,110,100,58,110,111,45,114,101,112,101,97,116,32,53,48,37,47,49,48,48,37,32,49,48,48,37,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,100,61,39,77,53,46,50,53,32,48,108,45,52,32,52,32,52,32,52,32,49,46,53,45,49,46,53,45,50,46,53,45,50,46,53,32,50,46,53,45,50,46,53,45,49,46,53,45,49,46,53,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,100,61,39,77,50,46,55,53,32,48,108,45,49,46,53,32,49,46,53,32,50,46,53,32,50,46,53,45,50,46,53,32,50,46,53,32,49,46,53,32,49,46,53,32,52,45,52,45,52,45,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,53,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,37,59,109,97,114,103,105,110,45,108,101,102,116,58,49,53,37,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,108,105,123,98,111,120,45,115,105,122,105,110,103,58,99,111,110,116,101,110,116,45,98,111,120,59,45,109,115,45,102,108,101,120,58,48,32,49,32,97,117,116,111,59,102,108,101,120,58,48,32,49,32,97,117,116,111,59,119,105,100,116,104,58,51,48,112,120,59,104,101,105,103,104,116,58,51,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,51,112,120,59,116,101,120,116,45,105,110,100,101,110,116,58,45,57,57,57,112,120,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,45,116,111,112,58,49,48,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,48,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,111,112,97,99,105,116,121,58,46,53,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,54,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,108,105,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,46,97,99,116,105,118,101,123,111,112,97,99,105,116,121,58,49,125,46,99,97,114,111,117,115,101,108,45,99,97,112,116,105,111,110,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,49,53,37,59,98,111,116,116,111,109,58,50,48,112,120,59,108,101,102,116,58,49,53,37,59,122,45,105,110,100,101,120,58,49,48,59,112,97,100,100,105,110,103,45,116,111,112,58,50,48,112,120,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,50,48,112,120,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,64,45,119,101,98,107,105,116,45,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,98,111,114,100,101,114,123,116,111,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,59,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,125,125,64,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,98,111,114,100,101,114,123,116,111,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,59,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,125,125,46,115,112,105,110,110,101,114,45,98,111,114,100,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,114,101,109,59,104,101,105,103,104,116,58,50,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,59,98,111,114,100,101,114,58,46,50,53,101,109,32,115,111,108,105,100,32,99,117,114,114,101,110,116,67,111,108,111,114,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,59,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,98,111,114,100,101,114,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,59,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,98,111,114,100,101,114,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,125,46,115,112,105,110,110,101,114,45,98,111,114,100,101,114,45,115,109,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,50,101,109,125,64,45,119,101,98,107,105,116,45,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,103,114,111,119,123,48,37,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,125,53,48,37,123,111,112,97,99,105,116,121,58,49,125,125,64,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,103,114,111,119,123,48,37,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,125,53,48,37,123,111,112,97,99,105,116,121,58,49,125,125,46,115,112,105,110,110,101,114,45,103,114,111,119,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,114,101,109,59,104,101,105,103,104,116,58,50,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,99,117,114,114,101,110,116,67,111,108,111,114,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,59,111,112,97,99,105,116,121,58,48,59,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,103,114,111,119,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,59,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,103,114,111,119,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,125,46,115,112,105,110,110,101,114,45,103,114,111,119,45,115,109,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,125,46,97,108,105,103,110,45,98,97,115,101,108,105,110,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,111,112,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,109,105,100,100,108,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,98,111,116,116,111,109,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,111,116,116,111,109,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,101,120,116,45,98,111,116,116,111,109,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,101,120,116,45,116,111,112,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,112,114,105,109,97,114,121,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,98,103,45,112,114,105,109,97,114,121,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,115,101,99,111,110,100,97,114,121,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,98,103,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,115,117,99,99,101,115,115,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,98,103,45,115,117,99,99,101,115,115,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,105,110,102,111,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,105,110,102,111,58,102,111,99,117,115,44,97,46,98,103,45,105,110,102,111,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,105,110,102,111,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,105,110,102,111,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,119,97,114,110,105,110,103,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,98,103,45,119,97,114,110,105,110,103,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,100,97,110,103,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,98,103,45,100,97,110,103,101,114,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,100,97,110,103,101,114,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,100,97,110,103,101,114,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,108,105,103,104,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,98,103,45,108,105,103,104,116,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,108,105,103,104,116,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,108,105,103,104,116,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,100,97,114,107,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,100,97,114,107,58,102,111,99,117,115,44,97,46,98,103,45,100,97,114,107,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,100,97,114,107,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,100,97,114,107,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,119,104,105,116,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,116,114,97,110,115,112,97,114,101,110,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,114,105,103,104,116,123,98,111,114,100,101,114,45,114,105,103,104,116,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,101,102,116,123,98,111,114,100,101,114,45,108,101,102,116,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,48,123,98,111,114,100,101,114,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,116,111,112,45,48,123,98,111,114,100,101,114,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,114,105,103,104,116,45,48,123,98,111,114,100,101,114,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,98,111,116,116,111,109,45,48,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,101,102,116,45,48,123,98,111,114,100,101,114,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,112,114,105,109,97,114,121,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,115,101,99,111,110,100,97,114,121,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,115,117,99,99,101,115,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,105,110,102,111,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,119,97,114,110,105,110,103,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,100,97,110,103,101,114,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,105,103,104,116,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,100,97,114,107,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,119,104,105,116,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,115,109,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,114,105,103,104,116,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,108,101,102,116,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,108,103,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,99,105,114,99,108,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,112,105,108,108,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,48,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,33,105,109,112,111,114,116,97,110,116,125,46,99,108,101,97,114,102,105,120,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,34,34,125,46,100,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,100,45,115,109,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,100,45,109,100,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,100,45,108,103,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,100,45,120,108,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,112,114,105,110,116,123,46,100,45,112,114,105,110,116,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,111,110,116,101,110,116,58,34,34,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,105,116,101,109,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,101,109,98,101,100,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,105,102,114,97,109,101,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,111,98,106,101,99,116,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,118,105,100,101,111,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,98,111,114,100,101,114,58,48,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,50,49,98,121,57,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,52,50,46,56,53,55,49,52,51,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,49,54,98,121,57,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,53,54,46,50,53,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,52,98,121,51,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,55,53,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,49,98,121,49,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,49,48,48,37,125,46,102,108,101,120,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,108,101,120,45,115,109,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,108,101,120,45,109,100,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,102,108,101,120,45,108,103,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,102,108,101,120,45,120,108,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,46,102,108,111,97,116,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,108,111,97,116,45,115,109,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,115,109,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,115,109,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,108,111,97,116,45,109,100,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,109,100,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,109,100,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,102,108,111,97,116,45,108,103,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,108,103,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,108,103,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,102,108,111,97,116,45,120,108,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,120,108,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,120,108,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,46,111,118,101,114,102,108,111,119,45,97,117,116,111,123,111,118,101,114,102,108,111,119,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,111,118,101,114,102,108,111,119,45,104,105,100,100,101,110,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,115,116,97,116,105,99,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,114,101,108,97,116,105,118,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,97,98,115,111,108,117,116,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,102,105,120,101,100,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,115,116,105,99,107,121,123,112,111,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,115,116,105,99,107,121,33,105,109,112,111,114,116,97,110,116,59,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,33,105,109,112,111,114,116,97,110,116,125,46,102,105,120,101,100,45,116,111,112,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,51,48,125,46,102,105,120,101,100,45,98,111,116,116,111,109,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,51,48,125,64,115,117,112,112,111,114,116,115,32,40,40,112,111,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,115,116,105,99,107,121,41,32,111,114,32,40,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,41,41,123,46,115,116,105,99,107,121,45,116,111,112,123,112,111,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,115,116,105,99,107,121,59,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,59,116,111,112,58,48,59,122,45,105,110,100,101,120,58,49,48,50,48,125,125,46,115,114,45,111,110,108,121,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,119,105,100,116,104,58,49,112,120,59,104,101,105,103,104,116,58,49,112,120,59,112,97,100,100,105,110,103,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,99,108,105,112,58,114,101,99,116,40,48,44,48,44,48,44,48,41,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,111,114,100,101,114,58,48,125,46,115,114,45,111,110,108,121,45,102,111,99,117,115,97,98,108,101,58,97,99,116,105,118,101,44,46,115,114,45,111,110,108,121,45,102,111,99,117,115,97,98,108,101,58,102,111,99,117,115,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,119,105,100,116,104,58,97,117,116,111,59,104,101,105,103,104,116,58,97,117,116,111,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,59,99,108,105,112,58,97,117,116,111,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,125,46,115,104,97,100,111,119,45,115,109,123,98,111,120,45,115,104,97,100,111,119,58,48,32,46,49,50,53,114,101,109,32,46,50,53,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,123,98,111,120,45,115,104,97,100,111,119,58,48,32,46,53,114,101,109,32,49,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,45,108,103,123,98,111,120,45,115,104,97,100,111,119,58,48,32,49,114,101,109,32,51,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,55,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,45,110,111,110,101,123,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,119,45,50,53,123,119,105,100,116,104,58,50,53,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,53,48,123,119,105,100,116,104,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,55,53,123,119,105,100,116,104,58,55,53,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,49,48,48,123,119,105,100,116,104,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,97,117,116,111,123,119,105,100,116,104,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,104,45,50,53,123,104,101,105,103,104,116,58,50,53,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,53,48,123,104,101,105,103,104,116,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,55,53,123,104,101,105,103,104,116,58,55,53,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,49,48,48,123,104,101,105,103,104,116,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,97,117,116,111,123,104,101,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,119,45,49,48,48,123,109,97,120,45,119,105,100,116,104,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,109,104,45,49,48,48,123,109,97,120,45,104,101,105,103,104,116,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,109,105,110,45,118,119,45,49,48,48,123,109,105,110,45,119,105,100,116,104,58,49,48,48,118,119,33,105,109,112,111,114,116,97,110,116,125,46,109,105,110,45,118,104,45,49,48,48,123,109,105,110,45,104,101,105,103,104,116,58,49,48,48,118,104,33,105,109,112,111,114,116,97,110,116,125,46,118,119,45,49,48,48,123,119,105,100,116,104,58,49,48,48,118,119,33,105,109,112,111,114,116,97,110,116,125,46,118,104,45,49,48,48,123,104,101,105,103,104,116,58,49,48,48,118,104,33,105,109,112,111,114,116,97,110,116,125,46,115,116,114,101,116,99,104,101,100,45,108,105,110,107,58,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,48,41,125,46,109,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,48,44,46,109,121,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,48,44,46,109,120,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,48,44,46,109,121,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,48,44,46,109,120,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,49,44,46,109,121,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,49,44,46,109,120,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,49,44,46,109,121,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,49,44,46,109,120,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,50,44,46,109,121,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,50,44,46,109,120,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,50,44,46,109,121,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,50,44,46,109,120,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,51,44,46,109,121,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,51,44,46,109,120,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,51,44,46,109,121,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,51,44,46,109,120,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,52,44,46,109,121,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,52,44,46,109,120,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,52,44,46,109,121,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,52,44,46,109,120,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,53,44,46,109,121,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,53,44,46,109,120,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,53,44,46,109,121,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,53,44,46,109,120,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,48,44,46,112,121,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,48,44,46,112,120,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,48,44,46,112,121,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,48,44,46,112,120,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,49,44,46,112,121,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,49,44,46,112,120,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,49,44,46,112,121,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,49,44,46,112,120,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,50,44,46,112,121,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,50,44,46,112,120,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,50,44,46,112,121,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,50,44,46,112,120,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,51,44,46,112,121,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,51,44,46,112,120,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,51,44,46,112,121,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,51,44,46,112,120,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,52,44,46,112,121,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,52,44,46,112,120,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,52,44,46,112,121,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,52,44,46,112,120,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,53,44,46,112,121,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,53,44,46,112,120,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,53,44,46,112,121,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,53,44,46,112,120,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,49,44,46,109,121,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,49,44,46,109,120,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,49,44,46,109,121,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,49,44,46,109,120,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,50,44,46,109,121,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,50,44,46,109,120,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,50,44,46,109,121,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,50,44,46,109,120,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,51,44,46,109,121,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,51,44,46,109,120,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,51,44,46,109,121,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,51,44,46,109,120,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,52,44,46,109,121,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,52,44,46,109,120,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,52,44,46,109,121,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,52,44,46,109,120,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,53,44,46,109,121,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,53,44,46,109,120,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,53,44,46,109,121,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,53,44,46,109,120,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,97,117,116,111,44,46,109,121,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,97,117,116,111,44,46,109,120,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,97,117,116,111,44,46,109,121,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,97,117,116,111,44,46,109,120,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,109,45,115,109,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,48,44,46,109,121,45,115,109,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,48,44,46,109,120,45,115,109,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,48,44,46,109,121,45,115,109,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,48,44,46,109,120,45,115,109,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,49,44,46,109,121,45,115,109,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,49,44,46,109,120,45,115,109,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,49,44,46,109,121,45,115,109,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,49,44,46,109,120,45,115,109,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,50,44,46,109,121,45,115,109,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,50,44,46,109,120,45,115,109,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,50,44,46,109,121,45,115,109,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,50,44,46,109,120,45,115,109,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,51,44,46,109,121,45,115,109,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,51,44,46,109,120,45,115,109,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,51,44,46,109,121,45,115,109,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,51,44,46,109,120,45,115,109,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,52,44,46,109,121,45,115,109,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,52,44,46,109,120,45,115,109,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,52,44,46,109,121,45,115,109,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,52,44,46,109,120,45,115,109,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,53,44,46,109,121,45,115,109,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,53,44,46,109,120,45,115,109,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,53,44,46,109,121,45,115,109,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,53,44,46,109,120,45,115,109,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,48,44,46,112,121,45,115,109,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,48,44,46,112,120,45,115,109,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,48,44,46,112,121,45,115,109,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,48,44,46,112,120,45,115,109,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,49,44,46,112,121,45,115,109,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,49,44,46,112,120,45,115,109,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,49,44,46,112,121,45,115,109,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,49,44,46,112,120,45,115,109,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,50,44,46,112,121,45,115,109,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,50,44,46,112,120,45,115,109,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,50,44,46,112,121,45,115,109,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,50,44,46,112,120,45,115,109,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,51,44,46,112,121,45,115,109,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,51,44,46,112,120,45,115,109,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,51,44,46,112,121,45,115,109,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,51,44,46,112,120,45,115,109,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,52,44,46,112,121,45,115,109,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,52,44,46,112,120,45,115,109,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,52,44,46,112,121,45,115,109,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,52,44,46,112,120,45,115,109,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,53,44,46,112,121,45,115,109,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,53,44,46,112,120,45,115,109,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,53,44,46,112,121,45,115,109,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,53,44,46,112,120,45,115,109,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,49,44,46,109,121,45,115,109,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,49,44,46,109,120,45,115,109,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,49,44,46,109,121,45,115,109,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,49,44,46,109,120,45,115,109,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,50,44,46,109,121,45,115,109,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,50,44,46,109,120,45,115,109,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,50,44,46,109,121,45,115,109,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,50,44,46,109,120,45,115,109,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,51,44,46,109,121,45,115,109,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,51,44,46,109,120,45,115,109,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,51,44,46,109,121,45,115,109,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,51,44,46,109,120,45,115,109,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,52,44,46,109,121,45,115,109,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,52,44,46,109,120,45,115,109,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,52,44,46,109,121,45,115,109,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,52,44,46,109,120,45,115,109,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,53,44,46,109,121,45,115,109,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,53,44,46,109,120,45,115,109,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,53,44,46,109,121,45,115,109,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,53,44,46,109,120,45,115,109,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,97,117,116,111,44,46,109,121,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,97,117,116,111,44,46,109,120,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,97,117,116,111,44,46,109,121,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,97,117,116,111,44,46,109,120,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,109,45,109,100,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,48,44,46,109,121,45,109,100,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,48,44,46,109,120,45,109,100,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,48,44,46,109,121,45,109,100,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,48,44,46,109,120,45,109,100,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,49,44,46,109,121,45,109,100,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,49,44,46,109,120,45,109,100,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,49,44,46,109,121,45,109,100,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,49,44,46,109,120,45,109,100,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,50,44,46,109,121,45,109,100,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,50,44,46,109,120,45,109,100,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,50,44,46,109,121,45,109,100,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,50,44,46,109,120,45,109,100,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,51,44,46,109,121,45,109,100,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,51,44,46,109,120,45,109,100,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,51,44,46,109,121,45,109,100,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,51,44,46,109,120,45,109,100,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,52,44,46,109,121,45,109,100,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,52,44,46,109,120,45,109,100,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,52,44,46,109,121,45,109,100,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,52,44,46,109,120,45,109,100,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,53,44,46,109,121,45,109,100,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,53,44,46,109,120,45,109,100,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,53,44,46,109,121,45,109,100,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,53,44,46,109,120,45,109,100,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,48,44,46,112,121,45,109,100,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,48,44,46,112,120,45,109,100,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,48,44,46,112,121,45,109,100,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,48,44,46,112,120,45,109,100,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,49,44,46,112,121,45,109,100,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,49,44,46,112,120,45,109,100,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,49,44,46,112,121,45,109,100,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,49,44,46,112,120,45,109,100,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,50,44,46,112,121,45,109,100,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,50,44,46,112,120,45,109,100,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,50,44,46,112,121,45,109,100,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,50,44,46,112,120,45,109,100,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,51,44,46,112,121,45,109,100,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,51,44,46,112,120,45,109,100,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,51,44,46,112,121,45,109,100,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,51,44,46,112,120,45,109,100,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,52,44,46,112,121,45,109,100,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,52,44,46,112,120,45,109,100,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,52,44,46,112,121,45,109,100,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,52,44,46,112,120,45,109,100,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,53,44,46,112,121,45,109,100,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,53,44,46,112,120,45,109,100,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,53,44,46,112,121,45,109,100,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,53,44,46,112,120,45,109,100,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,49,44,46,109,121,45,109,100,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,49,44,46,109,120,45,109,100,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,49,44,46,109,121,45,109,100,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,49,44,46,109,120,45,109,100,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,50,44,46,109,121,45,109,100,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,50,44,46,109,120,45,109,100,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,50,44,46,109,121,45,109,100,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,50,44,46,109,120,45,109,100,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,51,44,46,109,121,45,109,100,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,51,44,46,109,120,45,109,100,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,51,44,46,109,121,45,109,100,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,51,44,46,109,120,45,109,100,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,52,44,46,109,121,45,109,100,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,52,44,46,109,120,45,109,100,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,52,44,46,109,121,45,109,100,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,52,44,46,109,120,45,109,100,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,53,44,46,109,121,45,109,100,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,53,44,46,109,120,45,109,100,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,53,44,46,109,121,45,109,100,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,53,44,46,109,120,45,109,100,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,97,117,116,111,44,46,109,121,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,97,117,116,111,44,46,109,120,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,97,117,116,111,44,46,109,121,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,97,117,116,111,44,46,109,120,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,109,45,108,103,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,48,44,46,109,121,45,108,103,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,48,44,46,109,120,45,108,103,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,48,44,46,109,121,45,108,103,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,48,44,46,109,120,45,108,103,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,49,44,46,109,121,45,108,103,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,49,44,46,109,120,45,108,103,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,49,44,46,109,121,45,108,103,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,49,44,46,109,120,45,108,103,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,50,44,46,109,121,45,108,103,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,50,44,46,109,120,45,108,103,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,50,44,46,109,121,45,108,103,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,50,44,46,109,120,45,108,103,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,51,44,46,109,121,45,108,103,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,51,44,46,109,120,45,108,103,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,51,44,46,109,121,45,108,103,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,51,44,46,109,120,45,108,103,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,52,44,46,109,121,45,108,103,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,52,44,46,109,120,45,108,103,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,52,44,46,109,121,45,108,103,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,52,44,46,109,120,45,108,103,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,53,44,46,109,121,45,108,103,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,53,44,46,109,120,45,108,103,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,53,44,46,109,121,45,108,103,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,53,44,46,109,120,45,108,103,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,48,44,46,112,121,45,108,103,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,48,44,46,112,120,45,108,103,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,48,44,46,112,121,45,108,103,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,48,44,46,112,120,45,108,103,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,49,44,46,112,121,45,108,103,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,49,44,46,112,120,45,108,103,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,49,44,46,112,121,45,108,103,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,49,44,46,112,120,45,108,103,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,50,44,46,112,121,45,108,103,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,50,44,46,112,120,45,108,103,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,50,44,46,112,121,45,108,103,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,50,44,46,112,120,45,108,103,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,51,44,46,112,121,45,108,103,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,51,44,46,112,120,45,108,103,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,51,44,46,112,121,45,108,103,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,51,44,46,112,120,45,108,103,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,52,44,46,112,121,45,108,103,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,52,44,46,112,120,45,108,103,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,52,44,46,112,121,45,108,103,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,52,44,46,112,120,45,108,103,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,53,44,46,112,121,45,108,103,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,53,44,46,112,120,45,108,103,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,53,44,46,112,121,45,108,103,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,53,44,46,112,120,45,108,103,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,49,44,46,109,121,45,108,103,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,49,44,46,109,120,45,108,103,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,49,44,46,109,121,45,108,103,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,49,44,46,109,120,45,108,103,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,50,44,46,109,121,45,108,103,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,50,44,46,109,120,45,108,103,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,50,44,46,109,121,45,108,103,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,50,44,46,109,120,45,108,103,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,51,44,46,109,121,45,108,103,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,51,44,46,109,120,45,108,103,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,51,44,46,109,121,45,108,103,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,51,44,46,109,120,45,108,103,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,52,44,46,109,121,45,108,103,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,52,44,46,109,120,45,108,103,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,52,44,46,109,121,45,108,103,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,52,44,46,109,120,45,108,103,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,53,44,46,109,121,45,108,103,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,53,44,46,109,120,45,108,103,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,53,44,46,109,121,45,108,103,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,53,44,46,109,120,45,108,103,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,97,117,116,111,44,46,109,121,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,97,117,116,111,44,46,109,120,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,97,117,116,111,44,46,109,121,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,97,117,116,111,44,46,109,120,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,109,45,120,108,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,48,44,46,109,121,45,120,108,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,48,44,46,109,120,45,120,108,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,48,44,46,109,121,45,120,108,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,48,44,46,109,120,45,120,108,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,49,44,46,109,121,45,120,108,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,49,44,46,109,120,45,120,108,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,49,44,46,109,121,45,120,108,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,49,44,46,109,120,45,120,108,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,50,44,46,109,121,45,120,108,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,50,44,46,109,120,45,120,108,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,50,44,46,109,121,45,120,108,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,50,44,46,109,120,45,120,108,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,51,44,46,109,121,45,120,108,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,51,44,46,109,120,45,120,108,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,51,44,46,109,121,45,120,108,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,51,44,46,109,120,45,120,108,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,52,44,46,109,121,45,120,108,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,52,44,46,109,120,45,120,108,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,52,44,46,109,121,45,120,108,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,52,44,46,109,120,45,120,108,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,53,44,46,109,121,45,120,108,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,53,44,46,109,120,45,120,108,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,53,44,46,109,121,45,120,108,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,53,44,46,109,120,45,120,108,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,48,44,46,112,121,45,120,108,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,48,44,46,112,120,45,120,108,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,48,44,46,112,121,45,120,108,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,48,44,46,112,120,45,120,108,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,49,44,46,112,121,45,120,108,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,49,44,46,112,120,45,120,108,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,49,44,46,112,121,45,120,108,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,49,44,46,112,120,45,120,108,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,50,44,46,112,121,45,120,108,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,50,44,46,112,120,45,120,108,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,50,44,46,112,121,45,120,108,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,50,44,46,112,120,45,120,108,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,51,44,46,112,121,45,120,108,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,51,44,46,112,120,45,120,108,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,51,44,46,112,121,45,120,108,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,51,44,46,112,120,45,120,108,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,52,44,46,112,121,45,120,108,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,52,44,46,112,120,45,120,108,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,52,44,46,112,121,45,120,108,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,52,44,46,112,120,45,120,108,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,53,44,46,112,121,45,120,108,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,53,44,46,112,120,45,120,108,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,53,44,46,112,121,45,120,108,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,53,44,46,112,120,45,120,108,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,49,44,46,109,121,45,120,108,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,49,44,46,109,120,45,120,108,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,49,44,46,109,121,45,120,108,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,49,44,46,109,120,45,120,108,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,50,44,46,109,121,45,120,108,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,50,44,46,109,120,45,120,108,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,50,44,46,109,121,45,120,108,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,50,44,46,109,120,45,120,108,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,51,44,46,109,121,45,120,108,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,51,44,46,109,120,45,120,108,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,51,44,46,109,121,45,120,108,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,51,44,46,109,120,45,120,108,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,52,44,46,109,121,45,120,108,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,52,44,46,109,120,45,120,108,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,52,44,46,109,121,45,120,108,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,52,44,46,109,120,45,120,108,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,53,44,46,109,121,45,120,108,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,53,44,46,109,120,45,120,108,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,53,44,46,109,121,45,120,108,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,53,44,46,109,120,45,120,108,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,97,117,116,111,44,46,109,121,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,97,117,116,111,44,46,109,120,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,97,117,116,111,44,46,109,121,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,97,117,116,111,44,46,109,120,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,46,116,101,120,116,45,109,111,110,111,115,112,97,99,101,123,102,111,110,116,45,102,97,109,105,108,121,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,34,67,111,117,114,105,101,114,32,78,101,119,34,44,109,111,110,111,115,112,97,99,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,106,117,115,116,105,102,121,123,116,101,120,116,45,97,108,105,103,110,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,114,97,112,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,110,111,119,114,97,112,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,116,114,117,110,99,97,116,101,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,116,101,120,116,45,111,118,101,114,102,108,111,119,58,101,108,108,105,112,115,105,115,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,116,101,120,116,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,116,101,120,116,45,115,109,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,109,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,109,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,116,101,120,116,45,109,100,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,100,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,100,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,116,101,120,116,45,108,103,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,103,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,103,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,116,101,120,116,45,120,108,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,120,108,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,120,108,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,46,116,101,120,116,45,108,111,119,101,114,99,97,115,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,108,111,119,101,114,99,97,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,117,112,112,101,114,99,97,115,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,117,112,112,101,114,99,97,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,99,97,112,105,116,97,108,105,122,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,99,97,112,105,116,97,108,105,122,101,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,108,105,103,104,116,123,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,108,105,103,104,116,101,114,123,102,111,110,116,45,119,101,105,103,104,116,58,108,105,103,104,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,110,111,114,109,97,108,123,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,98,111,108,100,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,98,111,108,100,101,114,123,102,111,110,116,45,119,101,105,103,104,116,58,98,111,108,100,101,114,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,105,116,97,108,105,99,123,102,111,110,116,45,115,116,121,108,101,58,105,116,97,108,105,99,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,104,105,116,101,123,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,116,101,120,116,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,52,57,52,102,53,52,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,116,101,120,116,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,57,54,57,50,99,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,105,110,102,111,123,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,105,110,102,111,58,102,111,99,117,115,44,97,46,116,101,120,116,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,102,54,54,55,52,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,116,101,120,116,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,98,97,56,98,48,48,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,116,101,120,116,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,97,55,49,100,50,97,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,105,103,104,116,123,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,116,101,120,116,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,99,98,100,51,100,97,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,100,97,114,107,123,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,100,97,114,107,58,102,111,99,117,115,44,97,46,116,101,120,116,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,50,49,52,49,54,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,111,100,121,123,99,111,108,111,114,58,35,50,49,50,53,50,57,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,117,116,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,108,97,99,107,45,53,48,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,104,105,116,101,45,53,48,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,104,105,100,101,123,102,111,110,116,58,48,47,48,32,97,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,110,111,110,101,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,114,101,97,107,123,119,111,114,100,45,98,114,101,97,107,58,98,114,101,97,107,45,119,111,114,100,33,105,109,112,111,114,116,97,110,116,59,111,118,101,114,102,108,111,119,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,114,101,115,101,116,123,99,111,108,111,114,58,105,110,104,101,114,105,116,33,105,109,112,111,114,116,97,110,116,125,46,118,105,115,105,98,108,101,123,118,105,115,105,98,105,108,105,116,121,58,118,105,115,105,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,105,110,118,105,115,105,98,108,101,123,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,112,114,105,110,116,123,42,44,58,58,97,102,116,101,114,44,58,58,98,101,102,111,114,101,123,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,97,58,110,111,116,40,46,98,116,110,41,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,97,98,98,114,91,116,105,116,108,101,93,58,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,34,32,40,34,32,97,116,116,114,40,116,105,116,108,101,41,32,34,41,34,125,112,114,101,123,119,104,105,116,101,45,115,112,97,99,101,58,112,114,101,45,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,98,108,111,99,107,113,117,111,116,101,44,112,114,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,97,100,98,53,98,100,59,112,97,103,101,45,98,114,101,97,107,45,105,110,115,105,100,101,58,97,118,111,105,100,125,116,104,101,97,100,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,104,101,97,100,101,114,45,103,114,111,117,112,125,105,109,103,44,116,114,123,112,97,103,101,45,98,114,101,97,107,45,105,110,115,105,100,101,58,97,118,111,105,100,125,104,50,44,104,51,44,112,123,111,114,112,104,97,110,115,58,51,59,119,105,100,111,119,115,58,51,125,104,50,44,104,51,123,112,97,103,101,45,98,114,101,97,107,45,97,102,116,101,114,58,97,118,111,105,100,125,64,112,97,103,101,123,115,105,122,101,58,97,51,125,98,111,100,121,123,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,33,105,109,112,111,114,116,97,110,116,125,46,99,111,110,116,97,105,110,101,114,123,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,33,105,109,112,111,114,116,97,110,116,125,46,110,97,118,98,97,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,98,97,100,103,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,48,48,48,125,46,116,97,98,108,101,123,98,111,114,100,101,114,45,99,111,108,108,97,112,115,101,58,99,111,108,108,97,112,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,32,116,100,44,46,116,97,98,108,101,32,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,45,100,97,114,107,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,116,97,98,108,101,45,100,97,114,107,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,100,97,114,107,32,116,104,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,125,10,46,98,114,105,99,107,108,97,121,101,114,123,100,105,115,112,108,97,121,58,45,119,101,98,107,105,116,45,98,111,120,59,100,105,115,112,108,97,121,58,45,119,101,98,107,105,116,45,102,108,101,120,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,119,101,98,107,105,116,45,98,111,120,45,97,108,105,103,110,58,115,116,97,114,116,59,45,119,101,98,107,105,116,45,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,119,101,98,107,105,116,45,98,111,120,45,112,97,99,107,58,99,101,110,116,101,114,59,45,119,101,98,107,105,116,45,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,45,119,101,98,107,105,116,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,125,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,49,48,48,37,59,100,105,115,112,108,97,121,58,110,111,110,101,125,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,54,52,48,112,120,41,123,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,53,48,37,125,125,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,57,56,48,112,120,41,123,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,51,51,46,51,51,51,37,125,125,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,50,53,37,125,125,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,123,45,119,101,98,107,105,116,45,98,111,120,45,102,108,101,120,58,49,59,45,119,101,98,107,105,116,45,102,108,101,120,58,49,59,45,109,115,45,102,108,101,120,58,49,59,102,108,101,120,58,49,59,112,97,100,100,105,110,103,45,108,101,102,116,58,53,112,120,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,53,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,52,41,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,48,112,120,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,97,108,108,32,49,53,48,109,115,32,108,105,110,101,97,114,59,116,114,97,110,115,105,116,105,111,110,58,97,108,108,32,49,53,48,109,115,32,108,105,110,101,97,114,59,119,105,100,116,104,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,58,104,111,118,101,114,123,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,50,112,120,32,51,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,49,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,50,112,120,32,51,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,49,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,32,43,32,46,98,116,110,123,109,97,114,103,105,110,45,108,101,102,116,58,53,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,46,105,99,111,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,46,105,99,111,110,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,49,52,112,120,59,108,101,102,116,58,53,48,37,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,125,46,105,116,114,101,101,45,109,101,110,117,123,98,97,99,107,103,114,111,117,110,100,58,35,100,100,100,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,52,99,52,99,52,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,115,97,110,115,45,115,101,114,105,102,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,109,97,114,103,105,110,58,48,59,109,105,110,45,119,105,100,116,104,58,49,53,48,112,120,59,112,97,100,100,105,110,103,58,48,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,49,48,125,46,105,116,114,101,101,45,109,101,110,117,32,97,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,51,112,120,32,56,112,120,125,46,105,116,114,101,101,45,109,101,110,117,32,97,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,50,49,56,44,32,50,53,48,44,32,50,53,53,44,32,48,46,53,41,59,99,111,108,111,114,58,114,103,98,97,40,49,54,52,44,32,50,51,52,44,32,50,52,53,44,32,48,46,53,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,123,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,42,123,45,119,101,98,107,105,116,45,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,111,108,123,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,111,108,32,111,108,123,112,97,100,100,105,110,103,45,108,101,102,116,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,99,111,108,108,97,112,115,101,100,32,62,32,111,108,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,104,105,100,100,101,110,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,32,62,32,46,116,105,116,108,101,45,119,114,97,112,123,109,105,110,45,104,101,105,103,104,116,58,50,53,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,111,103,103,108,101,123,104,101,105,103,104,116,58,50,53,112,120,59,108,101,102,116,58,48,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,119,105,100,116,104,58,50,53,112,120,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,111,103,103,108,101,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,101,102,116,58,53,48,37,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,91,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,93,123,108,101,102,116,58,50,50,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,55,112,120,59,119,105,100,116,104,58,50,48,112,120,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,52,50,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,101,120,116,45,111,118,101,114,102,108,111,119,58,101,108,108,105,112,115,105,115,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,122,45,105,110,100,101,120,58,49,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,46,108,111,97,100,45,109,111,114,101,123,99,111,108,111,114,58,35,52,55,54,99,98,56,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,46,108,111,97,100,45,109,111,114,101,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,58,58,98,101,102,111,114,101,123,108,101,102,116,58,50,52,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,45,53,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,45,53,48,37,41,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,100,114,97,103,45,97,110,100,45,100,114,111,112,32,108,105,58,110,111,116,40,46,100,114,111,112,45,116,97,114,103,101,116,41,123,111,112,97,99,105,116,121,58,48,46,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,62,32,46,116,105,116,108,101,44,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,46,105,110,115,112,105,114,101,45,116,114,101,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,97,98,111,118,101,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,62,32,46,116,105,116,108,101,123,98,111,114,100,101,114,45,116,111,112,58,51,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,98,101,108,111,119,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,62,32,46,116,105,116,108,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,51,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,59,112,97,100,100,105,110,103,45,116,111,112,58,50,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,105,110,112,117,116,123,104,101,105,103,104,116,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,46,98,116,110,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,105,110,112,117,116,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,62,32,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,110,111,110,101,59,112,97,100,100,105,110,103,45,116,111,112,58,50,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,49,48,112,120,59,122,45,105,110,100,101,120,58,51,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,58,104,111,118,101,114,32,62,32,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,105,110,112,117,116,32,43,32,46,98,116,110,45,103,114,111,117,112,123,109,97,114,103,105,110,45,108,101,102,116,58,49,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,46,98,116,110,46,105,99,111,110,123,109,97,114,103,105,110,45,108,101,102,116,58,50,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,111,108,32,62,32,46,102,111,108,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,49,51,112,120,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,101,100,105,116,97,98,108,101,45,97,100,100,32,62,32,111,108,32,62,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,114,101,112,101,97,116,45,121,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,111,108,32,46,101,120,112,97,110,100,101,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,46,101,120,112,97,110,100,101,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,62,32,111,108,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,114,101,112,101,97,116,45,121,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,46,101,120,112,97,110,100,101,100,46,102,111,108,100,101,114,58,110,111,116,40,46,108,111,97,100,105,110,103,41,32,62,32,46,116,105,116,108,101,45,119,114,97,112,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,51,49,112,120,32,49,51,112,120,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,101,116,97,99,104,101,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,89,67,65,89,65,65,65,65,104,56,72,100,85,65,65,65,65,78,48,108,69,81,86,81,52,84,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,76,111,48,100,66,68,68,122,48,83,77,117,53,111,50,111,77,70,70,103,66,88,98,69,101,73,48,88,119,89,73,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,65,65,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,78,67,65,89,65,65,65,66,121,54,43,82,56,65,65,65,65,75,107,108,69,81,86,81,111,85,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,74,111,65,71,85,90,77,51,50,90,48,85,56,116,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,46,100,101,116,97,99,104,101,100,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,101,100,105,116,97,98,108,101,45,97,100,100,32,62,32,111,108,32,62,32,46,108,101,97,102,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,89,67,65,89,65,65,65,65,104,56,72,100,85,65,65,65,65,78,48,108,69,81,86,81,52,84,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,76,111,48,100,66,68,68,122,48,83,77,117,53,111,50,111,77,70,70,103,66,88,98,69,101,73,48,88,119,89,73,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,65,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,99,111,110,116,101,110,116,58,39,39,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,49,52,112,120,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,104,101,99,107,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,104,101,99,107,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,111,108,108,97,112,115,101,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,56,37,50,48,49,49,104,56,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,56,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,119,104,105,116,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,114,111,115,115,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,114,111,115,115,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,101,120,112,97,110,100,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,49,50,37,50,48,55,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,118,51,104,51,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,51,118,51,113,48,37,50,48,48,46,52,49,52,45,48,46,50,57,51,37,50,48,48,46,55,48,55,116,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,45,48,46,50,57,51,45,48,46,50,57,51,45,48,46,55,48,55,118,45,51,104,45,51,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,104,51,118,45,51,113,48,45,48,46,52,49,52,37,50,48,48,46,50,57,51,45,48,46,55,48,55,116,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,119,104,105,116,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,53,97,53,97,53,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,111,108,100,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,111,108,100,101,114,45,111,112,101,110,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,105,110,117,115,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,105,110,117,115,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,111,114,101,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,50,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,49,56,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,54,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,101,110,99,105,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,101,110,99,105,108,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,108,117,115,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,108,117,115,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,111,108,100,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,111,108,100,101,114,45,111,112,101,110,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,111,97,100,105,110,103,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,105,110,112,117,116,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,111,97,100,105,110,103,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,116,105,116,108,101,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,119,105,100,116,104,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,104,101,105,103,104,116,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,49,48,48,37,50,48,49,48,48,37,50,50,37,50,48,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,37,51,68,37,50,50,120,77,105,100,89,77,105,100,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,117,105,108,45,114,105,110,103,37,50,50,37,51,69,37,51,67,114,101,99,116,37,50,48,120,37,51,68,37,50,50,48,37,50,50,37,50,48,121,37,51,68,37,50,50,48,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,110,111,110,101,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,98,107,37,50,50,37,51,69,37,51,67,37,50,70,114,101,99,116,37,51,69,37,51,67,100,101,102,115,37,51,69,37,51,67,102,105,108,116,101,114,37,50,48,105,100,37,51,68,37,50,50,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,37,50,50,37,50,48,120,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,121,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,51,69,37,51,67,102,101,79,102,102,115,101,116,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,100,120,37,51,68,37,50,50,48,37,50,50,37,50,48,100,121,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,79,102,102,115,101,116,37,51,69,37,51,67,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,115,116,100,68,101,118,105,97,116,105,111,110,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,51,69,37,51,67,102,101,66,108,101,110,100,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,105,110,50,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,109,111,100,101,37,51,68,37,50,50,110,111,114,109,97,108,37,50,50,37,51,69,37,51,67,37,50,70,102,101,66,108,101,110,100,37,51,69,37,51,67,37,50,70,102,105,108,116,101,114,37,51,69,37,51,67,37,50,70,100,101,102,115,37,51,69,37,51,67,112,97,116,104,37,50,48,100,37,51,68,37,50,50,77,49,48,37,50,67,53,48,99,48,37,50,67,48,37,50,67,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,37,50,67,48,46,50,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,46,49,37,50,67,48,46,55,37,50,67,48,46,49,37,50,67,49,46,49,99,48,46,49,37,50,67,48,46,52,37,50,67,48,46,49,37,50,67,48,46,56,37,50,67,48,46,50,37,50,67,49,46,50,99,48,46,50,37,50,67,48,46,56,37,50,67,48,46,51,37,50,67,49,46,56,37,50,67,48,46,53,37,50,67,50,46,56,37,50,48,99,48,46,51,37,50,67,49,37,50,67,48,46,54,37,50,67,50,46,49,37,50,67,48,46,57,37,50,67,51,46,50,99,48,46,51,37,50,67,49,46,49,37,50,67,48,46,57,37,50,67,50,46,51,37,50,67,49,46,52,37,50,67,51,46,53,99,48,46,53,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,50,46,52,37,50,67,49,46,56,37,50,67,51,46,55,99,48,46,51,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,49,46,57,99,48,46,52,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,51,37,50,67,49,46,51,37,50,67,49,46,57,37,50,48,99,49,37,50,67,49,46,50,37,50,67,49,46,57,37,50,67,50,46,54,37,50,67,51,46,49,37,50,67,51,46,55,99,50,46,50,37,50,67,50,46,53,37,50,67,53,37,50,67,52,46,55,37,50,67,55,46,57,37,50,67,54,46,55,99,51,37,50,67,50,37,50,67,54,46,53,37,50,67,51,46,52,37,50,67,49,48,46,49,37,50,67,52,46,54,99,51,46,54,37,50,67,49,46,49,37,50,67,55,46,53,37,50,67,49,46,53,37,50,67,49,49,46,50,37,50,67,49,46,54,99,52,45,48,46,49,37,50,67,55,46,55,45,48,46,54,37,50,67,49,49,46,51,45,49,46,54,37,50,48,99,51,46,54,45,49,46,50,37,50,67,55,45,50,46,54,37,50,67,49,48,45,52,46,54,99,51,45,50,37,50,67,53,46,56,45,52,46,50,37,50,67,55,46,57,45,54,46,55,99,49,46,50,45,49,46,50,37,50,67,50,46,49,45,50,46,53,37,50,67,51,46,49,45,51,46,55,99,48,46,53,45,48,46,54,37,50,67,48,46,57,45,49,46,51,37,50,67,49,46,51,45,49,46,57,99,48,46,52,45,48,46,54,37,50,67,48,46,56,45,49,46,51,37,50,67,49,46,50,45,49,46,57,37,50,48,99,48,46,54,45,49,46,51,37,50,67,49,46,51,45,50,46,53,37,50,67,49,46,56,45,51,46,55,99,48,46,53,45,49,46,50,37,50,67,49,45,50,46,52,37,50,67,49,46,52,45,51,46,53,99,48,46,51,45,49,46,49,37,50,67,48,46,54,45,50,46,50,37,50,67,48,46,57,45,51,46,50,99,48,46,50,45,49,37,50,67,48,46,52,45,49,46,57,37,50,67,48,46,53,45,50,46,56,99,48,46,49,45,48,46,52,37,50,67,48,46,49,45,48,46,56,37,50,67,48,46,50,45,49,46,50,37,50,48,99,48,45,48,46,52,37,50,67,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,49,99,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,50,37,50,67,48,46,50,45,49,46,55,67,57,48,37,50,67,53,48,46,53,37,50,67,57,48,37,50,67,53,48,37,50,67,57,48,37,50,67,53,48,115,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,37,50,67,48,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,37,50,67,48,46,55,37,50,67,48,37,50,67,49,46,49,37,50,48,99,48,37,50,67,48,46,52,45,48,46,49,37,50,67,48,46,56,45,48,46,49,37,50,67,49,46,50,99,45,48,46,49,37,50,67,48,46,57,45,48,46,50,37,50,67,49,46,56,45,48,46,52,37,50,67,50,46,56,99,45,48,46,50,37,50,67,49,45,48,46,53,37,50,67,50,46,49,45,48,46,55,37,50,67,51,46,51,99,45,48,46,51,37,50,67,49,46,50,45,48,46,56,37,50,67,50,46,52,45,49,46,50,37,50,67,51,46,55,99,45,48,46,50,37,50,67,48,46,55,45,48,46,53,37,50,67,49,46,51,45,48,46,56,37,50,67,49,46,57,37,50,48,99,45,48,46,51,37,50,67,48,46,55,45,48,46,54,37,50,67,49,46,51,45,48,46,57,37,50,67,50,99,45,48,46,51,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,51,45,49,46,49,37,50,67,50,99,45,48,46,52,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,52,45,49,46,50,37,50,67,50,99,45,49,37,50,67,49,46,51,45,49,46,57,37,50,67,50,46,55,45,51,46,49,37,50,67,52,99,45,50,46,50,37,50,67,50,46,55,45,53,37,50,67,53,45,56,46,49,37,50,67,55,46,49,37,50,48,99,45,48,46,56,37,50,67,48,46,53,45,49,46,54,37,50,67,49,45,50,46,52,37,50,67,49,46,53,99,45,48,46,56,37,50,67,48,46,53,45,49,46,55,37,50,67,48,46,57,45,50,46,54,37,50,67,49,46,51,76,54,54,37,50,67,56,55,46,55,108,45,49,46,52,37,50,67,48,46,53,99,45,48,46,57,37,50,67,48,46,51,45,49,46,56,37,50,67,48,46,55,45,50,46,56,37,50,67,49,99,45,51,46,56,37,50,67,49,46,49,45,55,46,57,37,50,67,49,46,55,45,49,49,46,56,37,50,67,49,46,56,76,52,55,37,50,67,57,48,46,56,37,50,48,99,45,49,37,50,67,48,45,50,45,48,46,50,45,51,45,48,46,51,108,45,49,46,53,45,48,46,50,108,45,48,46,55,45,48,46,49,76,52,49,46,49,37,50,67,57,48,99,45,49,45,48,46,51,45,49,46,57,45,48,46,53,45,50,46,57,45,48,46,55,99,45,48,46,57,45,48,46,51,45,49,46,57,45,48,46,55,45,50,46,56,45,49,76,51,52,37,50,67,56,55,46,55,108,45,49,46,51,45,48,46,54,37,50,48,99,45,48,46,57,45,48,46,52,45,49,46,56,45,48,46,56,45,50,46,54,45,49,46,51,99,45,48,46,56,45,48,46,53,45,49,46,54,45,49,45,50,46,52,45,49,46,53,99,45,51,46,49,45,50,46,49,45,53,46,57,45,52,46,53,45,56,46,49,45,55,46,49,99,45,49,46,50,45,49,46,50,45,50,46,49,45,50,46,55,45,51,46,49,45,52,99,45,48,46,53,45,48,46,54,45,48,46,56,45,49,46,52,45,49,46,50,45,50,37,50,48,99,45,48,46,52,45,48,46,55,45,48,46,56,45,49,46,51,45,49,46,49,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,57,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,56,45,49,46,57,99,45,48,46,52,45,49,46,51,45,48,46,57,45,50,46,53,45,49,46,50,45,51,46,55,99,45,48,46,51,45,49,46,50,45,48,46,53,45,50,46,51,45,48,46,55,45,51,46,51,37,50,48,99,45,48,46,50,45,49,45,48,46,51,45,50,45,48,46,52,45,50,46,56,99,45,48,46,49,45,48,46,52,45,48,46,49,45,48,46,56,45,48,46,49,45,49,46,50,99,48,45,48,46,52,37,50,67,48,45,48,46,55,37,50,67,48,45,49,46,49,99,48,45,48,46,55,37,50,67,48,45,49,46,50,37,50,67,48,45,49,46,55,67,49,48,37,50,67,53,48,46,53,37,50,67,49,48,37,50,67,53,48,37,50,67,49,48,37,50,67,53,48,122,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,49,51,49,51,56,37,50,50,37,50,48,102,105,108,116,101,114,37,51,68,37,50,50,117,114,108,40,37,50,51,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,41,37,50,50,37,51,69,37,51,67,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,50,48,97,116,116,114,105,98,117,116,101,78,97,109,101,37,51,68,37,50,50,116,114,97,110,115,102,111,114,109,37,50,50,37,50,48,116,121,112,101,37,51,68,37,50,50,114,111,116,97,116,101,37,50,50,37,50,48,102,114,111,109,37,51,68,37,50,50,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,116,111,37,51,68,37,50,50,51,54,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,114,101,112,101,97,116,67,111,117,110,116,37,51,68,37,50,50,105,110,100,101,102,105,110,105,116,101,37,50,50,37,50,48,100,117,114,37,51,68,37,50,50,49,115,37,50,50,37,51,69,37,51,67,37,50,70,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,59,99,111,110,116,101,110,116,58,39,39,59,104,101,105,103,104,116,58,49,52,112,120,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,111,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,119,104,111,108,101,114,111,119,123,104,101,105,103,104,116,58,50,53,112,120,59,108,101,102,116,58,48,59,109,97,114,103,105,110,45,116,111,112,58,45,50,53,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,119,105,100,116,104,58,49,48,48,37,59,122,45,105,110,100,101,120,58,49,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,102,111,99,117,115,101,100,58,110,111,116,40,46,115,101,108,101,99,116,101,100,41,32,62,32,46,119,104,111,108,101,114,111,119,123,111,117,116,108,105,110,101,58,49,112,120,32,100,111,116,116,101,100,32,98,108,97,99,107,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,32,43,32,46,119,104,111,108,101,114,111,119,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,119,104,111,108,101,114,111,119,123,98,97,99,107,103,114,111,117,110,100,58,35,66,66,68,69,70,66,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,97,123,99,111,108,111,114,58,35,52,57,53,48,53,55,125,46,105,114,115,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,45,119,101,98,107,105,116,45,116,111,117,99,104,45,99,97,108,108,111,117,116,58,110,111,110,101,59,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,107,104,116,109,108,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,125,46,105,114,115,45,108,105,110,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,125,46,105,114,115,45,108,105,110,101,45,108,101,102,116,44,46,105,114,115,45,108,105,110,101,45,109,105,100,44,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,125,46,105,114,115,45,108,105,110,101,45,108,101,102,116,123,108,101,102,116,58,48,59,119,105,100,116,104,58,49,49,37,125,46,105,114,115,45,108,105,110,101,45,109,105,100,123,108,101,102,116,58,57,37,59,119,105,100,116,104,58,56,50,37,125,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,119,105,100,116,104,58,49,49,37,125,46,105,114,115,45,98,97,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,101,102,116,58,48,59,119,105,100,116,104,58,48,125,46,105,114,115,45,98,97,114,45,101,100,103,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,48,125,46,105,114,115,45,115,104,97,100,111,119,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,110,111,110,101,59,108,101,102,116,58,48,59,119,105,100,116,104,58,48,125,46,105,114,115,45,115,108,105,100,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,122,45,105,110,100,101,120,58,49,125,46,105,114,115,45,115,108,105,100,101,114,46,115,105,110,103,108,101,123,125,46,105,114,115,45,115,108,105,100,101,114,46,102,114,111,109,123,125,46,105,114,115,45,115,108,105,100,101,114,46,116,111,123,125,46,105,114,115,45,115,108,105,100,101,114,46,116,121,112,101,95,108,97,115,116,123,122,45,105,110,100,101,120,58,50,125,46,105,114,115,45,109,105,110,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,101,102,116,58,48,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,105,114,115,45,109,97,120,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,114,105,103,104,116,58,48,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,105,114,115,45,102,114,111,109,44,46,105,114,115,45,115,105,110,103,108,101,44,46,105,114,115,45,116,111,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,48,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,105,114,115,45,103,114,105,100,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,110,111,110,101,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,50,48,112,120,125,46,105,114,115,45,119,105,116,104,45,103,114,105,100,32,46,105,114,115,45,103,114,105,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,105,114,115,45,103,114,105,100,45,112,111,108,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,112,120,59,104,101,105,103,104,116,58,56,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,48,48,48,125,46,105,114,115,45,103,114,105,100,45,112,111,108,46,115,109,97,108,108,123,104,101,105,103,104,116,58,52,112,120,125,46,105,114,115,45,103,114,105,100,45,116,101,120,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,102,111,110,116,45,115,105,122,101,58,57,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,57,112,120,59,112,97,100,100,105,110,103,58,48,32,51,112,120,59,99,111,108,111,114,58,35,48,48,48,125,46,105,114,115,45,100,105,115,97,98,108,101,45,109,97,115,107,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,45,49,37,59,119,105,100,116,104,58,49,48,50,37,59,104,101,105,103,104,116,58,49,48,48,37,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,48,44,48,44,48,44,48,46,48,41,59,122,45,105,110,100,101,120,58,50,125,46,105,114,115,45,100,105,115,97,98,108,101,100,123,111,112,97,99,105,116,121,58,48,46,52,125,46,108,116,45,105,101,57,32,46,105,114,115,45,100,105,115,97,98,108,101,100,123,102,105,108,116,101,114,58,32,97,108,112,104,97,40,111,112,97,99,105,116,121,61,52,48,41,125,46,105,114,115,45,104,105,100,100,101,110,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,32,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,98,108,111,99,107,32,33,105,109,112,111,114,116,97,110,116,59,116,111,112,58,48,32,33,105,109,112,111,114,116,97,110,116,59,108,101,102,116,58,48,32,33,105,109,112,111,114,116,97,110,116,59,119,105,100,116,104,58,48,32,33,105,109,112,111,114,116,97,110,116,59,104,101,105,103,104,116,58,48,32,33,105,109,112,111,114,116,97,110,116,59,102,111,110,116,45,115,105,122,101,58,48,32,33,105,109,112,111,114,116,97,110,116,59,108,105,110,101,45,104,101,105,103,104,116,58,48,32,33,105,109,112,111,114,116,97,110,116,59,112,97,100,100,105,110,103,58,48,32,33,105,109,112,111,114,116,97,110,116,59,109,97,114,103,105,110,58,48,32,33,105,109,112,111,114,116,97,110,116,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,122,45,105,110,100,101,120,58,45,57,57,57,57,32,33,105,109,112,111,114,116,97,110,116,59,98,97,99,107,103,114,111,117,110,100,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,115,116,121,108,101,58,115,111,108,105,100,32,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,32,33,105,109,112,111,114,116,97,110,116,125,10,46,105,114,115,45,98,97,114,44,46,105,114,115,45,98,97,114,45,101,100,103,101,44,46,105,114,115,45,108,105,110,101,45,108,101,102,116,44,46,105,114,115,45,108,105,110,101,45,109,105,100,44,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,44,46,105,114,115,45,115,108,105,100,101,114,123,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,46,46,47,105,109,103,47,115,112,114,105,116,101,45,115,107,105,110,45,102,108,97,116,46,112,110,103,34,41,32,114,101,112,101,97,116,45,120,125,46,105,114,115,123,104,101,105,103,104,116,58,52,48,112,120,125,46,105,114,115,45,119,105,116,104,45,103,114,105,100,123,104,101,105,103,104,116,58,54,48,112,120,125,46,105,114,115,45,108,105,110,101,123,104,101,105,103,104,116,58,49,50,112,120,59,116,111,112,58,50,53,112,120,125,46,105,114,115,45,108,105,110,101,45,108,101,102,116,123,104,101,105,103,104,116,58,49,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,51,48,112,120,125,46,105,114,115,45,108,105,110,101,45,109,105,100,123,104,101,105,103,104,116,58,49,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,125,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,123,104,101,105,103,104,116,58,49,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,48,48,37,32,45,51,48,112,120,125,46,105,114,115,45,98,97,114,123,104,101,105,103,104,116,58,49,50,112,120,59,116,111,112,58,50,53,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,54,48,112,120,125,46,105,114,115,45,98,97,114,45,101,100,103,101,123,116,111,112,58,50,53,112,120,59,104,101,105,103,104,116,58,49,50,112,120,59,119,105,100,116,104,58,57,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,57,48,112,120,125,46,105,114,115,45,115,104,97,100,111,119,123,104,101,105,103,104,116,58,51,112,120,59,116,111,112,58,51,52,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,48,48,48,59,111,112,97,99,105,116,121,58,48,46,50,53,125,46,108,116,45,105,101,57,32,46,105,114,115,45,115,104,97,100,111,119,123,102,105,108,116,101,114,58,32,97,108,112,104,97,40,111,112,97,99,105,116,121,61,50,53,41,125,46,105,114,115,45,115,108,105,100,101,114,123,119,105,100,116,104,58,49,54,112,120,59,104,101,105,103,104,116,58,49,56,112,120,59,116,111,112,58,50,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,49,50,48,112,120,125,46,105,114,115,45,115,108,105,100,101,114,46,115,116,97,116,101,95,104,111,118,101,114,44,46,105,114,115,45,115,108,105,100,101,114,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,49,53,48,112,120,125,46,105,114,115,45,109,97,120,44,46,105,114,115,45,109,105,110,123,99,111,108,111,114,58,35,57,57,57,59,102,111,110,116,45,115,105,122,101,58,49,48,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,51,51,51,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,116,111,112,58,48,59,112,97,100,100,105,110,103,58,49,112,120,32,51,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,101,49,101,52,101,57,59,45,109,111,122,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,125,46,105,114,115,45,102,114,111,109,44,46,105,114,115,45,115,105,110,103,108,101,44,46,105,114,115,45,116,111,123,99,111,108,111,114,58,35,102,102,102,59,102,111,110,116,45,115,105,122,101,58,49,48,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,51,51,51,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,112,97,100,100,105,110,103,58,49,112,120,32,53,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,50,49,57,54,70,51,59,45,109,111,122,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,125,46,105,114,115,45,102,114,111,109,58,97,102,116,101,114,44,46,105,114,115,45,115,105,110,103,108,101,58,97,102,116,101,114,44,46,105,114,115,45,116,111,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,111,110,116,101,110,116,58,34,34,59,98,111,116,116,111,109,58,45,54,112,120,59,108,101,102,116,58,53,48,37,59,119,105,100,116,104,58,48,59,104,101,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,45,51,112,120,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,98,111,114,100,101,114,58,51,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,50,49,57,54,70,51,125,46,105,114,115,45,103,114,105,100,45,112,111,108,123,98,97,99,107,103,114,111,117,110,100,58,35,101,49,101,52,101,57,125,46,105,114,115,45,103,114,105,100,45,116,101,120,116,123,99,111,108,111,114,58,35,57,57,57,125,46,105,114,115,45,100,105,115,97,98,108,101,100,123,125,10,46,106,113,45,116,111,97,115,116,45,119,114,97,112,44,46,106,113,45,116,111,97,115,116,45,119,114,97,112,32,42,123,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,119,105,100,116,104,58,50,53,48,112,120,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,122,45,105,110,100,101,120,58,57,48,48,48,33,105,109,112,111,114,116,97,110,116,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,98,111,116,116,111,109,45,108,101,102,116,123,98,111,116,116,111,109,58,50,48,112,120,59,108,101,102,116,58,50,48,112,120,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,98,111,116,116,111,109,45,114,105,103,104,116,123,98,111,116,116,111,109,58,50,48,112,120,59,114,105,103,104,116,58,52,48,112,120,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,116,111,112,45,108,101,102,116,123,116,111,112,58,50,48,112,120,59,108,101,102,116,58,50,48,112,120,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,116,111,112,45,114,105,103,104,116,123,116,111,112,58,50,48,112,120,59,114,105,103,104,116,58,52,48,112,120,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,49,48,112,120,59,109,97,114,103,105,110,58,48,32,48,32,53,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,59,102,111,110,116,45,115,105,122,101,58,49,50,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,97,114,105,97,108,44,115,97,110,115,45,115,101,114,105,102,59,108,105,110,101,45,104,101,105,103,104,116,58,49,55,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,108,108,33,105,109,112,111,114,116,97,110,116,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,52,52,52,59,99,111,108,111,114,58,35,102,102,102,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,104,50,123,102,111,110,116,45,102,97,109,105,108,121,58,97,114,105,97,108,44,115,97,110,115,45,115,101,114,105,102,59,102,111,110,116,45,115,105,122,101,58,49,52,112,120,59,109,97,114,103,105,110,58,48,32,48,32,55,112,120,59,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,97,123,99,111,108,111,114,58,35,101,101,101,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,102,102,102,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,112,120,59,102,111,110,116,45,115,105,122,101,58,49,50,112,120,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,117,108,123,109,97,114,103,105,110,58,48,32,48,32,48,32,49,53,112,120,59,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,112,97,100,100,105,110,103,58,48,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,117,108,32,108,105,123,108,105,115,116,45,115,116,121,108,101,45,116,121,112,101,58,100,105,115,99,33,105,109,112,111,114,116,97,110,116,59,108,105,110,101,45,104,101,105,103,104,116,58,49,55,112,120,59,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,125,46,99,108,111,115,101,45,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,51,112,120,59,114,105,103,104,116,58,55,112,120,59,102,111,110,116,45,115,105,122,101,58,49,52,112,120,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,106,113,45,116,111,97,115,116,45,108,111,97,100,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,45,50,112,120,59,104,101,105,103,104,116,58,53,112,120,59,119,105,100,116,104,58,48,59,108,101,102,116,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,112,120,59,98,97,99,107,103,114,111,117,110,100,58,114,101,100,125,46,106,113,45,116,111,97,115,116,45,108,111,97,100,101,100,123,119,105,100,116,104,58,49,48,48,37,125,46,106,113,45,104,97,115,45,105,99,111,110,123,112,97,100,100,105,110,103,58,49,48,112,120,32,49,48,112,120,32,49,48,112,120,32,53,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,48,112,120,125,46,106,113,45,105,99,111,110,45,105,110,102,111,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,71,119,83,85,82,66,86,69,104,76,116,90,97,57,83,103,78,66,69,77,99,57,115,85,120,120,82,99,111,85,75,83,122,83,87,73,104,88,112,70,77,104,104,89,87,70,104,97,66,103,52,121,80,89,105,87,67,88,90,120,66,76,69,82,115,76,82,83,51,69,81,107,69,102,119,67,75,100,106,87,74,65,119,83,75,67,103,111,75,67,99,117,100,118,52,79,53,89,76,114,116,55,69,122,103,88,104,105,85,51,47,52,43,98,50,99,107,109,119,86,106,74,83,112,75,107,81,54,119,65,105,52,103,119,104,84,43,122,51,119,82,66,99,69,122,48,121,106,83,115,101,85,84,114,99,82,121,102,115,72,115,88,109,68,48,65,109,98,72,79,67,57,73,105,56,86,73,109,110,117,88,66,80,103,108,72,112,81,53,119,119,83,86,77,55,115,78,110,84,71,55,90,97,52,74,119,68,100,67,106,120,121,65,105,72,51,110,121,65,50,109,116,97,84,74,117,102,105,68,90,53,100,67,97,113,108,73,116,73,76,104,49,78,72,97,116,102,78,53,115,107,118,106,120,57,90,51,56,109,54,57,67,103,122,117,88,109,90,103,86,114,80,73,71,69,55,54,51,74,120,57,113,75,115,82,111,122,87,89,119,54,120,79,72,100,69,82,43,110,110,50,75,107,79,43,66,98,43,85,86,53,67,66,78,54,87,67,54,81,116,66,103,98,82,86,111,122,114,97,104,65,98,109,109,54,72,116,85,115,103,116,80,67,49,57,116,70,100,120,88,90,89,66,79,102,107,98,109,70,74,49,86,97,72,65,49,86,65,72,106,100,48,112,112,55,48,111,84,90,122,118,82,43,69,86,114,120,50,89,103,102,100,115,113,54,101,117,53,53,66,72,89,82,56,104,108,99,107,105,43,110,43,107,69,82,85,70,71,56,66,114,65,48,66,119,106,101,65,118,50,77,56,87,76,81,66,116,99,121,43,83,68,54,102,78,115,109,110,66,51,65,108,66,76,114,103,84,116,86,87,49,99,50,81,78,52,98,86,87,76,65,84,97,73,83,54,48,74,50,68,117,53,121,49,84,105,74,103,106,83,66,118,70,86,90,103,84,109,119,67,85,43,100,65,90,70,111,80,120,71,69,69,115,56,110,121,72,67,57,66,119,101,50,71,118,69,74,118,50,87,88,90,98,48,118,106,100,121,70,84,52,67,120,107,51,101,47,107,73,113,108,79,71,111,86,76,119,119,80,101,118,112,89,72,84,43,48,48,84,43,104,87,119,88,68,102,52,65,74,65,79,85,113,87,99,68,104,98,119,65,65,65,65,65,83,85,86,79,82,75,53,67,89,73,73,61,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,49,55,48,56,102,59,99,111,108,111,114,58,35,100,57,101,100,102,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,99,101,56,102,49,125,46,106,113,45,105,99,111,110,45,119,97,114,110,105,110,103,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,71,89,83,85,82,66,86,69,104,76,53,90,83,118,84,115,78,81,70,77,98,88,90,71,73,67,77,89,71,89,109,74,104,65,81,73,74,65,73,67,89,81,80,65,65,67,105,83,68,66,56,65,105,73,67,81,81,74,84,52,67,113,81,69,119,103,74,118,89,65,83,65,81,67,105,90,105,89,109,74,104,65,73,66,65,84,67,65,82,74,121,43,57,114,84,115,108,100,100,56,115,75,117,49,77,48,43,100,76,98,48,53,55,118,54,47,108,98,113,47,50,114,75,48,109,83,47,84,82,78,106,57,99,87,78,65,75,80,89,73,74,73,73,55,103,73,120,67,99,81,53,49,99,118,113,73,68,43,71,73,69,88,56,65,83,71,52,66,49,98,75,53,103,73,90,70,101,81,102,111,74,100,69,88,79,102,103,88,52,81,65,81,103,55,107,72,50,65,54,53,121,81,56,55,108,121,120,98,50,55,115,103,103,107,65,122,65,117,70,104,98,98,103,49,75,50,107,103,67,107,66,49,98,86,119,121,73,82,57,109,50,76,55,80,82,80,73,104,68,85,73,88,103,71,116,121,75,119,53,55,53,121,122,51,108,84,78,115,54,88,52,74,88,110,106,86,43,76,75,77,47,109,51,77,121,100,110,84,98,116,79,75,73,106,116,122,54,86,104,67,66,113,52,118,83,109,51,110,99,100,114,68,50,108,107,48,86,103,85,88,83,86,75,106,86,68,74,88,74,122,105,106,87,49,82,81,100,115,85,55,70,55,55,72,101,56,117,54,56,107,111,78,90,84,122,56,79,122,53,121,71,97,54,74,51,72,51,108,90,48,120,89,103,88,66,75,50,81,121,109,108,87,87,65,43,82,87,110,89,104,115,107,76,66,118,50,118,109,69,43,104,66,77,67,116,98,65,55,75,88,53,100,114,87,121,82,84,47,50,74,115,113,90,50,73,118,102,66,57,89,52,98,87,68,78,77,70,98,74,82,70,109,67,57,69,55,52,83,111,83,48,67,113,117,108,119,106,107,67,48,43,53,98,112,99,86,49,67,90,56,78,77,101,106,52,112,106,121,48,85,43,100,111,68,81,115,71,121,111,49,104,122,86,74,116,116,73,106,104,81,55,71,110,66,116,82,70,78,49,85,97,114,85,108,72,56,70,51,120,105,99,116,43,72,89,48,55,114,69,122,111,85,71,80,108,87,99,106,82,70,82,114,52,47,103,67,104,90,103,99,51,90,76,50,100,56,111,65,65,65,65,65,83,85,86,79,82,75,53,67,89,73,73,61,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,56,97,54,100,51,98,59,99,111,108,111,114,58,35,102,99,102,56,101,51,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,97,101,98,99,99,125,46,106,113,45,105,99,111,110,45,101,114,114,111,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,72,79,83,85,82,66,86,69,104,76,114,90,97,47,83,103,78,66,69,77,90,122,104,48,87,75,67,67,108,83,67,75,97,73,89,79,69,68,43,65,65,75,101,81,81,76,71,56,72,87,122,116,76,67,73,109,66,114,89,97,100,103,73,100,89,43,103,73,75,78,89,107,66,70,83,119,117,55,67,65,111,113,67,103,107,107,111,71,66,73,47,69,50,56,80,100,98,76,90,109,101,68,76,103,122,90,122,99,120,56,51,47,122,90,50,83,83,88,67,49,106,57,102,114,43,73,49,72,113,57,51,103,50,121,120,72,52,105,119,77,49,118,107,111,66,87,65,100,120,67,109,112,122,84,120,102,107,78,50,82,99,121,90,78,97,72,70,73,107,83,111,49,48,43,56,107,103,120,107,88,73,85,82,86,53,72,71,120,84,109,70,117,99,55,53,66,50,82,102,81,107,112,120,72,71,56,97,65,103,97,65,70,97,48,116,65,72,113,89,70,102,81,55,73,119,101,50,121,104,79,68,107,56,43,74,52,67,55,121,65,111,82,84,87,73,51,119,47,52,107,108,71,82,103,82,52,108,79,55,82,112,110,57,43,103,118,77,121,87,112,43,117,120,70,104,56,43,72,43,65,82,108,103,78,49,110,74,117,74,117,81,65,89,118,78,107,69,110,119,71,70,99,107,49,56,69,114,52,113,51,101,103,69,99,47,111,79,43,109,104,76,100,75,103,82,121,104,100,78,70,105,97,99,67,48,114,108,79,67,98,104,78,86,122,52,72,57,70,110,65,89,103,68,66,118,85,51,81,73,105,111,90,108,74,70,76,74,116,115,111,72,89,82,68,102,105,90,111,85,121,73,120,113,67,116,82,112,86,108,65,78,113,48,69,85,52,100,65,112,106,114,116,103,101,122,80,70,97,100,53,83,49,57,87,103,106,107,99,48,104,78,86,110,117,70,52,72,106,86,65,54,67,55,81,114,83,73,98,121,108,66,43,111,90,101,51,97,72,103,66,115,113,108,78,113,75,89,72,52,56,106,88,121,74,75,77,117,65,98,105,121,86,74,56,75,122,97,66,51,101,82,99,48,112,103,57,86,119,81,52,110,105,70,114,121,73,54,56,113,105,79,105,51,65,98,106,119,100,115,102,110,65,116,107,48,98,67,106,84,76,74,75,114,54,109,114,68,57,103,56,105,113,47,83,47,66,56,49,104,103,117,79,77,108,81,84,110,86,121,71,52,48,119,65,99,106,110,109,103,115,67,78,69,83,68,114,106,109,101,55,119,102,102,116,80,52,80,55,83,80,52,78,51,67,74,90,100,118,122,111,78,121,71,113,50,99,47,72,87,79,88,74,71,115,118,86,103,43,82,65,47,107,50,77,67,47,119,78,54,73,50,89,65,50,80,116,56,71,107,65,65,65,65,65,83,85,86,79,82,75,53,67,89,73,73,61,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,57,52,52,52,50,59,99,111,108,111,114,58,35,102,50,100,101,100,101,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,98,99,99,100,49,125,46,106,113,45,105,99,111,110,45,115,117,99,99,101,115,115,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,68,115,83,85,82,66,86,69,104,76,89,50,65,89,66,102,81,77,103,102,47,47,47,51,80,56,43,47,101,118,65,73,103,118,65,47,70,115,73,70,43,66,97,118,89,68,68,87,77,66,71,114,111,97,83,77,77,66,105,69,56,86,67,55,65,90,68,114,73,70,97,77,70,110,105,105,51,65,90,84,106,85,103,115,85,85,87,85,68,65,56,79,100,65,72,54,105,81,98,81,69,104,119,52,72,121,71,115,80,69,99,75,66,88,66,73,67,52,65,82,104,101,120,52,71,52,66,115,106,109,119,101,85,49,115,111,73,70,97,71,103,47,87,116,111,70,90,82,73,90,100,69,118,73,77,104,120,107,67,67,106,88,73,86,115,65,84,86,54,103,70,71,65,67,115,52,82,115,119,48,69,71,103,73,73,72,51,81,74,89,74,103,72,83,65,82,81,90,68,114,87,65,66,43,106,97,119,122,103,115,43,81,50,85,79,52,57,68,55,106,110,82,83,82,71,111,69,70,82,73,76,99,100,109,69,77,87,71,73,48,99,109,48,74,74,50,81,112,89,65,49,82,68,118,99,109,122,74,69,87,104,65,66,104,68,47,112,113,114,76,48,83,48,67,87,117,65,66,75,103,110,82,107,105,57,108,76,115,101,83,55,103,50,65,108,113,119,72,87,81,83,75,72,52,111,75,76,114,73,76,112,82,71,104,69,81,67,119,50,76,105,82,85,73,97,52,108,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,61,61,41,59,99,111,108,111,114,58,35,100,102,102,48,100,56,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,99,55,54,51,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,54,101,57,99,54,125,47,42,33,32,76,105,116,121,32,45,32,118,50,46,52,46,48,32,45,32,50,48,49,57,45,48,56,45,49,48,10,42,32,104,116,116,112,58,47,47,115,111,114,103,97,108,108,97,46,99,111,109,47,108,105,116,121,47,10,42,32,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,53,45,50,48,49,57,32,74,97,110,32,83,111,114,103,97,108,108,97,59,32,76,105,99,101,110,115,101,100,32,77,73,84,32,42,47,46,108,105,116,121,123,122,45,105,110,100,101,120,58,57,57,57,48,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,58,35,48,98,48,98,48,98,59,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,48,44,48,44,48,44,48,46,57,41,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,111,112,97,99,105,116,121,58,48,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,45,111,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,125,46,108,105,116,121,46,108,105,116,121,45,111,112,101,110,101,100,123,111,112,97,99,105,116,121,58,49,125,46,108,105,116,121,46,108,105,116,121,45,99,108,111,115,101,100,123,111,112,97,99,105,116,121,58,48,125,46,108,105,116,121,32,42,123,45,119,101,98,107,105,116,45,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,45,109,111,122,45,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,46,108,105,116,121,45,119,114,97,112,123,122,45,105,110,100,101,120,58,57,57,57,48,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,125,46,108,105,116,121,45,119,114,97,112,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,39,39,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,49,48,48,37,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,48,46,50,53,101,109,125,46,108,105,116,121,45,108,111,97,100,101,114,123,122,45,105,110,100,101,120,58,57,57,57,49,59,99,111,108,111,114,58,35,102,102,102,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,109,97,114,103,105,110,45,116,111,112,58,45,48,46,56,101,109,59,119,105,100,116,104,58,49,48,48,37,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,102,111,110,116,45,115,105,122,101,58,49,52,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,65,114,105,97,108,44,72,101,108,118,101,116,105,99,97,44,115,97,110,115,45,115,101,114,105,102,59,111,112,97,99,105,116,121,58,48,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,45,111,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,125,46,108,105,116,121,45,108,111,97,100,105,110,103,32,46,108,105,116,121,45,108,111,97,100,101,114,123,111,112,97,99,105,116,121,58,49,125,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,123,122,45,105,110,100,101,120,58,57,57,57,50,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,104,101,105,103,104,116,58,49,48,48,37,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,125,46,108,105,116,121,45,99,111,110,116,101,110,116,123,122,45,105,110,100,101,120,58,57,57,57,51,59,119,105,100,116,104,58,49,48,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,45,109,115,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,45,111,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,45,111,45,116,114,97,110,115,105,116,105,111,110,58,45,111,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,44,32,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,44,32,45,111,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,125,46,108,105,116,121,45,108,111,97,100,105,110,103,32,46,108,105,116,121,45,99,111,110,116,101,110,116,44,46,108,105,116,121,45,99,108,111,115,101,100,32,46,108,105,116,121,45,99,111,110,116,101,110,116,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,59,45,109,115,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,59,45,111,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,125,46,108,105,116,121,45,99,111,110,116,101,110,116,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,39,39,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,108,101,102,116,58,48,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,114,105,103,104,116,58,48,59,119,105,100,116,104,58,97,117,116,111,59,104,101,105,103,104,116,58,97,117,116,111,59,122,45,105,110,100,101,120,58,45,49,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,125,46,108,105,116,121,45,99,108,111,115,101,123,122,45,105,110,100,101,120,58,57,57,57,52,59,119,105,100,116,104,58,51,53,112,120,59,104,101,105,103,104,116,58,51,53,112,120,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,114,105,103,104,116,58,48,59,116,111,112,58,48,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,48,59,99,111,108,111,114,58,35,102,102,102,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,115,105,122,101,58,51,53,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,65,114,105,97,108,44,66,97,115,107,101,114,118,105,108,108,101,44,109,111,110,111,115,112,97,99,101,59,108,105,110,101,45,104,101,105,103,104,116,58,51,53,112,120,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,49,112,120,32,50,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,114,100,101,114,58,48,59,98,97,99,107,103,114,111,117,110,100,58,110,111,110,101,59,111,117,116,108,105,110,101,58,110,111,110,101,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,125,46,108,105,116,121,45,99,108,111,115,101,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,123,98,111,114,100,101,114,58,48,59,112,97,100,100,105,110,103,58,48,125,46,108,105,116,121,45,99,108,111,115,101,58,104,111,118,101,114,44,46,108,105,116,121,45,99,108,111,115,101,58,102,111,99,117,115,44,46,108,105,116,121,45,99,108,111,115,101,58,97,99,116,105,118,101,44,46,108,105,116,121,45,99,108,111,115,101,58,118,105,115,105,116,101,100,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,48,59,99,111,108,111,114,58,35,102,102,102,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,115,105,122,101,58,51,53,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,65,114,105,97,108,44,66,97,115,107,101,114,118,105,108,108,101,44,109,111,110,111,115,112,97,99,101,59,108,105,110,101,45,104,101,105,103,104,116,58,51,53,112,120,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,49,112,120,32,50,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,114,100,101,114,58,48,59,98,97,99,107,103,114,111,117,110,100,58,110,111,110,101,59,111,117,116,108,105,110,101,58,110,111,110,101,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,125,46,108,105,116,121,45,99,108,111,115,101,58,97,99,116,105,118,101,123,116,111,112,58,49,112,120,125,46,108,105,116,121,45,105,109,97,103,101,32,105,109,103,123,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,105,110,101,45,104,101,105,103,104,116,58,48,59,98,111,114,100,101,114,58,48,125,46,108,105,116,121,45,105,102,114,97,109,101,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,121,111,117,116,117,98,101,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,118,105,109,101,111,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,102,97,99,101,98,111,111,107,118,105,100,101,111,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,103,111,111,103,108,101,109,97,112,115,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,123,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,57,54,52,112,120,125,46,108,105,116,121,45,105,102,114,97,109,101,45,99,111,110,116,97,105,110,101,114,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,116,111,112,58,53,54,46,50,53,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,108,108,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,90,40,48,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,90,40,48,41,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,108,105,116,121,45,105,102,114,97,109,101,45,99,111,110,116,97,105,110,101,114,32,105,102,114,97,109,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,97,99,107,103,114,111,117,110,100,58,35,48,48,48,125,46,108,105,116,121,45,104,105,100,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,42,58,102,111,99,117,115,32,123,10,32,32,32,32,111,117,116,108,105,110,101,58,32,48,59,10,125,10,10,46,105,110,102,111,45,105,99,111,110,32,123,10,32,32,32,32,119,105,100,116,104,58,32,49,114,101,109,59,10,32,32,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,48,46,50,114,101,109,59,10,32,32,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,10,32,32,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,32,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,98,97,115,101,54,52,44,80,72,78,50,90,121,66,52,98,87,120,117,99,122,48,105,97,72,82,48,99,68,111,118,76,51,100,51,100,121,53,51,77,121,53,118,99,109,99,118,77,106,65,119,77,67,57,122,100,109,99,105,73,72,104,116,98,71,53,122,79,110,104,115,97,87,53,114,80,83,74,111,100,72,82,119,79,105,56,118,100,51,100,51,76,110,99,122,76,109,57,121,90,121,56,120,79,84,107,53,76,51,104,115,97,87,53,114,73,105,66,52,80,83,73,119,99,72,103,105,73,72,107,57,73,106,66,119,101,67,73,75,73,67,65,103,73,67,66,50,97,87,86,51,81,109,57,52,80,83,73,119,73,68,65,103,78,68,73,50,76,106,89,50,78,121,65,48,77,106,89,117,78,106,89,51,73,105,66,122,100,72,108,115,90,84,48,105,90,87,53,104,89,109,120,108,76,87,74,104,89,50,116,110,99,109,57,49,98,109,81,54,98,109,86,51,73,68,65,103,77,67,65,48,77,106,89,117,78,106,89,51,73,68,81,121,78,105,52,50,78,106,99,55,73,105,66,109,97,87,120,115,80,83,73,106,90,109,90,109,73,106,52,75,80,71,99,43,67,105,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,80,72,74,108,89,51,81,103,101,68,48,105,77,84,107,121,73,105,66,53,80,83,73,120,79,84,73,105,73,72,100,112,90,72,82,111,80,83,73,48,77,105,52,50,78,106,99,105,73,71,104,108,97,87,100,111,100,68,48,105,77,84,73,52,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,119,89,88,82,111,73,71,81,57,73,107,48,121,77,84,77,117,77,122,77,122,76,68,66,68,79,84,85,117,78,68,89,51,76,68,65,115,77,67,119,53,78,83,52,48,78,106,99,115,77,67,119,121,77,84,77,117,77,122,77,122,99,122,107,49,76,106,81,50,78,121,119,121,77,84,77,117,77,122,77,122,76,68,73,120,77,121,52,122,77,122,77,115,77,106,69,122,76,106,77,122,77,49,77,48,77,106,89,117,78,106,89,51,76,68,77,122,77,83,52,121,76,68,81,121,78,105,52,50,78,106,99,115,77,106,69,122,76,106,77,122,77,119,111,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,85,122,77,122,77,83,52,121,76,68,65,115,77,106,69,122,76,106,77,122,77,121,119,119,101,105,66,78,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,106,76,84,107,48,76,106,65,52,76,68,65,116,77,84,99,119,76,106,89,50,78,121,48,51,78,105,52,49,79,68,99,116,77,84,99,119,76,106,89,50,78,121,48,120,78,122,65,117,78,106,89,51,85,122,69,120,79,83,52,121,78,84,77,115,78,68,73,117,78,106,89,51,76,68,73,120,77,121,52,122,77,122,77,115,78,68,73,117,78,106,89,51,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,66,84,77,122,103,48,76,68,69,120,79,83,52,121,78,84,77,115,77,122,103,48,76,68,73,120,77,121,52,122,77,122,78,84,77,122,65,51,76,106,81,120,77,121,119,122,79,68,81,115,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,54,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,121,90,87,78,48,73,72,103,57,73,106,69,53,77,105,73,103,101,84,48,105,77,84,65,50,76,106,89,50,78,121,73,103,100,50,108,107,100,71,103,57,73,106,81,121,76,106,89,50,78,121,73,103,97,71,86,112,90,50,104,48,80,83,73,48,77,105,52,50,78,106,99,105,76,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,76,50,99,43,67,105,65,103,73,67,65,56,76,50,99,43,67,106,119,118,90,122,52,75,80,67,57,122,100,109,99,43,67,103,61,61,41,59,10,32,32,32,32,102,105,108,116,101,114,58,32,98,114,105,103,104,116,110,101,115,115,40,54,53,37,41,59,10,125,10,10,46,105,110,102,111,45,105,99,111,110,58,104,111,118,101,114,32,123,10,32,32,32,32,99,111,108,111,114,58,32,105,110,104,101,114,105,116,59,10,125,10,10,46,109,111,100,97,108,45,116,105,116,108,101,32,123,10,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,99,97,108,99,40,49,48,48,37,32,45,32,50,114,101,109,41,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,10,32,32,32,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,10,125,10,10,10,46,112,97,116,104,45,114,111,119,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,45,109,115,45,102,108,101,120,98,111,120,59,10,32,32,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,10,32,32,32,32,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,32,115,116,97,114,116,59,10,32,32,32,32,97,108,105,103,110,45,105,116,101,109,115,58,32,102,108,101,120,45,115,116,97,114,116,59,10,125,10,10,46,116,97,103,45,99,111,110,116,97,105,110,101,114,32,123,10,32,32,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,48,46,51,114,101,109,59,10,125,10,10,46,112,97,116,104,45,108,105,110,101,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,66,66,66,59,10,32,32,32,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,10,32,32,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,119,114,97,112,59,10,125,10,10,97,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,48,48,66,67,68,52,59,10,125,10,10,98,111,100,121,32,123,10,32,32,32,32,111,118,101,114,102,108,111,119,45,121,58,32,115,99,114,111,108,108,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,98,108,97,99,107,59,10,125,10,10,46,112,114,111,103,114,101,115,115,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,125,10,10,46,99,97,114,100,44,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,50,49,50,49,50,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,49,112,120,59,10,32,32,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,10,125,10,10,46,116,97,98,108,101,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,125,10,10,46,116,97,98,108,101,32,116,100,44,32,46,116,97,98,108,101,32,116,104,32,123,10,32,32,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,10,125,10,10,46,116,97,98,108,101,32,116,104,101,97,100,32,116,104,32,123,10,32,32,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,49,112,120,32,115,111,108,105,100,32,35,54,52,54,52,54,52,59,10,125,10,10,46,109,111,100,97,108,45,104,101,97,100,101,114,32,46,99,108,111,115,101,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,32,32,32,32,116,101,120,116,45,115,104,97,100,111,119,58,32,110,111,110,101,59,10,125,10,10,46,109,111,100,97,108,45,104,101,97,100,101,114,32,123,10,32,32,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,49,112,120,32,115,111,108,105,100,32,35,54,52,54,52,54,52,59,10,125,10,10,46,115,117,98,45,100,111,99,117,109,101,110,116,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,51,55,52,55,52,70,32,33,105,109,112,111,114,116,97,110,116,59,10,125,10,10,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,115,117,98,45,100,111,99,117,109,101,110,116,32,123,10,32,32,32,32,98,111,114,100,101,114,45,116,111,112,58,32,49,112,120,32,115,111,108,105,100,32,35,54,52,54,52,54,52,32,33,105,109,112,111,114,116,97,110,116,59,10,125,10,10,46,115,117,98,45,100,111,99,117,109,101,110,116,32,46,116,101,120,116,45,109,117,116,101,100,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,56,97,57,52,57,99,32,33,105,109,112,111,114,116,97,110,116,59,10,125,10,10,10,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,50,49,50,49,50,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,10,32,32,32,32,98,111,114,100,101,114,45,116,111,112,58,32,49,112,120,32,115,111,108,105,100,32,35,52,50,52,50,52,50,59,10,32,32,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,110,111,110,101,59,10,32,32,32,32,98,111,114,100,101,114,45,108,101,102,116,58,32,110,111,110,101,59,10,32,32,32,32,98,111,114,100,101,114,45,114,105,103,104,116,58,32,110,111,110,101,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,46,50,53,114,101,109,32,48,46,53,114,101,109,59,10,125,10,10,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,123,10,32,32,32,32,98,111,114,100,101,114,45,116,111,112,58,32,110,111,110,101,59,10,125,10,10,46,110,97,118,98,97,114,45,98,114,97,110,100,32,123,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,46,55,53,114,101,109,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,59,10,32,32,32,32,99,111,108,111,114,58,32,35,102,53,102,53,102,53,59,10,125,10,10,46,110,97,118,98,97,114,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,53,52,54,98,55,97,59,10,125,10,10,97,58,104,111,118,101,114,44,46,98,116,110,58,104,111,118,101,114,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,102,102,102,59,10,125,10,10,46,110,97,118,98,97,114,32,115,112,97,110,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,101,101,101,59,10,125,10,10,46,100,111,99,117,109,101,110,116,32,123,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,46,53,114,101,109,59,10,125,10,10,46,100,111,99,117,109,101,110,116,32,112,32,123,10,32,32,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,48,59,10,125,10,10,46,100,111,99,117,109,101,110,116,58,104,111,118,101,114,32,112,32,123,10,32,32,32,32,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,32,117,110,100,101,114,108,105,110,101,59,10,125,10,10,46,98,97,100,103,101,45,118,105,100,101,111,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,50,55,55,54,49,59,10,125,10,10,46,98,97,100,103,101,45,105,109,97,103,101,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,65,65,57,57,67,57,59,10,125,10,10,46,98,97,100,103,101,45,97,117,100,105,111,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,48,48,65,68,69,70,59,10,125,10,10,46,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,50,49,50,53,50,57,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,66,48,66,69,67,53,59,10,125,10,10,46,98,97,100,103,101,45,116,101,120,116,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,65,65,66,51,67,59,10,125,10,10,46,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,32,123,10,32,32,32,32,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,32,110,111,110,101,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,46,55,53,114,101,109,59,10,10,32,32,32,32,98,111,116,116,111,109,58,32,117,110,115,101,116,59,10,32,32,32,32,116,111,112,58,32,48,59,10,32,32,32,32,108,101,102,116,58,32,117,110,115,101,116,59,10,32,32,32,32,114,105,103,104,116,58,32,117,110,115,101,116,59,10,125,10,10,46,102,105,108,101,45,116,105,116,108,101,32,123,10,32,32,32,32,119,105,100,116,104,58,32,49,48,48,37,59,10,32,32,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,104,101,105,103,104,116,58,32,49,46,49,114,101,109,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,48,112,116,59,10,32,32,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,119,114,97,112,59,10,32,32,32,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,10,32,32,32,32,99,111,108,111,114,58,32,35,48,48,66,67,68,52,59,10,125,10,10,46,98,97,100,103,101,32,123,10,32,32,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,51,112,120,59,10,125,10,10,46,98,97,100,103,101,45,117,115,101,114,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,50,49,50,53,50,57,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,125,10,10,46,102,105,116,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,10,32,32,32,32,109,105,110,45,119,105,100,116,104,58,32,54,52,112,120,59,10,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,49,48,48,37,59,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,49,55,53,112,120,59,10,32,32,32,32,109,97,114,103,105,110,58,32,48,32,97,117,116,111,32,48,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,51,112,120,32,51,112,120,32,48,59,10,32,32,32,32,119,105,100,116,104,58,32,97,117,116,111,59,10,32,32,32,32,104,101,105,103,104,116,58,32,97,117,116,111,59,10,125,10,10,46,102,105,116,45,115,109,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,10,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,54,52,112,120,59,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,54,52,112,120,59,10,32,32,32,32,109,97,114,103,105,110,58,32,48,32,97,117,116,111,59,10,32,32,32,32,119,105,100,116,104,58,32,97,117,116,111,59,10,32,32,32,32,104,101,105,103,104,116,58,32,97,117,116,111,59,10,125,10,10,46,97,117,100,105,111,45,102,105,116,32,123,10,32,32,32,32,104,101,105,103,104,116,58,32,51,57,112,120,59,10,32,32,32,32,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,32,98,111,116,116,111,109,59,10,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,108,105,110,101,59,10,32,32,32,32,119,105,100,116,104,58,32,49,48,48,37,59,10,125,10,10,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,32,49,53,48,48,112,120,41,32,123,10,32,32,32,32,46,99,111,110,116,97,105,110,101,114,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,49,52,52,48,112,120,59,10,32,32,32,32,125,10,10,32,32,32,32,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,32,123,10,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,50,48,37,32,33,105,109,112,111,114,116,97,110,116,59,10,32,32,32,32,125,10,10,32,32,32,32,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,50,48,37,59,10,32,32,32,32,125,10,125,10,10,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,32,49,56,48,48,112,120,41,32,123,10,32,32,32,32,46,99,111,110,116,97,105,110,101,114,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,49,53,53,48,112,120,59,10,32,32,32,32,125,10,125,10,10,109,97,114,107,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,114,103,98,97,40,50,53,49,44,32,49,57,49,44,32,52,49,44,32,48,46,50,53,41,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,49,112,120,32,48,59,10,32,32,32,32,99,111,108,111,114,58,32,105,110,104,101,114,105,116,59,10,125,10,10,46,99,111,110,116,101,110,116,45,100,105,118,32,109,97,114,107,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,114,103,98,97,40,50,53,49,44,32,49,57,49,44,32,52,49,44,32,48,46,52,48,41,59,10,32,32,32,32,99,111,108,111,114,58,32,119,104,105,116,101,59,10,125,10,10,10,46,99,111,110,116,101,110,116,45,100,105,118,32,123,10,32,32,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,32,77,101,110,108,111,44,32,77,111,110,97,99,111,44,32,67,111,110,115,111,108,97,115,44,32,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,32,34,67,111,117,114,105,101,114,32,78,101,119,34,44,32,109,111,110,111,115,112,97,99,101,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,49,101,109,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,51,55,52,55,52,70,59,10,32,32,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,54,49,54,49,54,49,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,52,112,120,59,10,32,32,32,32,109,97,114,103,105,110,58,32,51,112,120,59,10,32,32,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,114,109,97,108,59,10,32,32,32,32,99,111,108,111,114,58,32,114,103,98,40,50,50,52,44,32,50,50,52,44,32,50,50,52,41,59,10,125,10,10,46,105,114,115,45,115,105,110,103,108,101,44,32,46,105,114,115,45,102,114,111,109,44,32,46,105,114,115,45,116,111,32,123,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,48,48,66,67,68,52,59,10,125,10,10,46,105,114,115,45,115,108,105,100,101,114,32,123,10,32,32,32,32,99,117,114,115,111,114,58,32,99,111,108,45,114,101,115,105,122,101,59,10,125,10,10,46,105,114,115,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,32,32,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,49,101,109,59,10,125,10,10,46,99,117,115,116,111,109,45,115,101,108,101,99,116,32,123,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,51,55,52,55,52,70,59,10,32,32,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,54,49,54,49,54,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,98,100,98,100,98,100,59,10,125,10,10,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,32,123,10,32,32,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,35,55,53,55,53,55,53,59,10,32,32,32,32,111,117,116,108,105,110,101,58,32,48,59,10,32,32,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,32,49,50,51,44,32,50,53,53,44,32,46,50,53,41,59,10,125,10,10,111,112,116,105,111,110,32,123,10,32,32,32,32,111,117,116,108,105,110,101,58,32,110,111,110,101,59,10,125,10,10,46,102,111,114,109,45,99,111,110,116,114,111,108,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,51,55,52,55,52,70,59,10,32,32,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,54,49,54,49,54,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,102,102,102,59,10,125,10,10,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,53,52,54,69,55,65,59,10,32,32,32,32,99,111,108,111,114,58,32,35,102,102,102,59,10,125,10,10,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,50,54,51,50,51,56,59,10,32,32,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,54,49,54,49,54,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,100,98,100,98,100,98,59,10,125,10,10,58,58,112,108,97,99,101,104,111,108,100,101,114,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,66,68,66,68,66,68,32,33,105,109,112,111,114,116,97,110,116,59,10,32,32,32,32,111,112,97,99,105,116,121,58,32,49,59,10,125,10,10,10,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,119,104,111,108,101,114,111,119,44,32,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,32,43,32,46,119,104,111,108,101,114,111,119,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,110,111,110,101,59,10,125,10,10,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,101,120,112,97,110,100,58,58,98,101,102,111,114,101,44,32,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,111,108,108,97,112,115,101,58,58,98,101,102,111,114,101,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,98,108,97,99,107,59,10,125,10,10,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,101,101,101,59,10,125,10,10,46,105,110,115,112,105,114,101,45,116,114,101,101,32,123,10,32,32,32,32,102,111,110,116,45,119,101,105,103,104,116,58,32,52,48,48,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,52,112,120,59,10,32,32,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,72,101,108,118,101,116,105,99,97,44,32,78,117,101,117,101,44,32,86,101,114,100,97,110,97,44,32,115,97,110,115,45,115,101,114,105,102,59,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,51,53,48,112,120,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,59,10,125,10,10,46,112,97,103,101,45,105,110,100,105,99,97,116,111,114,32,123,10,32,32,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,46,53,114,101,109,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,50,49,50,49,50,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,101,101,101,59,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,125,10,10,46,98,116,110,45,120,115,32,123,10,32,32,32,32,112,97,100,100,105,110,103,58,32,46,49,114,101,109,32,46,51,114,101,109,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,46,56,55,53,114,101,109,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,46,50,114,101,109,59,10,125,10,10,46,98,116,110,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,101,101,101,59,10,125,10,10,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,125,10,10,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,105,116,101,109,46,115,104,111,119,32,46,110,97,118,45,108,105,110,107,44,32,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,50,49,50,49,50,49,59,10,32,32,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,35,54,49,54,49,54,49,32,35,54,49,54,49,54,49,32,35,50,49,50,49,50,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,125,10,10,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,32,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,32,123,10,32,32,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,35,54,49,54,49,54,49,32,35,54,49,54,49,54,49,32,35,50,49,50,49,50,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,125,10,10,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,32,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,32,123,10,32,32,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,35,101,48,101,48,101,48,32,35,101,48,101,48,101,48,32,35,50,49,50,49,50,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,125,10,10,46,110,97,118,45,116,97,98,115,32,123,10,32,32,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,35,54,49,54,49,54,49,59,10,125,10,10,46,110,97,118,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,48,46,53,114,101,109,59,10,125,10,10,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,32,56,48,48,112,120,41,32,123,10,32,32,32,32,35,116,114,101,101,84,97,98,115,32,123,10,32,32,32,32,32,32,32,32,102,108,101,120,45,98,97,115,105,115,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,32,32,32,32,102,108,101,120,45,103,114,111,119,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,125,10,125,10,10,46,108,105,115,116,45,103,114,111,117,112,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,125,10,10,46,119,114,97,112,112,101,114,45,115,109,32,123,10,32,32,32,32,109,105,110,45,119,105,100,116,104,58,32,54,52,112,120,59,10,125,10,10,46,109,101,100,105,97,45,101,120,112,97,110,100,101,100,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,104,101,114,105,116,59,10,125,10,10,46,109,101,100,105,97,45,101,120,112,97,110,100,101,100,32,46,102,105,116,32,123,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,50,53,48,112,120,59,10,125,10,10,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,32,54,53,48,112,120,41,32,123,10,32,32,32,32,46,109,101,100,105,97,45,101,120,112,97,110,100,101,100,32,46,102,105,116,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,110,111,110,101,59,10,32,32,32,32,125,10,10,32,32,32,32,46,116,97,103,108,105,110,101,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,10,32,32,32,32,125,10,125,10,10,46,118,101,114,115,105,111,110,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,48,48,66,67,68,52,59,10,32,32,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,45,49,56,112,120,59,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,45,49,52,112,120,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,49,112,120,59,10,125,10,10,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,32,56,48,48,112,120,41,32,123,10,32,32,32,32,46,115,109,97,108,108,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,10,32,32,32,32,125,10,32,32,32,32,46,108,97,114,103,101,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,125,10,125,10,10,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,32,56,48,49,112,120,41,32,123,10,32,32,32,32,46,115,109,97,108,108,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,125,10,32,32,32,32,46,108,97,114,103,101,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,10,32,32,32,32,125,10,125,10,10,35,115,101,97,114,99,104,66,97,114,32,123,10,32,32,32,32,98,111,114,100,101,114,45,114,105,103,104,116,58,32,110,111,110,101,59,10,125,10,10,35,112,97,116,104,84,114,101,101,32,46,116,105,116,108,101,32,123,10,32,32,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,10,125,10,10,115,118,103,32,123,10,32,32,32,32,102,105,108,108,58,32,119,104,105,116,101,59,10,125,10,10,46,112,108,97,121,32,123,10,32,32,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,10,32,32,32,32,119,105,100,116,104,58,32,53,48,112,120,59,10,32,32,32,32,104,101,105,103,104,116,58,32,53,48,112,120,59,10,32,32,32,32,108,101,102,116,58,32,53,48,37,59,10,32,32,32,32,116,111,112,58,32,53,48,37,59,10,32,32,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,10,32,32,32,32,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,32,110,111,110,101,59,10,125,10,10,46,112,108,97,121,32,115,118,103,32,123,10,32,32,32,32,102,105,108,108,58,32,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,55,41,59,10,125,10,10,46,105,109,103,45,119,114,97,112,112,101,114,58,104,111,118,101,114,32,115,118,103,32,123,10,32,32,32,32,102,105,108,108,58,32,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,49,41,59,10,125,10,10,46,112,111,105,110,116,101,114,32,123,10,32,32,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,10,125,10,10,46,115,116,97,116,115,45,99,97,114,100,32,123,10,32,32,32,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,49,101,109,59,10,10,32,32,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,46,49,50,53,114,101,109,32,46,50,53,114,101,109,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,48,56,41,32,33,105,109,112,111,114,116,97,110,116,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,10,32,32,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,10,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,50,49,50,49,50,49,59,10,125,10,10,46,103,114,97,112,104,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,108,105,110,101,45,98,108,111,99,107,59,10,32,32,32,32,119,105,100,116,104,58,32,52,48,37,59,10,125,10,10,46,102,117,108,108,45,115,99,114,101,101,110,32,123,10,32,32,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,10,32,32,32,32,108,101,102,116,58,32,48,59,10,32,32,32,32,119,105,100,116,104,58,32,49,48,48,37,59,10,125,10,10,46,115,116,97,116,115,45,98,116,110,32,123,10,32,32,32,32,102,108,111,97,116,58,32,114,105,103,104,116,59,10,32,32,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,49,48,112,120,59,10,125,10,10,35,103,114,97,112,104,115,45,99,97,114,100,32,115,118,103,32,116,101,120,116,32,123,10,32,32,32,32,102,105,108,108,58,32,35,101,101,101,59,10,125,10}; +char bundle_js[680375] = {47,42,33,32,106,81,117,101,114,121,32,118,51,46,52,46,49,32,124,32,40,99,41,32,74,83,32,70,111,117,110,100,97,116,105,111,110,32,97,110,100,32,111,116,104,101,114,32,99,111,110,116,114,105,98,117,116,111,114,115,32,124,32,106,113,117,101,114,121,46,111,114,103,47,108,105,99,101,110,115,101,32,42,47,10,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,109,111,100,117,108,101,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,101,46,100,111,99,117,109,101,110,116,63,116,40,101,44,33,48,41,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,101,46,100,111,99,117,109,101,110,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,106,81,117,101,114,121,32,114,101,113,117,105,114,101,115,32,97,32,119,105,110,100,111,119,32,119,105,116,104,32,97,32,100,111,99,117,109,101,110,116,34,41,59,114,101,116,117,114,110,32,116,40,101,41,125,58,116,40,101,41,125,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,116,104,105,115,44,102,117,110,99,116,105,111,110,40,67,44,101,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,116,61,91,93,44,69,61,67,46,100,111,99,117,109,101,110,116,44,114,61,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,44,115,61,116,46,115,108,105,99,101,44,103,61,116,46,99,111,110,99,97,116,44,117,61,116,46,112,117,115,104,44,105,61,116,46,105,110,100,101,120,79,102,44,110,61,123,125,44,111,61,110,46,116,111,83,116,114,105,110,103,44,118,61,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,44,97,61,118,46,116,111,83,116,114,105,110,103,44,108,61,97,46,99,97,108,108,40,79,98,106,101,99,116,41,44,121,61,123,125,44,109,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,38,38,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,101,46,110,111,100,101,84,121,112,101,125,44,120,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,101,38,38,101,61,61,61,101,46,119,105,110,100,111,119,125,44,99,61,123,116,121,112,101,58,33,48,44,115,114,99,58,33,48,44,110,111,110,99,101,58,33,48,44,110,111,77,111,100,117,108,101,58,33,48,125,59,102,117,110,99,116,105,111,110,32,98,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,40,110,61,110,124,124,69,41,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,99,114,105,112,116,34,41,59,105,102,40,111,46,116,101,120,116,61,101,44,116,41,102,111,114,40,114,32,105,110,32,99,41,40,105,61,116,91,114,93,124,124,116,46,103,101,116,65,116,116,114,105,98,117,116,101,38,38,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,114,41,41,38,38,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,114,44,105,41,59,110,46,104,101,97,100,46,97,112,112,101,110,100,67,104,105,108,100,40,111,41,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,111,41,125,102,117,110,99,116,105,111,110,32,119,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,63,101,43,34,34,58,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,110,91,111,46,99,97,108,108,40,101,41,93,124,124,34,111,98,106,101,99,116,34,58,116,121,112,101,111,102,32,101,125,118,97,114,32,102,61,34,51,46,52,46,49,34,44,107,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,110,101,119,32,107,46,102,110,46,105,110,105,116,40,101,44,116,41,125,44,112,61,47,94,91,92,115,92,117,70,69,70,70,92,120,65,48,93,43,124,91,92,115,92,117,70,69,70,70,92,120,65,48,93,43,36,47,103,59,102,117,110,99,116,105,111,110,32,100,40,101,41,123,118,97,114,32,116,61,33,33,101,38,38,34,108,101,110,103,116,104,34,105,110,32,101,38,38,101,46,108,101,110,103,116,104,44,110,61,119,40,101,41,59,114,101,116,117,114,110,33,109,40,101,41,38,38,33,120,40,101,41,38,38,40,34,97,114,114,97,121,34,61,61,61,110,124,124,48,61,61,61,116,124,124,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,38,38,48,60,116,38,38,116,45,49,32,105,110,32,101,41,125,107,46,102,110,61,107,46,112,114,111,116,111,116,121,112,101,61,123,106,113,117,101,114,121,58,102,44,99,111,110,115,116,114,117,99,116,111,114,58,107,44,108,101,110,103,116,104,58,48,44,116,111,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,46,99,97,108,108,40,116,104,105,115,41,125,44,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,63,115,46,99,97,108,108,40,116,104,105,115,41,58,101,60,48,63,116,104,105,115,91,101,43,116,104,105,115,46,108,101,110,103,116,104,93,58,116,104,105,115,91,101,93,125,44,112,117,115,104,83,116,97,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,46,109,101,114,103,101,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,41,44,101,41,59,114,101,116,117,114,110,32,116,46,112,114,101,118,79,98,106,101,99,116,61,116,104,105,115,44,116,125,44,101,97,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,101,97,99,104,40,116,104,105,115,44,101,41,125,44,109,97,112,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,107,46,109,97,112,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,110,46,99,97,108,108,40,101,44,116,44,101,41,125,41,41,125,44,115,108,105,99,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,115,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,44,102,105,114,115,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,113,40,48,41,125,44,108,97,115,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,113,40,45,49,41,125,44,101,113,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,108,101,110,103,116,104,44,110,61,43,101,43,40,101,60,48,63,116,58,48,41,59,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,48,60,61,110,38,38,110,60,116,63,91,116,104,105,115,91,110,93,93,58,91,93,41,125,44,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,114,101,118,79,98,106,101,99,116,124,124,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,41,125,44,112,117,115,104,58,117,44,115,111,114,116,58,116,46,115,111,114,116,44,115,112,108,105,99,101,58,116,46,115,112,108,105,99,101,125,44,107,46,101,120,116,101,110,100,61,107,46,102,110,46,101,120,116,101,110,100,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,44,110,44,114,44,105,44,111,44,97,61,97,114,103,117,109,101,110,116,115,91,48,93,124,124,123,125,44,115,61,49,44,117,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,108,61,33,49,59,102,111,114,40,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,97,38,38,40,108,61,97,44,97,61,97,114,103,117,109,101,110,116,115,91,115,93,124,124,123,125,44,115,43,43,41,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,97,124,124,109,40,97,41,124,124,40,97,61,123,125,41,44,115,61,61,61,117,38,38,40,97,61,116,104,105,115,44,115,45,45,41,59,115,60,117,59,115,43,43,41,105,102,40,110,117,108,108,33,61,40,101,61,97,114,103,117,109,101,110,116,115,91,115,93,41,41,102,111,114,40,116,32,105,110,32,101,41,114,61,101,91,116,93,44,34,95,95,112,114,111,116,111,95,95,34,33,61,61,116,38,38,97,33,61,61,114,38,38,40,108,38,38,114,38,38,40,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,114,41,124,124,40,105,61,65,114,114,97,121,46,105,115,65,114,114,97,121,40,114,41,41,41,63,40,110,61,97,91,116,93,44,111,61,105,38,38,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,63,91,93,58,105,124,124,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,110,41,63,110,58,123,125,44,105,61,33,49,44,97,91,116,93,61,107,46,101,120,116,101,110,100,40,108,44,111,44,114,41,41,58,118,111,105,100,32,48,33,61,61,114,38,38,40,97,91,116,93,61,114,41,41,59,114,101,116,117,114,110,32,97,125,44,107,46,101,120,116,101,110,100,40,123,101,120,112,97,110,100,111,58,34,106,81,117,101,114,121,34,43,40,102,43,77,97,116,104,46,114,97,110,100,111,109,40,41,41,46,114,101,112,108,97,99,101,40,47,92,68,47,103,44,34,34,41,44,105,115,82,101,97,100,121,58,33,48,44,101,114,114,111,114,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,101,41,125,44,110,111,111,112,58,102,117,110,99,116,105,111,110,40,41,123,125,44,105,115,80,108,97,105,110,79,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,59,114,101,116,117,114,110,33,40,33,101,124,124,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,33,61,61,111,46,99,97,108,108,40,101,41,41,38,38,40,33,40,116,61,114,40,101,41,41,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,40,110,61,118,46,99,97,108,108,40,116,44,34,99,111,110,115,116,114,117,99,116,111,114,34,41,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,41,38,38,97,46,99,97,108,108,40,110,41,61,61,61,108,41,125,44,105,115,69,109,112,116,121,79,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,102,111,114,40,116,32,105,110,32,101,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,44,103,108,111,98,97,108,69,118,97,108,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,98,40,101,44,123,110,111,110,99,101,58,116,38,38,116,46,110,111,110,99,101,125,41,125,44,101,97,99,104,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,48,59,105,102,40,100,40,101,41,41,123,102,111,114,40,110,61,101,46,108,101,110,103,116,104,59,114,60,110,59,114,43,43,41,105,102,40,33,49,61,61,61,116,46,99,97,108,108,40,101,91,114,93,44,114,44,101,91,114,93,41,41,98,114,101,97,107,125,101,108,115,101,32,102,111,114,40,114,32,105,110,32,101,41,105,102,40,33,49,61,61,61,116,46,99,97,108,108,40,101,91,114,93,44,114,44,101,91,114,93,41,41,98,114,101,97,107,59,114,101,116,117,114,110,32,101,125,44,116,114,105,109,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,63,34,34,58,40,101,43,34,34,41,46,114,101,112,108,97,99,101,40,112,44,34,34,41,125,44,109,97,107,101,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,124,124,91,93,59,114,101,116,117,114,110,32,110,117,108,108,33,61,101,38,38,40,100,40,79,98,106,101,99,116,40,101,41,41,63,107,46,109,101,114,103,101,40,110,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,91,101,93,58,101,41,58,117,46,99,97,108,108,40,110,44,101,41,41,44,110,125,44,105,110,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,45,49,58,105,46,99,97,108,108,40,116,44,101,44,110,41,125,44,109,101,114,103,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,43,116,46,108,101,110,103,116,104,44,114,61,48,44,105,61,101,46,108,101,110,103,116,104,59,114,60,110,59,114,43,43,41,101,91,105,43,43,93,61,116,91,114,93,59,114,101,116,117,114,110,32,101,46,108,101,110,103,116,104,61,105,44,101,125,44,103,114,101,112,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,61,91,93,44,105,61,48,44,111,61,101,46,108,101,110,103,116,104,44,97,61,33,110,59,105,60,111,59,105,43,43,41,33,116,40,101,91,105,93,44,105,41,33,61,61,97,38,38,114,46,112,117,115,104,40,101,91,105,93,41,59,114,101,116,117,114,110,32,114,125,44,109,97,112,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,48,44,97,61,91,93,59,105,102,40,100,40,101,41,41,102,111,114,40,114,61,101,46,108,101,110,103,116,104,59,111,60,114,59,111,43,43,41,110,117,108,108,33,61,40,105,61,116,40,101,91,111,93,44,111,44,110,41,41,38,38,97,46,112,117,115,104,40,105,41,59,101,108,115,101,32,102,111,114,40,111,32,105,110,32,101,41,110,117,108,108,33,61,40,105,61,116,40,101,91,111,93,44,111,44,110,41,41,38,38,97,46,112,117,115,104,40,105,41,59,114,101,116,117,114,110,32,103,46,97,112,112,108,121,40,91,93,44,97,41,125,44,103,117,105,100,58,49,44,115,117,112,112,111,114,116,58,121,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,40,107,46,102,110,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,61,116,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,41,44,107,46,101,97,99,104,40,34,66,111,111,108,101,97,110,32,78,117,109,98,101,114,32,83,116,114,105,110,103,32,70,117,110,99,116,105,111,110,32,65,114,114,97,121,32,68,97,116,101,32,82,101,103,69,120,112,32,79,98,106,101,99,116,32,69,114,114,111,114,32,83,121,109,98,111,108,34,46,115,112,108,105,116,40,34,32,34,41,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,110,91,34,91,111,98,106,101,99,116,32,34,43,116,43,34,93,34,93,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,59,118,97,114,32,104,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,44,100,44,98,44,111,44,105,44,104,44,102,44,103,44,119,44,117,44,108,44,84,44,67,44,97,44,69,44,118,44,115,44,99,44,121,44,107,61,34,115,105,122,122,108,101,34,43,49,42,110,101,119,32,68,97,116,101,44,109,61,110,46,100,111,99,117,109,101,110,116,44,83,61,48,44,114,61,48,44,112,61,117,101,40,41,44,120,61,117,101,40,41,44,78,61,117,101,40,41,44,65,61,117,101,40,41,44,68,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,101,61,61,61,116,38,38,40,108,61,33,48,41,44,48,125,44,106,61,123,125,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,44,116,61,91,93,44,113,61,116,46,112,111,112,44,76,61,116,46,112,117,115,104,44,72,61,116,46,112,117,115,104,44,79,61,116,46,115,108,105,99,101,44,80,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,44,114,61,101,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,105,102,40,101,91,110,93,61,61,61,116,41,114,101,116,117,114,110,32,110,59,114,101,116,117,114,110,45,49,125,44,82,61,34,99,104,101,99,107,101,100,124,115,101,108,101,99,116,101,100,124,97,115,121,110,99,124,97,117,116,111,102,111,99,117,115,124,97,117,116,111,112,108,97,121,124,99,111,110,116,114,111,108,115,124,100,101,102,101,114,124,100,105,115,97,98,108,101,100,124,104,105,100,100,101,110,124,105,115,109,97,112,124,108,111,111,112,124,109,117,108,116,105,112,108,101,124,111,112,101,110,124,114,101,97,100,111,110,108,121,124,114,101,113,117,105,114,101,100,124,115,99,111,112,101,100,34,44,77,61,34,91,92,92,120,50,48,92,92,116,92,92,114,92,92,110,92,92,102,93,34,44,73,61,34,40,63,58,92,92,92,92,46,124,91,92,92,119,45,93,124,91,94,92,48,45,92,92,120,97,48,93,41,43,34,44,87,61,34,92,92,91,34,43,77,43,34,42,40,34,43,73,43,34,41,40,63,58,34,43,77,43,34,42,40,91,42,94,36,124,33,126,93,63,61,41,34,43,77,43,34,42,40,63,58,39,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,39,93,41,42,41,39,124,92,34,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,92,34,93,41,42,41,92,34,124,40,34,43,73,43,34,41,41,124,41,34,43,77,43,34,42,92,92,93,34,44,36,61,34,58,40,34,43,73,43,34,41,40,63,58,92,92,40,40,40,39,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,39,93,41,42,41,39,124,92,34,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,92,34,93,41,42,41,92,34,41,124,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,40,41,91,92,92,93,93,124,34,43,87,43,34,41,42,41,124,46,42,41,92,92,41,124,41,34,44,70,61,110,101,119,32,82,101,103,69,120,112,40,77,43,34,43,34,44,34,103,34,41,44,66,61,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,77,43,34,43,124,40,40,63,58,94,124,91,94,92,92,92,92,93,41,40,63,58,92,92,92,92,46,41,42,41,34,43,77,43,34,43,36,34,44,34,103,34,41,44,95,61,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,77,43,34,42,44,34,43,77,43,34,42,34,41,44,122,61,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,77,43,34,42,40,91,62,43,126,93,124,34,43,77,43,34,41,34,43,77,43,34,42,34,41,44,85,61,110,101,119,32,82,101,103,69,120,112,40,77,43,34,124,62,34,41,44,88,61,110,101,119,32,82,101,103,69,120,112,40,36,41,44,86,61,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,73,43,34,36,34,41,44,71,61,123,73,68,58,110,101,119,32,82,101,103,69,120,112,40,34,94,35,40,34,43,73,43,34,41,34,41,44,67,76,65,83,83,58,110,101,119,32,82,101,103,69,120,112,40,34,94,92,92,46,40,34,43,73,43,34,41,34,41,44,84,65,71,58,110,101,119,32,82,101,103,69,120,112,40,34,94,40,34,43,73,43,34,124,91,42,93,41,34,41,44,65,84,84,82,58,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,87,41,44,80,83,69,85,68,79,58,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,36,41,44,67,72,73,76,68,58,110,101,119,32,82,101,103,69,120,112,40,34,94,58,40,111,110,108,121,124,102,105,114,115,116,124,108,97,115,116,124,110,116,104,124,110,116,104,45,108,97,115,116,41,45,40,99,104,105,108,100,124,111,102,45,116,121,112,101,41,40,63,58,92,92,40,34,43,77,43,34,42,40,101,118,101,110,124,111,100,100,124,40,40,91,43,45,93,124,41,40,92,92,100,42,41,110,124,41,34,43,77,43,34,42,40,63,58,40,91,43,45,93,124,41,34,43,77,43,34,42,40,92,92,100,43,41,124,41,41,34,43,77,43,34,42,92,92,41,124,41,34,44,34,105,34,41,44,98,111,111,108,58,110,101,119,32,82,101,103,69,120,112,40,34,94,40,63,58,34,43,82,43,34,41,36,34,44,34,105,34,41,44,110,101,101,100,115,67,111,110,116,101,120,116,58,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,77,43,34,42,91,62,43,126,93,124,58,40,101,118,101,110,124,111,100,100,124,101,113,124,103,116,124,108,116,124,110,116,104,124,102,105,114,115,116,124,108,97,115,116,41,40,63,58,92,92,40,34,43,77,43,34,42,40,40,63,58,45,92,92,100,41,63,92,92,100,42,41,34,43,77,43,34,42,92,92,41,124,41,40,63,61,91,94,45,93,124,36,41,34,44,34,105,34,41,125,44,89,61,47,72,84,77,76,36,47,105,44,81,61,47,94,40,63,58,105,110,112,117,116,124,115,101,108,101,99,116,124,116,101,120,116,97,114,101,97,124,98,117,116,116,111,110,41,36,47,105,44,74,61,47,94,104,92,100,36,47,105,44,75,61,47,94,91,94,123,93,43,92,123,92,115,42,92,91,110,97,116,105,118,101,32,92,119,47,44,90,61,47,94,40,63,58,35,40,91,92,119,45,93,43,41,124,40,92,119,43,41,124,92,46,40,91,92,119,45,93,43,41,41,36,47,44,101,101,61,47,91,43,126,93,47,44,116,101,61,110,101,119,32,82,101,103,69,120,112,40,34,92,92,92,92,40,91,92,92,100,97,45,102,93,123,49,44,54,125,34,43,77,43,34,63,124,40,34,43,77,43,34,41,124,46,41,34,44,34,105,103,34,41,44,110,101,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,34,48,120,34,43,116,45,54,53,53,51,54,59,114,101,116,117,114,110,32,114,33,61,114,124,124,110,63,116,58,114,60,48,63,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,40,114,43,54,53,53,51,54,41,58,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,40,114,62,62,49,48,124,53,53,50,57,54,44,49,48,50,51,38,114,124,53,54,51,50,48,41,125,44,114,101,61,47,40,91,92,48,45,92,120,49,102,92,120,55,102,93,124,94,45,63,92,100,41,124,94,45,36,124,91,94,92,48,45,92,120,49,102,92,120,55,102,45,92,117,70,70,70,70,92,119,45,93,47,103,44,105,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,63,34,92,48,34,61,61,61,101,63,34,92,117,102,102,102,100,34,58,101,46,115,108,105,99,101,40,48,44,45,49,41,43,34,92,92,34,43,101,46,99,104,97,114,67,111,100,101,65,116,40,101,46,108,101,110,103,116,104,45,49,41,46,116,111,83,116,114,105,110,103,40,49,54,41,43,34,32,34,58,34,92,92,34,43,101,125,44,111,101,61,102,117,110,99,116,105,111,110,40,41,123,84,40,41,125,44,97,101,61,98,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,48,61,61,61,101,46,100,105,115,97,98,108,101,100,38,38,34,102,105,101,108,100,115,101,116,34,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,44,123,100,105,114,58,34,112,97,114,101,110,116,78,111,100,101,34,44,110,101,120,116,58,34,108,101,103,101,110,100,34,125,41,59,116,114,121,123,72,46,97,112,112,108,121,40,116,61,79,46,99,97,108,108,40,109,46,99,104,105,108,100,78,111,100,101,115,41,44,109,46,99,104,105,108,100,78,111,100,101,115,41,44,116,91,109,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,93,46,110,111,100,101,84,121,112,101,125,99,97,116,99,104,40,101,41,123,72,61,123,97,112,112,108,121,58,116,46,108,101,110,103,116,104,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,76,46,97,112,112,108,121,40,101,44,79,46,99,97,108,108,40,116,41,41,125,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,101,46,108,101,110,103,116,104,44,114,61,48,59,119,104,105,108,101,40,101,91,110,43,43,93,61,116,91,114,43,43,93,41,59,101,46,108,101,110,103,116,104,61,110,45,49,125,125,125,102,117,110,99,116,105,111,110,32,115,101,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,44,99,44,102,61,101,38,38,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,112,61,101,63,101,46,110,111,100,101,84,121,112,101,58,57,59,105,102,40,110,61,110,124,124,91,93,44,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,116,124,124,33,116,124,124,49,33,61,61,112,38,38,57,33,61,61,112,38,38,49,49,33,61,61,112,41,114,101,116,117,114,110,32,110,59,105,102,40,33,114,38,38,40,40,101,63,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,58,109,41,33,61,61,67,38,38,84,40,101,41,44,101,61,101,124,124,67,44,69,41,41,123,105,102,40,49,49,33,61,61,112,38,38,40,117,61,90,46,101,120,101,99,40,116,41,41,41,105,102,40,105,61,117,91,49,93,41,123,105,102,40,57,61,61,61,112,41,123,105,102,40,33,40,97,61,101,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,105,41,41,41,114,101,116,117,114,110,32,110,59,105,102,40,97,46,105,100,61,61,61,105,41,114,101,116,117,114,110,32,110,46,112,117,115,104,40,97,41,44,110,125,101,108,115,101,32,105,102,40,102,38,38,40,97,61,102,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,105,41,41,38,38,121,40,101,44,97,41,38,38,97,46,105,100,61,61,61,105,41,114,101,116,117,114,110,32,110,46,112,117,115,104,40,97,41,44,110,125,101,108,115,101,123,105,102,40,117,91,50,93,41,114,101,116,117,114,110,32,72,46,97,112,112,108,121,40,110,44,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,116,41,41,44,110,59,105,102,40,40,105,61,117,91,51,93,41,38,38,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,38,38,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,41,114,101,116,117,114,110,32,72,46,97,112,112,108,121,40,110,44,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,40,105,41,41,44,110,125,105,102,40,100,46,113,115,97,38,38,33,65,91,116,43,34,32,34,93,38,38,40,33,118,124,124,33,118,46,116,101,115,116,40,116,41,41,38,38,40,49,33,61,61,112,124,124,34,111,98,106,101,99,116,34,33,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,41,123,105,102,40,99,61,116,44,102,61,101,44,49,61,61,61,112,38,38,85,46,116,101,115,116,40,116,41,41,123,40,115,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,41,41,63,115,61,115,46,114,101,112,108,97,99,101,40,114,101,44,105,101,41,58,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,44,115,61,107,41,44,111,61,40,108,61,104,40,116,41,41,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,108,91,111,93,61,34,35,34,43,115,43,34,32,34,43,120,101,40,108,91,111,93,41,59,99,61,108,46,106,111,105,110,40,34,44,34,41,44,102,61,101,101,46,116,101,115,116,40,116,41,38,38,121,101,40,101,46,112,97,114,101,110,116,78,111,100,101,41,124,124,101,125,116,114,121,123,114,101,116,117,114,110,32,72,46,97,112,112,108,121,40,110,44,102,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,99,41,41,44,110,125,99,97,116,99,104,40,101,41,123,65,40,116,44,33,48,41,125,102,105,110,97,108,108,121,123,115,61,61,61,107,38,38,101,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,105,100,34,41,125,125,125,114,101,116,117,114,110,32,103,40,116,46,114,101,112,108,97,99,101,40,66,44,34,36,49,34,41,44,101,44,110,44,114,41,125,102,117,110,99,116,105,111,110,32,117,101,40,41,123,118,97,114,32,114,61,91,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,101,40,116,44,110,41,123,114,101,116,117,114,110,32,114,46,112,117,115,104,40,116,43,34,32,34,41,62,98,46,99,97,99,104,101,76,101,110,103,116,104,38,38,100,101,108,101,116,101,32,101,91,114,46,115,104,105,102,116,40,41,93,44,101,91,116,43,34,32,34,93,61,110,125,125,102,117,110,99,116,105,111,110,32,108,101,40,101,41,123,114,101,116,117,114,110,32,101,91,107,93,61,33,48,44,101,125,102,117,110,99,116,105,111,110,32,99,101,40,101,41,123,118,97,114,32,116,61,67,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,102,105,101,108,100,115,101,116,34,41,59,116,114,121,123,114,101,116,117,114,110,33,33,101,40,116,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,33,49,125,102,105,110,97,108,108,121,123,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,41,44,116,61,110,117,108,108,125,125,102,117,110,99,116,105,111,110,32,102,101,40,101,44,116,41,123,118,97,114,32,110,61,101,46,115,112,108,105,116,40,34,124,34,41,44,114,61,110,46,108,101,110,103,116,104,59,119,104,105,108,101,40,114,45,45,41,98,46,97,116,116,114,72,97,110,100,108,101,91,110,91,114,93,93,61,116,125,102,117,110,99,116,105,111,110,32,112,101,40,101,44,116,41,123,118,97,114,32,110,61,116,38,38,101,44,114,61,110,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,49,61,61,61,116,46,110,111,100,101,84,121,112,101,38,38,101,46,115,111,117,114,99,101,73,110,100,101,120,45,116,46,115,111,117,114,99,101,73,110,100,101,120,59,105,102,40,114,41,114,101,116,117,114,110,32,114,59,105,102,40,110,41,119,104,105,108,101,40,110,61,110,46,110,101,120,116,83,105,98,108,105,110,103,41,105,102,40,110,61,61,61,116,41,114,101,116,117,114,110,45,49,59,114,101,116,117,114,110,32,101,63,49,58,45,49,125,102,117,110,99,116,105,111,110,32,100,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,105,110,112,117,116,34,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,38,38,101,46,116,121,112,101,61,61,61,116,125,125,102,117,110,99,116,105,111,110,32,104,101,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,40,34,105,110,112,117,116,34,61,61,61,116,124,124,34,98,117,116,116,111,110,34,61,61,61,116,41,38,38,101,46,116,121,112,101,61,61,61,110,125,125,102,117,110,99,116,105,111,110,32,103,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,102,111,114,109,34,105,110,32,101,63,101,46,112,97,114,101,110,116,78,111,100,101,38,38,33,49,61,61,61,101,46,100,105,115,97,98,108,101,100,63,34,108,97,98,101,108,34,105,110,32,101,63,34,108,97,98,101,108,34,105,110,32,101,46,112,97,114,101,110,116,78,111,100,101,63,101,46,112,97,114,101,110,116,78,111,100,101,46,100,105,115,97,98,108,101,100,61,61,61,116,58,101,46,100,105,115,97,98,108,101,100,61,61,61,116,58,101,46,105,115,68,105,115,97,98,108,101,100,61,61,61,116,124,124,101,46,105,115,68,105,115,97,98,108,101,100,33,61,61,33,116,38,38,97,101,40,101,41,61,61,61,116,58,101,46,100,105,115,97,98,108,101,100,61,61,61,116,58,34,108,97,98,101,108,34,105,110,32,101,38,38,101,46,100,105,115,97,98,108,101,100,61,61,61,116,125,125,102,117,110,99,116,105,111,110,32,118,101,40,97,41,123,114,101,116,117,114,110,32,108,101,40,102,117,110,99,116,105,111,110,40,111,41,123,114,101,116,117,114,110,32,111,61,43,111,44,108,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,97,40,91,93,44,101,46,108,101,110,103,116,104,44,111,41,44,105,61,114,46,108,101,110,103,116,104,59,119,104,105,108,101,40,105,45,45,41,101,91,110,61,114,91,105,93,93,38,38,40,101,91,110,93,61,33,40,116,91,110,93,61,101,91,110,93,41,41,125,41,125,41,125,102,117,110,99,116,105,111,110,32,121,101,40,101,41,123,114,101,116,117,114,110,32,101,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,38,38,101,125,102,111,114,40,101,32,105,110,32,100,61,115,101,46,115,117,112,112,111,114,116,61,123,125,44,105,61,115,101,46,105,115,88,77,76,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,97,109,101,115,112,97,99,101,85,82,73,44,110,61,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,114,101,116,117,114,110,33,89,46,116,101,115,116,40,116,124,124,110,38,38,110,46,110,111,100,101,78,97,109,101,124,124,34,72,84,77,76,34,41,125,44,84,61,115,101,46,115,101,116,68,111,99,117,109,101,110,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,61,101,63,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,58,109,59,114,101,116,117,114,110,32,114,33,61,61,67,38,38,57,61,61,61,114,46,110,111,100,101,84,121,112,101,38,38,114,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,40,97,61,40,67,61,114,41,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,69,61,33,105,40,67,41,44,109,33,61,61,67,38,38,40,110,61,67,46,100,101,102,97,117,108,116,86,105,101,119,41,38,38,110,46,116,111,112,33,61,61,110,38,38,40,110,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,63,110,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,117,110,108,111,97,100,34,44,111,101,44,33,49,41,58,110,46,97,116,116,97,99,104,69,118,101,110,116,38,38,110,46,97,116,116,97,99,104,69,118,101,110,116,40,34,111,110,117,110,108,111,97,100,34,44,111,101,41,41,44,100,46,97,116,116,114,105,98,117,116,101,115,61,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,99,108,97,115,115,78,97,109,101,61,34,105,34,44,33,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,78,97,109,101,34,41,125,41,44,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,61,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,97,112,112,101,110,100,67,104,105,108,100,40,67,46,99,114,101,97,116,101,67,111,109,109,101,110,116,40,34,34,41,41,44,33,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,34,42,34,41,46,108,101,110,103,116,104,125,41,44,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,61,75,46,116,101,115,116,40,67,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,41,44,100,46,103,101,116,66,121,73,100,61,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,46,105,100,61,107,44,33,67,46,103,101,116,69,108,101,109,101,110,116,115,66,121,78,97,109,101,124,124,33,67,46,103,101,116,69,108,101,109,101,110,116,115,66,121,78,97,109,101,40,107,41,46,108,101,110,103,116,104,125,41,44,100,46,103,101,116,66,121,73,100,63,40,98,46,102,105,108,116,101,114,46,73,68,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,41,61,61,61,116,125,125,44,98,46,102,105,110,100,46,73,68,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,38,38,69,41,123,118,97,114,32,110,61,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,101,41,59,114,101,116,117,114,110,32,110,63,91,110,93,58,91,93,125,125,41,58,40,98,46,102,105,108,116,101,114,46,73,68,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,101,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,38,38,101,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,34,105,100,34,41,59,114,101,116,117,114,110,32,116,38,38,116,46,118,97,108,117,101,61,61,61,110,125,125,44,98,46,102,105,110,100,46,73,68,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,38,38,69,41,123,118,97,114,32,110,44,114,44,105,44,111,61,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,101,41,59,105,102,40,111,41,123,105,102,40,40,110,61,111,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,34,105,100,34,41,41,38,38,110,46,118,97,108,117,101,61,61,61,101,41,114,101,116,117,114,110,91,111,93,59,105,61,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,78,97,109,101,40,101,41,44,114,61,48,59,119,104,105,108,101,40,111,61,105,91,114,43,43,93,41,105,102,40,40,110,61,111,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,34,105,100,34,41,41,38,38,110,46,118,97,108,117,101,61,61,61,101,41,114,101,116,117,114,110,91,111,93,125,114,101,116,117,114,110,91,93,125,125,41,44,98,46,102,105,110,100,46,84,65,71,61,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,63,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,101,41,58,100,46,113,115,97,63,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,101,41,58,118,111,105,100,32,48,125,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,91,93,44,105,61,48,44,111,61,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,101,41,59,105,102,40,34,42,34,61,61,61,101,41,123,119,104,105,108,101,40,110,61,111,91,105,43,43,93,41,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,114,46,112,117,115,104,40,110,41,59,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,32,111,125,44,98,46,102,105,110,100,46,67,76,65,83,83,61,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,38,38,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,38,38,69,41,114,101,116,117,114,110,32,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,40,101,41,125,44,115,61,91,93,44,118,61,91,93,44,40,100,46,113,115,97,61,75,46,116,101,115,116,40,67,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,41,41,38,38,40,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,97,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,46,105,110,110,101,114,72,84,77,76,61,34,60,97,32,105,100,61,39,34,43,107,43,34,39,62,60,47,97,62,60,115,101,108,101,99,116,32,105,100,61,39,34,43,107,43,34,45,92,114,92,92,39,32,109,115,97,108,108,111,119,99,97,112,116,117,114,101,61,39,39,62,60,111,112,116,105,111,110,32,115,101,108,101,99,116,101,100,61,39,39,62,60,47,111,112,116,105,111,110,62,60,47,115,101,108,101,99,116,62,34,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,91,109,115,97,108,108,111,119,99,97,112,116,117,114,101,94,61,39,39,93,34,41,46,108,101,110,103,116,104,38,38,118,46,112,117,115,104,40,34,91,42,94,36,93,61,34,43,77,43,34,42,40,63,58,39,39,124,92,34,92,34,41,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,91,115,101,108,101,99,116,101,100,93,34,41,46,108,101,110,103,116,104,124,124,118,46,112,117,115,104,40,34,92,92,91,34,43,77,43,34,42,40,63,58,118,97,108,117,101,124,34,43,82,43,34,41,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,91,105,100,126,61,34,43,107,43,34,45,93,34,41,46,108,101,110,103,116,104,124,124,118,46,112,117,115,104,40,34,126,61,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,58,99,104,101,99,107,101,100,34,41,46,108,101,110,103,116,104,124,124,118,46,112,117,115,104,40,34,58,99,104,101,99,107,101,100,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,97,35,34,43,107,43,34,43,42,34,41,46,108,101,110,103,116,104,124,124,118,46,112,117,115,104,40,34,46,35,46,43,91,43,126,93,34,41,125,41,44,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,105,110,110,101,114,72,84,77,76,61,34,60,97,32,104,114,101,102,61,39,39,32,100,105,115,97,98,108,101,100,61,39,100,105,115,97,98,108,101,100,39,62,60,47,97,62,60,115,101,108,101,99,116,32,100,105,115,97,98,108,101,100,61,39,100,105,115,97,98,108,101,100,39,62,60,111,112,116,105,111,110,47,62,60,47,115,101,108,101,99,116,62,34,59,118,97,114,32,116,61,67,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,110,112,117,116,34,41,59,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,34,104,105,100,100,101,110,34,41,44,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,41,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,110,97,109,101,34,44,34,68,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,91,110,97,109,101,61,100,93,34,41,46,108,101,110,103,116,104,38,38,118,46,112,117,115,104,40,34,110,97,109,101,34,43,77,43,34,42,91,42,94,36,124,33,126,93,63,61,34,41,44,50,33,61,61,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,58,101,110,97,98,108,101,100,34,41,46,108,101,110,103,116,104,38,38,118,46,112,117,115,104,40,34,58,101,110,97,98,108,101,100,34,44,34,58,100,105,115,97,98,108,101,100,34,41,44,97,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,46,100,105,115,97,98,108,101,100,61,33,48,44,50,33,61,61,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,58,100,105,115,97,98,108,101,100,34,41,46,108,101,110,103,116,104,38,38,118,46,112,117,115,104,40,34,58,101,110,97,98,108,101,100,34,44,34,58,100,105,115,97,98,108,101,100,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,42,44,58,120,34,41,44,118,46,112,117,115,104,40,34,44,46,42,58,34,41,125,41,41,44,40,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,61,75,46,116,101,115,116,40,99,61,97,46,109,97,116,99,104,101,115,124,124,97,46,119,101,98,107,105,116,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,124,124,97,46,109,111,122,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,124,124,97,46,111,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,124,124,97,46,109,115,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,41,41,38,38,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,100,46,100,105,115,99,111,110,110,101,99,116,101,100,77,97,116,99,104,61,99,46,99,97,108,108,40,101,44,34,42,34,41,44,99,46,99,97,108,108,40,101,44,34,91,115,33,61,39,39,93,58,120,34,41,44,115,46,112,117,115,104,40,34,33,61,34,44,36,41,125,41,44,118,61,118,46,108,101,110,103,116,104,38,38,110,101,119,32,82,101,103,69,120,112,40,118,46,106,111,105,110,40,34,124,34,41,41,44,115,61,115,46,108,101,110,103,116,104,38,38,110,101,119,32,82,101,103,69,120,112,40,115,46,106,111,105,110,40,34,124,34,41,41,44,116,61,75,46,116,101,115,116,40,97,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,41,44,121,61,116,124,124,75,46,116,101,115,116,40,97,46,99,111,110,116,97,105,110,115,41,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,57,61,61,61,101,46,110,111,100,101,84,121,112,101,63,101,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,58,101,44,114,61,116,38,38,116,46,112,97,114,101,110,116,78,111,100,101,59,114,101,116,117,114,110,32,101,61,61,61,114,124,124,33,40,33,114,124,124,49,33,61,61,114,46,110,111,100,101,84,121,112,101,124,124,33,40,110,46,99,111,110,116,97,105,110,115,63,110,46,99,111,110,116,97,105,110,115,40,114,41,58,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,38,38,49,54,38,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,114,41,41,41,125,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,41,119,104,105,108,101,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,105,102,40,116,61,61,61,101,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,44,68,61,116,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,101,61,61,61,116,41,114,101,116,117,114,110,32,108,61,33,48,44,48,59,118,97,114,32,110,61,33,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,45,33,116,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,59,114,101,116,117,114,110,32,110,124,124,40,49,38,40,110,61,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,61,61,61,40,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,116,41,63,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,116,41,58,49,41,124,124,33,100,46,115,111,114,116,68,101,116,97,99,104,101,100,38,38,116,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,101,41,61,61,61,110,63,101,61,61,61,67,124,124,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,61,61,61,109,38,38,121,40,109,44,101,41,63,45,49,58,116,61,61,61,67,124,124,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,61,61,61,109,38,38,121,40,109,44,116,41,63,49,58,117,63,80,40,117,44,101,41,45,80,40,117,44,116,41,58,48,58,52,38,110,63,45,49,58,49,41,125,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,101,61,61,61,116,41,114,101,116,117,114,110,32,108,61,33,48,44,48,59,118,97,114,32,110,44,114,61,48,44,105,61,101,46,112,97,114,101,110,116,78,111,100,101,44,111,61,116,46,112,97,114,101,110,116,78,111,100,101,44,97,61,91,101,93,44,115,61,91,116,93,59,105,102,40,33,105,124,124,33,111,41,114,101,116,117,114,110,32,101,61,61,61,67,63,45,49,58,116,61,61,61,67,63,49,58,105,63,45,49,58,111,63,49,58,117,63,80,40,117,44,101,41,45,80,40,117,44,116,41,58,48,59,105,102,40,105,61,61,61,111,41,114,101,116,117,114,110,32,112,101,40,101,44,116,41,59,110,61,101,59,119,104,105,108,101,40,110,61,110,46,112,97,114,101,110,116,78,111,100,101,41,97,46,117,110,115,104,105,102,116,40,110,41,59,110,61,116,59,119,104,105,108,101,40,110,61,110,46,112,97,114,101,110,116,78,111,100,101,41,115,46,117,110,115,104,105,102,116,40,110,41,59,119,104,105,108,101,40,97,91,114,93,61,61,61,115,91,114,93,41,114,43,43,59,114,101,116,117,114,110,32,114,63,112,101,40,97,91,114,93,44,115,91,114,93,41,58,97,91,114,93,61,61,61,109,63,45,49,58,115,91,114,93,61,61,61,109,63,49,58,48,125,41,44,67,125,44,115,101,46,109,97,116,99,104,101,115,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,115,101,40,101,44,110,117,108,108,44,110,117,108,108,44,116,41,125,44,115,101,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,33,61,61,67,38,38,84,40,101,41,44,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,38,38,69,38,38,33,65,91,116,43,34,32,34,93,38,38,40,33,115,124,124,33,115,46,116,101,115,116,40,116,41,41,38,38,40,33,118,124,124,33,118,46,116,101,115,116,40,116,41,41,41,116,114,121,123,118,97,114,32,110,61,99,46,99,97,108,108,40,101,44,116,41,59,105,102,40,110,124,124,100,46,100,105,115,99,111,110,110,101,99,116,101,100,77,97,116,99,104,124,124,101,46,100,111,99,117,109,101,110,116,38,38,49,49,33,61,61,101,46,100,111,99,117,109,101,110,116,46,110,111,100,101,84,121,112,101,41,114,101,116,117,114,110,32,110,125,99,97,116,99,104,40,101,41,123,65,40,116,44,33,48,41,125,114,101,116,117,114,110,32,48,60,115,101,40,116,44,67,44,110,117,108,108,44,91,101,93,41,46,108,101,110,103,116,104,125,44,115,101,46,99,111,110,116,97,105,110,115,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,33,61,61,67,38,38,84,40,101,41,44,121,40,101,44,116,41,125,44,115,101,46,97,116,116,114,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,33,61,61,67,38,38,84,40,101,41,59,118,97,114,32,110,61,98,46,97,116,116,114,72,97,110,100,108,101,91,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,114,61,110,38,38,106,46,99,97,108,108,40,98,46,97,116,116,114,72,97,110,100,108,101,44,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,63,110,40,101,44,116,44,33,69,41,58,118,111,105,100,32,48,59,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,114,63,114,58,100,46,97,116,116,114,105,98,117,116,101,115,124,124,33,69,63,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,116,41,58,40,114,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,116,41,41,38,38,114,46,115,112,101,99,105,102,105,101,100,63,114,46,118,97,108,117,101,58,110,117,108,108,125,44,115,101,46,101,115,99,97,112,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,40,101,43,34,34,41,46,114,101,112,108,97,99,101,40,114,101,44,105,101,41,125,44,115,101,46,101,114,114,111,114,61,102,117,110,99,116,105,111,110,40,101,41,123,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,83,121,110,116,97,120,32,101,114,114,111,114,44,32,117,110,114,101,99,111,103,110,105,122,101,100,32,101,120,112,114,101,115,115,105,111,110,58,32,34,43,101,41,125,44,115,101,46,117,110,105,113,117,101,83,111,114,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,91,93,44,114,61,48,44,105,61,48,59,105,102,40,108,61,33,100,46,100,101,116,101,99,116,68,117,112,108,105,99,97,116,101,115,44,117,61,33,100,46,115,111,114,116,83,116,97,98,108,101,38,38,101,46,115,108,105,99,101,40,48,41,44,101,46,115,111,114,116,40,68,41,44,108,41,123,119,104,105,108,101,40,116,61,101,91,105,43,43,93,41,116,61,61,61,101,91,105,93,38,38,40,114,61,110,46,112,117,115,104,40,105,41,41,59,119,104,105,108,101,40,114,45,45,41,101,46,115,112,108,105,99,101,40,110,91,114,93,44,49,41,125,114,101,116,117,114,110,32,117,61,110,117,108,108,44,101,125,44,111,61,115,101,46,103,101,116,84,101,120,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,34,34,44,114,61,48,44,105,61,101,46,110,111,100,101,84,121,112,101,59,105,102,40,105,41,123,105,102,40,49,61,61,61,105,124,124,57,61,61,61,105,124,124,49,49,61,61,61,105,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,46,116,101,120,116,67,111,110,116,101,110,116,41,114,101,116,117,114,110,32,101,46,116,101,120,116,67,111,110,116,101,110,116,59,102,111,114,40,101,61,101,46,102,105,114,115,116,67,104,105,108,100,59,101,59,101,61,101,46,110,101,120,116,83,105,98,108,105,110,103,41,110,43,61,111,40,101,41,125,101,108,115,101,32,105,102,40,51,61,61,61,105,124,124,52,61,61,61,105,41,114,101,116,117,114,110,32,101,46,110,111,100,101,86,97,108,117,101,125,101,108,115,101,32,119,104,105,108,101,40,116,61,101,91,114,43,43,93,41,110,43,61,111,40,116,41,59,114,101,116,117,114,110,32,110,125,44,40,98,61,115,101,46,115,101,108,101,99,116,111,114,115,61,123,99,97,99,104,101,76,101,110,103,116,104,58,53,48,44,99,114,101,97,116,101,80,115,101,117,100,111,58,108,101,44,109,97,116,99,104,58,71,44,97,116,116,114,72,97,110,100,108,101,58,123,125,44,102,105,110,100,58,123,125,44,114,101,108,97,116,105,118,101,58,123,34,62,34,58,123,100,105,114,58,34,112,97,114,101,110,116,78,111,100,101,34,44,102,105,114,115,116,58,33,48,125,44,34,32,34,58,123,100,105,114,58,34,112,97,114,101,110,116,78,111,100,101,34,125,44,34,43,34,58,123,100,105,114,58,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,44,102,105,114,115,116,58,33,48,125,44,34,126,34,58,123,100,105,114,58,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,125,125,44,112,114,101,70,105,108,116,101,114,58,123,65,84,84,82,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,91,49,93,61,101,91,49,93,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,101,91,51,93,61,40,101,91,51,93,124,124,101,91,52,93,124,124,101,91,53,93,124,124,34,34,41,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,34,126,61,34,61,61,61,101,91,50,93,38,38,40,101,91,51,93,61,34,32,34,43,101,91,51,93,43,34,32,34,41,44,101,46,115,108,105,99,101,40,48,44,52,41,125,44,67,72,73,76,68,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,91,49,93,61,101,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,34,110,116,104,34,61,61,61,101,91,49,93,46,115,108,105,99,101,40,48,44,51,41,63,40,101,91,51,93,124,124,115,101,46,101,114,114,111,114,40,101,91,48,93,41,44,101,91,52,93,61,43,40,101,91,52,93,63,101,91,53,93,43,40,101,91,54,93,124,124,49,41,58,50,42,40,34,101,118,101,110,34,61,61,61,101,91,51,93,124,124,34,111,100,100,34,61,61,61,101,91,51,93,41,41,44,101,91,53,93,61,43,40,101,91,55,93,43,101,91,56,93,124,124,34,111,100,100,34,61,61,61,101,91,51,93,41,41,58,101,91,51,93,38,38,115,101,46,101,114,114,111,114,40,101,91,48,93,41,44,101,125,44,80,83,69,85,68,79,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,33,101,91,54,93,38,38,101,91,50,93,59,114,101,116,117,114,110,32,71,46,67,72,73,76,68,46,116,101,115,116,40,101,91,48,93,41,63,110,117,108,108,58,40,101,91,51,93,63,101,91,50,93,61,101,91,52,93,124,124,101,91,53,93,124,124,34,34,58,110,38,38,88,46,116,101,115,116,40,110,41,38,38,40,116,61,104,40,110,44,33,48,41,41,38,38,40,116,61,110,46,105,110,100,101,120,79,102,40,34,41,34,44,110,46,108,101,110,103,116,104,45,116,41,45,110,46,108,101,110,103,116,104,41,38,38,40,101,91,48,93,61,101,91,48,93,46,115,108,105,99,101,40,48,44,116,41,44,101,91,50,93,61,110,46,115,108,105,99,101,40,48,44,116,41,41,44,101,46,115,108,105,99,101,40,48,44,51,41,41,125,125,44,102,105,108,116,101,114,58,123,84,65,71,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,34,42,34,61,61,61,101,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,110,111,100,101,78,97,109,101,38,38,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,116,125,125,44,67,76,65,83,83,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,112,91,101,43,34,32,34,93,59,114,101,116,117,114,110,32,116,124,124,40,116,61,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,34,43,77,43,34,41,34,43,101,43,34,40,34,43,77,43,34,124,36,41,34,41,41,38,38,112,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,116,101,115,116,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,46,99,108,97,115,115,78,97,109,101,38,38,101,46,99,108,97,115,115,78,97,109,101,124,124,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,38,38,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,41,124,124,34,34,41,125,41,125,44,65,84,84,82,58,102,117,110,99,116,105,111,110,40,110,44,114,44,105,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,115,101,46,97,116,116,114,40,101,44,110,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,34,33,61,34,61,61,61,114,58,33,114,124,124,40,116,43,61,34,34,44,34,61,34,61,61,61,114,63,116,61,61,61,105,58,34,33,61,34,61,61,61,114,63,116,33,61,61,105,58,34,94,61,34,61,61,61,114,63,105,38,38,48,61,61,61,116,46,105,110,100,101,120,79,102,40,105,41,58,34,42,61,34,61,61,61,114,63,105,38,38,45,49,60,116,46,105,110,100,101,120,79,102,40,105,41,58,34,36,61,34,61,61,61,114,63,105,38,38,116,46,115,108,105,99,101,40,45,105,46,108,101,110,103,116,104,41,61,61,61,105,58,34,126,61,34,61,61,61,114,63,45,49,60,40,34,32,34,43,116,46,114,101,112,108,97,99,101,40,70,44,34,32,34,41,43,34,32,34,41,46,105,110,100,101,120,79,102,40,105,41,58,34,124,61,34,61,61,61,114,38,38,40,116,61,61,61,105,124,124,116,46,115,108,105,99,101,40,48,44,105,46,108,101,110,103,116,104,43,49,41,61,61,61,105,43,34,45,34,41,41,125,125,44,67,72,73,76,68,58,102,117,110,99,116,105,111,110,40,104,44,101,44,116,44,103,44,118,41,123,118,97,114,32,121,61,34,110,116,104,34,33,61,61,104,46,115,108,105,99,101,40,48,44,51,41,44,109,61,34,108,97,115,116,34,33,61,61,104,46,115,108,105,99,101,40,45,52,41,44,120,61,34,111,102,45,116,121,112,101,34,61,61,61,101,59,114,101,116,117,114,110,32,49,61,61,61,103,38,38,48,61,61,61,118,63,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,33,101,46,112,97,114,101,110,116,78,111,100,101,125,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,44,117,44,108,61,121,33,61,61,109,63,34,110,101,120,116,83,105,98,108,105,110,103,34,58,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,44,99,61,101,46,112,97,114,101,110,116,78,111,100,101,44,102,61,120,38,38,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,112,61,33,110,38,38,33,120,44,100,61,33,49,59,105,102,40,99,41,123,105,102,40,121,41,123,119,104,105,108,101,40,108,41,123,97,61,101,59,119,104,105,108,101,40,97,61,97,91,108,93,41,105,102,40,120,63,97,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,102,58,49,61,61,61,97,46,110,111,100,101,84,121,112,101,41,114,101,116,117,114,110,33,49,59,117,61,108,61,34,111,110,108,121,34,61,61,61,104,38,38,33,117,38,38,34,110,101,120,116,83,105,98,108,105,110,103,34,125,114,101,116,117,114,110,33,48,125,105,102,40,117,61,91,109,63,99,46,102,105,114,115,116,67,104,105,108,100,58,99,46,108,97,115,116,67,104,105,108,100,93,44,109,38,38,112,41,123,100,61,40,115,61,40,114,61,40,105,61,40,111,61,40,97,61,99,41,91,107,93,124,124,40,97,91,107,93,61,123,125,41,41,91,97,46,117,110,105,113,117,101,73,68,93,124,124,40,111,91,97,46,117,110,105,113,117,101,73,68,93,61,123,125,41,41,91,104,93,124,124,91,93,41,91,48,93,61,61,61,83,38,38,114,91,49,93,41,38,38,114,91,50,93,44,97,61,115,38,38,99,46,99,104,105,108,100,78,111,100,101,115,91,115,93,59,119,104,105,108,101,40,97,61,43,43,115,38,38,97,38,38,97,91,108,93,124,124,40,100,61,115,61,48,41,124,124,117,46,112,111,112,40,41,41,105,102,40,49,61,61,61,97,46,110,111,100,101,84,121,112,101,38,38,43,43,100,38,38,97,61,61,61,101,41,123,105,91,104,93,61,91,83,44,115,44,100,93,59,98,114,101,97,107,125,125,101,108,115,101,32,105,102,40,112,38,38,40,100,61,115,61,40,114,61,40,105,61,40,111,61,40,97,61,101,41,91,107,93,124,124,40,97,91,107,93,61,123,125,41,41,91,97,46,117,110,105,113,117,101,73,68,93,124,124,40,111,91,97,46,117,110,105,113,117,101,73,68,93,61,123,125,41,41,91,104,93,124,124,91,93,41,91,48,93,61,61,61,83,38,38,114,91,49,93,41,44,33,49,61,61,61,100,41,119,104,105,108,101,40,97,61,43,43,115,38,38,97,38,38,97,91,108,93,124,124,40,100,61,115,61,48,41,124,124,117,46,112,111,112,40,41,41,105,102,40,40,120,63,97,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,102,58,49,61,61,61,97,46,110,111,100,101,84,121,112,101,41,38,38,43,43,100,38,38,40,112,38,38,40,40,105,61,40,111,61,97,91,107,93,124,124,40,97,91,107,93,61,123,125,41,41,91,97,46,117,110,105,113,117,101,73,68,93,124,124,40,111,91,97,46,117,110,105,113,117,101,73,68,93,61,123,125,41,41,91,104,93,61,91,83,44,100,93,41,44,97,61,61,61,101,41,41,98,114,101,97,107,59,114,101,116,117,114,110,40,100,45,61,118,41,61,61,61,103,124,124,100,37,103,61,61,48,38,38,48,60,61,100,47,103,125,125,125,44,80,83,69,85,68,79,58,102,117,110,99,116,105,111,110,40,101,44,111,41,123,118,97,114,32,116,44,97,61,98,46,112,115,101,117,100,111,115,91,101,93,124,124,98,46,115,101,116,70,105,108,116,101,114,115,91,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,124,124,115,101,46,101,114,114,111,114,40,34,117,110,115,117,112,112,111,114,116,101,100,32,112,115,101,117,100,111,58,32,34,43,101,41,59,114,101,116,117,114,110,32,97,91,107,93,63,97,40,111,41,58,49,60,97,46,108,101,110,103,116,104,63,40,116,61,91,101,44,101,44,34,34,44,111,93,44,98,46,115,101,116,70,105,108,116,101,114,115,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,63,108,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,97,40,101,44,111,41,44,105,61,114,46,108,101,110,103,116,104,59,119,104,105,108,101,40,105,45,45,41,101,91,110,61,80,40,101,44,114,91,105,93,41,93,61,33,40,116,91,110,93,61,114,91,105,93,41,125,41,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,40,101,44,48,44,116,41,125,41,58,97,125,125,44,112,115,101,117,100,111,115,58,123,110,111,116,58,108,101,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,91,93,44,105,61,91,93,44,115,61,102,40,101,46,114,101,112,108,97,99,101,40,66,44,34,36,49,34,41,41,59,114,101,116,117,114,110,32,115,91,107,93,63,108,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,61,115,40,101,44,110,117,108,108,44,114,44,91,93,41,44,97,61,101,46,108,101,110,103,116,104,59,119,104,105,108,101,40,97,45,45,41,40,105,61,111,91,97,93,41,38,38,40,101,91,97,93,61,33,40,116,91,97,93,61,105,41,41,125,41,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,114,91,48,93,61,101,44,115,40,114,44,110,117,108,108,44,110,44,105,41,44,114,91,48,93,61,110,117,108,108,44,33,105,46,112,111,112,40,41,125,125,41,44,104,97,115,58,108,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,48,60,115,101,40,116,44,101,41,46,108,101,110,103,116,104,125,125,41,44,99,111,110,116,97,105,110,115,58,108,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,116,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,45,49,60,40,101,46,116,101,120,116,67,111,110,116,101,110,116,124,124,111,40,101,41,41,46,105,110,100,101,120,79,102,40,116,41,125,125,41,44,108,97,110,103,58,108,101,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,86,46,116,101,115,116,40,110,124,124,34,34,41,124,124,115,101,46,101,114,114,111,114,40,34,117,110,115,117,112,112,111,114,116,101,100,32,108,97,110,103,58,32,34,43,110,41,44,110,61,110,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,100,111,123,105,102,40,116,61,69,63,101,46,108,97,110,103,58,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,120,109,108,58,108,97,110,103,34,41,124,124,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,108,97,110,103,34,41,41,114,101,116,117,114,110,40,116,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,61,61,61,110,124,124,48,61,61,61,116,46,105,110,100,101,120,79,102,40,110,43,34,45,34,41,125,119,104,105,108,101,40,40,101,61,101,46,112,97,114,101,110,116,78,111,100,101,41,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,41,59,114,101,116,117,114,110,33,49,125,125,41,44,116,97,114,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,110,46,108,111,99,97,116,105,111,110,38,38,110,46,108,111,99,97,116,105,111,110,46,104,97,115,104,59,114,101,116,117,114,110,32,116,38,38,116,46,115,108,105,99,101,40,49,41,61,61,61,101,46,105,100,125,44,114,111,111,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,61,61,97,125,44,102,111,99,117,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,61,61,67,46,97,99,116,105,118,101,69,108,101,109,101,110,116,38,38,40,33,67,46,104,97,115,70,111,99,117,115,124,124,67,46,104,97,115,70,111,99,117,115,40,41,41,38,38,33,33,40,101,46,116,121,112,101,124,124,101,46,104,114,101,102,124,124,126,101,46,116,97,98,73,110,100,101,120,41,125,44,101,110,97,98,108,101,100,58,103,101,40,33,49,41,44,100,105,115,97,98,108,101,100,58,103,101,40,33,48,41,44,99,104,101,99,107,101,100,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,34,105,110,112,117,116,34,61,61,61,116,38,38,33,33,101,46,99,104,101,99,107,101,100,124,124,34,111,112,116,105,111,110,34,61,61,61,116,38,38,33,33,101,46,115,101,108,101,99,116,101,100,125,44,115,101,108,101,99,116,101,100,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,112,97,114,101,110,116,78,111,100,101,38,38,101,46,112,97,114,101,110,116,78,111,100,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,44,33,48,61,61,61,101,46,115,101,108,101,99,116,101,100,125,44,101,109,112,116,121,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,101,61,101,46,102,105,114,115,116,67,104,105,108,100,59,101,59,101,61,101,46,110,101,120,116,83,105,98,108,105,110,103,41,105,102,40,101,46,110,111,100,101,84,121,112,101,60,54,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,44,112,97,114,101,110,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,98,46,112,115,101,117,100,111,115,46,101,109,112,116,121,40,101,41,125,44,104,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,74,46,116,101,115,116,40,101,46,110,111,100,101,78,97,109,101,41,125,44,105,110,112,117,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,81,46,116,101,115,116,40,101,46,110,111,100,101,78,97,109,101,41,125,44,98,117,116,116,111,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,34,105,110,112,117,116,34,61,61,61,116,38,38,34,98,117,116,116,111,110,34,61,61,61,101,46,116,121,112,101,124,124,34,98,117,116,116,111,110,34,61,61,61,116,125,44,116,101,120,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,114,101,116,117,114,110,34,105,110,112,117,116,34,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,38,38,34,116,101,120,116,34,61,61,61,101,46,116,121,112,101,38,38,40,110,117,108,108,61,61,40,116,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,41,41,124,124,34,116,101,120,116,34,61,61,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,125,44,102,105,114,115,116,58,118,101,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,48,93,125,41,44,108,97,115,116,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,91,116,45,49,93,125,41,44,101,113,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,91,110,60,48,63,110,43,116,58,110,93,125,41,44,101,118,101,110,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,116,59,110,43,61,50,41,101,46,112,117,115,104,40,110,41,59,114,101,116,117,114,110,32,101,125,41,44,111,100,100,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,49,59,110,60,116,59,110,43,61,50,41,101,46,112,117,115,104,40,110,41,59,114,101,116,117,114,110,32,101,125,41,44,108,116,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,61,110,60,48,63,110,43,116,58,116,60,110,63,116,58,110,59,48,60,61,45,45,114,59,41,101,46,112,117,115,104,40,114,41,59,114,101,116,117,114,110,32,101,125,41,44,103,116,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,61,110,60,48,63,110,43,116,58,110,59,43,43,114,60,116,59,41,101,46,112,117,115,104,40,114,41,59,114,101,116,117,114,110,32,101,125,41,125,125,41,46,112,115,101,117,100,111,115,46,110,116,104,61,98,46,112,115,101,117,100,111,115,46,101,113,44,123,114,97,100,105,111,58,33,48,44,99,104,101,99,107,98,111,120,58,33,48,44,102,105,108,101,58,33,48,44,112,97,115,115,119,111,114,100,58,33,48,44,105,109,97,103,101,58,33,48,125,41,98,46,112,115,101,117,100,111,115,91,101,93,61,100,101,40,101,41,59,102,111,114,40,101,32,105,110,123,115,117,98,109,105,116,58,33,48,44,114,101,115,101,116,58,33,48,125,41,98,46,112,115,101,117,100,111,115,91,101,93,61,104,101,40,101,41,59,102,117,110,99,116,105,111,110,32,109,101,40,41,123,125,102,117,110,99,116,105,111,110,32,120,101,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,44,110,61,101,46,108,101,110,103,116,104,44,114,61,34,34,59,116,60,110,59,116,43,43,41,114,43,61,101,91,116,93,46,118,97,108,117,101,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,98,101,40,115,44,101,44,116,41,123,118,97,114,32,117,61,101,46,100,105,114,44,108,61,101,46,110,101,120,116,44,99,61,108,124,124,117,44,102,61,116,38,38,34,112,97,114,101,110,116,78,111,100,101,34,61,61,61,99,44,112,61,114,43,43,59,114,101,116,117,114,110,32,101,46,102,105,114,115,116,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,119,104,105,108,101,40,101,61,101,91,117,93,41,105,102,40,49,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,102,41,114,101,116,117,114,110,32,115,40,101,44,116,44,110,41,59,114,101,116,117,114,110,33,49,125,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,61,91,83,44,112,93,59,105,102,40,110,41,123,119,104,105,108,101,40,101,61,101,91,117,93,41,105,102,40,40,49,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,102,41,38,38,115,40,101,44,116,44,110,41,41,114,101,116,117,114,110,33,48,125,101,108,115,101,32,119,104,105,108,101,40,101,61,101,91,117,93,41,105,102,40,49,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,102,41,105,102,40,105,61,40,111,61,101,91,107,93,124,124,40,101,91,107,93,61,123,125,41,41,91,101,46,117,110,105,113,117,101,73,68,93,124,124,40,111,91,101,46,117,110,105,113,117,101,73,68,93,61,123,125,41,44,108,38,38,108,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,101,61,101,91,117,93,124,124,101,59,101,108,115,101,123,105,102,40,40,114,61,105,91,99,93,41,38,38,114,91,48,93,61,61,61,83,38,38,114,91,49,93,61,61,61,112,41,114,101,116,117,114,110,32,97,91,50,93,61,114,91,50,93,59,105,102,40,40,105,91,99,93,61,97,41,91,50,93,61,115,40,101,44,116,44,110,41,41,114,101,116,117,114,110,33,48,125,114,101,116,117,114,110,33,49,125,125,102,117,110,99,116,105,111,110,32,119,101,40,105,41,123,114,101,116,117,114,110,32,49,60,105,46,108,101,110,103,116,104,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,105,46,108,101,110,103,116,104,59,119,104,105,108,101,40,114,45,45,41,105,102,40,33,105,91,114,93,40,101,44,116,44,110,41,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,58,105,91,48,93,125,102,117,110,99,116,105,111,110,32,84,101,40,101,44,116,44,110,44,114,44,105,41,123,102,111,114,40,118,97,114,32,111,44,97,61,91,93,44,115,61,48,44,117,61,101,46,108,101,110,103,116,104,44,108,61,110,117,108,108,33,61,116,59,115,60,117,59,115,43,43,41,40,111,61,101,91,115,93,41,38,38,40,110,38,38,33,110,40,111,44,114,44,105,41,124,124,40,97,46,112,117,115,104,40,111,41,44,108,38,38,116,46,112,117,115,104,40,115,41,41,41,59,114,101,116,117,114,110,32,97,125,102,117,110,99,116,105,111,110,32,67,101,40,100,44,104,44,103,44,118,44,121,44,101,41,123,114,101,116,117,114,110,32,118,38,38,33,118,91,107,93,38,38,40,118,61,67,101,40,118,41,41,44,121,38,38,33,121,91,107,93,38,38,40,121,61,67,101,40,121,44,101,41,41,44,108,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,61,91,93,44,117,61,91,93,44,108,61,116,46,108,101,110,103,116,104,44,99,61,101,124,124,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,61,48,44,105,61,116,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,115,101,40,101,44,116,91,114,93,44,110,41,59,114,101,116,117,114,110,32,110,125,40,104,124,124,34,42,34,44,110,46,110,111,100,101,84,121,112,101,63,91,110,93,58,110,44,91,93,41,44,102,61,33,100,124,124,33,101,38,38,104,63,99,58,84,101,40,99,44,115,44,100,44,110,44,114,41,44,112,61,103,63,121,124,124,40,101,63,100,58,108,124,124,118,41,63,91,93,58,116,58,102,59,105,102,40,103,38,38,103,40,102,44,112,44,110,44,114,41,44,118,41,123,105,61,84,101,40,112,44,117,41,44,118,40,105,44,91,93,44,110,44,114,41,44,111,61,105,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,40,97,61,105,91,111,93,41,38,38,40,112,91,117,91,111,93,93,61,33,40,102,91,117,91,111,93,93,61,97,41,41,125,105,102,40,101,41,123,105,102,40,121,124,124,100,41,123,105,102,40,121,41,123,105,61,91,93,44,111,61,112,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,40,97,61,112,91,111,93,41,38,38,105,46,112,117,115,104,40,102,91,111,93,61,97,41,59,121,40,110,117,108,108,44,112,61,91,93,44,105,44,114,41,125,111,61,112,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,40,97,61,112,91,111,93,41,38,38,45,49,60,40,105,61,121,63,80,40,101,44,97,41,58,115,91,111,93,41,38,38,40,101,91,105,93,61,33,40,116,91,105,93,61,97,41,41,125,125,101,108,115,101,32,112,61,84,101,40,112,61,61,61,116,63,112,46,115,112,108,105,99,101,40,108,44,112,46,108,101,110,103,116,104,41,58,112,41,44,121,63,121,40,110,117,108,108,44,116,44,112,44,114,41,58,72,46,97,112,112,108,121,40,116,44,112,41,125,41,125,102,117,110,99,116,105,111,110,32,69,101,40,101,41,123,102,111,114,40,118,97,114,32,105,44,116,44,110,44,114,61,101,46,108,101,110,103,116,104,44,111,61,98,46,114,101,108,97,116,105,118,101,91,101,91,48,93,46,116,121,112,101,93,44,97,61,111,124,124,98,46,114,101,108,97,116,105,118,101,91,34,32,34,93,44,115,61,111,63,49,58,48,44,117,61,98,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,61,61,105,125,44,97,44,33,48,41,44,108,61,98,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,45,49,60,80,40,105,44,101,41,125,44,97,44,33,48,41,44,99,61,91,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,33,111,38,38,40,110,124,124,116,33,61,61,119,41,124,124,40,40,105,61,116,41,46,110,111,100,101,84,121,112,101,63,117,40,101,44,116,44,110,41,58,108,40,101,44,116,44,110,41,41,59,114,101,116,117,114,110,32,105,61,110,117,108,108,44,114,125,93,59,115,60,114,59,115,43,43,41,105,102,40,116,61,98,46,114,101,108,97,116,105,118,101,91,101,91,115,93,46,116,121,112,101,93,41,99,61,91,98,101,40,119,101,40,99,41,44,116,41,93,59,101,108,115,101,123,105,102,40,40,116,61,98,46,102,105,108,116,101,114,91,101,91,115,93,46,116,121,112,101,93,46,97,112,112,108,121,40,110,117,108,108,44,101,91,115,93,46,109,97,116,99,104,101,115,41,41,91,107,93,41,123,102,111,114,40,110,61,43,43,115,59,110,60,114,59,110,43,43,41,105,102,40,98,46,114,101,108,97,116,105,118,101,91,101,91,110,93,46,116,121,112,101,93,41,98,114,101,97,107,59,114,101,116,117,114,110,32,67,101,40,49,60,115,38,38,119,101,40,99,41,44,49,60,115,38,38,120,101,40,101,46,115,108,105,99,101,40,48,44,115,45,49,41,46,99,111,110,99,97,116,40,123,118,97,108,117,101,58,34,32,34,61,61,61,101,91,115,45,50,93,46,116,121,112,101,63,34,42,34,58,34,34,125,41,41,46,114,101,112,108,97,99,101,40,66,44,34,36,49,34,41,44,116,44,115,60,110,38,38,69,101,40,101,46,115,108,105,99,101,40,115,44,110,41,41,44,110,60,114,38,38,69,101,40,101,61,101,46,115,108,105,99,101,40,110,41,41,44,110,60,114,38,38,120,101,40,101,41,41,125,99,46,112,117,115,104,40,116,41,125,114,101,116,117,114,110,32,119,101,40,99,41,125,114,101,116,117,114,110,32,109,101,46,112,114,111,116,111,116,121,112,101,61,98,46,102,105,108,116,101,114,115,61,98,46,112,115,101,117,100,111,115,44,98,46,115,101,116,70,105,108,116,101,114,115,61,110,101,119,32,109,101,44,104,61,115,101,46,116,111,107,101,110,105,122,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,44,117,44,108,61,120,91,101,43,34,32,34,93,59,105,102,40,108,41,114,101,116,117,114,110,32,116,63,48,58,108,46,115,108,105,99,101,40,48,41,59,97,61,101,44,115,61,91,93,44,117,61,98,46,112,114,101,70,105,108,116,101,114,59,119,104,105,108,101,40,97,41,123,102,111,114,40,111,32,105,110,32,110,38,38,33,40,114,61,95,46,101,120,101,99,40,97,41,41,124,124,40,114,38,38,40,97,61,97,46,115,108,105,99,101,40,114,91,48,93,46,108,101,110,103,116,104,41,124,124,97,41,44,115,46,112,117,115,104,40,105,61,91,93,41,41,44,110,61,33,49,44,40,114,61,122,46,101,120,101,99,40,97,41,41,38,38,40,110,61,114,46,115,104,105,102,116,40,41,44,105,46,112,117,115,104,40,123,118,97,108,117,101,58,110,44,116,121,112,101,58,114,91,48,93,46,114,101,112,108,97,99,101,40,66,44,34,32,34,41,125,41,44,97,61,97,46,115,108,105,99,101,40,110,46,108,101,110,103,116,104,41,41,44,98,46,102,105,108,116,101,114,41,33,40,114,61,71,91,111,93,46,101,120,101,99,40,97,41,41,124,124,117,91,111,93,38,38,33,40,114,61,117,91,111,93,40,114,41,41,124,124,40,110,61,114,46,115,104,105,102,116,40,41,44,105,46,112,117,115,104,40,123,118,97,108,117,101,58,110,44,116,121,112,101,58,111,44,109,97,116,99,104,101,115,58,114,125,41,44,97,61,97,46,115,108,105,99,101,40,110,46,108,101,110,103,116,104,41,41,59,105,102,40,33,110,41,98,114,101,97,107,125,114,101,116,117,114,110,32,116,63,97,46,108,101,110,103,116,104,58,97,63,115,101,46,101,114,114,111,114,40,101,41,58,120,40,101,44,115,41,46,115,108,105,99,101,40,48,41,125,44,102,61,115,101,46,99,111,109,112,105,108,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,118,44,121,44,109,44,120,44,114,44,105,61,91,93,44,111,61,91,93,44,97,61,78,91,101,43,34,32,34,93,59,105,102,40,33,97,41,123,116,124,124,40,116,61,104,40,101,41,41,44,110,61,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,41,40,97,61,69,101,40,116,91,110,93,41,41,91,107,93,63,105,46,112,117,115,104,40,97,41,58,111,46,112,117,115,104,40,97,41,59,40,97,61,78,40,101,44,40,118,61,111,44,109,61,48,60,40,121,61,105,41,46,108,101,110,103,116,104,44,120,61,48,60,118,46,108,101,110,103,116,104,44,114,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,44,105,41,123,118,97,114,32,111,44,97,44,115,44,117,61,48,44,108,61,34,48,34,44,99,61,101,38,38,91,93,44,102,61,91,93,44,112,61,119,44,100,61,101,124,124,120,38,38,98,46,102,105,110,100,46,84,65,71,40,34,42,34,44,105,41,44,104,61,83,43,61,110,117,108,108,61,61,112,63,49,58,77,97,116,104,46,114,97,110,100,111,109,40,41,124,124,46,49,44,103,61,100,46,108,101,110,103,116,104,59,102,111,114,40,105,38,38,40,119,61,116,61,61,61,67,124,124,116,124,124,105,41,59,108,33,61,61,103,38,38,110,117,108,108,33,61,40,111,61,100,91,108,93,41,59,108,43,43,41,123,105,102,40,120,38,38,111,41,123,97,61,48,44,116,124,124,111,46,111,119,110,101,114,68,111,99,117,109,101,110,116,61,61,61,67,124,124,40,84,40,111,41,44,110,61,33,69,41,59,119,104,105,108,101,40,115,61,118,91,97,43,43,93,41,105,102,40,115,40,111,44,116,124,124,67,44,110,41,41,123,114,46,112,117,115,104,40,111,41,59,98,114,101,97,107,125,105,38,38,40,83,61,104,41,125,109,38,38,40,40,111,61,33,115,38,38,111,41,38,38,117,45,45,44,101,38,38,99,46,112,117,115,104,40,111,41,41,125,105,102,40,117,43,61,108,44,109,38,38,108,33,61,61,117,41,123,97,61,48,59,119,104,105,108,101,40,115,61,121,91,97,43,43,93,41,115,40,99,44,102,44,116,44,110,41,59,105,102,40,101,41,123,105,102,40,48,60,117,41,119,104,105,108,101,40,108,45,45,41,99,91,108,93,124,124,102,91,108,93,124,124,40,102,91,108,93,61,113,46,99,97,108,108,40,114,41,41,59,102,61,84,101,40,102,41,125,72,46,97,112,112,108,121,40,114,44,102,41,44,105,38,38,33,101,38,38,48,60,102,46,108,101,110,103,116,104,38,38,49,60,117,43,121,46,108,101,110,103,116,104,38,38,115,101,46,117,110,105,113,117,101,83,111,114,116,40,114,41,125,114,101,116,117,114,110,32,105,38,38,40,83,61,104,44,119,61,112,41,44,99,125,44,109,63,108,101,40,114,41,58,114,41,41,41,46,115,101,108,101,99,116,111,114,61,101,125,114,101,116,117,114,110,32,97,125,44,103,61,115,101,46,115,101,108,101,99,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,38,38,101,44,99,61,33,114,38,38,104,40,101,61,108,46,115,101,108,101,99,116,111,114,124,124,101,41,59,105,102,40,110,61,110,124,124,91,93,44,49,61,61,61,99,46,108,101,110,103,116,104,41,123,105,102,40,50,60,40,111,61,99,91,48,93,61,99,91,48,93,46,115,108,105,99,101,40,48,41,41,46,108,101,110,103,116,104,38,38,34,73,68,34,61,61,61,40,97,61,111,91,48,93,41,46,116,121,112,101,38,38,57,61,61,61,116,46,110,111,100,101,84,121,112,101,38,38,69,38,38,98,46,114,101,108,97,116,105,118,101,91,111,91,49,93,46,116,121,112,101,93,41,123,105,102,40,33,40,116,61,40,98,46,102,105,110,100,46,73,68,40,97,46,109,97,116,99,104,101,115,91,48,93,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,116,41,124,124,91,93,41,91,48,93,41,41,114,101,116,117,114,110,32,110,59,108,38,38,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,44,101,61,101,46,115,108,105,99,101,40,111,46,115,104,105,102,116,40,41,46,118,97,108,117,101,46,108,101,110,103,116,104,41,125,105,61,71,46,110,101,101,100,115,67,111,110,116,101,120,116,46,116,101,115,116,40,101,41,63,48,58,111,46,108,101,110,103,116,104,59,119,104,105,108,101,40,105,45,45,41,123,105,102,40,97,61,111,91,105,93,44,98,46,114,101,108,97,116,105,118,101,91,115,61,97,46,116,121,112,101,93,41,98,114,101,97,107,59,105,102,40,40,117,61,98,46,102,105,110,100,91,115,93,41,38,38,40,114,61,117,40,97,46,109,97,116,99,104,101,115,91,48,93,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,101,101,46,116,101,115,116,40,111,91,48,93,46,116,121,112,101,41,38,38,121,101,40,116,46,112,97,114,101,110,116,78,111,100,101,41,124,124,116,41,41,41,123,105,102,40,111,46,115,112,108,105,99,101,40,105,44,49,41,44,33,40,101,61,114,46,108,101,110,103,116,104,38,38,120,101,40,111,41,41,41,114,101,116,117,114,110,32,72,46,97,112,112,108,121,40,110,44,114,41,44,110,59,98,114,101,97,107,125,125,125,114,101,116,117,114,110,40,108,124,124,102,40,101,44,99,41,41,40,114,44,116,44,33,69,44,110,44,33,116,124,124,101,101,46,116,101,115,116,40,101,41,38,38,121,101,40,116,46,112,97,114,101,110,116,78,111,100,101,41,124,124,116,41,44,110,125,44,100,46,115,111,114,116,83,116,97,98,108,101,61,107,46,115,112,108,105,116,40,34,34,41,46,115,111,114,116,40,68,41,46,106,111,105,110,40,34,34,41,61,61,61,107,44,100,46,100,101,116,101,99,116,68,117,112,108,105,99,97,116,101,115,61,33,33,108,44,84,40,41,44,100,46,115,111,114,116,68,101,116,97,99,104,101,100,61,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,49,38,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,67,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,102,105,101,108,100,115,101,116,34,41,41,125,41,44,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,105,110,110,101,114,72,84,77,76,61,34,60,97,32,104,114,101,102,61,39,35,39,62,60,47,97,62,34,44,34,35,34,61,61,61,101,46,102,105,114,115,116,67,104,105,108,100,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,41,125,41,124,124,102,101,40,34,116,121,112,101,124,104,114,101,102,124,104,101,105,103,104,116,124,119,105,100,116,104,34,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,33,110,41,114,101,116,117,114,110,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,116,44,34,116,121,112,101,34,61,61,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,49,58,50,41,125,41,44,100,46,97,116,116,114,105,98,117,116,101,115,38,38,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,105,110,110,101,114,72,84,77,76,61,34,60,105,110,112,117,116,47,62,34,44,101,46,102,105,114,115,116,67,104,105,108,100,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,118,97,108,117,101,34,44,34,34,41,44,34,34,61,61,61,101,46,102,105,114,115,116,67,104,105,108,100,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,118,97,108,117,101,34,41,125,41,124,124,102,101,40,34,118,97,108,117,101,34,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,33,110,38,38,34,105,110,112,117,116,34,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,114,101,116,117,114,110,32,101,46,100,101,102,97,117,108,116,86,97,108,117,101,125,41,44,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,105,115,97,98,108,101,100,34,41,125,41,124,124,102,101,40,82,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,59,105,102,40,33,110,41,114,101,116,117,114,110,33,48,61,61,61,101,91,116,93,63,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,58,40,114,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,116,41,41,38,38,114,46,115,112,101,99,105,102,105,101,100,63,114,46,118,97,108,117,101,58,110,117,108,108,125,41,44,115,101,125,40,67,41,59,107,46,102,105,110,100,61,104,44,107,46,101,120,112,114,61,104,46,115,101,108,101,99,116,111,114,115,44,107,46,101,120,112,114,91,34,58,34,93,61,107,46,101,120,112,114,46,112,115,101,117,100,111,115,44,107,46,117,110,105,113,117,101,83,111,114,116,61,107,46,117,110,105,113,117,101,61,104,46,117,110,105,113,117,101,83,111,114,116,44,107,46,116,101,120,116,61,104,46,103,101,116,84,101,120,116,44,107,46,105,115,88,77,76,68,111,99,61,104,46,105,115,88,77,76,44,107,46,99,111,110,116,97,105,110,115,61,104,46,99,111,110,116,97,105,110,115,44,107,46,101,115,99,97,112,101,83,101,108,101,99,116,111,114,61,104,46,101,115,99,97,112,101,59,118,97,114,32,84,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,91,93,44,105,61,118,111,105,100,32,48,33,61,61,110,59,119,104,105,108,101,40,40,101,61,101,91,116,93,41,38,38,57,33,61,61,101,46,110,111,100,101,84,121,112,101,41,105,102,40,49,61,61,61,101,46,110,111,100,101,84,121,112,101,41,123,105,102,40,105,38,38,107,40,101,41,46,105,115,40,110,41,41,98,114,101,97,107,59,114,46,112,117,115,104,40,101,41,125,114,101,116,117,114,110,32,114,125,44,83,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,91,93,59,101,59,101,61,101,46,110,101,120,116,83,105,98,108,105,110,103,41,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,101,33,61,61,116,38,38,110,46,112,117,115,104,40,101,41,59,114,101,116,117,114,110,32,110,125,44,78,61,107,46,101,120,112,114,46,109,97,116,99,104,46,110,101,101,100,115,67,111,110,116,101,120,116,59,102,117,110,99,116,105,111,110,32,65,40,101,44,116,41,123,114,101,116,117,114,110,32,101,46,110,111,100,101,78,97,109,101,38,38,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,118,97,114,32,68,61,47,94,60,40,91,97,45,122,93,91,94,92,47,92,48,62,58,92,120,50,48,92,116,92,114,92,110,92,102,93,42,41,91,92,120,50,48,92,116,92,114,92,110,92,102,93,42,92,47,63,62,40,63,58,60,92,47,92,49,62,124,41,36,47,105,59,102,117,110,99,116,105,111,110,32,106,40,101,44,110,44,114,41,123,114,101,116,117,114,110,32,109,40,110,41,63,107,46,103,114,101,112,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,33,33,110,46,99,97,108,108,40,101,44,116,44,101,41,33,61,61,114,125,41,58,110,46,110,111,100,101,84,121,112,101,63,107,46,103,114,101,112,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,61,61,110,33,61,61,114,125,41,58,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,110,63,107,46,103,114,101,112,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,45,49,60,105,46,99,97,108,108,40,110,44,101,41,33,61,61,114,125,41,58,107,46,102,105,108,116,101,114,40,110,44,101,44,114,41,125,107,46,102,105,108,116,101,114,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,116,91,48,93,59,114,101,116,117,114,110,32,110,38,38,40,101,61,34,58,110,111,116,40,34,43,101,43,34,41,34,41,44,49,61,61,61,116,46,108,101,110,103,116,104,38,38,49,61,61,61,114,46,110,111,100,101,84,121,112,101,63,107,46,102,105,110,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,40,114,44,101,41,63,91,114,93,58,91,93,58,107,46,102,105,110,100,46,109,97,116,99,104,101,115,40,101,44,107,46,103,114,101,112,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,49,61,61,61,101,46,110,111,100,101,84,121,112,101,125,41,41,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,102,105,110,100,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,61,116,104,105,115,46,108,101,110,103,116,104,44,105,61,116,104,105,115,59,105,102,40,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,107,40,101,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,116,61,48,59,116,60,114,59,116,43,43,41,105,102,40,107,46,99,111,110,116,97,105,110,115,40,105,91,116,93,44,116,104,105,115,41,41,114,101,116,117,114,110,33,48,125,41,41,59,102,111,114,40,110,61,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,91,93,41,44,116,61,48,59,116,60,114,59,116,43,43,41,107,46,102,105,110,100,40,101,44,105,91,116,93,44,110,41,59,114,101,116,117,114,110,32,49,60,114,63,107,46,117,110,105,113,117,101,83,111,114,116,40,110,41,58,110,125,44,102,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,106,40,116,104,105,115,44,101,124,124,91,93,44,33,49,41,41,125,44,110,111,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,106,40,116,104,105,115,44,101,124,124,91,93,44,33,48,41,41,125,44,105,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,33,106,40,116,104,105,115,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,78,46,116,101,115,116,40,101,41,63,107,40,101,41,58,101,124,124,91,93,44,33,49,41,46,108,101,110,103,116,104,125,125,41,59,118,97,114,32,113,44,76,61,47,94,40,63,58,92,115,42,40,60,91,92,119,92,87,93,43,62,41,91,94,62,93,42,124,35,40,91,92,119,45,93,43,41,41,36,47,59,40,107,46,102,110,46,105,110,105,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,59,105,102,40,33,101,41,114,101,116,117,114,110,32,116,104,105,115,59,105,102,40,110,61,110,124,124,113,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,41,123,105,102,40,33,40,114,61,34,60,34,61,61,61,101,91,48,93,38,38,34,62,34,61,61,61,101,91,101,46,108,101,110,103,116,104,45,49,93,38,38,51,60,61,101,46,108,101,110,103,116,104,63,91,110,117,108,108,44,101,44,110,117,108,108,93,58,76,46,101,120,101,99,40,101,41,41,124,124,33,114,91,49,93,38,38,116,41,114,101,116,117,114,110,33,116,124,124,116,46,106,113,117,101,114,121,63,40,116,124,124,110,41,46,102,105,110,100,40,101,41,58,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,116,41,46,102,105,110,100,40,101,41,59,105,102,40,114,91,49,93,41,123,105,102,40,116,61,116,32,105,110,115,116,97,110,99,101,111,102,32,107,63,116,91,48,93,58,116,44,107,46,109,101,114,103,101,40,116,104,105,115,44,107,46,112,97,114,115,101,72,84,77,76,40,114,91,49,93,44,116,38,38,116,46,110,111,100,101,84,121,112,101,63,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,116,58,69,44,33,48,41,41,44,68,46,116,101,115,116,40,114,91,49,93,41,38,38,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,116,41,41,102,111,114,40,114,32,105,110,32,116,41,109,40,116,104,105,115,91,114,93,41,63,116,104,105,115,91,114,93,40,116,91,114,93,41,58,116,104,105,115,46,97,116,116,114,40,114,44,116,91,114,93,41,59,114,101,116,117,114,110,32,116,104,105,115,125,114,101,116,117,114,110,40,105,61,69,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,114,91,50,93,41,41,38,38,40,116,104,105,115,91,48,93,61,105,44,116,104,105,115,46,108,101,110,103,116,104,61,49,41,44,116,104,105,115,125,114,101,116,117,114,110,32,101,46,110,111,100,101,84,121,112,101,63,40,116,104,105,115,91,48,93,61,101,44,116,104,105,115,46,108,101,110,103,116,104,61,49,44,116,104,105,115,41,58,109,40,101,41,63,118,111,105,100,32,48,33,61,61,110,46,114,101,97,100,121,63,110,46,114,101,97,100,121,40,101,41,58,101,40,107,41,58,107,46,109,97,107,101,65,114,114,97,121,40,101,44,116,104,105,115,41,125,41,46,112,114,111,116,111,116,121,112,101,61,107,46,102,110,44,113,61,107,40,69,41,59,118,97,114,32,72,61,47,94,40,63,58,112,97,114,101,110,116,115,124,112,114,101,118,40,63,58,85,110,116,105,108,124,65,108,108,41,41,47,44,79,61,123,99,104,105,108,100,114,101,110,58,33,48,44,99,111,110,116,101,110,116,115,58,33,48,44,110,101,120,116,58,33,48,44,112,114,101,118,58,33,48,125,59,102,117,110,99,116,105,111,110,32,80,40,101,44,116,41,123,119,104,105,108,101,40,40,101,61,101,91,116,93,41,38,38,49,33,61,61,101,46,110,111,100,101,84,121,112,101,41,59,114,101,116,117,114,110,32,101,125,107,46,102,110,46,101,120,116,101,110,100,40,123,104,97,115,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,40,101,44,116,104,105,115,41,44,110,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,48,59,101,60,110,59,101,43,43,41,105,102,40,107,46,99,111,110,116,97,105,110,115,40,116,104,105,115,44,116,91,101,93,41,41,114,101,116,117,114,110,33,48,125,41,125,44,99,108,111,115,101,115,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,48,44,105,61,116,104,105,115,46,108,101,110,103,116,104,44,111,61,91,93,44,97,61,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,38,38,107,40,101,41,59,105,102,40,33,78,46,116,101,115,116,40,101,41,41,102,111,114,40,59,114,60,105,59,114,43,43,41,102,111,114,40,110,61,116,104,105,115,91,114,93,59,110,38,38,110,33,61,61,116,59,110,61,110,46,112,97,114,101,110,116,78,111,100,101,41,105,102,40,110,46,110,111,100,101,84,121,112,101,60,49,49,38,38,40,97,63,45,49,60,97,46,105,110,100,101,120,40,110,41,58,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,107,46,102,105,110,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,40,110,44,101,41,41,41,123,111,46,112,117,115,104,40,110,41,59,98,114,101,97,107,125,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,49,60,111,46,108,101,110,103,116,104,63,107,46,117,110,105,113,117,101,83,111,114,116,40,111,41,58,111,41,125,44,105,110,100,101,120,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,63,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,105,46,99,97,108,108,40,107,40,101,41,44,116,104,105,115,91,48,93,41,58,105,46,99,97,108,108,40,116,104,105,115,44,101,46,106,113,117,101,114,121,63,101,91,48,93,58,101,41,58,116,104,105,115,91,48,93,38,38,116,104,105,115,91,48,93,46,112,97,114,101,110,116,78,111,100,101,63,116,104,105,115,46,102,105,114,115,116,40,41,46,112,114,101,118,65,108,108,40,41,46,108,101,110,103,116,104,58,45,49,125,44,97,100,100,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,107,46,117,110,105,113,117,101,83,111,114,116,40,107,46,109,101,114,103,101,40,116,104,105,115,46,103,101,116,40,41,44,107,40,101,44,116,41,41,41,41,125,44,97,100,100,66,97,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,100,100,40,110,117,108,108,61,61,101,63,116,104,105,115,46,112,114,101,118,79,98,106,101,99,116,58,116,104,105,115,46,112,114,101,118,79,98,106,101,99,116,46,102,105,108,116,101,114,40,101,41,41,125,125,41,44,107,46,101,97,99,104,40,123,112,97,114,101,110,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,97,114,101,110,116,78,111,100,101,59,114,101,116,117,114,110,32,116,38,38,49,49,33,61,61,116,46,110,111,100,101,84,121,112,101,63,116,58,110,117,108,108,125,44,112,97,114,101,110,116,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,84,40,101,44,34,112,97,114,101,110,116,78,111,100,101,34,41,125,44,112,97,114,101,110,116,115,85,110,116,105,108,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,84,40,101,44,34,112,97,114,101,110,116,78,111,100,101,34,44,110,41,125,44,110,101,120,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,80,40,101,44,34,110,101,120,116,83,105,98,108,105,110,103,34,41,125,44,112,114,101,118,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,80,40,101,44,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,41,125,44,110,101,120,116,65,108,108,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,84,40,101,44,34,110,101,120,116,83,105,98,108,105,110,103,34,41,125,44,112,114,101,118,65,108,108,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,84,40,101,44,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,41,125,44,110,101,120,116,85,110,116,105,108,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,84,40,101,44,34,110,101,120,116,83,105,98,108,105,110,103,34,44,110,41,125,44,112,114,101,118,85,110,116,105,108,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,84,40,101,44,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,44,110,41,125,44,115,105,98,108,105,110,103,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,83,40,40,101,46,112,97,114,101,110,116,78,111,100,101,124,124,123,125,41,46,102,105,114,115,116,67,104,105,108,100,44,101,41,125,44,99,104,105,108,100,114,101,110,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,83,40,101,46,102,105,114,115,116,67,104,105,108,100,41,125,44,99,111,110,116,101,110,116,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,99,111,110,116,101,110,116,68,111,99,117,109,101,110,116,63,101,46,99,111,110,116,101,110,116,68,111,99,117,109,101,110,116,58,40,65,40,101,44,34,116,101,109,112,108,97,116,101,34,41,38,38,40,101,61,101,46,99,111,110,116,101,110,116,124,124,101,41,44,107,46,109,101,114,103,101,40,91,93,44,101,46,99,104,105,108,100,78,111,100,101,115,41,41,125,125,44,102,117,110,99,116,105,111,110,40,114,44,105,41,123,107,46,102,110,91,114,93,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,107,46,109,97,112,40,116,104,105,115,44,105,44,101,41,59,114,101,116,117,114,110,34,85,110,116,105,108,34,33,61,61,114,46,115,108,105,99,101,40,45,53,41,38,38,40,116,61,101,41,44,116,38,38,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,38,38,40,110,61,107,46,102,105,108,116,101,114,40,116,44,110,41,41,44,49,60,116,104,105,115,46,108,101,110,103,116,104,38,38,40,79,91,114,93,124,124,107,46,117,110,105,113,117,101,83,111,114,116,40,110,41,44,72,46,116,101,115,116,40,114,41,38,38,110,46,114,101,118,101,114,115,101,40,41,41,44,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,110,41,125,125,41,59,118,97,114,32,82,61,47,91,94,92,120,50,48,92,116,92,114,92,110,92,102,93,43,47,103,59,102,117,110,99,116,105,111,110,32,77,40,101,41,123,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,73,40,101,41,123,116,104,114,111,119,32,101,125,102,117,110,99,116,105,111,110,32,87,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,59,116,114,121,123,101,38,38,109,40,105,61,101,46,112,114,111,109,105,115,101,41,63,105,46,99,97,108,108,40,101,41,46,100,111,110,101,40,116,41,46,102,97,105,108,40,110,41,58,101,38,38,109,40,105,61,101,46,116,104,101,110,41,63,105,46,99,97,108,108,40,101,44,116,44,110,41,58,116,46,97,112,112,108,121,40,118,111,105,100,32,48,44,91,101,93,46,115,108,105,99,101,40,114,41,41,125,99,97,116,99,104,40,101,41,123,110,46,97,112,112,108,121,40,118,111,105,100,32,48,44,91,101,93,41,125,125,107,46,67,97,108,108,98,97,99,107,115,61,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,101,44,110,59,114,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,114,63,40,101,61,114,44,110,61,123,125,44,107,46,101,97,99,104,40,101,46,109,97,116,99,104,40,82,41,124,124,91,93,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,110,91,116,93,61,33,48,125,41,44,110,41,58,107,46,101,120,116,101,110,100,40,123,125,44,114,41,59,118,97,114,32,105,44,116,44,111,44,97,44,115,61,91,93,44,117,61,91,93,44,108,61,45,49,44,99,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,97,61,97,124,124,114,46,111,110,99,101,44,111,61,105,61,33,48,59,117,46,108,101,110,103,116,104,59,108,61,45,49,41,123,116,61,117,46,115,104,105,102,116,40,41,59,119,104,105,108,101,40,43,43,108,60,115,46,108,101,110,103,116,104,41,33,49,61,61,61,115,91,108,93,46,97,112,112,108,121,40,116,91,48,93,44,116,91,49,93,41,38,38,114,46,115,116,111,112,79,110,70,97,108,115,101,38,38,40,108,61,115,46,108,101,110,103,116,104,44,116,61,33,49,41,125,114,46,109,101,109,111,114,121,124,124,40,116,61,33,49,41,44,105,61,33,49,44,97,38,38,40,115,61,116,63,91,93,58,34,34,41,125,44,102,61,123,97,100,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,38,38,40,116,38,38,33,105,38,38,40,108,61,115,46,108,101,110,103,116,104,45,49,44,117,46,112,117,115,104,40,116,41,41,44,102,117,110,99,116,105,111,110,32,110,40,101,41,123,107,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,109,40,116,41,63,114,46,117,110,105,113,117,101,38,38,102,46,104,97,115,40,116,41,124,124,115,46,112,117,115,104,40,116,41,58,116,38,38,116,46,108,101,110,103,116,104,38,38,34,115,116,114,105,110,103,34,33,61,61,119,40,116,41,38,38,110,40,116,41,125,41,125,40,97,114,103,117,109,101,110,116,115,41,44,116,38,38,33,105,38,38,99,40,41,41,44,116,104,105,115,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,46,101,97,99,104,40,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,59,119,104,105,108,101,40,45,49,60,40,110,61,107,46,105,110,65,114,114,97,121,40,116,44,115,44,110,41,41,41,115,46,115,112,108,105,99,101,40,110,44,49,41,44,110,60,61,108,38,38,108,45,45,125,41,44,116,104,105,115,125,44,104,97,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,63,45,49,60,107,46,105,110,65,114,114,97,121,40,101,44,115,41,58,48,60,115,46,108,101,110,103,116,104,125,44,101,109,112,116,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,38,38,40,115,61,91,93,41,44,116,104,105,115,125,44,100,105,115,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,61,117,61,91,93,44,115,61,116,61,34,34,44,116,104,105,115,125,44,100,105,115,97,98,108,101,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,115,125,44,108,111,99,107,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,61,117,61,91,93,44,116,124,124,105,124,124,40,115,61,116,61,34,34,41,44,116,104,105,115,125,44,108,111,99,107,101,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,33,97,125,44,102,105,114,101,87,105,116,104,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,97,124,124,40,116,61,91,101,44,40,116,61,116,124,124,91,93,41,46,115,108,105,99,101,63,116,46,115,108,105,99,101,40,41,58,116,93,44,117,46,112,117,115,104,40,116,41,44,105,124,124,99,40,41,41,44,116,104,105,115,125,44,102,105,114,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,46,102,105,114,101,87,105,116,104,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,116,104,105,115,125,44,102,105,114,101,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,33,111,125,125,59,114,101,116,117,114,110,32,102,125,44,107,46,101,120,116,101,110,100,40,123,68,101,102,101,114,114,101,100,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,111,61,91,91,34,110,111,116,105,102,121,34,44,34,112,114,111,103,114,101,115,115,34,44,107,46,67,97,108,108,98,97,99,107,115,40,34,109,101,109,111,114,121,34,41,44,107,46,67,97,108,108,98,97,99,107,115,40,34,109,101,109,111,114,121,34,41,44,50,93,44,91,34,114,101,115,111,108,118,101,34,44,34,100,111,110,101,34,44,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,48,44,34,114,101,115,111,108,118,101,100,34,93,44,91,34,114,101,106,101,99,116,34,44,34,102,97,105,108,34,44,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,49,44,34,114,101,106,101,99,116,101,100,34,93,93,44,105,61,34,112,101,110,100,105,110,103,34,44,97,61,123,115,116,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,125,44,97,108,119,97,121,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,46,100,111,110,101,40,97,114,103,117,109,101,110,116,115,41,46,102,97,105,108,40,97,114,103,117,109,101,110,116,115,41,44,116,104,105,115,125,44,34,99,97,116,99,104,34,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,116,104,101,110,40,110,117,108,108,44,101,41,125,44,112,105,112,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,61,97,114,103,117,109,101,110,116,115,59,114,101,116,117,114,110,32,107,46,68,101,102,101,114,114,101,100,40,102,117,110,99,116,105,111,110,40,114,41,123,107,46,101,97,99,104,40,111,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,109,40,105,91,116,91,52,93,93,41,38,38,105,91,116,91,52,93,93,59,115,91,116,91,49,93,93,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,38,38,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,101,38,38,109,40,101,46,112,114,111,109,105,115,101,41,63,101,46,112,114,111,109,105,115,101,40,41,46,112,114,111,103,114,101,115,115,40,114,46,110,111,116,105,102,121,41,46,100,111,110,101,40,114,46,114,101,115,111,108,118,101,41,46,102,97,105,108,40,114,46,114,101,106,101,99,116,41,58,114,91,116,91,48,93,43,34,87,105,116,104,34,93,40,116,104,105,115,44,110,63,91,101,93,58,97,114,103,117,109,101,110,116,115,41,125,41,125,41,44,105,61,110,117,108,108,125,41,46,112,114,111,109,105,115,101,40,41,125,44,116,104,101,110,58,102,117,110,99,116,105,111,110,40,116,44,110,44,114,41,123,118,97,114,32,117,61,48,59,102,117,110,99,116,105,111,110,32,108,40,105,44,111,44,97,44,115,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,44,114,61,97,114,103,117,109,101,110,116,115,44,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,59,105,102,40,33,40,105,60,117,41,41,123,105,102,40,40,101,61,97,46,97,112,112,108,121,40,110,44,114,41,41,61,61,61,111,46,112,114,111,109,105,115,101,40,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,84,104,101,110,97,98,108,101,32,115,101,108,102,45,114,101,115,111,108,117,116,105,111,110,34,41,59,116,61,101,38,38,40,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,41,38,38,101,46,116,104,101,110,44,109,40,116,41,63,115,63,116,46,99,97,108,108,40,101,44,108,40,117,44,111,44,77,44,115,41,44,108,40,117,44,111,44,73,44,115,41,41,58,40,117,43,43,44,116,46,99,97,108,108,40,101,44,108,40,117,44,111,44,77,44,115,41,44,108,40,117,44,111,44,73,44,115,41,44,108,40,117,44,111,44,77,44,111,46,110,111,116,105,102,121,87,105,116,104,41,41,41,58,40,97,33,61,61,77,38,38,40,110,61,118,111,105,100,32,48,44,114,61,91,101,93,41,44,40,115,124,124,111,46,114,101,115,111,108,118,101,87,105,116,104,41,40,110,44,114,41,41,125,125,44,116,61,115,63,101,58,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,101,40,41,125,99,97,116,99,104,40,101,41,123,107,46,68,101,102,101,114,114,101,100,46,101,120,99,101,112,116,105,111,110,72,111,111,107,38,38,107,46,68,101,102,101,114,114,101,100,46,101,120,99,101,112,116,105,111,110,72,111,111,107,40,101,44,116,46,115,116,97,99,107,84,114,97,99,101,41,44,117,60,61,105,43,49,38,38,40,97,33,61,61,73,38,38,40,110,61,118,111,105,100,32,48,44,114,61,91,101,93,41,44,111,46,114,101,106,101,99,116,87,105,116,104,40,110,44,114,41,41,125,125,59,105,63,116,40,41,58,40,107,46,68,101,102,101,114,114,101,100,46,103,101,116,83,116,97,99,107,72,111,111,107,38,38,40,116,46,115,116,97,99,107,84,114,97,99,101,61,107,46,68,101,102,101,114,114,101,100,46,103,101,116,83,116,97,99,107,72,111,111,107,40,41,41,44,67,46,115,101,116,84,105,109,101,111,117,116,40,116,41,41,125,125,114,101,116,117,114,110,32,107,46,68,101,102,101,114,114,101,100,40,102,117,110,99,116,105,111,110,40,101,41,123,111,91,48,93,91,51,93,46,97,100,100,40,108,40,48,44,101,44,109,40,114,41,63,114,58,77,44,101,46,110,111,116,105,102,121,87,105,116,104,41,41,44,111,91,49,93,91,51,93,46,97,100,100,40,108,40,48,44,101,44,109,40,116,41,63,116,58,77,41,41,44,111,91,50,93,91,51,93,46,97,100,100,40,108,40,48,44,101,44,109,40,110,41,63,110,58,73,41,41,125,41,46,112,114,111,109,105,115,101,40,41,125,44,112,114,111,109,105,115,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,101,63,107,46,101,120,116,101,110,100,40,101,44,97,41,58,97,125,125,44,115,61,123,125,59,114,101,116,117,114,110,32,107,46,101,97,99,104,40,111,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,91,50,93,44,114,61,116,91,53,93,59,97,91,116,91,49,93,93,61,110,46,97,100,100,44,114,38,38,110,46,97,100,100,40,102,117,110,99,116,105,111,110,40,41,123,105,61,114,125,44,111,91,51,45,101,93,91,50,93,46,100,105,115,97,98,108,101,44,111,91,51,45,101,93,91,51,93,46,100,105,115,97,98,108,101,44,111,91,48,93,91,50,93,46,108,111,99,107,44,111,91,48,93,91,51,93,46,108,111,99,107,41,44,110,46,97,100,100,40,116,91,51,93,46,102,105,114,101,41,44,115,91,116,91,48,93,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,91,116,91,48,93,43,34,87,105,116,104,34,93,40,116,104,105,115,61,61,61,115,63,118,111,105,100,32,48,58,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,116,104,105,115,125,44,115,91,116,91,48,93,43,34,87,105,116,104,34,93,61,110,46,102,105,114,101,87,105,116,104,125,41,44,97,46,112,114,111,109,105,115,101,40,115,41,44,101,38,38,101,46,99,97,108,108,40,115,44,115,41,44,115,125,44,119,104,101,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,116,61,110,44,114,61,65,114,114,97,121,40,116,41,44,105,61,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,111,61,107,46,68,101,102,101,114,114,101,100,40,41,44,97,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,91,116,93,61,116,104,105,115,44,105,91,116,93,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,58,101,44,45,45,110,124,124,111,46,114,101,115,111,108,118,101,87,105,116,104,40,114,44,105,41,125,125,59,105,102,40,110,60,61,49,38,38,40,87,40,101,44,111,46,100,111,110,101,40,97,40,116,41,41,46,114,101,115,111,108,118,101,44,111,46,114,101,106,101,99,116,44,33,110,41,44,34,112,101,110,100,105,110,103,34,61,61,61,111,46,115,116,97,116,101,40,41,124,124,109,40,105,91,116,93,38,38,105,91,116,93,46,116,104,101,110,41,41,41,114,101,116,117,114,110,32,111,46,116,104,101,110,40,41,59,119,104,105,108,101,40,116,45,45,41,87,40,105,91,116,93,44,97,40,116,41,44,111,46,114,101,106,101,99,116,41,59,114,101,116,117,114,110,32,111,46,112,114,111,109,105,115,101,40,41,125,125,41,59,118,97,114,32,36,61,47,94,40,69,118,97,108,124,73,110,116,101,114,110,97,108,124,82,97,110,103,101,124,82,101,102,101,114,101,110,99,101,124,83,121,110,116,97,120,124,84,121,112,101,124,85,82,73,41,69,114,114,111,114,36,47,59,107,46,68,101,102,101,114,114,101,100,46,101,120,99,101,112,116,105,111,110,72,111,111,107,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,67,46,99,111,110,115,111,108,101,38,38,67,46,99,111,110,115,111,108,101,46,119,97,114,110,38,38,101,38,38,36,46,116,101,115,116,40,101,46,110,97,109,101,41,38,38,67,46,99,111,110,115,111,108,101,46,119,97,114,110,40,34,106,81,117,101,114,121,46,68,101,102,101,114,114,101,100,32,101,120,99,101,112,116,105,111,110,58,32,34,43,101,46,109,101,115,115,97,103,101,44,101,46,115,116,97,99,107,44,116,41,125,44,107,46,114,101,97,100,121,69,120,99,101,112,116,105,111,110,61,102,117,110,99,116,105,111,110,40,101,41,123,67,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,101,125,41,125,59,118,97,114,32,70,61,107,46,68,101,102,101,114,114,101,100,40,41,59,102,117,110,99,116,105,111,110,32,66,40,41,123,69,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,68,79,77,67,111,110,116,101,110,116,76,111,97,100,101,100,34,44,66,41,44,67,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,108,111,97,100,34,44,66,41,44,107,46,114,101,97,100,121,40,41,125,107,46,102,110,46,114,101,97,100,121,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,70,46,116,104,101,110,40,101,41,91,34,99,97,116,99,104,34,93,40,102,117,110,99,116,105,111,110,40,101,41,123,107,46,114,101,97,100,121,69,120,99,101,112,116,105,111,110,40,101,41,125,41,44,116,104,105,115,125,44,107,46,101,120,116,101,110,100,40,123,105,115,82,101,97,100,121,58,33,49,44,114,101,97,100,121,87,97,105,116,58,49,44,114,101,97,100,121,58,102,117,110,99,116,105,111,110,40,101,41,123,40,33,48,61,61,61,101,63,45,45,107,46,114,101,97,100,121,87,97,105,116,58,107,46,105,115,82,101,97,100,121,41,124,124,40,107,46,105,115,82,101,97,100,121,61,33,48,41,33,61,61,101,38,38,48,60,45,45,107,46,114,101,97,100,121,87,97,105,116,124,124,70,46,114,101,115,111,108,118,101,87,105,116,104,40,69,44,91,107,93,41,125,125,41,44,107,46,114,101,97,100,121,46,116,104,101,110,61,70,46,116,104,101,110,44,34,99,111,109,112,108,101,116,101,34,61,61,61,69,46,114,101,97,100,121,83,116,97,116,101,124,124,34,108,111,97,100,105,110,103,34,33,61,61,69,46,114,101,97,100,121,83,116,97,116,101,38,38,33,69,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,100,111,83,99,114,111,108,108,63,67,46,115,101,116,84,105,109,101,111,117,116,40,107,46,114,101,97,100,121,41,58,40,69,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,68,79,77,67,111,110,116,101,110,116,76,111,97,100,101,100,34,44,66,41,44,67,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,108,111,97,100,34,44,66,41,41,59,118,97,114,32,95,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,44,105,44,111,44,97,41,123,118,97,114,32,115,61,48,44,117,61,101,46,108,101,110,103,116,104,44,108,61,110,117,108,108,61,61,110,59,105,102,40,34,111,98,106,101,99,116,34,61,61,61,119,40,110,41,41,102,111,114,40,115,32,105,110,32,105,61,33,48,44,110,41,95,40,101,44,116,44,115,44,110,91,115,93,44,33,48,44,111,44,97,41,59,101,108,115,101,32,105,102,40,118,111,105,100,32,48,33,61,61,114,38,38,40,105,61,33,48,44,109,40,114,41,124,124,40,97,61,33,48,41,44,108,38,38,40,97,63,40,116,46,99,97,108,108,40,101,44,114,41,44,116,61,110,117,108,108,41,58,40,108,61,116,44,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,108,46,99,97,108,108,40,107,40,101,41,44,110,41,125,41,41,44,116,41,41,102,111,114,40,59,115,60,117,59,115,43,43,41,116,40,101,91,115,93,44,110,44,97,63,114,58,114,46,99,97,108,108,40,101,91,115,93,44,115,44,116,40,101,91,115,93,44,110,41,41,41,59,114,101,116,117,114,110,32,105,63,101,58,108,63,116,46,99,97,108,108,40,101,41,58,117,63,116,40,101,91,48,93,44,110,41,58,111,125,44,122,61,47,94,45,109,115,45,47,44,85,61,47,45,40,91,97,45,122,93,41,47,103,59,102,117,110,99,116,105,111,110,32,88,40,101,44,116,41,123,114,101,116,117,114,110,32,116,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,102,117,110,99,116,105,111,110,32,86,40,101,41,123,114,101,116,117,114,110,32,101,46,114,101,112,108,97,99,101,40,122,44,34,109,115,45,34,41,46,114,101,112,108,97,99,101,40,85,44,88,41,125,118,97,114,32,71,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,49,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,57,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,33,43,101,46,110,111,100,101,84,121,112,101,125,59,102,117,110,99,116,105,111,110,32,89,40,41,123,116,104,105,115,46,101,120,112,97,110,100,111,61,107,46,101,120,112,97,110,100,111,43,89,46,117,105,100,43,43,125,89,46,117,105,100,61,49,44,89,46,112,114,111,116,111,116,121,112,101,61,123,99,97,99,104,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,59,114,101,116,117,114,110,32,116,124,124,40,116,61,123,125,44,71,40,101,41,38,38,40,101,46,110,111,100,101,84,121,112,101,63,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,61,116,58,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,116,104,105,115,46,101,120,112,97,110,100,111,44,123,118,97,108,117,101,58,116,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,41,41,41,44,116,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,61,116,104,105,115,46,99,97,99,104,101,40,101,41,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,41,105,91,86,40,116,41,93,61,110,59,101,108,115,101,32,102,111,114,40,114,32,105,110,32,116,41,105,91,86,40,114,41,93,61,116,91,114,93,59,114,101,116,117,114,110,32,105,125,44,103,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,63,116,104,105,115,46,99,97,99,104,101,40,101,41,58,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,38,38,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,91,86,40,116,41,93,125,44,97,99,99,101,115,115,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,124,124,116,38,38,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,38,38,118,111,105,100,32,48,61,61,61,110,63,116,104,105,115,46,103,101,116,40,101,44,116,41,58,40,116,104,105,115,46,115,101,116,40,101,44,116,44,110,41,44,118,111,105,100,32,48,33,61,61,110,63,110,58,116,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,59,105,102,40,118,111,105,100,32,48,33,61,61,114,41,123,105,102,40,118,111,105,100,32,48,33,61,61,116,41,123,110,61,40,116,61,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,116,46,109,97,112,40,86,41,58,40,116,61,86,40,116,41,41,105,110,32,114,63,91,116,93,58,116,46,109,97,116,99,104,40,82,41,124,124,91,93,41,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,41,100,101,108,101,116,101,32,114,91,116,91,110,93,93,125,40,118,111,105,100,32,48,61,61,61,116,124,124,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,114,41,41,38,38,40,101,46,110,111,100,101,84,121,112,101,63,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,61,118,111,105,100,32,48,58,100,101,108,101,116,101,32,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,41,125,125,44,104,97,115,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,59,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,116,38,38,33,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,116,41,125,125,59,118,97,114,32,81,61,110,101,119,32,89,44,74,61,110,101,119,32,89,44,75,61,47,94,40,63,58,92,123,91,92,119,92,87,93,42,92,125,124,92,91,91,92,119,92,87,93,42,92,93,41,36,47,44,90,61,47,91,65,45,90,93,47,103,59,102,117,110,99,116,105,111,110,32,101,101,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,59,105,102,40,118,111,105,100,32,48,61,61,61,110,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,41,105,102,40,114,61,34,100,97,116,97,45,34,43,116,46,114,101,112,108,97,99,101,40,90,44,34,45,36,38,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,40,110,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,114,41,41,41,123,116,114,121,123,110,61,34,116,114,117,101,34,61,61,61,40,105,61,110,41,124,124,34,102,97,108,115,101,34,33,61,61,105,38,38,40,34,110,117,108,108,34,61,61,61,105,63,110,117,108,108,58,105,61,61,61,43,105,43,34,34,63,43,105,58,75,46,116,101,115,116,40,105,41,63,74,83,79,78,46,112,97,114,115,101,40,105,41,58,105,41,125,99,97,116,99,104,40,101,41,123,125,74,46,115,101,116,40,101,44,116,44,110,41,125,101,108,115,101,32,110,61,118,111,105,100,32,48,59,114,101,116,117,114,110,32,110,125,107,46,101,120,116,101,110,100,40,123,104,97,115,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,74,46,104,97,115,68,97,116,97,40,101,41,124,124,81,46,104,97,115,68,97,116,97,40,101,41,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,74,46,97,99,99,101,115,115,40,101,44,116,44,110,41,125,44,114,101,109,111,118,101,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,74,46,114,101,109,111,118,101,40,101,44,116,41,125,44,95,100,97,116,97,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,81,46,97,99,99,101,115,115,40,101,44,116,44,110,41,125,44,95,114,101,109,111,118,101,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,81,46,114,101,109,111,118,101,40,101,44,116,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,100,97,116,97,58,102,117,110,99,116,105,111,110,40,110,44,101,41,123,118,97,114,32,116,44,114,44,105,44,111,61,116,104,105,115,91,48,93,44,97,61,111,38,38,111,46,97,116,116,114,105,98,117,116,101,115,59,105,102,40,118,111,105,100,32,48,61,61,61,110,41,123,105,102,40,116,104,105,115,46,108,101,110,103,116,104,38,38,40,105,61,74,46,103,101,116,40,111,41,44,49,61,61,61,111,46,110,111,100,101,84,121,112,101,38,38,33,81,46,103,101,116,40,111,44,34,104,97,115,68,97,116,97,65,116,116,114,115,34,41,41,41,123,116,61,97,46,108,101,110,103,116,104,59,119,104,105,108,101,40,116,45,45,41,97,91,116,93,38,38,48,61,61,61,40,114,61,97,91,116,93,46,110,97,109,101,41,46,105,110,100,101,120,79,102,40,34,100,97,116,97,45,34,41,38,38,40,114,61,86,40,114,46,115,108,105,99,101,40,53,41,41,44,101,101,40,111,44,114,44,105,91,114,93,41,41,59,81,46,115,101,116,40,111,44,34,104,97,115,68,97,116,97,65,116,116,114,115,34,44,33,48,41,125,114,101,116,117,114,110,32,105,125,114,101,116,117,114,110,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,63,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,74,46,115,101,116,40,116,104,105,115,44,110,41,125,41,58,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,105,102,40,111,38,38,118,111,105,100,32,48,61,61,61,101,41,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,40,116,61,74,46,103,101,116,40,111,44,110,41,41,63,116,58,118,111,105,100,32,48,33,61,61,40,116,61,101,101,40,111,44,110,41,41,63,116,58,118,111,105,100,32,48,59,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,74,46,115,101,116,40,116,104,105,115,44,110,44,101,41,125,41,125,44,110,117,108,108,44,101,44,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,110,117,108,108,44,33,48,41,125,44,114,101,109,111,118,101,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,74,46,114,101,109,111,118,101,40,116,104,105,115,44,101,41,125,41,125,125,41,44,107,46,101,120,116,101,110,100,40,123,113,117,101,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,59,105,102,40,101,41,114,101,116,117,114,110,32,116,61,40,116,124,124,34,102,120,34,41,43,34,113,117,101,117,101,34,44,114,61,81,46,103,101,116,40,101,44,116,41,44,110,38,38,40,33,114,124,124,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,63,114,61,81,46,97,99,99,101,115,115,40,101,44,116,44,107,46,109,97,107,101,65,114,114,97,121,40,110,41,41,58,114,46,112,117,115,104,40,110,41,41,44,114,124,124,91,93,125,44,100,101,113,117,101,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,61,116,124,124,34,102,120,34,59,118,97,114,32,110,61,107,46,113,117,101,117,101,40,101,44,116,41,44,114,61,110,46,108,101,110,103,116,104,44,105,61,110,46,115,104,105,102,116,40,41,44,111,61,107,46,95,113,117,101,117,101,72,111,111,107,115,40,101,44,116,41,59,34,105,110,112,114,111,103,114,101,115,115,34,61,61,61,105,38,38,40,105,61,110,46,115,104,105,102,116,40,41,44,114,45,45,41,44,105,38,38,40,34,102,120,34,61,61,61,116,38,38,110,46,117,110,115,104,105,102,116,40,34,105,110,112,114,111,103,114,101,115,115,34,41,44,100,101,108,101,116,101,32,111,46,115,116,111,112,44,105,46,99,97,108,108,40,101,44,102,117,110,99,116,105,111,110,40,41,123,107,46,100,101,113,117,101,117,101,40,101,44,116,41,125,44,111,41,41,44,33,114,38,38,111,38,38,111,46,101,109,112,116,121,46,102,105,114,101,40,41,125,44,95,113,117,101,117,101,72,111,111,107,115,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,43,34,113,117,101,117,101,72,111,111,107,115,34,59,114,101,116,117,114,110,32,81,46,103,101,116,40,101,44,110,41,124,124,81,46,97,99,99,101,115,115,40,101,44,110,44,123,101,109,112,116,121,58,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,46,97,100,100,40,102,117,110,99,116,105,111,110,40,41,123,81,46,114,101,109,111,118,101,40,101,44,91,116,43,34,113,117,101,117,101,34,44,110,93,41,125,41,125,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,113,117,101,117,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,50,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,116,38,38,40,110,61,116,44,116,61,34,102,120,34,44,101,45,45,41,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,101,63,107,46,113,117,101,117,101,40,116,104,105,115,91,48,93,44,116,41,58,118,111,105,100,32,48,61,61,61,110,63,116,104,105,115,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,107,46,113,117,101,117,101,40,116,104,105,115,44,116,44,110,41,59,107,46,95,113,117,101,117,101,72,111,111,107,115,40,116,104,105,115,44,116,41,44,34,102,120,34,61,61,61,116,38,38,34,105,110,112,114,111,103,114,101,115,115,34,33,61,61,101,91,48,93,38,38,107,46,100,101,113,117,101,117,101,40,116,104,105,115,44,116,41,125,41,125,44,100,101,113,117,101,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,100,101,113,117,101,117,101,40,116,104,105,115,44,101,41,125,41,125,44,99,108,101,97,114,81,117,101,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,113,117,101,117,101,40,101,124,124,34,102,120,34,44,91,93,41,125,44,112,114,111,109,105,115,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,49,44,105,61,107,46,68,101,102,101,114,114,101,100,40,41,44,111,61,116,104,105,115,44,97,61,116,104,105,115,46,108,101,110,103,116,104,44,115,61,102,117,110,99,116,105,111,110,40,41,123,45,45,114,124,124,105,46,114,101,115,111,108,118,101,87,105,116,104,40,111,44,91,111,93,41,125,59,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,38,38,40,116,61,101,44,101,61,118,111,105,100,32,48,41,44,101,61,101,124,124,34,102,120,34,59,119,104,105,108,101,40,97,45,45,41,40,110,61,81,46,103,101,116,40,111,91,97,93,44,101,43,34,113,117,101,117,101,72,111,111,107,115,34,41,41,38,38,110,46,101,109,112,116,121,38,38,40,114,43,43,44,110,46,101,109,112,116,121,46,97,100,100,40,115,41,41,59,114,101,116,117,114,110,32,115,40,41,44,105,46,112,114,111,109,105,115,101,40,116,41,125,125,41,59,118,97,114,32,116,101,61,47,91,43,45,93,63,40,63,58,92,100,42,92,46,124,41,92,100,43,40,63,58,91,101,69,93,91,43,45,93,63,92,100,43,124,41,47,46,115,111,117,114,99,101,44,110,101,61,110,101,119,32,82,101,103,69,120,112,40,34,94,40,63,58,40,91,43,45,93,41,61,124,41,40,34,43,116,101,43,34,41,40,91,97,45,122,37,93,42,41,36,34,44,34,105,34,41,44,114,101,61,91,34,84,111,112,34,44,34,82,105,103,104,116,34,44,34,66,111,116,116,111,109,34,44,34,76,101,102,116,34,93,44,105,101,61,69,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,111,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,111,110,116,97,105,110,115,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,101,41,125,44,97,101,61,123,99,111,109,112,111,115,101,100,58,33,48,125,59,105,101,46,103,101,116,82,111,111,116,78,111,100,101,38,38,40,111,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,111,110,116,97,105,110,115,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,101,41,124,124,101,46,103,101,116,82,111,111,116,78,111,100,101,40,97,101,41,61,61,61,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,125,41,59,118,97,114,32,115,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,34,110,111,110,101,34,61,61,61,40,101,61,116,124,124,101,41,46,115,116,121,108,101,46,100,105,115,112,108,97,121,124,124,34,34,61,61,61,101,46,115,116,121,108,101,46,100,105,115,112,108,97,121,38,38,111,101,40,101,41,38,38,34,110,111,110,101,34,61,61,61,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,41,125,44,117,101,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,61,123,125,59,102,111,114,40,111,32,105,110,32,116,41,97,91,111,93,61,101,46,115,116,121,108,101,91,111,93,44,101,46,115,116,121,108,101,91,111,93,61,116,91,111,93,59,102,111,114,40,111,32,105,110,32,105,61,110,46,97,112,112,108,121,40,101,44,114,124,124,91,93,41,44,116,41,101,46,115,116,121,108,101,91,111,93,61,97,91,111,93,59,114,101,116,117,114,110,32,105,125,59,102,117,110,99,116,105,111,110,32,108,101,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,61,50,48,44,115,61,114,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,46,99,117,114,40,41,125,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,46,99,115,115,40,101,44,116,44,34,34,41,125,44,117,61,115,40,41,44,108,61,110,38,38,110,91,51,93,124,124,40,107,46,99,115,115,78,117,109,98,101,114,91,116,93,63,34,34,58,34,112,120,34,41,44,99,61,101,46,110,111,100,101,84,121,112,101,38,38,40,107,46,99,115,115,78,117,109,98,101,114,91,116,93,124,124,34,112,120,34,33,61,61,108,38,38,43,117,41,38,38,110,101,46,101,120,101,99,40,107,46,99,115,115,40,101,44,116,41,41,59,105,102,40,99,38,38,99,91,51,93,33,61,61,108,41,123,117,47,61,50,44,108,61,108,124,124,99,91,51,93,44,99,61,43,117,124,124,49,59,119,104,105,108,101,40,97,45,45,41,107,46,115,116,121,108,101,40,101,44,116,44,99,43,108,41,44,40,49,45,111,41,42,40,49,45,40,111,61,115,40,41,47,117,124,124,46,53,41,41,60,61,48,38,38,40,97,61,48,41,44,99,47,61,111,59,99,42,61,50,44,107,46,115,116,121,108,101,40,101,44,116,44,99,43,108,41,44,110,61,110,124,124,91,93,125,114,101,116,117,114,110,32,110,38,38,40,99,61,43,99,124,124,43,117,124,124,48,44,105,61,110,91,49,93,63,99,43,40,110,91,49,93,43,49,41,42,110,91,50,93,58,43,110,91,50,93,44,114,38,38,40,114,46,117,110,105,116,61,108,44,114,46,115,116,97,114,116,61,99,44,114,46,101,110,100,61,105,41,41,44,105,125,118,97,114,32,99,101,61,123,125,59,102,117,110,99,116,105,111,110,32,102,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,44,117,44,108,61,91,93,44,99,61,48,44,102,61,101,46,108,101,110,103,116,104,59,99,60,102,59,99,43,43,41,40,114,61,101,91,99,93,41,46,115,116,121,108,101,38,38,40,110,61,114,46,115,116,121,108,101,46,100,105,115,112,108,97,121,44,116,63,40,34,110,111,110,101,34,61,61,61,110,38,38,40,108,91,99,93,61,81,46,103,101,116,40,114,44,34,100,105,115,112,108,97,121,34,41,124,124,110,117,108,108,44,108,91,99,93,124,124,40,114,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,34,41,41,44,34,34,61,61,61,114,46,115,116,121,108,101,46,100,105,115,112,108,97,121,38,38,115,101,40,114,41,38,38,40,108,91,99,93,61,40,117,61,97,61,111,61,118,111,105,100,32,48,44,97,61,40,105,61,114,41,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,115,61,105,46,110,111,100,101,78,97,109,101,44,40,117,61,99,101,91,115,93,41,124,124,40,111,61,97,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,97,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,115,41,41,44,117,61,107,46,99,115,115,40,111,44,34,100,105,115,112,108,97,121,34,41,44,111,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,111,41,44,34,110,111,110,101,34,61,61,61,117,38,38,40,117,61,34,98,108,111,99,107,34,41,44,99,101,91,115,93,61,117,41,41,41,41,58,34,110,111,110,101,34,33,61,61,110,38,38,40,108,91,99,93,61,34,110,111,110,101,34,44,81,46,115,101,116,40,114,44,34,100,105,115,112,108,97,121,34,44,110,41,41,41,59,102,111,114,40,99,61,48,59,99,60,102,59,99,43,43,41,110,117,108,108,33,61,108,91,99,93,38,38,40,101,91,99,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,108,91,99,93,41,59,114,101,116,117,114,110,32,101,125,107,46,102,110,46,101,120,116,101,110,100,40,123,115,104,111,119,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,101,40,116,104,105,115,44,33,48,41,125,44,104,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,101,40,116,104,105,115,41,125,44,116,111,103,103,108,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,101,63,101,63,116,104,105,115,46,115,104,111,119,40,41,58,116,104,105,115,46,104,105,100,101,40,41,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,115,101,40,116,104,105,115,41,63,107,40,116,104,105,115,41,46,115,104,111,119,40,41,58,107,40,116,104,105,115,41,46,104,105,100,101,40,41,125,41,125,125,41,59,118,97,114,32,112,101,61,47,94,40,63,58,99,104,101,99,107,98,111,120,124,114,97,100,105,111,41,36,47,105,44,100,101,61,47,60,40,91,97,45,122,93,91,94,92,47,92,48,62,92,120,50,48,92,116,92,114,92,110,92,102,93,42,41,47,105,44,104,101,61,47,94,36,124,94,109,111,100,117,108,101,36,124,92,47,40,63,58,106,97,118,97,124,101,99,109,97,41,115,99,114,105,112,116,47,105,44,103,101,61,123,111,112,116,105,111,110,58,91,49,44,34,60,115,101,108,101,99,116,32,109,117,108,116,105,112,108,101,61,39,109,117,108,116,105,112,108,101,39,62,34,44,34,60,47,115,101,108,101,99,116,62,34,93,44,116,104,101,97,100,58,91,49,44,34,60,116,97,98,108,101,62,34,44,34,60,47,116,97,98,108,101,62,34,93,44,99,111,108,58,91,50,44,34,60,116,97,98,108,101,62,60,99,111,108,103,114,111,117,112,62,34,44,34,60,47,99,111,108,103,114,111,117,112,62,60,47,116,97,98,108,101,62,34,93,44,116,114,58,91,50,44,34,60,116,97,98,108,101,62,60,116,98,111,100,121,62,34,44,34,60,47,116,98,111,100,121,62,60,47,116,97,98,108,101,62,34,93,44,116,100,58,91,51,44,34,60,116,97,98,108,101,62,60,116,98,111,100,121,62,60,116,114,62,34,44,34,60,47,116,114,62,60,47,116,98,111,100,121,62,60,47,116,97,98,108,101,62,34,93,44,95,100,101,102,97,117,108,116,58,91,48,44,34,34,44,34,34,93,125,59,102,117,110,99,116,105,111,110,32,118,101,40,101,44,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,110,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,63,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,116,124,124,34,42,34,41,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,63,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,124,124,34,42,34,41,58,91,93,44,118,111,105,100,32,48,61,61,61,116,124,124,116,38,38,65,40,101,44,116,41,63,107,46,109,101,114,103,101,40,91,101,93,44,110,41,58,110,125,102,117,110,99,116,105,111,110,32,121,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,44,114,61,101,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,81,46,115,101,116,40,101,91,110,93,44,34,103,108,111,98,97,108,69,118,97,108,34,44,33,116,124,124,81,46,103,101,116,40,116,91,110,93,44,34,103,108,111,98,97,108,69,118,97,108,34,41,41,125,103,101,46,111,112,116,103,114,111,117,112,61,103,101,46,111,112,116,105,111,110,44,103,101,46,116,98,111,100,121,61,103,101,46,116,102,111,111,116,61,103,101,46,99,111,108,103,114,111,117,112,61,103,101,46,99,97,112,116,105,111,110,61,103,101,46,116,104,101,97,100,44,103,101,46,116,104,61,103,101,46,116,100,59,118,97,114,32,109,101,44,120,101,44,98,101,61,47,60,124,38,35,63,92,119,43,59,47,59,102,117,110,99,116,105,111,110,32,119,101,40,101,44,116,44,110,44,114,44,105,41,123,102,111,114,40,118,97,114,32,111,44,97,44,115,44,117,44,108,44,99,44,102,61,116,46,99,114,101,97,116,101,68,111,99,117,109,101,110,116,70,114,97,103,109,101,110,116,40,41,44,112,61,91,93,44,100,61,48,44,104,61,101,46,108,101,110,103,116,104,59,100,60,104,59,100,43,43,41,105,102,40,40,111,61,101,91,100,93,41,124,124,48,61,61,61,111,41,105,102,40,34,111,98,106,101,99,116,34,61,61,61,119,40,111,41,41,107,46,109,101,114,103,101,40,112,44,111,46,110,111,100,101,84,121,112,101,63,91,111,93,58,111,41,59,101,108,115,101,32,105,102,40,98,101,46,116,101,115,116,40,111,41,41,123,97,61,97,124,124,102,46,97,112,112,101,110,100,67,104,105,108,100,40,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,41,44,115,61,40,100,101,46,101,120,101,99,40,111,41,124,124,91,34,34,44,34,34,93,41,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,117,61,103,101,91,115,93,124,124,103,101,46,95,100,101,102,97,117,108,116,44,97,46,105,110,110,101,114,72,84,77,76,61,117,91,49,93,43,107,46,104,116,109,108,80,114,101,102,105,108,116,101,114,40,111,41,43,117,91,50,93,44,99,61,117,91,48,93,59,119,104,105,108,101,40,99,45,45,41,97,61,97,46,108,97,115,116,67,104,105,108,100,59,107,46,109,101,114,103,101,40,112,44,97,46,99,104,105,108,100,78,111,100,101,115,41,44,40,97,61,102,46,102,105,114,115,116,67,104,105,108,100,41,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,125,101,108,115,101,32,112,46,112,117,115,104,40,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,111,41,41,59,102,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,44,100,61,48,59,119,104,105,108,101,40,111,61,112,91,100,43,43,93,41,105,102,40,114,38,38,45,49,60,107,46,105,110,65,114,114,97,121,40,111,44,114,41,41,105,38,38,105,46,112,117,115,104,40,111,41,59,101,108,115,101,32,105,102,40,108,61,111,101,40,111,41,44,97,61,118,101,40,102,46,97,112,112,101,110,100,67,104,105,108,100,40,111,41,44,34,115,99,114,105,112,116,34,41,44,108,38,38,121,101,40,97,41,44,110,41,123,99,61,48,59,119,104,105,108,101,40,111,61,97,91,99,43,43,93,41,104,101,46,116,101,115,116,40,111,46,116,121,112,101,124,124,34,34,41,38,38,110,46,112,117,115,104,40,111,41,125,114,101,116,117,114,110,32,102,125,109,101,61,69,46,99,114,101,97,116,101,68,111,99,117,109,101,110,116,70,114,97,103,109,101,110,116,40,41,46,97,112,112,101,110,100,67,104,105,108,100,40,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,41,44,40,120,101,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,110,112,117,116,34,41,41,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,34,114,97,100,105,111,34,41,44,120,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,104,101,99,107,101,100,34,44,34,99,104,101,99,107,101,100,34,41,44,120,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,110,97,109,101,34,44,34,116,34,41,44,109,101,46,97,112,112,101,110,100,67,104,105,108,100,40,120,101,41,44,121,46,99,104,101,99,107,67,108,111,110,101,61,109,101,46,99,108,111,110,101,78,111,100,101,40,33,48,41,46,99,108,111,110,101,78,111,100,101,40,33,48,41,46,108,97,115,116,67,104,105,108,100,46,99,104,101,99,107,101,100,44,109,101,46,105,110,110,101,114,72,84,77,76,61,34,60,116,101,120,116,97,114,101,97,62,120,60,47,116,101,120,116,97,114,101,97,62,34,44,121,46,110,111,67,108,111,110,101,67,104,101,99,107,101,100,61,33,33,109,101,46,99,108,111,110,101,78,111,100,101,40,33,48,41,46,108,97,115,116,67,104,105,108,100,46,100,101,102,97,117,108,116,86,97,108,117,101,59,118,97,114,32,84,101,61,47,94,107,101,121,47,44,67,101,61,47,94,40,63,58,109,111,117,115,101,124,112,111,105,110,116,101,114,124,99,111,110,116,101,120,116,109,101,110,117,124,100,114,97,103,124,100,114,111,112,41,124,99,108,105,99,107,47,44,69,101,61,47,94,40,91,94,46,93,42,41,40,63,58,92,46,40,46,43,41,124,41,47,59,102,117,110,99,116,105,111,110,32,107,101,40,41,123,114,101,116,117,114,110,33,48,125,102,117,110,99,116,105,111,110,32,83,101,40,41,123,114,101,116,117,114,110,33,49,125,102,117,110,99,116,105,111,110,32,78,101,40,101,44,116,41,123,114,101,116,117,114,110,32,101,61,61,61,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,114,101,116,117,114,110,32,69,46,97,99,116,105,118,101,69,108,101,109,101,110,116,125,99,97,116,99,104,40,101,41,123,125,125,40,41,61,61,40,34,102,111,99,117,115,34,61,61,61,116,41,125,102,117,110,99,116,105,111,110,32,65,101,40,101,44,116,44,110,44,114,44,105,44,111,41,123,118,97,114,32,97,44,115,59,105,102,40,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,41,123,102,111,114,40,115,32,105,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,110,38,38,40,114,61,114,124,124,110,44,110,61,118,111,105,100,32,48,41,44,116,41,65,101,40,101,44,115,44,110,44,114,44,116,91,115,93,44,111,41,59,114,101,116,117,114,110,32,101,125,105,102,40,110,117,108,108,61,61,114,38,38,110,117,108,108,61,61,105,63,40,105,61,110,44,114,61,110,61,118,111,105,100,32,48,41,58,110,117,108,108,61,61,105,38,38,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,63,40,105,61,114,44,114,61,118,111,105,100,32,48,41,58,40,105,61,114,44,114,61,110,44,110,61,118,111,105,100,32,48,41,41,44,33,49,61,61,61,105,41,105,61,83,101,59,101,108,115,101,32,105,102,40,33,105,41,114,101,116,117,114,110,32,101,59,114,101,116,117,114,110,32,49,61,61,61,111,38,38,40,97,61,105,44,40,105,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,40,41,46,111,102,102,40,101,41,44,97,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,41,46,103,117,105,100,61,97,46,103,117,105,100,124,124,40,97,46,103,117,105,100,61,107,46,103,117,105,100,43,43,41,41,44,101,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,101,118,101,110,116,46,97,100,100,40,116,104,105,115,44,116,44,105,44,114,44,110,41,125,41,125,102,117,110,99,116,105,111,110,32,68,101,40,101,44,105,44,111,41,123,111,63,40,81,46,115,101,116,40,101,44,105,44,33,49,41,44,107,46,101,118,101,110,116,46,97,100,100,40,101,44,105,44,123,110,97,109,101,115,112,97,99,101,58,33,49,44,104,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,61,81,46,103,101,116,40,116,104,105,115,44,105,41,59,105,102,40,49,38,101,46,105,115,84,114,105,103,103,101,114,38,38,116,104,105,115,91,105,93,41,123,105,102,40,114,46,108,101,110,103,116,104,41,40,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,105,93,124,124,123,125,41,46,100,101,108,101,103,97,116,101,84,121,112,101,38,38,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,101,108,115,101,32,105,102,40,114,61,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,81,46,115,101,116,40,116,104,105,115,44,105,44,114,41,44,116,61,111,40,116,104,105,115,44,105,41,44,116,104,105,115,91,105,93,40,41,44,114,33,61,61,40,110,61,81,46,103,101,116,40,116,104,105,115,44,105,41,41,124,124,116,63,81,46,115,101,116,40,116,104,105,115,44,105,44,33,49,41,58,110,61,123,125,44,114,33,61,61,110,41,114,101,116,117,114,110,32,101,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,44,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,110,46,118,97,108,117,101,125,101,108,115,101,32,114,46,108,101,110,103,116,104,38,38,40,81,46,115,101,116,40,116,104,105,115,44,105,44,123,118,97,108,117,101,58,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,107,46,101,120,116,101,110,100,40,114,91,48,93,44,107,46,69,118,101,110,116,46,112,114,111,116,111,116,121,112,101,41,44,114,46,115,108,105,99,101,40,49,41,44,116,104,105,115,41,125,41,44,101,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,41,125,125,41,41,58,118,111,105,100,32,48,61,61,61,81,46,103,101,116,40,101,44,105,41,38,38,107,46,101,118,101,110,116,46,97,100,100,40,101,44,105,44,107,101,41,125,107,46,101,118,101,110,116,61,123,103,108,111,98,97,108,58,123,125,44,97,100,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,44,97,44,115,44,117,44,108,44,99,44,102,44,112,44,100,44,104,44,103,44,118,61,81,46,103,101,116,40,116,41,59,105,102,40,118,41,123,110,46,104,97,110,100,108,101,114,38,38,40,110,61,40,111,61,110,41,46,104,97,110,100,108,101,114,44,105,61,111,46,115,101,108,101,99,116,111,114,41,44,105,38,38,107,46,102,105,110,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,40,105,101,44,105,41,44,110,46,103,117,105,100,124,124,40,110,46,103,117,105,100,61,107,46,103,117,105,100,43,43,41,44,40,117,61,118,46,101,118,101,110,116,115,41,124,124,40,117,61,118,46,101,118,101,110,116,115,61,123,125,41,44,40,97,61,118,46,104,97,110,100,108,101,41,124,124,40,97,61,118,46,104,97,110,100,108,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,107,38,38,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,101,100,33,61,61,101,46,116,121,112,101,63,107,46,101,118,101,110,116,46,100,105,115,112,97,116,99,104,46,97,112,112,108,121,40,116,44,97,114,103,117,109,101,110,116,115,41,58,118,111,105,100,32,48,125,41,44,108,61,40,101,61,40,101,124,124,34,34,41,46,109,97,116,99,104,40,82,41,124,124,91,34,34,93,41,46,108,101,110,103,116,104,59,119,104,105,108,101,40,108,45,45,41,100,61,103,61,40,115,61,69,101,46,101,120,101,99,40,101,91,108,93,41,124,124,91,93,41,91,49,93,44,104,61,40,115,91,50,93,124,124,34,34,41,46,115,112,108,105,116,40,34,46,34,41,46,115,111,114,116,40,41,44,100,38,38,40,102,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,100,93,124,124,123,125,44,100,61,40,105,63,102,46,100,101,108,101,103,97,116,101,84,121,112,101,58,102,46,98,105,110,100,84,121,112,101,41,124,124,100,44,102,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,100,93,124,124,123,125,44,99,61,107,46,101,120,116,101,110,100,40,123,116,121,112,101,58,100,44,111,114,105,103,84,121,112,101,58,103,44,100,97,116,97,58,114,44,104,97,110,100,108,101,114,58,110,44,103,117,105,100,58,110,46,103,117,105,100,44,115,101,108,101,99,116,111,114,58,105,44,110,101,101,100,115,67,111,110,116,101,120,116,58,105,38,38,107,46,101,120,112,114,46,109,97,116,99,104,46,110,101,101,100,115,67,111,110,116,101,120,116,46,116,101,115,116,40,105,41,44,110,97,109,101,115,112,97,99,101,58,104,46,106,111,105,110,40,34,46,34,41,125,44,111,41,44,40,112,61,117,91,100,93,41,124,124,40,40,112,61,117,91,100,93,61,91,93,41,46,100,101,108,101,103,97,116,101,67,111,117,110,116,61,48,44,102,46,115,101,116,117,112,38,38,33,49,33,61,61,102,46,115,101,116,117,112,46,99,97,108,108,40,116,44,114,44,104,44,97,41,124,124,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,38,38,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,100,44,97,41,41,44,102,46,97,100,100,38,38,40,102,46,97,100,100,46,99,97,108,108,40,116,44,99,41,44,99,46,104,97,110,100,108,101,114,46,103,117,105,100,124,124,40,99,46,104,97,110,100,108,101,114,46,103,117,105,100,61,110,46,103,117,105,100,41,41,44,105,63,112,46,115,112,108,105,99,101,40,112,46,100,101,108,101,103,97,116,101,67,111,117,110,116,43,43,44,48,44,99,41,58,112,46,112,117,115,104,40,99,41,44,107,46,101,118,101,110,116,46,103,108,111,98,97,108,91,100,93,61,33,48,41,125,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,44,105,41,123,118,97,114,32,111,44,97,44,115,44,117,44,108,44,99,44,102,44,112,44,100,44,104,44,103,44,118,61,81,46,104,97,115,68,97,116,97,40,101,41,38,38,81,46,103,101,116,40,101,41,59,105,102,40,118,38,38,40,117,61,118,46,101,118,101,110,116,115,41,41,123,108,61,40,116,61,40,116,124,124,34,34,41,46,109,97,116,99,104,40,82,41,124,124,91,34,34,93,41,46,108,101,110,103,116,104,59,119,104,105,108,101,40,108,45,45,41,105,102,40,100,61,103,61,40,115,61,69,101,46,101,120,101,99,40,116,91,108,93,41,124,124,91,93,41,91,49,93,44,104,61,40,115,91,50,93,124,124,34,34,41,46,115,112,108,105,116,40,34,46,34,41,46,115,111,114,116,40,41,44,100,41,123,102,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,100,93,124,124,123,125,44,112,61,117,91,100,61,40,114,63,102,46,100,101,108,101,103,97,116,101,84,121,112,101,58,102,46,98,105,110,100,84,121,112,101,41,124,124,100,93,124,124,91,93,44,115,61,115,91,50,93,38,38,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,92,92,46,41,34,43,104,46,106,111,105,110,40,34,92,92,46,40,63,58,46,42,92,92,46,124,41,34,41,43,34,40,92,92,46,124,36,41,34,41,44,97,61,111,61,112,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,99,61,112,91,111,93,44,33,105,38,38,103,33,61,61,99,46,111,114,105,103,84,121,112,101,124,124,110,38,38,110,46,103,117,105,100,33,61,61,99,46,103,117,105,100,124,124,115,38,38,33,115,46,116,101,115,116,40,99,46,110,97,109,101,115,112,97,99,101,41,124,124,114,38,38,114,33,61,61,99,46,115,101,108,101,99,116,111,114,38,38,40,34,42,42,34,33,61,61,114,124,124,33,99,46,115,101,108,101,99,116,111,114,41,124,124,40,112,46,115,112,108,105,99,101,40,111,44,49,41,44,99,46,115,101,108,101,99,116,111,114,38,38,112,46,100,101,108,101,103,97,116,101,67,111,117,110,116,45,45,44,102,46,114,101,109,111,118,101,38,38,102,46,114,101,109,111,118,101,46,99,97,108,108,40,101,44,99,41,41,59,97,38,38,33,112,46,108,101,110,103,116,104,38,38,40,102,46,116,101,97,114,100,111,119,110,38,38,33,49,33,61,61,102,46,116,101,97,114,100,111,119,110,46,99,97,108,108,40,101,44,104,44,118,46,104,97,110,100,108,101,41,124,124,107,46,114,101,109,111,118,101,69,118,101,110,116,40,101,44,100,44,118,46,104,97,110,100,108,101,41,44,100,101,108,101,116,101,32,117,91,100,93,41,125,101,108,115,101,32,102,111,114,40,100,32,105,110,32,117,41,107,46,101,118,101,110,116,46,114,101,109,111,118,101,40,101,44,100,43,116,91,108,93,44,110,44,114,44,33,48,41,59,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,117,41,38,38,81,46,114,101,109,111,118,101,40,101,44,34,104,97,110,100,108,101,32,101,118,101,110,116,115,34,41,125,125,44,100,105,115,112,97,116,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,44,105,44,111,44,97,44,115,61,107,46,101,118,101,110,116,46,102,105,120,40,101,41,44,117,61,110,101,119,32,65,114,114,97,121,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,44,108,61,40,81,46,103,101,116,40,116,104,105,115,44,34,101,118,101,110,116,115,34,41,124,124,123,125,41,91,115,46,116,121,112,101,93,124,124,91,93,44,99,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,115,46,116,121,112,101,93,124,124,123,125,59,102,111,114,40,117,91,48,93,61,115,44,116,61,49,59,116,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,116,43,43,41,117,91,116,93,61,97,114,103,117,109,101,110,116,115,91,116,93,59,105,102,40,115,46,100,101,108,101,103,97,116,101,84,97,114,103,101,116,61,116,104,105,115,44,33,99,46,112,114,101,68,105,115,112,97,116,99,104,124,124,33,49,33,61,61,99,46,112,114,101,68,105,115,112,97,116,99,104,46,99,97,108,108,40,116,104,105,115,44,115,41,41,123,97,61,107,46,101,118,101,110,116,46,104,97,110,100,108,101,114,115,46,99,97,108,108,40,116,104,105,115,44,115,44,108,41,44,116,61,48,59,119,104,105,108,101,40,40,105,61,97,91,116,43,43,93,41,38,38,33,115,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,41,123,115,46,99,117,114,114,101,110,116,84,97,114,103,101,116,61,105,46,101,108,101,109,44,110,61,48,59,119,104,105,108,101,40,40,111,61,105,46,104,97,110,100,108,101,114,115,91,110,43,43,93,41,38,38,33,115,46,105,115,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,41,115,46,114,110,97,109,101,115,112,97,99,101,38,38,33,49,33,61,61,111,46,110,97,109,101,115,112,97,99,101,38,38,33,115,46,114,110,97,109,101,115,112,97,99,101,46,116,101,115,116,40,111,46,110,97,109,101,115,112,97,99,101,41,124,124,40,115,46,104,97,110,100,108,101,79,98,106,61,111,44,115,46,100,97,116,97,61,111,46,100,97,116,97,44,118,111,105,100,32,48,33,61,61,40,114,61,40,40,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,111,46,111,114,105,103,84,121,112,101,93,124,124,123,125,41,46,104,97,110,100,108,101,124,124,111,46,104,97,110,100,108,101,114,41,46,97,112,112,108,121,40,105,46,101,108,101,109,44,117,41,41,38,38,33,49,61,61,61,40,115,46,114,101,115,117,108,116,61,114,41,38,38,40,115,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,115,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,41,41,125,114,101,116,117,114,110,32,99,46,112,111,115,116,68,105,115,112,97,116,99,104,38,38,99,46,112,111,115,116,68,105,115,112,97,116,99,104,46,99,97,108,108,40,116,104,105,115,44,115,41,44,115,46,114,101,115,117,108,116,125,125,44,104,97,110,100,108,101,114,115,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,61,91,93,44,117,61,116,46,100,101,108,101,103,97,116,101,67,111,117,110,116,44,108,61,101,46,116,97,114,103,101,116,59,105,102,40,117,38,38,108,46,110,111,100,101,84,121,112,101,38,38,33,40,34,99,108,105,99,107,34,61,61,61,101,46,116,121,112,101,38,38,49,60,61,101,46,98,117,116,116,111,110,41,41,102,111,114,40,59,108,33,61,61,116,104,105,115,59,108,61,108,46,112,97,114,101,110,116,78,111,100,101,124,124,116,104,105,115,41,105,102,40,49,61,61,61,108,46,110,111,100,101,84,121,112,101,38,38,40,34,99,108,105,99,107,34,33,61,61,101,46,116,121,112,101,124,124,33,48,33,61,61,108,46,100,105,115,97,98,108,101,100,41,41,123,102,111,114,40,111,61,91,93,44,97,61,123,125,44,110,61,48,59,110,60,117,59,110,43,43,41,118,111,105,100,32,48,61,61,61,97,91,105,61,40,114,61,116,91,110,93,41,46,115,101,108,101,99,116,111,114,43,34,32,34,93,38,38,40,97,91,105,93,61,114,46,110,101,101,100,115,67,111,110,116,101,120,116,63,45,49,60,107,40,105,44,116,104,105,115,41,46,105,110,100,101,120,40,108,41,58,107,46,102,105,110,100,40,105,44,116,104,105,115,44,110,117,108,108,44,91,108,93,41,46,108,101,110,103,116,104,41,44,97,91,105,93,38,38,111,46,112,117,115,104,40,114,41,59,111,46,108,101,110,103,116,104,38,38,115,46,112,117,115,104,40,123,101,108,101,109,58,108,44,104,97,110,100,108,101,114,115,58,111,125,41,125,114,101,116,117,114,110,32,108,61,116,104,105,115,44,117,60,116,46,108,101,110,103,116,104,38,38,115,46,112,117,115,104,40,123,101,108,101,109,58,108,44,104,97,110,100,108,101,114,115,58,116,46,115,108,105,99,101,40,117,41,125,41,44,115,125,44,97,100,100,80,114,111,112,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,107,46,69,118,101,110,116,46,112,114,111,116,111,116,121,112,101,44,116,44,123,101,110,117,109,101,114,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,103,101,116,58,109,40,101,41,63,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,41,114,101,116,117,114,110,32,101,40,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,41,125,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,41,114,101,116,117,114,110,32,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,91,116,93,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,104,105,115,44,116,44,123,101,110,117,109,101,114,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,119,114,105,116,97,98,108,101,58,33,48,44,118,97,108,117,101,58,101,125,41,125,125,41,125,44,102,105,120,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,91,107,46,101,120,112,97,110,100,111,93,63,101,58,110,101,119,32,107,46,69,118,101,110,116,40,101,41,125,44,115,112,101,99,105,97,108,58,123,108,111,97,100,58,123,110,111,66,117,98,98,108,101,58,33,48,125,44,99,108,105,99,107,58,123,115,101,116,117,112,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,124,124,101,59,114,101,116,117,114,110,32,112,101,46,116,101,115,116,40,116,46,116,121,112,101,41,38,38,116,46,99,108,105,99,107,38,38,65,40,116,44,34,105,110,112,117,116,34,41,38,38,68,101,40,116,44,34,99,108,105,99,107,34,44,107,101,41,44,33,49,125,44,116,114,105,103,103,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,124,124,101,59,114,101,116,117,114,110,32,112,101,46,116,101,115,116,40,116,46,116,121,112,101,41,38,38,116,46,99,108,105,99,107,38,38,65,40,116,44,34,105,110,112,117,116,34,41,38,38,68,101,40,116,44,34,99,108,105,99,107,34,41,44,33,48,125,44,95,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,116,97,114,103,101,116,59,114,101,116,117,114,110,32,112,101,46,116,101,115,116,40,116,46,116,121,112,101,41,38,38,116,46,99,108,105,99,107,38,38,65,40,116,44,34,105,110,112,117,116,34,41,38,38,81,46,103,101,116,40,116,44,34,99,108,105,99,107,34,41,124,124,65,40,116,44,34,97,34,41,125,125,44,98,101,102,111,114,101,117,110,108,111,97,100,58,123,112,111,115,116,68,105,115,112,97,116,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,118,111,105,100,32,48,33,61,61,101,46,114,101,115,117,108,116,38,38,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,38,38,40,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,114,101,116,117,114,110,86,97,108,117,101,61,101,46,114,101,115,117,108,116,41,125,125,125,125,44,107,46,114,101,109,111,118,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,101,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,38,38,101,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,44,110,41,125,44,107,46,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,40,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,107,46,69,118,101,110,116,41,41,114,101,116,117,114,110,32,110,101,119,32,107,46,69,118,101,110,116,40,101,44,116,41,59,101,38,38,101,46,116,121,112,101,63,40,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,61,101,44,116,104,105,115,46,116,121,112,101,61,101,46,116,121,112,101,44,116,104,105,115,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,61,101,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,118,111,105,100,32,48,61,61,61,101,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,38,38,33,49,61,61,61,101,46,114,101,116,117,114,110,86,97,108,117,101,63,107,101,58,83,101,44,116,104,105,115,46,116,97,114,103,101,116,61,101,46,116,97,114,103,101,116,38,38,51,61,61,61,101,46,116,97,114,103,101,116,46,110,111,100,101,84,121,112,101,63,101,46,116,97,114,103,101,116,46,112,97,114,101,110,116,78,111,100,101,58,101,46,116,97,114,103,101,116,44,116,104,105,115,46,99,117,114,114,101,110,116,84,97,114,103,101,116,61,101,46,99,117,114,114,101,110,116,84,97,114,103,101,116,44,116,104,105,115,46,114,101,108,97,116,101,100,84,97,114,103,101,116,61,101,46,114,101,108,97,116,101,100,84,97,114,103,101,116,41,58,116,104,105,115,46,116,121,112,101,61,101,44,116,38,38,107,46,101,120,116,101,110,100,40,116,104,105,115,44,116,41,44,116,104,105,115,46,116,105,109,101,83,116,97,109,112,61,101,38,38,101,46,116,105,109,101,83,116,97,109,112,124,124,68,97,116,101,46,110,111,119,40,41,44,116,104,105,115,91,107,46,101,120,112,97,110,100,111,93,61,33,48,125,44,107,46,69,118,101,110,116,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,107,46,69,118,101,110,116,44,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,58,83,101,44,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,58,83,101,44,105,115,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,58,83,101,44,105,115,83,105,109,117,108,97,116,101,100,58,33,49,44,112,114,101,118,101,110,116,68,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,59,116,104,105,115,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,61,107,101,44,101,38,38,33,116,104,105,115,46,105,115,83,105,109,117,108,97,116,101,100,38,38,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,125,44,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,59,116,104,105,115,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,61,107,101,44,101,38,38,33,116,104,105,115,46,105,115,83,105,109,117,108,97,116,101,100,38,38,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,44,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,59,116,104,105,115,46,105,115,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,61,107,101,44,101,38,38,33,116,104,105,115,46,105,115,83,105,109,117,108,97,116,101,100,38,38,101,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,125,44,107,46,101,97,99,104,40,123,97,108,116,75,101,121,58,33,48,44,98,117,98,98,108,101,115,58,33,48,44,99,97,110,99,101,108,97,98,108,101,58,33,48,44,99,104,97,110,103,101,100,84,111,117,99,104,101,115,58,33,48,44,99,116,114,108,75,101,121,58,33,48,44,100,101,116,97,105,108,58,33,48,44,101,118,101,110,116,80,104,97,115,101,58,33,48,44,109,101,116,97,75,101,121,58,33,48,44,112,97,103,101,88,58,33,48,44,112,97,103,101,89,58,33,48,44,115,104,105,102,116,75,101,121,58,33,48,44,118,105,101,119,58,33,48,44,34,99,104,97,114,34,58,33,48,44,99,111,100,101,58,33,48,44,99,104,97,114,67,111,100,101,58,33,48,44,107,101,121,58,33,48,44,107,101,121,67,111,100,101,58,33,48,44,98,117,116,116,111,110,58,33,48,44,98,117,116,116,111,110,115,58,33,48,44,99,108,105,101,110,116,88,58,33,48,44,99,108,105,101,110,116,89,58,33,48,44,111,102,102,115,101,116,88,58,33,48,44,111,102,102,115,101,116,89,58,33,48,44,112,111,105,110,116,101,114,73,100,58,33,48,44,112,111,105,110,116,101,114,84,121,112,101,58,33,48,44,115,99,114,101,101,110,88,58,33,48,44,115,99,114,101,101,110,89,58,33,48,44,116,97,114,103,101,116,84,111,117,99,104,101,115,58,33,48,44,116,111,69,108,101,109,101,110,116,58,33,48,44,116,111,117,99,104,101,115,58,33,48,44,119,104,105,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,98,117,116,116,111,110,59,114,101,116,117,114,110,32,110,117,108,108,61,61,101,46,119,104,105,99,104,38,38,84,101,46,116,101,115,116,40,101,46,116,121,112,101,41,63,110,117,108,108,33,61,101,46,99,104,97,114,67,111,100,101,63,101,46,99,104,97,114,67,111,100,101,58,101,46,107,101,121,67,111,100,101,58,33,101,46,119,104,105,99,104,38,38,118,111,105,100,32,48,33,61,61,116,38,38,67,101,46,116,101,115,116,40,101,46,116,121,112,101,41,63,49,38,116,63,49,58,50,38,116,63,51,58,52,38,116,63,50,58,48,58,101,46,119,104,105,99,104,125,125,44,107,46,101,118,101,110,116,46,97,100,100,80,114,111,112,41,44,107,46,101,97,99,104,40,123,102,111,99,117,115,58,34,102,111,99,117,115,105,110,34,44,98,108,117,114,58,34,102,111,99,117,115,111,117,116,34,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,101,93,61,123,115,101,116,117,112,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,68,101,40,116,104,105,115,44,101,44,78,101,41,44,33,49,125,44,116,114,105,103,103,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,68,101,40,116,104,105,115,44,101,41,44,33,48,125,44,100,101,108,101,103,97,116,101,84,121,112,101,58,116,125,125,41,44,107,46,101,97,99,104,40,123,109,111,117,115,101,101,110,116,101,114,58,34,109,111,117,115,101,111,118,101,114,34,44,109,111,117,115,101,108,101,97,118,101,58,34,109,111,117,115,101,111,117,116,34,44,112,111,105,110,116,101,114,101,110,116,101,114,58,34,112,111,105,110,116,101,114,111,118,101,114,34,44,112,111,105,110,116,101,114,108,101,97,118,101,58,34,112,111,105,110,116,101,114,111,117,116,34,125,44,102,117,110,99,116,105,111,110,40,101,44,105,41,123,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,101,93,61,123,100,101,108,101,103,97,116,101,84,121,112,101,58,105,44,98,105,110,100,84,121,112,101,58,105,44,104,97,110,100,108,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,101,46,114,101,108,97,116,101,100,84,97,114,103,101,116,44,114,61,101,46,104,97,110,100,108,101,79,98,106,59,114,101,116,117,114,110,32,110,38,38,40,110,61,61,61,116,104,105,115,124,124,107,46,99,111,110,116,97,105,110,115,40,116,104,105,115,44,110,41,41,124,124,40,101,46,116,121,112,101,61,114,46,111,114,105,103,84,121,112,101,44,116,61,114,46,104,97,110,100,108,101,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,101,46,116,121,112,101,61,105,41,44,116,125,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,111,110,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,101,44,116,44,110,44,114,41,125,44,111,110,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,101,44,116,44,110,44,114,44,49,41,125,44,111,102,102,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,59,105,102,40,101,38,38,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,38,38,101,46,104,97,110,100,108,101,79,98,106,41,114,101,116,117,114,110,32,114,61,101,46,104,97,110,100,108,101,79,98,106,44,107,40,101,46,100,101,108,101,103,97,116,101,84,97,114,103,101,116,41,46,111,102,102,40,114,46,110,97,109,101,115,112,97,99,101,63,114,46,111,114,105,103,84,121,112,101,43,34,46,34,43,114,46,110,97,109,101,115,112,97,99,101,58,114,46,111,114,105,103,84,121,112,101,44,114,46,115,101,108,101,99,116,111,114,44,114,46,104,97,110,100,108,101,114,41,44,116,104,105,115,59,105,102,40,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,41,123,102,111,114,40,105,32,105,110,32,101,41,116,104,105,115,46,111,102,102,40,105,44,116,44,101,91,105,93,41,59,114,101,116,117,114,110,32,116,104,105,115,125,114,101,116,117,114,110,33,49,33,61,61,116,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,124,124,40,110,61,116,44,116,61,118,111,105,100,32,48,41,44,33,49,61,61,61,110,38,38,40,110,61,83,101,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,101,118,101,110,116,46,114,101,109,111,118,101,40,116,104,105,115,44,101,44,110,44,116,41,125,41,125,125,41,59,118,97,114,32,106,101,61,47,60,40,63,33,97,114,101,97,124,98,114,124,99,111,108,124,101,109,98,101,100,124,104,114,124,105,109,103,124,105,110,112,117,116,124,108,105,110,107,124,109,101,116,97,124,112,97,114,97,109,41,40,40,91,97,45,122,93,91,94,92,47,92,48,62,92,120,50,48,92,116,92,114,92,110,92,102,93,42,41,91,94,62,93,42,41,92,47,62,47,103,105,44,113,101,61,47,60,115,99,114,105,112,116,124,60,115,116,121,108,101,124,60,108,105,110,107,47,105,44,76,101,61,47,99,104,101,99,107,101,100,92,115,42,40,63,58,91,94,61,93,124,61,92,115,42,46,99,104,101,99,107,101,100,46,41,47,105,44,72,101,61,47,94,92,115,42,60,33,40,63,58,92,91,67,68,65,84,65,92,91,124,45,45,41,124,40,63,58,92,93,92,93,124,45,45,41,62,92,115,42,36,47,103,59,102,117,110,99,116,105,111,110,32,79,101,40,101,44,116,41,123,114,101,116,117,114,110,32,65,40,101,44,34,116,97,98,108,101,34,41,38,38,65,40,49,49,33,61,61,116,46,110,111,100,101,84,121,112,101,63,116,58,116,46,102,105,114,115,116,67,104,105,108,100,44,34,116,114,34,41,38,38,107,40,101,41,46,99,104,105,108,100,114,101,110,40,34,116,98,111,100,121,34,41,91,48,93,124,124,101,125,102,117,110,99,116,105,111,110,32,80,101,40,101,41,123,114,101,116,117,114,110,32,101,46,116,121,112,101,61,40,110,117,108,108,33,61,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,41,41,43,34,47,34,43,101,46,116,121,112,101,44,101,125,102,117,110,99,116,105,111,110,32,82,101,40,101,41,123,114,101,116,117,114,110,34,116,114,117,101,47,34,61,61,61,40,101,46,116,121,112,101,124,124,34,34,41,46,115,108,105,99,101,40,48,44,53,41,63,101,46,116,121,112,101,61,101,46,116,121,112,101,46,115,108,105,99,101,40,53,41,58,101,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,41,44,101,125,102,117,110,99,116,105,111,110,32,77,101,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,44,117,44,108,59,105,102,40,49,61,61,61,116,46,110,111,100,101,84,121,112,101,41,123,105,102,40,81,46,104,97,115,68,97,116,97,40,101,41,38,38,40,111,61,81,46,97,99,99,101,115,115,40,101,41,44,97,61,81,46,115,101,116,40,116,44,111,41,44,108,61,111,46,101,118,101,110,116,115,41,41,102,111,114,40,105,32,105,110,32,100,101,108,101,116,101,32,97,46,104,97,110,100,108,101,44,97,46,101,118,101,110,116,115,61,123,125,44,108,41,102,111,114,40,110,61,48,44,114,61,108,91,105,93,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,107,46,101,118,101,110,116,46,97,100,100,40,116,44,105,44,108,91,105,93,91,110,93,41,59,74,46,104,97,115,68,97,116,97,40,101,41,38,38,40,115,61,74,46,97,99,99,101,115,115,40,101,41,44,117,61,107,46,101,120,116,101,110,100,40,123,125,44,115,41,44,74,46,115,101,116,40,116,44,117,41,41,125,125,102,117,110,99,116,105,111,110,32,73,101,40,110,44,114,44,105,44,111,41,123,114,61,103,46,97,112,112,108,121,40,91,93,44,114,41,59,118,97,114,32,101,44,116,44,97,44,115,44,117,44,108,44,99,61,48,44,102,61,110,46,108,101,110,103,116,104,44,112,61,102,45,49,44,100,61,114,91,48,93,44,104,61,109,40,100,41,59,105,102,40,104,124,124,49,60,102,38,38,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,100,38,38,33,121,46,99,104,101,99,107,67,108,111,110,101,38,38,76,101,46,116,101,115,116,40,100,41,41,114,101,116,117,114,110,32,110,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,110,46,101,113,40,101,41,59,104,38,38,40,114,91,48,93,61,100,46,99,97,108,108,40,116,104,105,115,44,101,44,116,46,104,116,109,108,40,41,41,41,44,73,101,40,116,44,114,44,105,44,111,41,125,41,59,105,102,40,102,38,38,40,116,61,40,101,61,119,101,40,114,44,110,91,48,93,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,33,49,44,110,44,111,41,41,46,102,105,114,115,116,67,104,105,108,100,44,49,61,61,61,101,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,38,38,40,101,61,116,41,44,116,124,124,111,41,41,123,102,111,114,40,115,61,40,97,61,107,46,109,97,112,40,118,101,40,101,44,34,115,99,114,105,112,116,34,41,44,80,101,41,41,46,108,101,110,103,116,104,59,99,60,102,59,99,43,43,41,117,61,101,44,99,33,61,61,112,38,38,40,117,61,107,46,99,108,111,110,101,40,117,44,33,48,44,33,48,41,44,115,38,38,107,46,109,101,114,103,101,40,97,44,118,101,40,117,44,34,115,99,114,105,112,116,34,41,41,41,44,105,46,99,97,108,108,40,110,91,99,93,44,117,44,99,41,59,105,102,40,115,41,102,111,114,40,108,61,97,91,97,46,108,101,110,103,116,104,45,49,93,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,107,46,109,97,112,40,97,44,82,101,41,44,99,61,48,59,99,60,115,59,99,43,43,41,117,61,97,91,99,93,44,104,101,46,116,101,115,116,40,117,46,116,121,112,101,124,124,34,34,41,38,38,33,81,46,97,99,99,101,115,115,40,117,44,34,103,108,111,98,97,108,69,118,97,108,34,41,38,38,107,46,99,111,110,116,97,105,110,115,40,108,44,117,41,38,38,40,117,46,115,114,99,38,38,34,109,111,100,117,108,101,34,33,61,61,40,117,46,116,121,112,101,124,124,34,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,107,46,95,101,118,97,108,85,114,108,38,38,33,117,46,110,111,77,111,100,117,108,101,38,38,107,46,95,101,118,97,108,85,114,108,40,117,46,115,114,99,44,123,110,111,110,99,101,58,117,46,110,111,110,99,101,124,124,117,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,110,111,110,99,101,34,41,125,41,58,98,40,117,46,116,101,120,116,67,111,110,116,101,110,116,46,114,101,112,108,97,99,101,40,72,101,44,34,34,41,44,117,44,108,41,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,87,101,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,44,105,61,116,63,107,46,102,105,108,116,101,114,40,116,44,101,41,58,101,44,111,61,48,59,110,117,108,108,33,61,40,114,61,105,91,111,93,41,59,111,43,43,41,110,124,124,49,33,61,61,114,46,110,111,100,101,84,121,112,101,124,124,107,46,99,108,101,97,110,68,97,116,97,40,118,101,40,114,41,41,44,114,46,112,97,114,101,110,116,78,111,100,101,38,38,40,110,38,38,111,101,40,114,41,38,38,121,101,40,118,101,40,114,44,34,115,99,114,105,112,116,34,41,41,44,114,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,114,41,41,59,114,101,116,117,114,110,32,101,125,107,46,101,120,116,101,110,100,40,123,104,116,109,108,80,114,101,102,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,114,101,112,108,97,99,101,40,106,101,44,34,60,36,49,62,60,47,36,50,62,34,41,125,44,99,108,111,110,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,44,117,44,108,44,99,61,101,46,99,108,111,110,101,78,111,100,101,40,33,48,41,44,102,61,111,101,40,101,41,59,105,102,40,33,40,121,46,110,111,67,108,111,110,101,67,104,101,99,107,101,100,124,124,49,33,61,61,101,46,110,111,100,101,84,121,112,101,38,38,49,49,33,61,61,101,46,110,111,100,101,84,121,112,101,124,124,107,46,105,115,88,77,76,68,111,99,40,101,41,41,41,102,111,114,40,97,61,118,101,40,99,41,44,114,61,48,44,105,61,40,111,61,118,101,40,101,41,41,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,115,61,111,91,114,93,44,117,61,97,91,114,93,44,118,111,105,100,32,48,44,34,105,110,112,117,116,34,61,61,61,40,108,61,117,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,38,38,112,101,46,116,101,115,116,40,115,46,116,121,112,101,41,63,117,46,99,104,101,99,107,101,100,61,115,46,99,104,101,99,107,101,100,58,34,105,110,112,117,116,34,33,61,61,108,38,38,34,116,101,120,116,97,114,101,97,34,33,61,61,108,124,124,40,117,46,100,101,102,97,117,108,116,86,97,108,117,101,61,115,46,100,101,102,97,117,108,116,86,97,108,117,101,41,59,105,102,40,116,41,105,102,40,110,41,102,111,114,40,111,61,111,124,124,118,101,40,101,41,44,97,61,97,124,124,118,101,40,99,41,44,114,61,48,44,105,61,111,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,77,101,40,111,91,114,93,44,97,91,114,93,41,59,101,108,115,101,32,77,101,40,101,44,99,41,59,114,101,116,117,114,110,32,48,60,40,97,61,118,101,40,99,44,34,115,99,114,105,112,116,34,41,41,46,108,101,110,103,116,104,38,38,121,101,40,97,44,33,102,38,38,118,101,40,101,44,34,115,99,114,105,112,116,34,41,41,44,99,125,44,99,108,101,97,110,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,44,110,44,114,44,105,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,44,111,61,48,59,118,111,105,100,32,48,33,61,61,40,110,61,101,91,111,93,41,59,111,43,43,41,105,102,40,71,40,110,41,41,123,105,102,40,116,61,110,91,81,46,101,120,112,97,110,100,111,93,41,123,105,102,40,116,46,101,118,101,110,116,115,41,102,111,114,40,114,32,105,110,32,116,46,101,118,101,110,116,115,41,105,91,114,93,63,107,46,101,118,101,110,116,46,114,101,109,111,118,101,40,110,44,114,41,58,107,46,114,101,109,111,118,101,69,118,101,110,116,40,110,44,114,44,116,46,104,97,110,100,108,101,41,59,110,91,81,46,101,120,112,97,110,100,111,93,61,118,111,105,100,32,48,125,110,91,74,46,101,120,112,97,110,100,111,93,38,38,40,110,91,74,46,101,120,112,97,110,100,111,93,61,118,111,105,100,32,48,41,125,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,100,101,116,97,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,87,101,40,116,104,105,115,44,101,44,33,48,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,87,101,40,116,104,105,115,44,101,41,125,44,116,101,120,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,101,63,107,46,116,101,120,116,40,116,104,105,115,41,58,116,104,105,115,46,101,109,112,116,121,40,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,49,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,49,49,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,57,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,124,124,40,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,101,41,125,41,125,44,110,117,108,108,44,101,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,44,97,112,112,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,49,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,49,49,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,57,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,124,124,79,101,40,116,104,105,115,44,101,41,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,125,41,125,44,112,114,101,112,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,49,61,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,124,124,49,49,61,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,124,124,57,61,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,41,123,118,97,114,32,116,61,79,101,40,116,104,105,115,44,101,41,59,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,101,44,116,46,102,105,114,115,116,67,104,105,108,100,41,125,125,41,125,44,98,101,102,111,114,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,38,38,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,101,44,116,104,105,115,41,125,41,125,44,97,102,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,38,38,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,101,44,116,104,105,115,46,110,101,120,116,83,105,98,108,105,110,103,41,125,41,125,44,101,109,112,116,121,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,44,116,61,48,59,110,117,108,108,33,61,40,101,61,116,104,105,115,91,116,93,41,59,116,43,43,41,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,40,107,46,99,108,101,97,110,68,97,116,97,40,118,101,40,101,44,33,49,41,41,44,101,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,99,108,111,110,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,101,61,110,117,108,108,33,61,101,38,38,101,44,116,61,110,117,108,108,61,61,116,63,101,58,116,44,116,104,105,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,46,99,108,111,110,101,40,116,104,105,115,44,101,44,116,41,125,41,125,44,104,116,109,108,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,91,48,93,124,124,123,125,44,110,61,48,44,114,61,116,104,105,115,46,108,101,110,103,116,104,59,105,102,40,118,111,105,100,32,48,61,61,61,101,38,38,49,61,61,61,116,46,110,111,100,101,84,121,112,101,41,114,101,116,117,114,110,32,116,46,105,110,110,101,114,72,84,77,76,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,33,113,101,46,116,101,115,116,40,101,41,38,38,33,103,101,91,40,100,101,46,101,120,101,99,40,101,41,124,124,91,34,34,44,34,34,93,41,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,41,123,101,61,107,46,104,116,109,108,80,114,101,102,105,108,116,101,114,40,101,41,59,116,114,121,123,102,111,114,40,59,110,60,114,59,110,43,43,41,49,61,61,61,40,116,61,116,104,105,115,91,110,93,124,124,123,125,41,46,110,111,100,101,84,121,112,101,38,38,40,107,46,99,108,101,97,110,68,97,116,97,40,118,101,40,116,44,33,49,41,41,44,116,46,105,110,110,101,114,72,84,77,76,61,101,41,59,116,61,48,125,99,97,116,99,104,40,101,41,123,125,125,116,38,38,116,104,105,115,46,101,109,112,116,121,40,41,46,97,112,112,101,110,100,40,101,41,125,44,110,117,108,108,44,101,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,44,114,101,112,108,97,99,101,87,105,116,104,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,91,93,59,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,107,46,105,110,65,114,114,97,121,40,116,104,105,115,44,110,41,60,48,38,38,40,107,46,99,108,101,97,110,68,97,116,97,40,118,101,40,116,104,105,115,41,41,44,116,38,38,116,46,114,101,112,108,97,99,101,67,104,105,108,100,40,101,44,116,104,105,115,41,41,125,44,110,41,125,125,41,44,107,46,101,97,99,104,40,123,97,112,112,101,110,100,84,111,58,34,97,112,112,101,110,100,34,44,112,114,101,112,101,110,100,84,111,58,34,112,114,101,112,101,110,100,34,44,105,110,115,101,114,116,66,101,102,111,114,101,58,34,98,101,102,111,114,101,34,44,105,110,115,101,114,116,65,102,116,101,114,58,34,97,102,116,101,114,34,44,114,101,112,108,97,99,101,65,108,108,58,34,114,101,112,108,97,99,101,87,105,116,104,34,125,44,102,117,110,99,116,105,111,110,40,101,44,97,41,123,107,46,102,110,91,101,93,61,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,44,110,61,91,93,44,114,61,107,40,101,41,44,105,61,114,46,108,101,110,103,116,104,45,49,44,111,61,48,59,111,60,61,105,59,111,43,43,41,116,61,111,61,61,61,105,63,116,104,105,115,58,116,104,105,115,46,99,108,111,110,101,40,33,48,41,44,107,40,114,91,111,93,41,91,97,93,40,116,41,44,117,46,97,112,112,108,121,40,110,44,116,46,103,101,116,40,41,41,59,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,110,41,125,125,41,59,118,97,114,32,36,101,61,110,101,119,32,82,101,103,69,120,112,40,34,94,40,34,43,116,101,43,34,41,40,63,33,112,120,41,91,97,45,122,37,93,43,36,34,44,34,105,34,41,44,70,101,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,59,114,101,116,117,114,110,32,116,38,38,116,46,111,112,101,110,101,114,124,124,40,116,61,67,41,44,116,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,101,41,125,44,66,101,61,110,101,119,32,82,101,103,69,120,112,40,114,101,46,106,111,105,110,40,34,124,34,41,44,34,105,34,41,59,102,117,110,99,116,105,111,110,32,95,101,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,61,101,46,115,116,121,108,101,59,114,101,116,117,114,110,40,110,61,110,124,124,70,101,40,101,41,41,38,38,40,34,34,33,61,61,40,97,61,110,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,116,41,124,124,110,91,116,93,41,124,124,111,101,40,101,41,124,124,40,97,61,107,46,115,116,121,108,101,40,101,44,116,41,41,44,33,121,46,112,105,120,101,108,66,111,120,83,116,121,108,101,115,40,41,38,38,36,101,46,116,101,115,116,40,97,41,38,38,66,101,46,116,101,115,116,40,116,41,38,38,40,114,61,115,46,119,105,100,116,104,44,105,61,115,46,109,105,110,87,105,100,116,104,44,111,61,115,46,109,97,120,87,105,100,116,104,44,115,46,109,105,110,87,105,100,116,104,61,115,46,109,97,120,87,105,100,116,104,61,115,46,119,105,100,116,104,61,97,44,97,61,110,46,119,105,100,116,104,44,115,46,119,105,100,116,104,61,114,44,115,46,109,105,110,87,105,100,116,104,61,105,44,115,46,109,97,120,87,105,100,116,104,61,111,41,41,44,118,111,105,100,32,48,33,61,61,97,63,97,43,34,34,58,97,125,102,117,110,99,116,105,111,110,32,122,101,40,101,44,116,41,123,114,101,116,117,114,110,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,101,40,41,41,114,101,116,117,114,110,40,116,104,105,115,46,103,101,116,61,116,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,100,101,108,101,116,101,32,116,104,105,115,46,103,101,116,125,125,125,33,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,105,102,40,117,41,123,115,46,115,116,121,108,101,46,99,115,115,84,101,120,116,61,34,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,108,101,102,116,58,45,49,49,49,49,49,112,120,59,119,105,100,116,104,58,54,48,112,120,59,109,97,114,103,105,110,45,116,111,112,58,49,112,120,59,112,97,100,100,105,110,103,58,48,59,98,111,114,100,101,114,58,48,34,44,117,46,115,116,121,108,101,46,99,115,115,84,101,120,116,61,34,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,111,118,101,114,102,108,111,119,58,115,99,114,111,108,108,59,109,97,114,103,105,110,58,97,117,116,111,59,98,111,114,100,101,114,58,49,112,120,59,112,97,100,100,105,110,103,58,49,112,120,59,119,105,100,116,104,58,54,48,37,59,116,111,112,58,49,37,34,44,105,101,46,97,112,112,101,110,100,67,104,105,108,100,40,115,41,46,97,112,112,101,110,100,67,104,105,108,100,40,117,41,59,118,97,114,32,101,61,67,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,117,41,59,110,61,34,49,37,34,33,61,61,101,46,116,111,112,44,97,61,49,50,61,61,61,116,40,101,46,109,97,114,103,105,110,76,101,102,116,41,44,117,46,115,116,121,108,101,46,114,105,103,104,116,61,34,54,48,37,34,44,111,61,51,54,61,61,61,116,40,101,46,114,105,103,104,116,41,44,114,61,51,54,61,61,61,116,40,101,46,119,105,100,116,104,41,44,117,46,115,116,121,108,101,46,112,111,115,105,116,105,111,110,61,34,97,98,115,111,108,117,116,101,34,44,105,61,49,50,61,61,61,116,40,117,46,111,102,102,115,101,116,87,105,100,116,104,47,51,41,44,105,101,46,114,101,109,111,118,101,67,104,105,108,100,40,115,41,44,117,61,110,117,108,108,125,125,102,117,110,99,116,105,111,110,32,116,40,101,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,112,97,114,115,101,70,108,111,97,116,40,101,41,41,125,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,44,117,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,117,46,115,116,121,108,101,38,38,40,117,46,115,116,121,108,101,46,98,97,99,107,103,114,111,117,110,100,67,108,105,112,61,34,99,111,110,116,101,110,116,45,98,111,120,34,44,117,46,99,108,111,110,101,78,111,100,101,40,33,48,41,46,115,116,121,108,101,46,98,97,99,107,103,114,111,117,110,100,67,108,105,112,61,34,34,44,121,46,99,108,101,97,114,67,108,111,110,101,83,116,121,108,101,61,34,99,111,110,116,101,110,116,45,98,111,120,34,61,61,61,117,46,115,116,121,108,101,46,98,97,99,107,103,114,111,117,110,100,67,108,105,112,44,107,46,101,120,116,101,110,100,40,121,44,123,98,111,120,83,105,122,105,110,103,82,101,108,105,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,114,125,44,112,105,120,101,108,66,111,120,83,116,121,108,101,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,111,125,44,112,105,120,101,108,80,111,115,105,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,110,125,44,114,101,108,105,97,98,108,101,77,97,114,103,105,110,76,101,102,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,97,125,44,115,99,114,111,108,108,98,111,120,83,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,105,125,125,41,41,125,40,41,59,118,97,114,32,85,101,61,91,34,87,101,98,107,105,116,34,44,34,77,111,122,34,44,34,109,115,34,93,44,88,101,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,46,115,116,121,108,101,44,86,101,61,123,125,59,102,117,110,99,116,105,111,110,32,71,101,40,101,41,123,118,97,114,32,116,61,107,46,99,115,115,80,114,111,112,115,91,101,93,124,124,86,101,91,101,93,59,114,101,116,117,114,110,32,116,124,124,40,101,32,105,110,32,88,101,63,101,58,86,101,91,101,93,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,101,46,115,108,105,99,101,40,49,41,44,110,61,85,101,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,41,105,102,40,40,101,61,85,101,91,110,93,43,116,41,105,110,32,88,101,41,114,101,116,117,114,110,32,101,125,40,101,41,124,124,101,41,125,118,97,114,32,89,101,61,47,94,40,110,111,110,101,124,116,97,98,108,101,40,63,33,45,99,91,101,97,93,41,46,43,41,47,44,81,101,61,47,94,45,45,47,44,74,101,61,123,112,111,115,105,116,105,111,110,58,34,97,98,115,111,108,117,116,101,34,44,118,105,115,105,98,105,108,105,116,121,58,34,104,105,100,100,101,110,34,44,100,105,115,112,108,97,121,58,34,98,108,111,99,107,34,125,44,75,101,61,123,108,101,116,116,101,114,83,112,97,99,105,110,103,58,34,48,34,44,102,111,110,116,87,101,105,103,104,116,58,34,52,48,48,34,125,59,102,117,110,99,116,105,111,110,32,90,101,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,101,46,101,120,101,99,40,116,41,59,114,101,116,117,114,110,32,114,63,77,97,116,104,46,109,97,120,40,48,44,114,91,50,93,45,40,110,124,124,48,41,41,43,40,114,91,51,93,124,124,34,112,120,34,41,58,116,125,102,117,110,99,116,105,111,110,32,101,116,40,101,44,116,44,110,44,114,44,105,44,111,41,123,118,97,114,32,97,61,34,119,105,100,116,104,34,61,61,61,116,63,49,58,48,44,115,61,48,44,117,61,48,59,105,102,40,110,61,61,61,40,114,63,34,98,111,114,100,101,114,34,58,34,99,111,110,116,101,110,116,34,41,41,114,101,116,117,114,110,32,48,59,102,111,114,40,59,97,60,52,59,97,43,61,50,41,34,109,97,114,103,105,110,34,61,61,61,110,38,38,40,117,43,61,107,46,99,115,115,40,101,44,110,43,114,101,91,97,93,44,33,48,44,105,41,41,44,114,63,40,34,99,111,110,116,101,110,116,34,61,61,61,110,38,38,40,117,45,61,107,46,99,115,115,40,101,44,34,112,97,100,100,105,110,103,34,43,114,101,91,97,93,44,33,48,44,105,41,41,44,34,109,97,114,103,105,110,34,33,61,61,110,38,38,40,117,45,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,34,43,114,101,91,97,93,43,34,87,105,100,116,104,34,44,33,48,44,105,41,41,41,58,40,117,43,61,107,46,99,115,115,40,101,44,34,112,97,100,100,105,110,103,34,43,114,101,91,97,93,44,33,48,44,105,41,44,34,112,97,100,100,105,110,103,34,33,61,61,110,63,117,43,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,34,43,114,101,91,97,93,43,34,87,105,100,116,104,34,44,33,48,44,105,41,58,115,43,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,34,43,114,101,91,97,93,43,34,87,105,100,116,104,34,44,33,48,44,105,41,41,59,114,101,116,117,114,110,33,114,38,38,48,60,61,111,38,38,40,117,43,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,99,101,105,108,40,101,91,34,111,102,102,115,101,116,34,43,116,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,116,46,115,108,105,99,101,40,49,41,93,45,111,45,117,45,115,45,46,53,41,41,124,124,48,41,44,117,125,102,117,110,99,116,105,111,110,32,116,116,40,101,44,116,44,110,41,123,118,97,114,32,114,61,70,101,40,101,41,44,105,61,40,33,121,46,98,111,120,83,105,122,105,110,103,82,101,108,105,97,98,108,101,40,41,124,124,110,41,38,38,34,98,111,114,100,101,114,45,98,111,120,34,61,61,61,107,46,99,115,115,40,101,44,34,98,111,120,83,105,122,105,110,103,34,44,33,49,44,114,41,44,111,61,105,44,97,61,95,101,40,101,44,116,44,114,41,44,115,61,34,111,102,102,115,101,116,34,43,116,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,116,46,115,108,105,99,101,40,49,41,59,105,102,40,36,101,46,116,101,115,116,40,97,41,41,123,105,102,40,33,110,41,114,101,116,117,114,110,32,97,59,97,61,34,97,117,116,111,34,125,114,101,116,117,114,110,40,33,121,46,98,111,120,83,105,122,105,110,103,82,101,108,105,97,98,108,101,40,41,38,38,105,124,124,34,97,117,116,111,34,61,61,61,97,124,124,33,112,97,114,115,101,70,108,111,97,116,40,97,41,38,38,34,105,110,108,105,110,101,34,61,61,61,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,44,33,49,44,114,41,41,38,38,101,46,103,101,116,67,108,105,101,110,116,82,101,99,116,115,40,41,46,108,101,110,103,116,104,38,38,40,105,61,34,98,111,114,100,101,114,45,98,111,120,34,61,61,61,107,46,99,115,115,40,101,44,34,98,111,120,83,105,122,105,110,103,34,44,33,49,44,114,41,44,40,111,61,115,32,105,110,32,101,41,38,38,40,97,61,101,91,115,93,41,41,44,40,97,61,112,97,114,115,101,70,108,111,97,116,40,97,41,124,124,48,41,43,101,116,40,101,44,116,44,110,124,124,40,105,63,34,98,111,114,100,101,114,34,58,34,99,111,110,116,101,110,116,34,41,44,111,44,114,44,97,41,43,34,112,120,34,125,102,117,110,99,116,105,111,110,32,110,116,40,101,44,116,44,110,44,114,44,105,41,123,114,101,116,117,114,110,32,110,101,119,32,110,116,46,112,114,111,116,111,116,121,112,101,46,105,110,105,116,40,101,44,116,44,110,44,114,44,105,41,125,107,46,101,120,116,101,110,100,40,123,99,115,115,72,111,111,107,115,58,123,111,112,97,99,105,116,121,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,41,123,118,97,114,32,110,61,95,101,40,101,44,34,111,112,97,99,105,116,121,34,41,59,114,101,116,117,114,110,34,34,61,61,61,110,63,34,49,34,58,110,125,125,125,125,44,99,115,115,78,117,109,98,101,114,58,123,97,110,105,109,97,116,105,111,110,73,116,101,114,97,116,105,111,110,67,111,117,110,116,58,33,48,44,99,111,108,117,109,110,67,111,117,110,116,58,33,48,44,102,105,108,108,79,112,97,99,105,116,121,58,33,48,44,102,108,101,120,71,114,111,119,58,33,48,44,102,108,101,120,83,104,114,105,110,107,58,33,48,44,102,111,110,116,87,101,105,103,104,116,58,33,48,44,103,114,105,100,65,114,101,97,58,33,48,44,103,114,105,100,67,111,108,117,109,110,58,33,48,44,103,114,105,100,67,111,108,117,109,110,69,110,100,58,33,48,44,103,114,105,100,67,111,108,117,109,110,83,116,97,114,116,58,33,48,44,103,114,105,100,82,111,119,58,33,48,44,103,114,105,100,82,111,119,69,110,100,58,33,48,44,103,114,105,100,82,111,119,83,116,97,114,116,58,33,48,44,108,105,110,101,72,101,105,103,104,116,58,33,48,44,111,112,97,99,105,116,121,58,33,48,44,111,114,100,101,114,58,33,48,44,111,114,112,104,97,110,115,58,33,48,44,119,105,100,111,119,115,58,33,48,44,122,73,110,100,101,120,58,33,48,44,122,111,111,109,58,33,48,125,44,99,115,115,80,114,111,112,115,58,123,125,44,115,116,121,108,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,105,102,40,101,38,38,51,33,61,61,101,46,110,111,100,101,84,121,112,101,38,38,56,33,61,61,101,46,110,111,100,101,84,121,112,101,38,38,101,46,115,116,121,108,101,41,123,118,97,114,32,105,44,111,44,97,44,115,61,86,40,116,41,44,117,61,81,101,46,116,101,115,116,40,116,41,44,108,61,101,46,115,116,121,108,101,59,105,102,40,117,124,124,40,116,61,71,101,40,115,41,41,44,97,61,107,46,99,115,115,72,111,111,107,115,91,116,93,124,124,107,46,99,115,115,72,111,111,107,115,91,115,93,44,118,111,105,100,32,48,61,61,61,110,41,114,101,116,117,114,110,32,97,38,38,34,103,101,116,34,105,110,32,97,38,38,118,111,105,100,32,48,33,61,61,40,105,61,97,46,103,101,116,40,101,44,33,49,44,114,41,41,63,105,58,108,91,116,93,59,34,115,116,114,105,110,103,34,61,61,61,40,111,61,116,121,112,101,111,102,32,110,41,38,38,40,105,61,110,101,46,101,120,101,99,40,110,41,41,38,38,105,91,49,93,38,38,40,110,61,108,101,40,101,44,116,44,105,41,44,111,61,34,110,117,109,98,101,114,34,41,44,110,117,108,108,33,61,110,38,38,110,61,61,110,38,38,40,34,110,117,109,98,101,114,34,33,61,61,111,124,124,117,124,124,40,110,43,61,105,38,38,105,91,51,93,124,124,40,107,46,99,115,115,78,117,109,98,101,114,91,115,93,63,34,34,58,34,112,120,34,41,41,44,121,46,99,108,101,97,114,67,108,111,110,101,83,116,121,108,101,124,124,34,34,33,61,61,110,124,124,48,33,61,61,116,46,105,110,100,101,120,79,102,40,34,98,97,99,107,103,114,111,117,110,100,34,41,124,124,40,108,91,116,93,61,34,105,110,104,101,114,105,116,34,41,44,97,38,38,34,115,101,116,34,105,110,32,97,38,38,118,111,105,100,32,48,61,61,61,40,110,61,97,46,115,101,116,40,101,44,110,44,114,41,41,124,124,40,117,63,108,46,115,101,116,80,114,111,112,101,114,116,121,40,116,44,110,41,58,108,91,116,93,61,110,41,41,125,125,44,99,115,115,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,61,86,40,116,41,59,114,101,116,117,114,110,32,81,101,46,116,101,115,116,40,116,41,124,124,40,116,61,71,101,40,115,41,41,44,40,97,61,107,46,99,115,115,72,111,111,107,115,91,116,93,124,124,107,46,99,115,115,72,111,111,107,115,91,115,93,41,38,38,34,103,101,116,34,105,110,32,97,38,38,40,105,61,97,46,103,101,116,40,101,44,33,48,44,110,41,41,44,118,111,105,100,32,48,61,61,61,105,38,38,40,105,61,95,101,40,101,44,116,44,114,41,41,44,34,110,111,114,109,97,108,34,61,61,61,105,38,38,116,32,105,110,32,75,101,38,38,40,105,61,75,101,91,116,93,41,44,34,34,61,61,61,110,124,124,110,63,40,111,61,112,97,114,115,101,70,108,111,97,116,40,105,41,44,33,48,61,61,61,110,124,124,105,115,70,105,110,105,116,101,40,111,41,63,111,124,124,48,58,105,41,58,105,125,125,41,44,107,46,101,97,99,104,40,91,34,104,101,105,103,104,116,34,44,34,119,105,100,116,104,34,93,44,102,117,110,99,116,105,111,110,40,101,44,117,41,123,107,46,99,115,115,72,111,111,107,115,91,117,93,61,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,116,41,114,101,116,117,114,110,33,89,101,46,116,101,115,116,40,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,41,41,124,124,101,46,103,101,116,67,108,105,101,110,116,82,101,99,116,115,40,41,46,108,101,110,103,116,104,38,38,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,119,105,100,116,104,63,116,116,40,101,44,117,44,110,41,58,117,101,40,101,44,74,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,116,40,101,44,117,44,110,41,125,41,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,61,70,101,40,101,41,44,111,61,33,121,46,115,99,114,111,108,108,98,111,120,83,105,122,101,40,41,38,38,34,97,98,115,111,108,117,116,101,34,61,61,61,105,46,112,111,115,105,116,105,111,110,44,97,61,40,111,124,124,110,41,38,38,34,98,111,114,100,101,114,45,98,111,120,34,61,61,61,107,46,99,115,115,40,101,44,34,98,111,120,83,105,122,105,110,103,34,44,33,49,44,105,41,44,115,61,110,63,101,116,40,101,44,117,44,110,44,97,44,105,41,58,48,59,114,101,116,117,114,110,32,97,38,38,111,38,38,40,115,45,61,77,97,116,104,46,99,101,105,108,40,101,91,34,111,102,102,115,101,116,34,43,117,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,117,46,115,108,105,99,101,40,49,41,93,45,112,97,114,115,101,70,108,111,97,116,40,105,91,117,93,41,45,101,116,40,101,44,117,44,34,98,111,114,100,101,114,34,44,33,49,44,105,41,45,46,53,41,41,44,115,38,38,40,114,61,110,101,46,101,120,101,99,40,116,41,41,38,38,34,112,120,34,33,61,61,40,114,91,51,93,124,124,34,112,120,34,41,38,38,40,101,46,115,116,121,108,101,91,117,93,61,116,44,116,61,107,46,99,115,115,40,101,44,117,41,41,44,90,101,40,48,44,116,44,115,41,125,125,125,41,44,107,46,99,115,115,72,111,111,107,115,46,109,97,114,103,105,110,76,101,102,116,61,122,101,40,121,46,114,101,108,105,97,98,108,101,77,97,114,103,105,110,76,101,102,116,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,41,114,101,116,117,114,110,40,112,97,114,115,101,70,108,111,97,116,40,95,101,40,101,44,34,109,97,114,103,105,110,76,101,102,116,34,41,41,124,124,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,108,101,102,116,45,117,101,40,101,44,123,109,97,114,103,105,110,76,101,102,116,58,48,125,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,108,101,102,116,125,41,41,43,34,112,120,34,125,41,44,107,46,101,97,99,104,40,123,109,97,114,103,105,110,58,34,34,44,112,97,100,100,105,110,103,58,34,34,44,98,111,114,100,101,114,58,34,87,105,100,116,104,34,125,44,102,117,110,99,116,105,111,110,40,105,44,111,41,123,107,46,99,115,115,72,111,111,107,115,91,105,43,111,93,61,123,101,120,112,97,110,100,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,44,110,61,123,125,44,114,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,34,32,34,41,58,91,101,93,59,116,60,52,59,116,43,43,41,110,91,105,43,114,101,91,116,93,43,111,93,61,114,91,116,93,124,124,114,91,116,45,50,93,124,124,114,91,48,93,59,114,101,116,117,114,110,32,110,125,125,44,34,109,97,114,103,105,110,34,33,61,61,105,38,38,40,107,46,99,115,115,72,111,111,107,115,91,105,43,111,93,46,115,101,116,61,90,101,41,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,99,115,115,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,123,125,44,97,61,48,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,123,102,111,114,40,114,61,70,101,40,101,41,44,105,61,116,46,108,101,110,103,116,104,59,97,60,105,59,97,43,43,41,111,91,116,91,97,93,93,61,107,46,99,115,115,40,101,44,116,91,97,93,44,33,49,44,114,41,59,114,101,116,117,114,110,32,111,125,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,110,63,107,46,115,116,121,108,101,40,101,44,116,44,110,41,58,107,46,99,115,115,40,101,44,116,41,125,44,101,44,116,44,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,125,41,44,40,40,107,46,84,119,101,101,110,61,110,116,41,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,110,116,44,105,110,105,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,44,105,44,111,41,123,116,104,105,115,46,101,108,101,109,61,101,44,116,104,105,115,46,112,114,111,112,61,110,44,116,104,105,115,46,101,97,115,105,110,103,61,105,124,124,107,46,101,97,115,105,110,103,46,95,100,101,102,97,117,108,116,44,116,104,105,115,46,111,112,116,105,111,110,115,61,116,44,116,104,105,115,46,115,116,97,114,116,61,116,104,105,115,46,110,111,119,61,116,104,105,115,46,99,117,114,40,41,44,116,104,105,115,46,101,110,100,61,114,44,116,104,105,115,46,117,110,105,116,61,111,124,124,40,107,46,99,115,115,78,117,109,98,101,114,91,110,93,63,34,34,58,34,112,120,34,41,125,44,99,117,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,116,46,112,114,111,112,72,111,111,107,115,91,116,104,105,115,46,112,114,111,112,93,59,114,101,116,117,114,110,32,101,38,38,101,46,103,101,116,63,101,46,103,101,116,40,116,104,105,115,41,58,110,116,46,112,114,111,112,72,111,111,107,115,46,95,100,101,102,97,117,108,116,46,103,101,116,40,116,104,105,115,41,125,44,114,117,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,110,116,46,112,114,111,112,72,111,111,107,115,91,116,104,105,115,46,112,114,111,112,93,59,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,100,117,114,97,116,105,111,110,63,116,104,105,115,46,112,111,115,61,116,61,107,46,101,97,115,105,110,103,91,116,104,105,115,46,101,97,115,105,110,103,93,40,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,100,117,114,97,116,105,111,110,42,101,44,48,44,49,44,116,104,105,115,46,111,112,116,105,111,110,115,46,100,117,114,97,116,105,111,110,41,58,116,104,105,115,46,112,111,115,61,116,61,101,44,116,104,105,115,46,110,111,119,61,40,116,104,105,115,46,101,110,100,45,116,104,105,115,46,115,116,97,114,116,41,42,116,43,116,104,105,115,46,115,116,97,114,116,44,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,38,38,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,46,99,97,108,108,40,116,104,105,115,46,101,108,101,109,44,116,104,105,115,46,110,111,119,44,116,104,105,115,41,44,110,38,38,110,46,115,101,116,63,110,46,115,101,116,40,116,104,105,115,41,58,110,116,46,112,114,111,112,72,111,111,107,115,46,95,100,101,102,97,117,108,116,46,115,101,116,40,116,104,105,115,41,44,116,104,105,115,125,125,41,46,105,110,105,116,46,112,114,111,116,111,116,121,112,101,61,110,116,46,112,114,111,116,111,116,121,112,101,44,40,110,116,46,112,114,111,112,72,111,111,107,115,61,123,95,100,101,102,97,117,108,116,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,114,101,116,117,114,110,32,49,33,61,61,101,46,101,108,101,109,46,110,111,100,101,84,121,112,101,124,124,110,117,108,108,33,61,101,46,101,108,101,109,91,101,46,112,114,111,112,93,38,38,110,117,108,108,61,61,101,46,101,108,101,109,46,115,116,121,108,101,91,101,46,112,114,111,112,93,63,101,46,101,108,101,109,91,101,46,112,114,111,112,93,58,40,116,61,107,46,99,115,115,40,101,46,101,108,101,109,44,101,46,112,114,111,112,44,34,34,41,41,38,38,34,97,117,116,111,34,33,61,61,116,63,116,58,48,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,107,46,102,120,46,115,116,101,112,91,101,46,112,114,111,112,93,63,107,46,102,120,46,115,116,101,112,91,101,46,112,114,111,112,93,40,101,41,58,49,33,61,61,101,46,101,108,101,109,46,110,111,100,101,84,121,112,101,124,124,33,107,46,99,115,115,72,111,111,107,115,91,101,46,112,114,111,112,93,38,38,110,117,108,108,61,61,101,46,101,108,101,109,46,115,116,121,108,101,91,71,101,40,101,46,112,114,111,112,41,93,63,101,46,101,108,101,109,91,101,46,112,114,111,112,93,61,101,46,110,111,119,58,107,46,115,116,121,108,101,40,101,46,101,108,101,109,44,101,46,112,114,111,112,44,101,46,110,111,119,43,101,46,117,110,105,116,41,125,125,125,41,46,115,99,114,111,108,108,84,111,112,61,110,116,46,112,114,111,112,72,111,111,107,115,46,115,99,114,111,108,108,76,101,102,116,61,123,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,101,108,101,109,46,110,111,100,101,84,121,112,101,38,38,101,46,101,108,101,109,46,112,97,114,101,110,116,78,111,100,101,38,38,40,101,46,101,108,101,109,91,101,46,112,114,111,112,93,61,101,46,110,111,119,41,125,125,44,107,46,101,97,115,105,110,103,61,123,108,105,110,101,97,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,125,44,115,119,105,110,103,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,46,53,45,77,97,116,104,46,99,111,115,40,101,42,77,97,116,104,46,80,73,41,47,50,125,44,95,100,101,102,97,117,108,116,58,34,115,119,105,110,103,34,125,44,107,46,102,120,61,110,116,46,112,114,111,116,111,116,121,112,101,46,105,110,105,116,44,107,46,102,120,46,115,116,101,112,61,123,125,59,118,97,114,32,114,116,44,105,116,44,111,116,44,97,116,44,115,116,61,47,94,40,63,58,116,111,103,103,108,101,124,115,104,111,119,124,104,105,100,101,41,36,47,44,117,116,61,47,113,117,101,117,101,72,111,111,107,115,36,47,59,102,117,110,99,116,105,111,110,32,108,116,40,41,123,105,116,38,38,40,33,49,61,61,61,69,46,104,105,100,100,101,110,38,38,67,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,63,67,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,108,116,41,58,67,46,115,101,116,84,105,109,101,111,117,116,40,108,116,44,107,46,102,120,46,105,110,116,101,114,118,97,108,41,44,107,46,102,120,46,116,105,99,107,40,41,41,125,102,117,110,99,116,105,111,110,32,99,116,40,41,123,114,101,116,117,114,110,32,67,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,114,116,61,118,111,105,100,32,48,125,41,44,114,116,61,68,97,116,101,46,110,111,119,40,41,125,102,117,110,99,116,105,111,110,32,102,116,40,101,44,116,41,123,118,97,114,32,110,44,114,61,48,44,105,61,123,104,101,105,103,104,116,58,101,125,59,102,111,114,40,116,61,116,63,49,58,48,59,114,60,52,59,114,43,61,50,45,116,41,105,91,34,109,97,114,103,105,110,34,43,40,110,61,114,101,91,114,93,41,93,61,105,91,34,112,97,100,100,105,110,103,34,43,110,93,61,101,59,114,101,116,117,114,110,32,116,38,38,40,105,46,111,112,97,99,105,116,121,61,105,46,119,105,100,116,104,61,101,41,44,105,125,102,117,110,99,116,105,111,110,32,112,116,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,44,105,61,40,100,116,46,116,119,101,101,110,101,114,115,91,116,93,124,124,91,93,41,46,99,111,110,99,97,116,40,100,116,46,116,119,101,101,110,101,114,115,91,34,42,34,93,41,44,111,61,48,44,97,61,105,46,108,101,110,103,116,104,59,111,60,97,59,111,43,43,41,105,102,40,114,61,105,91,111,93,46,99,97,108,108,40,110,44,116,44,101,41,41,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,100,116,40,111,44,101,44,116,41,123,118,97,114,32,110,44,97,44,114,61,48,44,105,61,100,116,46,112,114,101,102,105,108,116,101,114,115,46,108,101,110,103,116,104,44,115,61,107,46,68,101,102,101,114,114,101,100,40,41,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,100,101,108,101,116,101,32,117,46,101,108,101,109,125,41,44,117,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,97,41,114,101,116,117,114,110,33,49,59,102,111,114,40,118,97,114,32,101,61,114,116,124,124,99,116,40,41,44,116,61,77,97,116,104,46,109,97,120,40,48,44,108,46,115,116,97,114,116,84,105,109,101,43,108,46,100,117,114,97,116,105,111,110,45,101,41,44,110,61,49,45,40,116,47,108,46,100,117,114,97,116,105,111,110,124,124,48,41,44,114,61,48,44,105,61,108,46,116,119,101,101,110,115,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,108,46,116,119,101,101,110,115,91,114,93,46,114,117,110,40,110,41,59,114,101,116,117,114,110,32,115,46,110,111,116,105,102,121,87,105,116,104,40,111,44,91,108,44,110,44,116,93,41,44,110,60,49,38,38,105,63,116,58,40,105,124,124,115,46,110,111,116,105,102,121,87,105,116,104,40,111,44,91,108,44,49,44,48,93,41,44,115,46,114,101,115,111,108,118,101,87,105,116,104,40,111,44,91,108,93,41,44,33,49,41,125,44,108,61,115,46,112,114,111,109,105,115,101,40,123,101,108,101,109,58,111,44,112,114,111,112,115,58,107,46,101,120,116,101,110,100,40,123,125,44,101,41,44,111,112,116,115,58,107,46,101,120,116,101,110,100,40,33,48,44,123,115,112,101,99,105,97,108,69,97,115,105,110,103,58,123,125,44,101,97,115,105,110,103,58,107,46,101,97,115,105,110,103,46,95,100,101,102,97,117,108,116,125,44,116,41,44,111,114,105,103,105,110,97,108,80,114,111,112,101,114,116,105,101,115,58,101,44,111,114,105,103,105,110,97,108,79,112,116,105,111,110,115,58,116,44,115,116,97,114,116,84,105,109,101,58,114,116,124,124,99,116,40,41,44,100,117,114,97,116,105,111,110,58,116,46,100,117,114,97,116,105,111,110,44,116,119,101,101,110,115,58,91,93,44,99,114,101,97,116,101,84,119,101,101,110,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,107,46,84,119,101,101,110,40,111,44,108,46,111,112,116,115,44,101,44,116,44,108,46,111,112,116,115,46,115,112,101,99,105,97,108,69,97,115,105,110,103,91,101,93,124,124,108,46,111,112,116,115,46,101,97,115,105,110,103,41,59,114,101,116,117,114,110,32,108,46,116,119,101,101,110,115,46,112,117,115,104,40,110,41,44,110,125,44,115,116,111,112,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,48,44,110,61,101,63,108,46,116,119,101,101,110,115,46,108,101,110,103,116,104,58,48,59,105,102,40,97,41,114,101,116,117,114,110,32,116,104,105,115,59,102,111,114,40,97,61,33,48,59,116,60,110,59,116,43,43,41,108,46,116,119,101,101,110,115,91,116,93,46,114,117,110,40,49,41,59,114,101,116,117,114,110,32,101,63,40,115,46,110,111,116,105,102,121,87,105,116,104,40,111,44,91,108,44,49,44,48,93,41,44,115,46,114,101,115,111,108,118,101,87,105,116,104,40,111,44,91,108,44,101,93,41,41,58,115,46,114,101,106,101,99,116,87,105,116,104,40,111,44,91,108,44,101,93,41,44,116,104,105,115,125,125,41,44,99,61,108,46,112,114,111,112,115,59,102,111,114,40,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,44,111,44,97,59,102,111,114,40,110,32,105,110,32,101,41,105,102,40,105,61,116,91,114,61,86,40,110,41,93,44,111,61,101,91,110,93,44,65,114,114,97,121,46,105,115,65,114,114,97,121,40,111,41,38,38,40,105,61,111,91,49,93,44,111,61,101,91,110,93,61,111,91,48,93,41,44,110,33,61,61,114,38,38,40,101,91,114,93,61,111,44,100,101,108,101,116,101,32,101,91,110,93,41,44,40,97,61,107,46,99,115,115,72,111,111,107,115,91,114,93,41,38,38,34,101,120,112,97,110,100,34,105,110,32,97,41,102,111,114,40,110,32,105,110,32,111,61,97,46,101,120,112,97,110,100,40,111,41,44,100,101,108,101,116,101,32,101,91,114,93,44,111,41,110,32,105,110,32,101,124,124,40,101,91,110,93,61,111,91,110,93,44,116,91,110,93,61,105,41,59,101,108,115,101,32,116,91,114,93,61,105,125,40,99,44,108,46,111,112,116,115,46,115,112,101,99,105,97,108,69,97,115,105,110,103,41,59,114,60,105,59,114,43,43,41,105,102,40,110,61,100,116,46,112,114,101,102,105,108,116,101,114,115,91,114,93,46,99,97,108,108,40,108,44,111,44,99,44,108,46,111,112,116,115,41,41,114,101,116,117,114,110,32,109,40,110,46,115,116,111,112,41,38,38,40,107,46,95,113,117,101,117,101,72,111,111,107,115,40,108,46,101,108,101,109,44,108,46,111,112,116,115,46,113,117,101,117,101,41,46,115,116,111,112,61,110,46,115,116,111,112,46,98,105,110,100,40,110,41,41,44,110,59,114,101,116,117,114,110,32,107,46,109,97,112,40,99,44,112,116,44,108,41,44,109,40,108,46,111,112,116,115,46,115,116,97,114,116,41,38,38,108,46,111,112,116,115,46,115,116,97,114,116,46,99,97,108,108,40,111,44,108,41,44,108,46,112,114,111,103,114,101,115,115,40,108,46,111,112,116,115,46,112,114,111,103,114,101,115,115,41,46,100,111,110,101,40,108,46,111,112,116,115,46,100,111,110,101,44,108,46,111,112,116,115,46,99,111,109,112,108,101,116,101,41,46,102,97,105,108,40,108,46,111,112,116,115,46,102,97,105,108,41,46,97,108,119,97,121,115,40,108,46,111,112,116,115,46,97,108,119,97,121,115,41,44,107,46,102,120,46,116,105,109,101,114,40,107,46,101,120,116,101,110,100,40,117,44,123,101,108,101,109,58,111,44,97,110,105,109,58,108,44,113,117,101,117,101,58,108,46,111,112,116,115,46,113,117,101,117,101,125,41,41,44,108,125,107,46,65,110,105,109,97,116,105,111,110,61,107,46,101,120,116,101,110,100,40,100,116,44,123,116,119,101,101,110,101,114,115,58,123,34,42,34,58,91,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,46,99,114,101,97,116,101,84,119,101,101,110,40,101,44,116,41,59,114,101,116,117,114,110,32,108,101,40,110,46,101,108,101,109,44,101,44,110,101,46,101,120,101,99,40,116,41,44,110,41,44,110,125,93,125,44,116,119,101,101,110,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,109,40,101,41,63,40,116,61,101,44,101,61,91,34,42,34,93,41,58,101,61,101,46,109,97,116,99,104,40,82,41,59,102,111,114,40,118,97,114,32,110,44,114,61,48,44,105,61,101,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,110,61,101,91,114,93,44,100,116,46,116,119,101,101,110,101,114,115,91,110,93,61,100,116,46,116,119,101,101,110,101,114,115,91,110,93,124,124,91,93,44,100,116,46,116,119,101,101,110,101,114,115,91,110,93,46,117,110,115,104,105,102,116,40,116,41,125,44,112,114,101,102,105,108,116,101,114,115,58,91,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,44,117,44,108,44,99,44,102,61,34,119,105,100,116,104,34,105,110,32,116,124,124,34,104,101,105,103,104,116,34,105,110,32,116,44,112,61,116,104,105,115,44,100,61,123,125,44,104,61,101,46,115,116,121,108,101,44,103,61,101,46,110,111,100,101,84,121,112,101,38,38,115,101,40,101,41,44,118,61,81,46,103,101,116,40,101,44,34,102,120,115,104,111,119,34,41,59,102,111,114,40,114,32,105,110,32,110,46,113,117,101,117,101,124,124,40,110,117,108,108,61,61,40,97,61,107,46,95,113,117,101,117,101,72,111,111,107,115,40,101,44,34,102,120,34,41,41,46,117,110,113,117,101,117,101,100,38,38,40,97,46,117,110,113,117,101,117,101,100,61,48,44,115,61,97,46,101,109,112,116,121,46,102,105,114,101,44,97,46,101,109,112,116,121,46,102,105,114,101,61,102,117,110,99,116,105,111,110,40,41,123,97,46,117,110,113,117,101,117,101,100,124,124,115,40,41,125,41,44,97,46,117,110,113,117,101,117,101,100,43,43,44,112,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,112,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,97,46,117,110,113,117,101,117,101,100,45,45,44,107,46,113,117,101,117,101,40,101,44,34,102,120,34,41,46,108,101,110,103,116,104,124,124,97,46,101,109,112,116,121,46,102,105,114,101,40,41,125,41,125,41,41,44,116,41,105,102,40,105,61,116,91,114,93,44,115,116,46,116,101,115,116,40,105,41,41,123,105,102,40,100,101,108,101,116,101,32,116,91,114,93,44,111,61,111,124,124,34,116,111,103,103,108,101,34,61,61,61,105,44,105,61,61,61,40,103,63,34,104,105,100,101,34,58,34,115,104,111,119,34,41,41,123,105,102,40,34,115,104,111,119,34,33,61,61,105,124,124,33,118,124,124,118,111,105,100,32,48,61,61,61,118,91,114,93,41,99,111,110,116,105,110,117,101,59,103,61,33,48,125,100,91,114,93,61,118,38,38,118,91,114,93,124,124,107,46,115,116,121,108,101,40,101,44,114,41,125,105,102,40,40,117,61,33,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,116,41,41,124,124,33,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,100,41,41,102,111,114,40,114,32,105,110,32,102,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,40,110,46,111,118,101,114,102,108,111,119,61,91,104,46,111,118,101,114,102,108,111,119,44,104,46,111,118,101,114,102,108,111,119,88,44,104,46,111,118,101,114,102,108,111,119,89,93,44,110,117,108,108,61,61,40,108,61,118,38,38,118,46,100,105,115,112,108,97,121,41,38,38,40,108,61,81,46,103,101,116,40,101,44,34,100,105,115,112,108,97,121,34,41,41,44,34,110,111,110,101,34,61,61,61,40,99,61,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,41,41,38,38,40,108,63,99,61,108,58,40,102,101,40,91,101,93,44,33,48,41,44,108,61,101,46,115,116,121,108,101,46,100,105,115,112,108,97,121,124,124,108,44,99,61,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,41,44,102,101,40,91,101,93,41,41,41,44,40,34,105,110,108,105,110,101,34,61,61,61,99,124,124,34,105,110,108,105,110,101,45,98,108,111,99,107,34,61,61,61,99,38,38,110,117,108,108,33,61,108,41,38,38,34,110,111,110,101,34,61,61,61,107,46,99,115,115,40,101,44,34,102,108,111,97,116,34,41,38,38,40,117,124,124,40,112,46,100,111,110,101,40,102,117,110,99,116,105,111,110,40,41,123,104,46,100,105,115,112,108,97,121,61,108,125,41,44,110,117,108,108,61,61,108,38,38,40,99,61,104,46,100,105,115,112,108,97,121,44,108,61,34,110,111,110,101,34,61,61,61,99,63,34,34,58,99,41,41,44,104,46,100,105,115,112,108,97,121,61,34,105,110,108,105,110,101,45,98,108,111,99,107,34,41,41,44,110,46,111,118,101,114,102,108,111,119,38,38,40,104,46,111,118,101,114,102,108,111,119,61,34,104,105,100,100,101,110,34,44,112,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,104,46,111,118,101,114,102,108,111,119,61,110,46,111,118,101,114,102,108,111,119,91,48,93,44,104,46,111,118,101,114,102,108,111,119,88,61,110,46,111,118,101,114,102,108,111,119,91,49,93,44,104,46,111,118,101,114,102,108,111,119,89,61,110,46,111,118,101,114,102,108,111,119,91,50,93,125,41,41,44,117,61,33,49,44,100,41,117,124,124,40,118,63,34,104,105,100,100,101,110,34,105,110,32,118,38,38,40,103,61,118,46,104,105,100,100,101,110,41,58,118,61,81,46,97,99,99,101,115,115,40,101,44,34,102,120,115,104,111,119,34,44,123,100,105,115,112,108,97,121,58,108,125,41,44,111,38,38,40,118,46,104,105,100,100,101,110,61,33,103,41,44,103,38,38,102,101,40,91,101,93,44,33,48,41,44,112,46,100,111,110,101,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,114,32,105,110,32,103,124,124,102,101,40,91,101,93,41,44,81,46,114,101,109,111,118,101,40,101,44,34,102,120,115,104,111,119,34,41,44,100,41,107,46,115,116,121,108,101,40,101,44,114,44,100,91,114,93,41,125,41,41,44,117,61,112,116,40,103,63,118,91,114,93,58,48,44,114,44,112,41,44,114,32,105,110,32,118,124,124,40,118,91,114,93,61,117,46,115,116,97,114,116,44,103,38,38,40,117,46,101,110,100,61,117,46,115,116,97,114,116,44,117,46,115,116,97,114,116,61,48,41,41,125,93,44,112,114,101,102,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,63,100,116,46,112,114,101,102,105,108,116,101,114,115,46,117,110,115,104,105,102,116,40,101,41,58,100,116,46,112,114,101,102,105,108,116,101,114,115,46,112,117,115,104,40,101,41,125,125,41,44,107,46,115,112,101,101,100,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,101,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,63,107,46,101,120,116,101,110,100,40,123,125,44,101,41,58,123,99,111,109,112,108,101,116,101,58,110,124,124,33,110,38,38,116,124,124,109,40,101,41,38,38,101,44,100,117,114,97,116,105,111,110,58,101,44,101,97,115,105,110,103,58,110,38,38,116,124,124,116,38,38,33,109,40,116,41,38,38,116,125,59,114,101,116,117,114,110,32,107,46,102,120,46,111,102,102,63,114,46,100,117,114,97,116,105,111,110,61,48,58,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,114,46,100,117,114,97,116,105,111,110,38,38,40,114,46,100,117,114,97,116,105,111,110,32,105,110,32,107,46,102,120,46,115,112,101,101,100,115,63,114,46,100,117,114,97,116,105,111,110,61,107,46,102,120,46,115,112,101,101,100,115,91,114,46,100,117,114,97,116,105,111,110,93,58,114,46,100,117,114,97,116,105,111,110,61,107,46,102,120,46,115,112,101,101,100,115,46,95,100,101,102,97,117,108,116,41,44,110,117,108,108,33,61,114,46,113,117,101,117,101,38,38,33,48,33,61,61,114,46,113,117,101,117,101,124,124,40,114,46,113,117,101,117,101,61,34,102,120,34,41,44,114,46,111,108,100,61,114,46,99,111,109,112,108,101,116,101,44,114,46,99,111,109,112,108,101,116,101,61,102,117,110,99,116,105,111,110,40,41,123,109,40,114,46,111,108,100,41,38,38,114,46,111,108,100,46,99,97,108,108,40,116,104,105,115,41,44,114,46,113,117,101,117,101,38,38,107,46,100,101,113,117,101,117,101,40,116,104,105,115,44,114,46,113,117,101,117,101,41,125,44,114,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,102,97,100,101,84,111,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,115,101,41,46,99,115,115,40,34,111,112,97,99,105,116,121,34,44,48,41,46,115,104,111,119,40,41,46,101,110,100,40,41,46,97,110,105,109,97,116,101,40,123,111,112,97,99,105,116,121,58,116,125,44,101,44,110,44,114,41,125,44,97,110,105,109,97,116,101,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,116,41,44,111,61,107,46,115,112,101,101,100,40,101,44,110,44,114,41,44,97,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,100,116,40,116,104,105,115,44,107,46,101,120,116,101,110,100,40,123,125,44,116,41,44,111,41,59,40,105,124,124,81,46,103,101,116,40,116,104,105,115,44,34,102,105,110,105,115,104,34,41,41,38,38,101,46,115,116,111,112,40,33,48,41,125,59,114,101,116,117,114,110,32,97,46,102,105,110,105,115,104,61,97,44,105,124,124,33,49,61,61,61,111,46,113,117,101,117,101,63,116,104,105,115,46,101,97,99,104,40,97,41,58,116,104,105,115,46,113,117,101,117,101,40,111,46,113,117,101,117,101,44,97,41,125,44,115,116,111,112,58,102,117,110,99,116,105,111,110,40,105,44,101,44,111,41,123,118,97,114,32,97,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,115,116,111,112,59,100,101,108,101,116,101,32,101,46,115,116,111,112,44,116,40,111,41,125,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,105,38,38,40,111,61,101,44,101,61,105,44,105,61,118,111,105,100,32,48,41,44,101,38,38,33,49,33,61,61,105,38,38,116,104,105,115,46,113,117,101,117,101,40,105,124,124,34,102,120,34,44,91,93,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,33,48,44,116,61,110,117,108,108,33,61,105,38,38,105,43,34,113,117,101,117,101,72,111,111,107,115,34,44,110,61,107,46,116,105,109,101,114,115,44,114,61,81,46,103,101,116,40,116,104,105,115,41,59,105,102,40,116,41,114,91,116,93,38,38,114,91,116,93,46,115,116,111,112,38,38,97,40,114,91,116,93,41,59,101,108,115,101,32,102,111,114,40,116,32,105,110,32,114,41,114,91,116,93,38,38,114,91,116,93,46,115,116,111,112,38,38,117,116,46,116,101,115,116,40,116,41,38,38,97,40,114,91,116,93,41,59,102,111,114,40,116,61,110,46,108,101,110,103,116,104,59,116,45,45,59,41,110,91,116,93,46,101,108,101,109,33,61,61,116,104,105,115,124,124,110,117,108,108,33,61,105,38,38,110,91,116,93,46,113,117,101,117,101,33,61,61,105,124,124,40,110,91,116,93,46,97,110,105,109,46,115,116,111,112,40,111,41,44,101,61,33,49,44,110,46,115,112,108,105,99,101,40,116,44,49,41,41,59,33,101,38,38,111,124,124,107,46,100,101,113,117,101,117,101,40,116,104,105,115,44,105,41,125,41,125,44,102,105,110,105,115,104,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,33,49,33,61,61,97,38,38,40,97,61,97,124,124,34,102,120,34,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,61,81,46,103,101,116,40,116,104,105,115,41,44,110,61,116,91,97,43,34,113,117,101,117,101,34,93,44,114,61,116,91,97,43,34,113,117,101,117,101,72,111,111,107,115,34,93,44,105,61,107,46,116,105,109,101,114,115,44,111,61,110,63,110,46,108,101,110,103,116,104,58,48,59,102,111,114,40,116,46,102,105,110,105,115,104,61,33,48,44,107,46,113,117,101,117,101,40,116,104,105,115,44,97,44,91,93,41,44,114,38,38,114,46,115,116,111,112,38,38,114,46,115,116,111,112,46,99,97,108,108,40,116,104,105,115,44,33,48,41,44,101,61,105,46,108,101,110,103,116,104,59,101,45,45,59,41,105,91,101,93,46,101,108,101,109,61,61,61,116,104,105,115,38,38,105,91,101,93,46,113,117,101,117,101,61,61,61,97,38,38,40,105,91,101,93,46,97,110,105,109,46,115,116,111,112,40,33,48,41,44,105,46,115,112,108,105,99,101,40,101,44,49,41,41,59,102,111,114,40,101,61,48,59,101,60,111,59,101,43,43,41,110,91,101,93,38,38,110,91,101,93,46,102,105,110,105,115,104,38,38,110,91,101,93,46,102,105,110,105,115,104,46,99,97,108,108,40,116,104,105,115,41,59,100,101,108,101,116,101,32,116,46,102,105,110,105,115,104,125,41,125,125,41,44,107,46,101,97,99,104,40,91,34,116,111,103,103,108,101,34,44,34,115,104,111,119,34,44,34,104,105,100,101,34,93,44,102,117,110,99,116,105,111,110,40,101,44,114,41,123,118,97,114,32,105,61,107,46,102,110,91,114,93,59,107,46,102,110,91,114,93,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,124,124,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,101,63,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,116,104,105,115,46,97,110,105,109,97,116,101,40,102,116,40,114,44,33,48,41,44,101,44,116,44,110,41,125,125,41,44,107,46,101,97,99,104,40,123,115,108,105,100,101,68,111,119,110,58,102,116,40,34,115,104,111,119,34,41,44,115,108,105,100,101,85,112,58,102,116,40,34,104,105,100,101,34,41,44,115,108,105,100,101,84,111,103,103,108,101,58,102,116,40,34,116,111,103,103,108,101,34,41,44,102,97,100,101,73,110,58,123,111,112,97,99,105,116,121,58,34,115,104,111,119,34,125,44,102,97,100,101,79,117,116,58,123,111,112,97,99,105,116,121,58,34,104,105,100,101,34,125,44,102,97,100,101,84,111,103,103,108,101,58,123,111,112,97,99,105,116,121,58,34,116,111,103,103,108,101,34,125,125,44,102,117,110,99,116,105,111,110,40,101,44,114,41,123,107,46,102,110,91,101,93,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,110,105,109,97,116,101,40,114,44,101,44,116,44,110,41,125,125,41,44,107,46,116,105,109,101,114,115,61,91,93,44,107,46,102,120,46,116,105,99,107,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,61,48,44,110,61,107,46,116,105,109,101,114,115,59,102,111,114,40,114,116,61,68,97,116,101,46,110,111,119,40,41,59,116,60,110,46,108,101,110,103,116,104,59,116,43,43,41,40,101,61,110,91,116,93,41,40,41,124,124,110,91,116,93,33,61,61,101,124,124,110,46,115,112,108,105,99,101,40,116,45,45,44,49,41,59,110,46,108,101,110,103,116,104,124,124,107,46,102,120,46,115,116,111,112,40,41,44,114,116,61,118,111,105,100,32,48,125,44,107,46,102,120,46,116,105,109,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,107,46,116,105,109,101,114,115,46,112,117,115,104,40,101,41,44,107,46,102,120,46,115,116,97,114,116,40,41,125,44,107,46,102,120,46,105,110,116,101,114,118,97,108,61,49,51,44,107,46,102,120,46,115,116,97,114,116,61,102,117,110,99,116,105,111,110,40,41,123,105,116,124,124,40,105,116,61,33,48,44,108,116,40,41,41,125,44,107,46,102,120,46,115,116,111,112,61,102,117,110,99,116,105,111,110,40,41,123,105,116,61,110,117,108,108,125,44,107,46,102,120,46,115,112,101,101,100,115,61,123,115,108,111,119,58,54,48,48,44,102,97,115,116,58,50,48,48,44,95,100,101,102,97,117,108,116,58,52,48,48,125,44,107,46,102,110,46,100,101,108,97,121,61,102,117,110,99,116,105,111,110,40,114,44,101,41,123,114,101,116,117,114,110,32,114,61,107,46,102,120,38,38,107,46,102,120,46,115,112,101,101,100,115,91,114,93,124,124,114,44,101,61,101,124,124,34,102,120,34,44,116,104,105,115,46,113,117,101,117,101,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,67,46,115,101,116,84,105,109,101,111,117,116,40,101,44,114,41,59,116,46,115,116,111,112,61,102,117,110,99,116,105,111,110,40,41,123,67,46,99,108,101,97,114,84,105,109,101,111,117,116,40,110,41,125,125,41,125,44,111,116,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,110,112,117,116,34,41,44,97,116,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,101,108,101,99,116,34,41,46,97,112,112,101,110,100,67,104,105,108,100,40,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,111,112,116,105,111,110,34,41,41,44,111,116,46,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,44,121,46,99,104,101,99,107,79,110,61,34,34,33,61,61,111,116,46,118,97,108,117,101,44,121,46,111,112,116,83,101,108,101,99,116,101,100,61,97,116,46,115,101,108,101,99,116,101,100,44,40,111,116,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,110,112,117,116,34,41,41,46,118,97,108,117,101,61,34,116,34,44,111,116,46,116,121,112,101,61,34,114,97,100,105,111,34,44,121,46,114,97,100,105,111,86,97,108,117,101,61,34,116,34,61,61,61,111,116,46,118,97,108,117,101,59,118,97,114,32,104,116,44,103,116,61,107,46,101,120,112,114,46,97,116,116,114,72,97,110,100,108,101,59,107,46,102,110,46,101,120,116,101,110,100,40,123,97,116,116,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,107,46,97,116,116,114,44,101,44,116,44,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,44,114,101,109,111,118,101,65,116,116,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,114,101,109,111,118,101,65,116,116,114,40,116,104,105,115,44,101,41,125,41,125,125,41,44,107,46,101,120,116,101,110,100,40,123,97,116,116,114,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,101,46,110,111,100,101,84,121,112,101,59,105,102,40,51,33,61,61,111,38,38,56,33,61,61,111,38,38,50,33,61,61,111,41,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,63,107,46,112,114,111,112,40,101,44,116,44,110,41,58,40,49,61,61,61,111,38,38,107,46,105,115,88,77,76,68,111,99,40,101,41,124,124,40,105,61,107,46,97,116,116,114,72,111,111,107,115,91,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,124,124,40,107,46,101,120,112,114,46,109,97,116,99,104,46,98,111,111,108,46,116,101,115,116,40,116,41,63,104,116,58,118,111,105,100,32,48,41,41,44,118,111,105,100,32,48,33,61,61,110,63,110,117,108,108,61,61,61,110,63,118,111,105,100,32,107,46,114,101,109,111,118,101,65,116,116,114,40,101,44,116,41,58,105,38,38,34,115,101,116,34,105,110,32,105,38,38,118,111,105,100,32,48,33,61,61,40,114,61,105,46,115,101,116,40,101,44,110,44,116,41,41,63,114,58,40,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,116,44,110,43,34,34,41,44,110,41,58,105,38,38,34,103,101,116,34,105,110,32,105,38,38,110,117,108,108,33,61,61,40,114,61,105,46,103,101,116,40,101,44,116,41,41,63,114,58,110,117,108,108,61,61,40,114,61,107,46,102,105,110,100,46,97,116,116,114,40,101,44,116,41,41,63,118,111,105,100,32,48,58,114,41,125,44,97,116,116,114,72,111,111,107,115,58,123,116,121,112,101,58,123,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,121,46,114,97,100,105,111,86,97,108,117,101,38,38,34,114,97,100,105,111,34,61,61,61,116,38,38,65,40,101,44,34,105,110,112,117,116,34,41,41,123,118,97,114,32,110,61,101,46,118,97,108,117,101,59,114,101,116,117,114,110,32,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,116,41,44,110,38,38,40,101,46,118,97,108,117,101,61,110,41,44,116,125,125,125,125,44,114,101,109,111,118,101,65,116,116,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,48,44,105,61,116,38,38,116,46,109,97,116,99,104,40,82,41,59,105,102,40,105,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,41,119,104,105,108,101,40,110,61,105,91,114,43,43,93,41,101,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,110,41,125,125,41,44,104,116,61,123,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,33,49,61,61,61,116,63,107,46,114,101,109,111,118,101,65,116,116,114,40,101,44,110,41,58,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,110,44,110,41,44,110,125,125,44,107,46,101,97,99,104,40,107,46,101,120,112,114,46,109,97,116,99,104,46,98,111,111,108,46,115,111,117,114,99,101,46,109,97,116,99,104,40,47,92,119,43,47,103,41,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,97,61,103,116,91,116,93,124,124,107,46,102,105,110,100,46,97,116,116,114,59,103,116,91,116,93,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,32,110,124,124,40,105,61,103,116,91,111,93,44,103,116,91,111,93,61,114,44,114,61,110,117,108,108,33,61,97,40,101,44,116,44,110,41,63,111,58,110,117,108,108,44,103,116,91,111,93,61,105,41,44,114,125,125,41,59,118,97,114,32,118,116,61,47,94,40,63,58,105,110,112,117,116,124,115,101,108,101,99,116,124,116,101,120,116,97,114,101,97,124,98,117,116,116,111,110,41,36,47,105,44,121,116,61,47,94,40,63,58,97,124,97,114,101,97,41,36,47,105,59,102,117,110,99,116,105,111,110,32,109,116,40,101,41,123,114,101,116,117,114,110,40,101,46,109,97,116,99,104,40,82,41,124,124,91,93,41,46,106,111,105,110,40,34,32,34,41,125,102,117,110,99,116,105,111,110,32,120,116,40,101,41,123,114,101,116,117,114,110,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,38,38,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,41,124,124,34,34,125,102,117,110,99,116,105,111,110,32,98,116,40,101,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,63,101,58,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,101,46,109,97,116,99,104,40,82,41,124,124,91,93,125,107,46,102,110,46,101,120,116,101,110,100,40,123,112,114,111,112,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,107,46,112,114,111,112,44,101,44,116,44,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,44,114,101,109,111,118,101,80,114,111,112,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,100,101,108,101,116,101,32,116,104,105,115,91,107,46,112,114,111,112,70,105,120,91,101,93,124,124,101,93,125,41,125,125,41,44,107,46,101,120,116,101,110,100,40,123,112,114,111,112,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,101,46,110,111,100,101,84,121,112,101,59,105,102,40,51,33,61,61,111,38,38,56,33,61,61,111,38,38,50,33,61,61,111,41,114,101,116,117,114,110,32,49,61,61,61,111,38,38,107,46,105,115,88,77,76,68,111,99,40,101,41,124,124,40,116,61,107,46,112,114,111,112,70,105,120,91,116,93,124,124,116,44,105,61,107,46,112,114,111,112,72,111,111,107,115,91,116,93,41,44,118,111,105,100,32,48,33,61,61,110,63,105,38,38,34,115,101,116,34,105,110,32,105,38,38,118,111,105,100,32,48,33,61,61,40,114,61,105,46,115,101,116,40,101,44,110,44,116,41,41,63,114,58,101,91,116,93,61,110,58,105,38,38,34,103,101,116,34,105,110,32,105,38,38,110,117,108,108,33,61,61,40,114,61,105,46,103,101,116,40,101,44,116,41,41,63,114,58,101,91,116,93,125,44,112,114,111,112,72,111,111,107,115,58,123,116,97,98,73,110,100,101,120,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,46,102,105,110,100,46,97,116,116,114,40,101,44,34,116,97,98,105,110,100,101,120,34,41,59,114,101,116,117,114,110,32,116,63,112,97,114,115,101,73,110,116,40,116,44,49,48,41,58,118,116,46,116,101,115,116,40,101,46,110,111,100,101,78,97,109,101,41,124,124,121,116,46,116,101,115,116,40,101,46,110,111,100,101,78,97,109,101,41,38,38,101,46,104,114,101,102,63,48,58,45,49,125,125,125,44,112,114,111,112,70,105,120,58,123,34,102,111,114,34,58,34,104,116,109,108,70,111,114,34,44,34,99,108,97,115,115,34,58,34,99,108,97,115,115,78,97,109,101,34,125,125,41,44,121,46,111,112,116,83,101,108,101,99,116,101,100,124,124,40,107,46,112,114,111,112,72,111,111,107,115,46,115,101,108,101,99,116,101,100,61,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,97,114,101,110,116,78,111,100,101,59,114,101,116,117,114,110,32,116,38,38,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,46,112,97,114,101,110,116,78,111,100,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,44,110,117,108,108,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,97,114,101,110,116,78,111,100,101,59,116,38,38,40,116,46,115,101,108,101,99,116,101,100,73,110,100,101,120,44,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,46,112,97,114,101,110,116,78,111,100,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,41,125,125,41,44,107,46,101,97,99,104,40,91,34,116,97,98,73,110,100,101,120,34,44,34,114,101,97,100,79,110,108,121,34,44,34,109,97,120,76,101,110,103,116,104,34,44,34,99,101,108,108,83,112,97,99,105,110,103,34,44,34,99,101,108,108,80,97,100,100,105,110,103,34,44,34,114,111,119,83,112,97,110,34,44,34,99,111,108,83,112,97,110,34,44,34,117,115,101,77,97,112,34,44,34,102,114,97,109,101,66,111,114,100,101,114,34,44,34,99,111,110,116,101,110,116,69,100,105,116,97,98,108,101,34,93,44,102,117,110,99,116,105,111,110,40,41,123,107,46,112,114,111,112,70,105,120,91,116,104,105,115,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,61,116,104,105,115,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,97,100,100,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,114,44,105,44,111,44,97,44,115,44,117,61,48,59,105,102,40,109,40,116,41,41,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,97,100,100,67,108,97,115,115,40,116,46,99,97,108,108,40,116,104,105,115,44,101,44,120,116,40,116,104,105,115,41,41,41,125,41,59,105,102,40,40,101,61,98,116,40,116,41,41,46,108,101,110,103,116,104,41,119,104,105,108,101,40,110,61,116,104,105,115,91,117,43,43,93,41,105,102,40,105,61,120,116,40,110,41,44,114,61,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,34,32,34,43,109,116,40,105,41,43,34,32,34,41,123,97,61,48,59,119,104,105,108,101,40,111,61,101,91,97,43,43,93,41,114,46,105,110,100,101,120,79,102,40,34,32,34,43,111,43,34,32,34,41,60,48,38,38,40,114,43,61,111,43,34,32,34,41,59,105,33,61,61,40,115,61,109,116,40,114,41,41,38,38,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,115,41,125,114,101,116,117,114,110,32,116,104,105,115,125,44,114,101,109,111,118,101,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,114,44,105,44,111,44,97,44,115,44,117,61,48,59,105,102,40,109,40,116,41,41,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,114,101,109,111,118,101,67,108,97,115,115,40,116,46,99,97,108,108,40,116,104,105,115,44,101,44,120,116,40,116,104,105,115,41,41,41,125,41,59,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,116,104,105,115,46,97,116,116,114,40,34,99,108,97,115,115,34,44,34,34,41,59,105,102,40,40,101,61,98,116,40,116,41,41,46,108,101,110,103,116,104,41,119,104,105,108,101,40,110,61,116,104,105,115,91,117,43,43,93,41,105,102,40,105,61,120,116,40,110,41,44,114,61,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,34,32,34,43,109,116,40,105,41,43,34,32,34,41,123,97,61,48,59,119,104,105,108,101,40,111,61,101,91,97,43,43,93,41,119,104,105,108,101,40,45,49,60,114,46,105,110,100,101,120,79,102,40,34,32,34,43,111,43,34,32,34,41,41,114,61,114,46,114,101,112,108,97,99,101,40,34,32,34,43,111,43,34,32,34,44,34,32,34,41,59,105,33,61,61,40,115,61,109,116,40,114,41,41,38,38,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,115,41,125,114,101,116,117,114,110,32,116,104,105,115,125,44,116,111,103,103,108,101,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,105,44,116,41,123,118,97,114,32,111,61,116,121,112,101,111,102,32,105,44,97,61,34,115,116,114,105,110,103,34,61,61,61,111,124,124,65,114,114,97,121,46,105,115,65,114,114,97,121,40,105,41,59,114,101,116,117,114,110,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,116,38,38,97,63,116,63,116,104,105,115,46,97,100,100,67,108,97,115,115,40,105,41,58,116,104,105,115,46,114,101,109,111,118,101,67,108,97,115,115,40,105,41,58,109,40,105,41,63,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,116,111,103,103,108,101,67,108,97,115,115,40,105,46,99,97,108,108,40,116,104,105,115,44,101,44,120,116,40,116,104,105,115,41,44,116,41,44,116,41,125,41,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,44,110,44,114,59,105,102,40,97,41,123,116,61,48,44,110,61,107,40,116,104,105,115,41,44,114,61,98,116,40,105,41,59,119,104,105,108,101,40,101,61,114,91,116,43,43,93,41,110,46,104,97,115,67,108,97,115,115,40,101,41,63,110,46,114,101,109,111,118,101,67,108,97,115,115,40,101,41,58,110,46,97,100,100,67,108,97,115,115,40,101,41,125,101,108,115,101,32,118,111,105,100,32,48,33,61,61,105,38,38,34,98,111,111,108,101,97,110,34,33,61,61,111,124,124,40,40,101,61,120,116,40,116,104,105,115,41,41,38,38,81,46,115,101,116,40,116,104,105,115,44,34,95,95,99,108,97,115,115,78,97,109,101,95,95,34,44,101,41,44,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,38,38,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,101,124,124,33,49,61,61,61,105,63,34,34,58,81,46,103,101,116,40,116,104,105,115,44,34,95,95,99,108,97,115,115,78,97,109,101,95,95,34,41,124,124,34,34,41,41,125,41,125,44,104,97,115,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,61,48,59,116,61,34,32,34,43,101,43,34,32,34,59,119,104,105,108,101,40,110,61,116,104,105,115,91,114,43,43,93,41,105,102,40,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,45,49,60,40,34,32,34,43,109,116,40,120,116,40,110,41,41,43,34,32,34,41,46,105,110,100,101,120,79,102,40,116,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,125,41,59,118,97,114,32,119,116,61,47,92,114,47,103,59,107,46,102,110,46,101,120,116,101,110,100,40,123,118,97,108,58,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,44,101,44,105,44,116,61,116,104,105,115,91,48,93,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,109,40,110,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,49,61,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,40,110,117,108,108,61,61,40,116,61,105,63,110,46,99,97,108,108,40,116,104,105,115,44,101,44,107,40,116,104,105,115,41,46,118,97,108,40,41,41,58,110,41,63,116,61,34,34,58,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,63,116,43,61,34,34,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,38,38,40,116,61,107,46,109,97,112,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,63,34,34,58,101,43,34,34,125,41,41,44,40,114,61,107,46,118,97,108,72,111,111,107,115,91,116,104,105,115,46,116,121,112,101,93,124,124,107,46,118,97,108,72,111,111,107,115,91,116,104,105,115,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,41,38,38,34,115,101,116,34,105,110,32,114,38,38,118,111,105,100,32,48,33,61,61,114,46,115,101,116,40,116,104,105,115,44,116,44,34,118,97,108,117,101,34,41,124,124,40,116,104,105,115,46,118,97,108,117,101,61,116,41,41,125,41,41,58,116,63,40,114,61,107,46,118,97,108,72,111,111,107,115,91,116,46,116,121,112,101,93,124,124,107,46,118,97,108,72,111,111,107,115,91,116,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,41,38,38,34,103,101,116,34,105,110,32,114,38,38,118,111,105,100,32,48,33,61,61,40,101,61,114,46,103,101,116,40,116,44,34,118,97,108,117,101,34,41,41,63,101,58,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,40,101,61,116,46,118,97,108,117,101,41,63,101,46,114,101,112,108,97,99,101,40,119,116,44,34,34,41,58,110,117,108,108,61,61,101,63,34,34,58,101,58,118,111,105,100,32,48,125,125,41,44,107,46,101,120,116,101,110,100,40,123,118,97,108,72,111,111,107,115,58,123,111,112,116,105,111,110,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,46,102,105,110,100,46,97,116,116,114,40,101,44,34,118,97,108,117,101,34,41,59,114,101,116,117,114,110,32,110,117,108,108,33,61,116,63,116,58,109,116,40,107,46,116,101,120,116,40,101,41,41,125,125,44,115,101,108,101,99,116,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,44,105,61,101,46,111,112,116,105,111,110,115,44,111,61,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,44,97,61,34,115,101,108,101,99,116,45,111,110,101,34,61,61,61,101,46,116,121,112,101,44,115,61,97,63,110,117,108,108,58,91,93,44,117,61,97,63,111,43,49,58,105,46,108,101,110,103,116,104,59,102,111,114,40,114,61,111,60,48,63,117,58,97,63,111,58,48,59,114,60,117,59,114,43,43,41,105,102,40,40,40,110,61,105,91,114,93,41,46,115,101,108,101,99,116,101,100,124,124,114,61,61,61,111,41,38,38,33,110,46,100,105,115,97,98,108,101,100,38,38,40,33,110,46,112,97,114,101,110,116,78,111,100,101,46,100,105,115,97,98,108,101,100,124,124,33,65,40,110,46,112,97,114,101,110,116,78,111,100,101,44,34,111,112,116,103,114,111,117,112,34,41,41,41,123,105,102,40,116,61,107,40,110,41,46,118,97,108,40,41,44,97,41,114,101,116,117,114,110,32,116,59,115,46,112,117,115,104,40,116,41,125,114,101,116,117,114,110,32,115,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,61,101,46,111,112,116,105,111,110,115,44,111,61,107,46,109,97,107,101,65,114,114,97,121,40,116,41,44,97,61,105,46,108,101,110,103,116,104,59,119,104,105,108,101,40,97,45,45,41,40,40,114,61,105,91,97,93,41,46,115,101,108,101,99,116,101,100,61,45,49,60,107,46,105,110,65,114,114,97,121,40,107,46,118,97,108,72,111,111,107,115,46,111,112,116,105,111,110,46,103,101,116,40,114,41,44,111,41,41,38,38,40,110,61,33,48,41,59,114,101,116,117,114,110,32,110,124,124,40,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,61,45,49,41,44,111,125,125,125,125,41,44,107,46,101,97,99,104,40,91,34,114,97,100,105,111,34,44,34,99,104,101,99,107,98,111,120,34,93,44,102,117,110,99,116,105,111,110,40,41,123,107,46,118,97,108,72,111,111,107,115,91,116,104,105,115,93,61,123,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,114,101,116,117,114,110,32,101,46,99,104,101,99,107,101,100,61,45,49,60,107,46,105,110,65,114,114,97,121,40,107,40,101,41,46,118,97,108,40,41,44,116,41,125,125,44,121,46,99,104,101,99,107,79,110,124,124,40,107,46,118,97,108,72,111,111,107,115,91,116,104,105,115,93,46,103,101,116,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,118,97,108,117,101,34,41,63,34,111,110,34,58,101,46,118,97,108,117,101,125,41,125,41,44,121,46,102,111,99,117,115,105,110,61,34,111,110,102,111,99,117,115,105,110,34,105,110,32,67,59,118,97,114,32,84,116,61,47,94,40,63,58,102,111,99,117,115,105,110,102,111,99,117,115,124,102,111,99,117,115,111,117,116,98,108,117,114,41,36,47,44,67,116,61,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,59,107,46,101,120,116,101,110,100,40,107,46,101,118,101,110,116,44,123,116,114,105,103,103,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,44,99,44,102,44,112,61,91,110,124,124,69,93,44,100,61,118,46,99,97,108,108,40,101,44,34,116,121,112,101,34,41,63,101,46,116,121,112,101,58,101,44,104,61,118,46,99,97,108,108,40,101,44,34,110,97,109,101,115,112,97,99,101,34,41,63,101,46,110,97,109,101,115,112,97,99,101,46,115,112,108,105,116,40,34,46,34,41,58,91,93,59,105,102,40,111,61,102,61,97,61,110,61,110,124,124,69,44,51,33,61,61,110,46,110,111,100,101,84,121,112,101,38,38,56,33,61,61,110,46,110,111,100,101,84,121,112,101,38,38,33,84,116,46,116,101,115,116,40,100,43,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,101,100,41,38,38,40,45,49,60,100,46,105,110,100,101,120,79,102,40,34,46,34,41,38,38,40,100,61,40,104,61,100,46,115,112,108,105,116,40,34,46,34,41,41,46,115,104,105,102,116,40,41,44,104,46,115,111,114,116,40,41,41,44,117,61,100,46,105,110,100,101,120,79,102,40,34,58,34,41,60,48,38,38,34,111,110,34,43,100,44,40,101,61,101,91,107,46,101,120,112,97,110,100,111,93,63,101,58,110,101,119,32,107,46,69,118,101,110,116,40,100,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,101,41,41,46,105,115,84,114,105,103,103,101,114,61,114,63,50,58,51,44,101,46,110,97,109,101,115,112,97,99,101,61,104,46,106,111,105,110,40,34,46,34,41,44,101,46,114,110,97,109,101,115,112,97,99,101,61,101,46,110,97,109,101,115,112,97,99,101,63,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,92,92,46,41,34,43,104,46,106,111,105,110,40,34,92,92,46,40,63,58,46,42,92,92,46,124,41,34,41,43,34,40,92,92,46,124,36,41,34,41,58,110,117,108,108,44,101,46,114,101,115,117,108,116,61,118,111,105,100,32,48,44,101,46,116,97,114,103,101,116,124,124,40,101,46,116,97,114,103,101,116,61,110,41,44,116,61,110,117,108,108,61,61,116,63,91,101,93,58,107,46,109,97,107,101,65,114,114,97,121,40,116,44,91,101,93,41,44,99,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,100,93,124,124,123,125,44,114,124,124,33,99,46,116,114,105,103,103,101,114,124,124,33,49,33,61,61,99,46,116,114,105,103,103,101,114,46,97,112,112,108,121,40,110,44,116,41,41,41,123,105,102,40,33,114,38,38,33,99,46,110,111,66,117,98,98,108,101,38,38,33,120,40,110,41,41,123,102,111,114,40,115,61,99,46,100,101,108,101,103,97,116,101,84,121,112,101,124,124,100,44,84,116,46,116,101,115,116,40,115,43,100,41,124,124,40,111,61,111,46,112,97,114,101,110,116,78,111,100,101,41,59,111,59,111,61,111,46,112,97,114,101,110,116,78,111,100,101,41,112,46,112,117,115,104,40,111,41,44,97,61,111,59,97,61,61,61,40,110,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,69,41,38,38,112,46,112,117,115,104,40,97,46,100,101,102,97,117,108,116,86,105,101,119,124,124,97,46,112,97,114,101,110,116,87,105,110,100,111,119,124,124,67,41,125,105,61,48,59,119,104,105,108,101,40,40,111,61,112,91,105,43,43,93,41,38,38,33,101,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,41,102,61,111,44,101,46,116,121,112,101,61,49,60,105,63,115,58,99,46,98,105,110,100,84,121,112,101,124,124,100,44,40,108,61,40,81,46,103,101,116,40,111,44,34,101,118,101,110,116,115,34,41,124,124,123,125,41,91,101,46,116,121,112,101,93,38,38,81,46,103,101,116,40,111,44,34,104,97,110,100,108,101,34,41,41,38,38,108,46,97,112,112,108,121,40,111,44,116,41,44,40,108,61,117,38,38,111,91,117,93,41,38,38,108,46,97,112,112,108,121,38,38,71,40,111,41,38,38,40,101,46,114,101,115,117,108,116,61,108,46,97,112,112,108,121,40,111,44,116,41,44,33,49,61,61,61,101,46,114,101,115,117,108,116,38,38,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,41,59,114,101,116,117,114,110,32,101,46,116,121,112,101,61,100,44,114,124,124,101,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,99,46,95,100,101,102,97,117,108,116,38,38,33,49,33,61,61,99,46,95,100,101,102,97,117,108,116,46,97,112,112,108,121,40,112,46,112,111,112,40,41,44,116,41,124,124,33,71,40,110,41,124,124,117,38,38,109,40,110,91,100,93,41,38,38,33,120,40,110,41,38,38,40,40,97,61,110,91,117,93,41,38,38,40,110,91,117,93,61,110,117,108,108,41,44,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,101,100,61,100,44,101,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,38,38,102,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,100,44,67,116,41,44,110,91,100,93,40,41,44,101,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,38,38,102,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,100,44,67,116,41,44,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,101,100,61,118,111,105,100,32,48,44,97,38,38,40,110,91,117,93,61,97,41,41,44,101,46,114,101,115,117,108,116,125,125,44,115,105,109,117,108,97,116,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,107,46,101,120,116,101,110,100,40,110,101,119,32,107,46,69,118,101,110,116,44,110,44,123,116,121,112,101,58,101,44,105,115,83,105,109,117,108,97,116,101,100,58,33,48,125,41,59,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,114,44,110,117,108,108,44,116,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,116,114,105,103,103,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,101,44,116,44,116,104,105,115,41,125,41,125,44,116,114,105,103,103,101,114,72,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,91,48,93,59,105,102,40,110,41,114,101,116,117,114,110,32,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,101,44,116,44,110,44,33,48,41,125,125,41,44,121,46,102,111,99,117,115,105,110,124,124,107,46,101,97,99,104,40,123,102,111,99,117,115,58,34,102,111,99,117,115,105,110,34,44,98,108,117,114,58,34,102,111,99,117,115,111,117,116,34,125,44,102,117,110,99,116,105,111,110,40,110,44,114,41,123,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,101,41,123,107,46,101,118,101,110,116,46,115,105,109,117,108,97,116,101,40,114,44,101,46,116,97,114,103,101,116,44,107,46,101,118,101,110,116,46,102,105,120,40,101,41,41,125,59,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,114,93,61,123,115,101,116,117,112,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,116,104,105,115,44,116,61,81,46,97,99,99,101,115,115,40,101,44,114,41,59,116,124,124,101,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,110,44,105,44,33,48,41,44,81,46,97,99,99,101,115,115,40,101,44,114,44,40,116,124,124,48,41,43,49,41,125,44,116,101,97,114,100,111,119,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,116,104,105,115,44,116,61,81,46,97,99,99,101,115,115,40,101,44,114,41,45,49,59,116,63,81,46,97,99,99,101,115,115,40,101,44,114,44,116,41,58,40,101,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,110,44,105,44,33,48,41,44,81,46,114,101,109,111,118,101,40,101,44,114,41,41,125,125,125,41,59,118,97,114,32,69,116,61,67,46,108,111,99,97,116,105,111,110,44,107,116,61,68,97,116,101,46,110,111,119,40,41,44,83,116,61,47,92,63,47,59,107,46,112,97,114,115,101,88,77,76,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,105,102,40,33,101,124,124,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,110,117,108,108,59,116,114,121,123,116,61,40,110,101,119,32,67,46,68,79,77,80,97,114,115,101,114,41,46,112,97,114,115,101,70,114,111,109,83,116,114,105,110,103,40,101,44,34,116,101,120,116,47,120,109,108,34,41,125,99,97,116,99,104,40,101,41,123,116,61,118,111,105,100,32,48,125,114,101,116,117,114,110,32,116,38,38,33,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,34,112,97,114,115,101,114,101,114,114,111,114,34,41,46,108,101,110,103,116,104,124,124,107,46,101,114,114,111,114,40,34,73,110,118,97,108,105,100,32,88,77,76,58,32,34,43,101,41,44,116,125,59,118,97,114,32,78,116,61,47,92,91,92,93,36,47,44,65,116,61,47,92,114,63,92,110,47,103,44,68,116,61,47,94,40,63,58,115,117,98,109,105,116,124,98,117,116,116,111,110,124,105,109,97,103,101,124,114,101,115,101,116,124,102,105,108,101,41,36,47,105,44,106,116,61,47,94,40,63,58,105,110,112,117,116,124,115,101,108,101,99,116,124,116,101,120,116,97,114,101,97,124,107,101,121,103,101,110,41,47,105,59,102,117,110,99,116,105,111,110,32,113,116,40,110,44,101,44,114,44,105,41,123,118,97,114,32,116,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,41,107,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,124,124,78,116,46,116,101,115,116,40,110,41,63,105,40,110,44,116,41,58,113,116,40,110,43,34,91,34,43,40,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,110,117,108,108,33,61,116,63,101,58,34,34,41,43,34,93,34,44,116,44,114,44,105,41,125,41,59,101,108,115,101,32,105,102,40,114,124,124,34,111,98,106,101,99,116,34,33,61,61,119,40,101,41,41,105,40,110,44,101,41,59,101,108,115,101,32,102,111,114,40,116,32,105,110,32,101,41,113,116,40,110,43,34,91,34,43,116,43,34,93,34,44,101,91,116,93,44,114,44,105,41,125,107,46,112,97,114,97,109,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,91,93,44,105,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,109,40,116,41,63,116,40,41,58,116,59,114,91,114,46,108,101,110,103,116,104,93,61,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,101,41,43,34,61,34,43,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,110,117,108,108,61,61,110,63,34,34,58,110,41,125,59,105,102,40,110,117,108,108,61,61,101,41,114,101,116,117,114,110,34,34,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,124,124,101,46,106,113,117,101,114,121,38,38,33,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,101,41,41,107,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,41,123,105,40,116,104,105,115,46,110,97,109,101,44,116,104,105,115,46,118,97,108,117,101,41,125,41,59,101,108,115,101,32,102,111,114,40,110,32,105,110,32,101,41,113,116,40,110,44,101,91,110,93,44,116,44,105,41,59,114,101,116,117,114,110,32,114,46,106,111,105,110,40,34,38,34,41,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,115,101,114,105,97,108,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,46,112,97,114,97,109,40,116,104,105,115,46,115,101,114,105,97,108,105,122,101,65,114,114,97,121,40,41,41,125,44,115,101,114,105,97,108,105,122,101,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,107,46,112,114,111,112,40,116,104,105,115,44,34,101,108,101,109,101,110,116,115,34,41,59,114,101,116,117,114,110,32,101,63,107,46,109,97,107,101,65,114,114,97,121,40,101,41,58,116,104,105,115,125,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,116,121,112,101,59,114,101,116,117,114,110,32,116,104,105,115,46,110,97,109,101,38,38,33,107,40,116,104,105,115,41,46,105,115,40,34,58,100,105,115,97,98,108,101,100,34,41,38,38,106,116,46,116,101,115,116,40,116,104,105,115,46,110,111,100,101,78,97,109,101,41,38,38,33,68,116,46,116,101,115,116,40,101,41,38,38,40,116,104,105,115,46,99,104,101,99,107,101,100,124,124,33,112,101,46,116,101,115,116,40,101,41,41,125,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,107,40,116,104,105,115,41,46,118,97,108,40,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,117,108,108,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,63,107,46,109,97,112,40,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,123,110,97,109,101,58,116,46,110,97,109,101,44,118,97,108,117,101,58,101,46,114,101,112,108,97,99,101,40,65,116,44,34,92,114,92,110,34,41,125,125,41,58,123,110,97,109,101,58,116,46,110,97,109,101,44,118,97,108,117,101,58,110,46,114,101,112,108,97,99,101,40,65,116,44,34,92,114,92,110,34,41,125,125,41,46,103,101,116,40,41,125,125,41,59,118,97,114,32,76,116,61,47,37,50,48,47,103,44,72,116,61,47,35,46,42,36,47,44,79,116,61,47,40,91,63,38,93,41,95,61,91,94,38,93,42,47,44,80,116,61,47,94,40,46,42,63,41,58,91,32,92,116,93,42,40,91,94,92,114,92,110,93,42,41,36,47,103,109,44,82,116,61,47,94,40,63,58,71,69,84,124,72,69,65,68,41,36,47,44,77,116,61,47,94,92,47,92,47,47,44,73,116,61,123,125,44,87,116,61,123,125,44,36,116,61,34,42,47,34,46,99,111,110,99,97,116,40,34,42,34,41,44,70,116,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,102,117,110,99,116,105,111,110,32,66,116,40,111,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,38,38,40,116,61,101,44,101,61,34,42,34,41,59,118,97,114,32,110,44,114,61,48,44,105,61,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,109,97,116,99,104,40,82,41,124,124,91,93,59,105,102,40,109,40,116,41,41,119,104,105,108,101,40,110,61,105,91,114,43,43,93,41,34,43,34,61,61,61,110,91,48,93,63,40,110,61,110,46,115,108,105,99,101,40,49,41,124,124,34,42,34,44,40,111,91,110,93,61,111,91,110,93,124,124,91,93,41,46,117,110,115,104,105,102,116,40,116,41,41,58,40,111,91,110,93,61,111,91,110,93,124,124,91,93,41,46,112,117,115,104,40,116,41,125,125,102,117,110,99,116,105,111,110,32,95,116,40,116,44,105,44,111,44,97,41,123,118,97,114,32,115,61,123,125,44,117,61,116,61,61,61,87,116,59,102,117,110,99,116,105,111,110,32,108,40,101,41,123,118,97,114,32,114,59,114,101,116,117,114,110,32,115,91,101,93,61,33,48,44,107,46,101,97,99,104,40,116,91,101,93,124,124,91,93,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,40,105,44,111,44,97,41,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,110,124,124,117,124,124,115,91,110,93,63,117,63,33,40,114,61,110,41,58,118,111,105,100,32,48,58,40,105,46,100,97,116,97,84,121,112,101,115,46,117,110,115,104,105,102,116,40,110,41,44,108,40,110,41,44,33,49,41,125,41,44,114,125,114,101,116,117,114,110,32,108,40,105,46,100,97,116,97,84,121,112,101,115,91,48,93,41,124,124,33,115,91,34,42,34,93,38,38,108,40,34,42,34,41,125,102,117,110,99,116,105,111,110,32,122,116,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,61,107,46,97,106,97,120,83,101,116,116,105,110,103,115,46,102,108,97,116,79,112,116,105,111,110,115,124,124,123,125,59,102,111,114,40,110,32,105,110,32,116,41,118,111,105,100,32,48,33,61,61,116,91,110,93,38,38,40,40,105,91,110,93,63,101,58,114,124,124,40,114,61,123,125,41,41,91,110,93,61,116,91,110,93,41,59,114,101,116,117,114,110,32,114,38,38,107,46,101,120,116,101,110,100,40,33,48,44,101,44,114,41,44,101,125,70,116,46,104,114,101,102,61,69,116,46,104,114,101,102,44,107,46,101,120,116,101,110,100,40,123,97,99,116,105,118,101,58,48,44,108,97,115,116,77,111,100,105,102,105,101,100,58,123,125,44,101,116,97,103,58,123,125,44,97,106,97,120,83,101,116,116,105,110,103,115,58,123,117,114,108,58,69,116,46,104,114,101,102,44,116,121,112,101,58,34,71,69,84,34,44,105,115,76,111,99,97,108,58,47,94,40,63,58,97,98,111,117,116,124,97,112,112,124,97,112,112,45,115,116,111,114,97,103,101,124,46,43,45,101,120,116,101,110,115,105,111,110,124,102,105,108,101,124,114,101,115,124,119,105,100,103,101,116,41,58,36,47,46,116,101,115,116,40,69,116,46,112,114,111,116,111,99,111,108,41,44,103,108,111,98,97,108,58,33,48,44,112,114,111,99,101,115,115,68,97,116,97,58,33,48,44,97,115,121,110,99,58,33,48,44,99,111,110,116,101,110,116,84,121,112,101,58,34,97,112,112,108,105,99,97,116,105,111,110,47,120,45,119,119,119,45,102,111,114,109,45,117,114,108,101,110,99,111,100,101,100,59,32,99,104,97,114,115,101,116,61,85,84,70,45,56,34,44,97,99,99,101,112,116,115,58,123,34,42,34,58,36,116,44,116,101,120,116,58,34,116,101,120,116,47,112,108,97,105,110,34,44,104,116,109,108,58,34,116,101,120,116,47,104,116,109,108,34,44,120,109,108,58,34,97,112,112,108,105,99,97,116,105,111,110,47,120,109,108,44,32,116,101,120,116,47,120,109,108,34,44,106,115,111,110,58,34,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,44,32,116,101,120,116,47,106,97,118,97,115,99,114,105,112,116,34,125,44,99,111,110,116,101,110,116,115,58,123,120,109,108,58,47,92,98,120,109,108,92,98,47,44,104,116,109,108,58,47,92,98,104,116,109,108,47,44,106,115,111,110,58,47,92,98,106,115,111,110,92,98,47,125,44,114,101,115,112,111,110,115,101,70,105,101,108,100,115,58,123,120,109,108,58,34,114,101,115,112,111,110,115,101,88,77,76,34,44,116,101,120,116,58,34,114,101,115,112,111,110,115,101,84,101,120,116,34,44,106,115,111,110,58,34,114,101,115,112,111,110,115,101,74,83,79,78,34,125,44,99,111,110,118,101,114,116,101,114,115,58,123,34,42,32,116,101,120,116,34,58,83,116,114,105,110,103,44,34,116,101,120,116,32,104,116,109,108,34,58,33,48,44,34,116,101,120,116,32,106,115,111,110,34,58,74,83,79,78,46,112,97,114,115,101,44,34,116,101,120,116,32,120,109,108,34,58,107,46,112,97,114,115,101,88,77,76,125,44,102,108,97,116,79,112,116,105,111,110,115,58,123,117,114,108,58,33,48,44,99,111,110,116,101,120,116,58,33,48,125,125,44,97,106,97,120,83,101,116,117,112,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,63,122,116,40,122,116,40,101,44,107,46,97,106,97,120,83,101,116,116,105,110,103,115,41,44,116,41,58,122,116,40,107,46,97,106,97,120,83,101,116,116,105,110,103,115,44,101,41,125,44,97,106,97,120,80,114,101,102,105,108,116,101,114,58,66,116,40,73,116,41,44,97,106,97,120,84,114,97,110,115,112,111,114,116,58,66,116,40,87,116,41,44,97,106,97,120,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,40,116,61,101,44,101,61,118,111,105,100,32,48,41,44,116,61,116,124,124,123,125,59,118,97,114,32,99,44,102,44,112,44,110,44,100,44,114,44,104,44,103,44,105,44,111,44,118,61,107,46,97,106,97,120,83,101,116,117,112,40,123,125,44,116,41,44,121,61,118,46,99,111,110,116,101,120,116,124,124,118,44,109,61,118,46,99,111,110,116,101,120,116,38,38,40,121,46,110,111,100,101,84,121,112,101,124,124,121,46,106,113,117,101,114,121,41,63,107,40,121,41,58,107,46,101,118,101,110,116,44,120,61,107,46,68,101,102,101,114,114,101,100,40,41,44,98,61,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,119,61,118,46,115,116,97,116,117,115,67,111,100,101,124,124,123,125,44,97,61,123,125,44,115,61,123,125,44,117,61,34,99,97,110,99,101,108,101,100,34,44,84,61,123,114,101,97,100,121,83,116,97,116,101,58,48,44,103,101,116,82,101,115,112,111,110,115,101,72,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,105,102,40,104,41,123,105,102,40,33,110,41,123,110,61,123,125,59,119,104,105,108,101,40,116,61,80,116,46,101,120,101,99,40,112,41,41,110,91,116,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,43,34,32,34,93,61,40,110,91,116,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,43,34,32,34,93,124,124,91,93,41,46,99,111,110,99,97,116,40,116,91,50,93,41,125,116,61,110,91,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,43,34,32,34,93,125,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,110,117,108,108,58,116,46,106,111,105,110,40,34,44,32,34,41,125,44,103,101,116,65,108,108,82,101,115,112,111,110,115,101,72,101,97,100,101,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,104,63,112,58,110,117,108,108,125,44,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,104,38,38,40,101,61,115,91,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,61,115,91,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,124,124,101,44,97,91,101,93,61,116,41,44,116,104,105,115,125,44,111,118,101,114,114,105,100,101,77,105,109,101,84,121,112,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,104,38,38,40,118,46,109,105,109,101,84,121,112,101,61,101,41,44,116,104,105,115,125,44,115,116,97,116,117,115,67,111,100,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,105,102,40,101,41,105,102,40,104,41,84,46,97,108,119,97,121,115,40,101,91,84,46,115,116,97,116,117,115,93,41,59,101,108,115,101,32,102,111,114,40,116,32,105,110,32,101,41,119,91,116,93,61,91,119,91,116,93,44,101,91,116,93,93,59,114,101,116,117,114,110,32,116,104,105,115,125,44,97,98,111,114,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,124,124,117,59,114,101,116,117,114,110,32,99,38,38,99,46,97,98,111,114,116,40,116,41,44,108,40,48,44,116,41,44,116,104,105,115,125,125,59,105,102,40,120,46,112,114,111,109,105,115,101,40,84,41,44,118,46,117,114,108,61,40,40,101,124,124,118,46,117,114,108,124,124,69,116,46,104,114,101,102,41,43,34,34,41,46,114,101,112,108,97,99,101,40,77,116,44,69,116,46,112,114,111,116,111,99,111,108,43,34,47,47,34,41,44,118,46,116,121,112,101,61,116,46,109,101,116,104,111,100,124,124,116,46,116,121,112,101,124,124,118,46,109,101,116,104,111,100,124,124,118,46,116,121,112,101,44,118,46,100,97,116,97,84,121,112,101,115,61,40,118,46,100,97,116,97,84,121,112,101,124,124,34,42,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,109,97,116,99,104,40,82,41,124,124,91,34,34,93,44,110,117,108,108,61,61,118,46,99,114,111,115,115,68,111,109,97,105,110,41,123,114,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,116,114,121,123,114,46,104,114,101,102,61,118,46,117,114,108,44,114,46,104,114,101,102,61,114,46,104,114,101,102,44,118,46,99,114,111,115,115,68,111,109,97,105,110,61,70,116,46,112,114,111,116,111,99,111,108,43,34,47,47,34,43,70,116,46,104,111,115,116,33,61,114,46,112,114,111,116,111,99,111,108,43,34,47,47,34,43,114,46,104,111,115,116,125,99,97,116,99,104,40,101,41,123,118,46,99,114,111,115,115,68,111,109,97,105,110,61,33,48,125,125,105,102,40,118,46,100,97,116,97,38,38,118,46,112,114,111,99,101,115,115,68,97,116,97,38,38,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,118,46,100,97,116,97,38,38,40,118,46,100,97,116,97,61,107,46,112,97,114,97,109,40,118,46,100,97,116,97,44,118,46,116,114,97,100,105,116,105,111,110,97,108,41,41,44,95,116,40,73,116,44,118,44,116,44,84,41,44,104,41,114,101,116,117,114,110,32,84,59,102,111,114,40,105,32,105,110,40,103,61,107,46,101,118,101,110,116,38,38,118,46,103,108,111,98,97,108,41,38,38,48,61,61,107,46,97,99,116,105,118,101,43,43,38,38,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,34,97,106,97,120,83,116,97,114,116,34,41,44,118,46,116,121,112,101,61,118,46,116,121,112,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,44,118,46,104,97,115,67,111,110,116,101,110,116,61,33,82,116,46,116,101,115,116,40,118,46,116,121,112,101,41,44,102,61,118,46,117,114,108,46,114,101,112,108,97,99,101,40,72,116,44,34,34,41,44,118,46,104,97,115,67,111,110,116,101,110,116,63,118,46,100,97,116,97,38,38,118,46,112,114,111,99,101,115,115,68,97,116,97,38,38,48,61,61,61,40,118,46,99,111,110,116,101,110,116,84,121,112,101,124,124,34,34,41,46,105,110,100,101,120,79,102,40,34,97,112,112,108,105,99,97,116,105,111,110,47,120,45,119,119,119,45,102,111,114,109,45,117,114,108,101,110,99,111,100,101,100,34,41,38,38,40,118,46,100,97,116,97,61,118,46,100,97,116,97,46,114,101,112,108,97,99,101,40,76,116,44,34,43,34,41,41,58,40,111,61,118,46,117,114,108,46,115,108,105,99,101,40,102,46,108,101,110,103,116,104,41,44,118,46,100,97,116,97,38,38,40,118,46,112,114,111,99,101,115,115,68,97,116,97,124,124,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,118,46,100,97,116,97,41,38,38,40,102,43,61,40,83,116,46,116,101,115,116,40,102,41,63,34,38,34,58,34,63,34,41,43,118,46,100,97,116,97,44,100,101,108,101,116,101,32,118,46,100,97,116,97,41,44,33,49,61,61,61,118,46,99,97,99,104,101,38,38,40,102,61,102,46,114,101,112,108,97,99,101,40,79,116,44,34,36,49,34,41,44,111,61,40,83,116,46,116,101,115,116,40,102,41,63,34,38,34,58,34,63,34,41,43,34,95,61,34,43,107,116,43,43,43,111,41,44,118,46,117,114,108,61,102,43,111,41,44,118,46,105,102,77,111,100,105,102,105,101,100,38,38,40,107,46,108,97,115,116,77,111,100,105,102,105,101,100,91,102,93,38,38,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,34,73,102,45,77,111,100,105,102,105,101,100,45,83,105,110,99,101,34,44,107,46,108,97,115,116,77,111,100,105,102,105,101,100,91,102,93,41,44,107,46,101,116,97,103,91,102,93,38,38,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,34,73,102,45,78,111,110,101,45,77,97,116,99,104,34,44,107,46,101,116,97,103,91,102,93,41,41,44,40,118,46,100,97,116,97,38,38,118,46,104,97,115,67,111,110,116,101,110,116,38,38,33,49,33,61,61,118,46,99,111,110,116,101,110,116,84,121,112,101,124,124,116,46,99,111,110,116,101,110,116,84,121,112,101,41,38,38,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,34,67,111,110,116,101,110,116,45,84,121,112,101,34,44,118,46,99,111,110,116,101,110,116,84,121,112,101,41,44,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,34,65,99,99,101,112,116,34,44,118,46,100,97,116,97,84,121,112,101,115,91,48,93,38,38,118,46,97,99,99,101,112,116,115,91,118,46,100,97,116,97,84,121,112,101,115,91,48,93,93,63,118,46,97,99,99,101,112,116,115,91,118,46,100,97,116,97,84,121,112,101,115,91,48,93,93,43,40,34,42,34,33,61,61,118,46,100,97,116,97,84,121,112,101,115,91,48,93,63,34,44,32,34,43,36,116,43,34,59,32,113,61,48,46,48,49,34,58,34,34,41,58,118,46,97,99,99,101,112,116,115,91,34,42,34,93,41,44,118,46,104,101,97,100,101,114,115,41,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,105,44,118,46,104,101,97,100,101,114,115,91,105,93,41,59,105,102,40,118,46,98,101,102,111,114,101,83,101,110,100,38,38,40,33,49,61,61,61,118,46,98,101,102,111,114,101,83,101,110,100,46,99,97,108,108,40,121,44,84,44,118,41,124,124,104,41,41,114,101,116,117,114,110,32,84,46,97,98,111,114,116,40,41,59,105,102,40,117,61,34,97,98,111,114,116,34,44,98,46,97,100,100,40,118,46,99,111,109,112,108,101,116,101,41,44,84,46,100,111,110,101,40,118,46,115,117,99,99,101,115,115,41,44,84,46,102,97,105,108,40,118,46,101,114,114,111,114,41,44,99,61,95,116,40,87,116,44,118,44,116,44,84,41,41,123,105,102,40,84,46,114,101,97,100,121,83,116,97,116,101,61,49,44,103,38,38,109,46,116,114,105,103,103,101,114,40,34,97,106,97,120,83,101,110,100,34,44,91,84,44,118,93,41,44,104,41,114,101,116,117,114,110,32,84,59,118,46,97,115,121,110,99,38,38,48,60,118,46,116,105,109,101,111,117,116,38,38,40,100,61,67,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,84,46,97,98,111,114,116,40,34,116,105,109,101,111,117,116,34,41,125,44,118,46,116,105,109,101,111,117,116,41,41,59,116,114,121,123,104,61,33,49,44,99,46,115,101,110,100,40,97,44,108,41,125,99,97,116,99,104,40,101,41,123,105,102,40,104,41,116,104,114,111,119,32,101,59,108,40,45,49,44,101,41,125,125,101,108,115,101,32,108,40,45,49,44,34,78,111,32,84,114,97,110,115,112,111,114,116,34,41,59,102,117,110,99,116,105,111,110,32,108,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,61,116,59,104,124,124,40,104,61,33,48,44,100,38,38,67,46,99,108,101,97,114,84,105,109,101,111,117,116,40,100,41,44,99,61,118,111,105,100,32,48,44,112,61,114,124,124,34,34,44,84,46,114,101,97,100,121,83,116,97,116,101,61,48,60,101,63,52,58,48,44,105,61,50,48,48,60,61,101,38,38,101,60,51,48,48,124,124,51,48,52,61,61,61,101,44,110,38,38,40,115,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,61,101,46,99,111,110,116,101,110,116,115,44,117,61,101,46,100,97,116,97,84,121,112,101,115,59,119,104,105,108,101,40,34,42,34,61,61,61,117,91,48,93,41,117,46,115,104,105,102,116,40,41,44,118,111,105,100,32,48,61,61,61,114,38,38,40,114,61,101,46,109,105,109,101,84,121,112,101,124,124,116,46,103,101,116,82,101,115,112,111,110,115,101,72,101,97,100,101,114,40,34,67,111,110,116,101,110,116,45,84,121,112,101,34,41,41,59,105,102,40,114,41,102,111,114,40,105,32,105,110,32,115,41,105,102,40,115,91,105,93,38,38,115,91,105,93,46,116,101,115,116,40,114,41,41,123,117,46,117,110,115,104,105,102,116,40,105,41,59,98,114,101,97,107,125,105,102,40,117,91,48,93,105,110,32,110,41,111,61,117,91,48,93,59,101,108,115,101,123,102,111,114,40,105,32,105,110,32,110,41,123,105,102,40,33,117,91,48,93,124,124,101,46,99,111,110,118,101,114,116,101,114,115,91,105,43,34,32,34,43,117,91,48,93,93,41,123,111,61,105,59,98,114,101,97,107,125,97,124,124,40,97,61,105,41,125,111,61,111,124,124,97,125,105,102,40,111,41,114,101,116,117,114,110,32,111,33,61,61,117,91,48,93,38,38,117,46,117,110,115,104,105,102,116,40,111,41,44,110,91,111,93,125,40,118,44,84,44,110,41,41,44,115,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,61,123,125,44,99,61,101,46,100,97,116,97,84,121,112,101,115,46,115,108,105,99,101,40,41,59,105,102,40,99,91,49,93,41,102,111,114,40,97,32,105,110,32,101,46,99,111,110,118,101,114,116,101,114,115,41,108,91,97,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,61,101,46,99,111,110,118,101,114,116,101,114,115,91,97,93,59,111,61,99,46,115,104,105,102,116,40,41,59,119,104,105,108,101,40,111,41,105,102,40,101,46,114,101,115,112,111,110,115,101,70,105,101,108,100,115,91,111,93,38,38,40,110,91,101,46,114,101,115,112,111,110,115,101,70,105,101,108,100,115,91,111,93,93,61,116,41,44,33,117,38,38,114,38,38,101,46,100,97,116,97,70,105,108,116,101,114,38,38,40,116,61,101,46,100,97,116,97,70,105,108,116,101,114,40,116,44,101,46,100,97,116,97,84,121,112,101,41,41,44,117,61,111,44,111,61,99,46,115,104,105,102,116,40,41,41,105,102,40,34,42,34,61,61,61,111,41,111,61,117,59,101,108,115,101,32,105,102,40,34,42,34,33,61,61,117,38,38,117,33,61,61,111,41,123,105,102,40,33,40,97,61,108,91,117,43,34,32,34,43,111,93,124,124,108,91,34,42,32,34,43,111,93,41,41,102,111,114,40,105,32,105,110,32,108,41,105,102,40,40,115,61,105,46,115,112,108,105,116,40,34,32,34,41,41,91,49,93,61,61,61,111,38,38,40,97,61,108,91,117,43,34,32,34,43,115,91,48,93,93,124,124,108,91,34,42,32,34,43,115,91,48,93,93,41,41,123,33,48,61,61,61,97,63,97,61,108,91,105,93,58,33,48,33,61,61,108,91,105,93,38,38,40,111,61,115,91,48,93,44,99,46,117,110,115,104,105,102,116,40,115,91,49,93,41,41,59,98,114,101,97,107,125,105,102,40,33,48,33,61,61,97,41,105,102,40,97,38,38,101,91,34,116,104,114,111,119,115,34,93,41,116,61,97,40,116,41,59,101,108,115,101,32,116,114,121,123,116,61,97,40,116,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,123,115,116,97,116,101,58,34,112,97,114,115,101,114,101,114,114,111,114,34,44,101,114,114,111,114,58,97,63,101,58,34,78,111,32,99,111,110,118,101,114,115,105,111,110,32,102,114,111,109,32,34,43,117,43,34,32,116,111,32,34,43,111,125,125,125,114,101,116,117,114,110,123,115,116,97,116,101,58,34,115,117,99,99,101,115,115,34,44,100,97,116,97,58,116,125,125,40,118,44,115,44,84,44,105,41,44,105,63,40,118,46,105,102,77,111,100,105,102,105,101,100,38,38,40,40,117,61,84,46,103,101,116,82,101,115,112,111,110,115,101,72,101,97,100,101,114,40,34,76,97,115,116,45,77,111,100,105,102,105,101,100,34,41,41,38,38,40,107,46,108,97,115,116,77,111,100,105,102,105,101,100,91,102,93,61,117,41,44,40,117,61,84,46,103,101,116,82,101,115,112,111,110,115,101,72,101,97,100,101,114,40,34,101,116,97,103,34,41,41,38,38,40,107,46,101,116,97,103,91,102,93,61,117,41,41,44,50,48,52,61,61,61,101,124,124,34,72,69,65,68,34,61,61,61,118,46,116,121,112,101,63,108,61,34,110,111,99,111,110,116,101,110,116,34,58,51,48,52,61,61,61,101,63,108,61,34,110,111,116,109,111,100,105,102,105,101,100,34,58,40,108,61,115,46,115,116,97,116,101,44,111,61,115,46,100,97,116,97,44,105,61,33,40,97,61,115,46,101,114,114,111,114,41,41,41,58,40,97,61,108,44,33,101,38,38,108,124,124,40,108,61,34,101,114,114,111,114,34,44,101,60,48,38,38,40,101,61,48,41,41,41,44,84,46,115,116,97,116,117,115,61,101,44,84,46,115,116,97,116,117,115,84,101,120,116,61,40,116,124,124,108,41,43,34,34,44,105,63,120,46,114,101,115,111,108,118,101,87,105,116,104,40,121,44,91,111,44,108,44,84,93,41,58,120,46,114,101,106,101,99,116,87,105,116,104,40,121,44,91,84,44,108,44,97,93,41,44,84,46,115,116,97,116,117,115,67,111,100,101,40,119,41,44,119,61,118,111,105,100,32,48,44,103,38,38,109,46,116,114,105,103,103,101,114,40,105,63,34,97,106,97,120,83,117,99,99,101,115,115,34,58,34,97,106,97,120,69,114,114,111,114,34,44,91,84,44,118,44,105,63,111,58,97,93,41,44,98,46,102,105,114,101,87,105,116,104,40,121,44,91,84,44,108,93,41,44,103,38,38,40,109,46,116,114,105,103,103,101,114,40,34,97,106,97,120,67,111,109,112,108,101,116,101,34,44,91,84,44,118,93,41,44,45,45,107,46,97,99,116,105,118,101,124,124,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,34,97,106,97,120,83,116,111,112,34,41,41,41,125,114,101,116,117,114,110,32,84,125,44,103,101,116,74,83,79,78,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,107,46,103,101,116,40,101,44,116,44,110,44,34,106,115,111,110,34,41,125,44,103,101,116,83,99,114,105,112,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,107,46,103,101,116,40,101,44,118,111,105,100,32,48,44,116,44,34,115,99,114,105,112,116,34,41,125,125,41,44,107,46,101,97,99,104,40,91,34,103,101,116,34,44,34,112,111,115,116,34,93,44,102,117,110,99,116,105,111,110,40,101,44,105,41,123,107,91,105,93,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,109,40,116,41,38,38,40,114,61,114,124,124,110,44,110,61,116,44,116,61,118,111,105,100,32,48,41,44,107,46,97,106,97,120,40,107,46,101,120,116,101,110,100,40,123,117,114,108,58,101,44,116,121,112,101,58,105,44,100,97,116,97,84,121,112,101,58,114,44,100,97,116,97,58,116,44,115,117,99,99,101,115,115,58,110,125,44,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,101,41,38,38,101,41,41,125,125,41,44,107,46,95,101,118,97,108,85,114,108,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,107,46,97,106,97,120,40,123,117,114,108,58,101,44,116,121,112,101,58,34,71,69,84,34,44,100,97,116,97,84,121,112,101,58,34,115,99,114,105,112,116,34,44,99,97,99,104,101,58,33,48,44,97,115,121,110,99,58,33,49,44,103,108,111,98,97,108,58,33,49,44,99,111,110,118,101,114,116,101,114,115,58,123,34,116,101,120,116,32,115,99,114,105,112,116,34,58,102,117,110,99,116,105,111,110,40,41,123,125,125,44,100,97,116,97,70,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,107,46,103,108,111,98,97,108,69,118,97,108,40,101,44,116,41,125,125,41,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,119,114,97,112,65,108,108,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,114,101,116,117,114,110,32,116,104,105,115,91,48,93,38,38,40,109,40,101,41,38,38,40,101,61,101,46,99,97,108,108,40,116,104,105,115,91,48,93,41,41,44,116,61,107,40,101,44,116,104,105,115,91,48,93,46,111,119,110,101,114,68,111,99,117,109,101,110,116,41,46,101,113,40,48,41,46,99,108,111,110,101,40,33,48,41,44,116,104,105,115,91,48,93,46,112,97,114,101,110,116,78,111,100,101,38,38,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,104,105,115,91,48,93,41,44,116,46,109,97,112,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,119,104,105,108,101,40,101,46,102,105,114,115,116,69,108,101,109,101,110,116,67,104,105,108,100,41,101,61,101,46,102,105,114,115,116,69,108,101,109,101,110,116,67,104,105,108,100,59,114,101,116,117,114,110,32,101,125,41,46,97,112,112,101,110,100,40,116,104,105,115,41,41,44,116,104,105,115,125,44,119,114,97,112,73,110,110,101,114,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,109,40,110,41,63,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,119,114,97,112,73,110,110,101,114,40,110,46,99,97,108,108,40,116,104,105,115,44,101,41,41,125,41,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,107,40,116,104,105,115,41,44,116,61,101,46,99,111,110,116,101,110,116,115,40,41,59,116,46,108,101,110,103,116,104,63,116,46,119,114,97,112,65,108,108,40,110,41,58,101,46,97,112,112,101,110,100,40,110,41,125,41,125,44,119,114,97,112,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,109,40,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,119,114,97,112,65,108,108,40,110,63,116,46,99,97,108,108,40,116,104,105,115,44,101,41,58,116,41,125,41,125,44,117,110,119,114,97,112,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,97,114,101,110,116,40,101,41,46,110,111,116,40,34,98,111,100,121,34,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,40,116,104,105,115,41,46,114,101,112,108,97,99,101,87,105,116,104,40,116,104,105,115,46,99,104,105,108,100,78,111,100,101,115,41,125,41,44,116,104,105,115,125,125,41,44,107,46,101,120,112,114,46,112,115,101,117,100,111,115,46,104,105,100,100,101,110,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,107,46,101,120,112,114,46,112,115,101,117,100,111,115,46,118,105,115,105,98,108,101,40,101,41,125,44,107,46,101,120,112,114,46,112,115,101,117,100,111,115,46,118,105,115,105,98,108,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,33,40,101,46,111,102,102,115,101,116,87,105,100,116,104,124,124,101,46,111,102,102,115,101,116,72,101,105,103,104,116,124,124,101,46,103,101,116,67,108,105,101,110,116,82,101,99,116,115,40,41,46,108,101,110,103,116,104,41,125,44,107,46,97,106,97,120,83,101,116,116,105,110,103,115,46,120,104,114,61,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,114,101,116,117,114,110,32,110,101,119,32,67,46,88,77,76,72,116,116,112,82,101,113,117,101,115,116,125,99,97,116,99,104,40,101,41,123,125,125,59,118,97,114,32,85,116,61,123,48,58,50,48,48,44,49,50,50,51,58,50,48,52,125,44,88,116,61,107,46,97,106,97,120,83,101,116,116,105,110,103,115,46,120,104,114,40,41,59,121,46,99,111,114,115,61,33,33,88,116,38,38,34,119,105,116,104,67,114,101,100,101,110,116,105,97,108,115,34,105,110,32,88,116,44,121,46,97,106,97,120,61,88,116,61,33,33,88,116,44,107,46,97,106,97,120,84,114,97,110,115,112,111,114,116,40,102,117,110,99,116,105,111,110,40,105,41,123,118,97,114,32,111,44,97,59,105,102,40,121,46,99,111,114,115,124,124,88,116,38,38,33,105,46,99,114,111,115,115,68,111,109,97,105,110,41,114,101,116,117,114,110,123,115,101,110,100,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,105,46,120,104,114,40,41,59,105,102,40,114,46,111,112,101,110,40,105,46,116,121,112,101,44,105,46,117,114,108,44,105,46,97,115,121,110,99,44,105,46,117,115,101,114,110,97,109,101,44,105,46,112,97,115,115,119,111,114,100,41,44,105,46,120,104,114,70,105,101,108,100,115,41,102,111,114,40,110,32,105,110,32,105,46,120,104,114,70,105,101,108,100,115,41,114,91,110,93,61,105,46,120,104,114,70,105,101,108,100,115,91,110,93,59,102,111,114,40,110,32,105,110,32,105,46,109,105,109,101,84,121,112,101,38,38,114,46,111,118,101,114,114,105,100,101,77,105,109,101,84,121,112,101,38,38,114,46,111,118,101,114,114,105,100,101,77,105,109,101,84,121,112,101,40,105,46,109,105,109,101,84,121,112,101,41,44,105,46,99,114,111,115,115,68,111,109,97,105,110,124,124,101,91,34,88,45,82,101,113,117,101,115,116,101,100,45,87,105,116,104,34,93,124,124,40,101,91,34,88,45,82,101,113,117,101,115,116,101,100,45,87,105,116,104,34,93,61,34,88,77,76,72,116,116,112,82,101,113,117,101,115,116,34,41,44,101,41,114,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,110,44,101,91,110,93,41,59,111,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,111,38,38,40,111,61,97,61,114,46,111,110,108,111,97,100,61,114,46,111,110,101,114,114,111,114,61,114,46,111,110,97,98,111,114,116,61,114,46,111,110,116,105,109,101,111,117,116,61,114,46,111,110,114,101,97,100,121,115,116,97,116,101,99,104,97,110,103,101,61,110,117,108,108,44,34,97,98,111,114,116,34,61,61,61,101,63,114,46,97,98,111,114,116,40,41,58,34,101,114,114,111,114,34,61,61,61,101,63,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,114,46,115,116,97,116,117,115,63,116,40,48,44,34,101,114,114,111,114,34,41,58,116,40,114,46,115,116,97,116,117,115,44,114,46,115,116,97,116,117,115,84,101,120,116,41,58,116,40,85,116,91,114,46,115,116,97,116,117,115,93,124,124,114,46,115,116,97,116,117,115,44,114,46,115,116,97,116,117,115,84,101,120,116,44,34,116,101,120,116,34,33,61,61,40,114,46,114,101,115,112,111,110,115,101,84,121,112,101,124,124,34,116,101,120,116,34,41,124,124,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,114,46,114,101,115,112,111,110,115,101,84,101,120,116,63,123,98,105,110,97,114,121,58,114,46,114,101,115,112,111,110,115,101,125,58,123,116,101,120,116,58,114,46,114,101,115,112,111,110,115,101,84,101,120,116,125,44,114,46,103,101,116,65,108,108,82,101,115,112,111,110,115,101,72,101,97,100,101,114,115,40,41,41,41,125,125,44,114,46,111,110,108,111,97,100,61,111,40,41,44,97,61,114,46,111,110,101,114,114,111,114,61,114,46,111,110,116,105,109,101,111,117,116,61,111,40,34,101,114,114,111,114,34,41,44,118,111,105,100,32,48,33,61,61,114,46,111,110,97,98,111,114,116,63,114,46,111,110,97,98,111,114,116,61,97,58,114,46,111,110,114,101,97,100,121,115,116,97,116,101,99,104,97,110,103,101,61,102,117,110,99,116,105,111,110,40,41,123,52,61,61,61,114,46,114,101,97,100,121,83,116,97,116,101,38,38,67,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,111,38,38,97,40,41,125,41,125,44,111,61,111,40,34,97,98,111,114,116,34,41,59,116,114,121,123,114,46,115,101,110,100,40,105,46,104,97,115,67,111,110,116,101,110,116,38,38,105,46,100,97,116,97,124,124,110,117,108,108,41,125,99,97,116,99,104,40,101,41,123,105,102,40,111,41,116,104,114,111,119,32,101,125,125,44,97,98,111,114,116,58,102,117,110,99,116,105,111,110,40,41,123,111,38,38,111,40,41,125,125,125,41,44,107,46,97,106,97,120,80,114,101,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,114,111,115,115,68,111,109,97,105,110,38,38,40,101,46,99,111,110,116,101,110,116,115,46,115,99,114,105,112,116,61,33,49,41,125,41,44,107,46,97,106,97,120,83,101,116,117,112,40,123,97,99,99,101,112,116,115,58,123,115,99,114,105,112,116,58,34,116,101,120,116,47,106,97,118,97,115,99,114,105,112,116,44,32,97,112,112,108,105,99,97,116,105,111,110,47,106,97,118,97,115,99,114,105,112,116,44,32,97,112,112,108,105,99,97,116,105,111,110,47,101,99,109,97,115,99,114,105,112,116,44,32,97,112,112,108,105,99,97,116,105,111,110,47,120,45,101,99,109,97,115,99,114,105,112,116,34,125,44,99,111,110,116,101,110,116,115,58,123,115,99,114,105,112,116,58,47,92,98,40,63,58,106,97,118,97,124,101,99,109,97,41,115,99,114,105,112,116,92,98,47,125,44,99,111,110,118,101,114,116,101,114,115,58,123,34,116,101,120,116,32,115,99,114,105,112,116,34,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,103,108,111,98,97,108,69,118,97,108,40,101,41,44,101,125,125,125,41,44,107,46,97,106,97,120,80,114,101,102,105,108,116,101,114,40,34,115,99,114,105,112,116,34,44,102,117,110,99,116,105,111,110,40,101,41,123,118,111,105,100,32,48,61,61,61,101,46,99,97,99,104,101,38,38,40,101,46,99,97,99,104,101,61,33,49,41,44,101,46,99,114,111,115,115,68,111,109,97,105,110,38,38,40,101,46,116,121,112,101,61,34,71,69,84,34,41,125,41,44,107,46,97,106,97,120,84,114,97,110,115,112,111,114,116,40,34,115,99,114,105,112,116,34,44,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,44,105,59,105,102,40,110,46,99,114,111,115,115,68,111,109,97,105,110,124,124,110,46,115,99,114,105,112,116,65,116,116,114,115,41,114,101,116,117,114,110,123,115,101,110,100,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,61,107,40,34,60,115,99,114,105,112,116,62,34,41,46,97,116,116,114,40,110,46,115,99,114,105,112,116,65,116,116,114,115,124,124,123,125,41,46,112,114,111,112,40,123,99,104,97,114,115,101,116,58,110,46,115,99,114,105,112,116,67,104,97,114,115,101,116,44,115,114,99,58,110,46,117,114,108,125,41,46,111,110,40,34,108,111,97,100,32,101,114,114,111,114,34,44,105,61,102,117,110,99,116,105,111,110,40,101,41,123,114,46,114,101,109,111,118,101,40,41,44,105,61,110,117,108,108,44,101,38,38,116,40,34,101,114,114,111,114,34,61,61,61,101,46,116,121,112,101,63,52,48,52,58,50,48,48,44,101,46,116,121,112,101,41,125,41,44,69,46,104,101,97,100,46,97,112,112,101,110,100,67,104,105,108,100,40,114,91,48,93,41,125,44,97,98,111,114,116,58,102,117,110,99,116,105,111,110,40,41,123,105,38,38,105,40,41,125,125,125,41,59,118,97,114,32,86,116,44,71,116,61,91,93,44,89,116,61,47,40,61,41,92,63,40,63,61,38,124,36,41,124,92,63,92,63,47,59,107,46,97,106,97,120,83,101,116,117,112,40,123,106,115,111,110,112,58,34,99,97,108,108,98,97,99,107,34,44,106,115,111,110,112,67,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,71,116,46,112,111,112,40,41,124,124,107,46,101,120,112,97,110,100,111,43,34,95,34,43,107,116,43,43,59,114,101,116,117,114,110,32,116,104,105,115,91,101,93,61,33,48,44,101,125,125,41,44,107,46,97,106,97,120,80,114,101,102,105,108,116,101,114,40,34,106,115,111,110,32,106,115,111,110,112,34,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,61,33,49,33,61,61,101,46,106,115,111,110,112,38,38,40,89,116,46,116,101,115,116,40,101,46,117,114,108,41,63,34,117,114,108,34,58,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,46,100,97,116,97,38,38,48,61,61,61,40,101,46,99,111,110,116,101,110,116,84,121,112,101,124,124,34,34,41,46,105,110,100,101,120,79,102,40,34,97,112,112,108,105,99,97,116,105,111,110,47,120,45,119,119,119,45,102,111,114,109,45,117,114,108,101,110,99,111,100,101,100,34,41,38,38,89,116,46,116,101,115,116,40,101,46,100,97,116,97,41,38,38,34,100,97,116,97,34,41,59,105,102,40,97,124,124,34,106,115,111,110,112,34,61,61,61,101,46,100,97,116,97,84,121,112,101,115,91,48,93,41,114,101,116,117,114,110,32,114,61,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,61,109,40,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,41,63,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,40,41,58,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,44,97,63,101,91,97,93,61,101,91,97,93,46,114,101,112,108,97,99,101,40,89,116,44,34,36,49,34,43,114,41,58,33,49,33,61,61,101,46,106,115,111,110,112,38,38,40,101,46,117,114,108,43,61,40,83,116,46,116,101,115,116,40,101,46,117,114,108,41,63,34,38,34,58,34,63,34,41,43,101,46,106,115,111,110,112,43,34,61,34,43,114,41,44,101,46,99,111,110,118,101,114,116,101,114,115,91,34,115,99,114,105,112,116,32,106,115,111,110,34,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,124,124,107,46,101,114,114,111,114,40,114,43,34,32,119,97,115,32,110,111,116,32,99,97,108,108,101,100,34,41,44,111,91,48,93,125,44,101,46,100,97,116,97,84,121,112,101,115,91,48,93,61,34,106,115,111,110,34,44,105,61,67,91,114,93,44,67,91,114,93,61,102,117,110,99,116,105,111,110,40,41,123,111,61,97,114,103,117,109,101,110,116,115,125,44,110,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,118,111,105,100,32,48,61,61,61,105,63,107,40,67,41,46,114,101,109,111,118,101,80,114,111,112,40,114,41,58,67,91,114,93,61,105,44,101,91,114,93,38,38,40,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,61,116,46,106,115,111,110,112,67,97,108,108,98,97,99,107,44,71,116,46,112,117,115,104,40,114,41,41,44,111,38,38,109,40,105,41,38,38,105,40,111,91,48,93,41,44,111,61,105,61,118,111,105,100,32,48,125,41,44,34,115,99,114,105,112,116,34,125,41,44,121,46,99,114,101,97,116,101,72,84,77,76,68,111,99,117,109,101,110,116,61,40,40,86,116,61,69,46,105,109,112,108,101,109,101,110,116,97,116,105,111,110,46,99,114,101,97,116,101,72,84,77,76,68,111,99,117,109,101,110,116,40,34,34,41,46,98,111,100,121,41,46,105,110,110,101,114,72,84,77,76,61,34,60,102,111,114,109,62,60,47,102,111,114,109,62,60,102,111,114,109,62,60,47,102,111,114,109,62,34,44,50,61,61,61,86,116,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,41,44,107,46,112,97,114,115,101,72,84,77,76,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,63,91,93,58,40,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,116,38,38,40,110,61,116,44,116,61,33,49,41,44,116,124,124,40,121,46,99,114,101,97,116,101,72,84,77,76,68,111,99,117,109,101,110,116,63,40,40,114,61,40,116,61,69,46,105,109,112,108,101,109,101,110,116,97,116,105,111,110,46,99,114,101,97,116,101,72,84,77,76,68,111,99,117,109,101,110,116,40,34,34,41,41,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,98,97,115,101,34,41,41,46,104,114,101,102,61,69,46,108,111,99,97,116,105,111,110,46,104,114,101,102,44,116,46,104,101,97,100,46,97,112,112,101,110,100,67,104,105,108,100,40,114,41,41,58,116,61,69,41,44,111,61,33,110,38,38,91,93,44,40,105,61,68,46,101,120,101,99,40,101,41,41,63,91,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,105,91,49,93,41,93,58,40,105,61,119,101,40,91,101,93,44,116,44,111,41,44,111,38,38,111,46,108,101,110,103,116,104,38,38,107,40,111,41,46,114,101,109,111,118,101,40,41,44,107,46,109,101,114,103,101,40,91,93,44,105,46,99,104,105,108,100,78,111,100,101,115,41,41,41,59,118,97,114,32,114,44,105,44,111,125,44,107,46,102,110,46,108,111,97,100,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,61,116,104,105,115,44,115,61,101,46,105,110,100,101,120,79,102,40,34,32,34,41,59,114,101,116,117,114,110,45,49,60,115,38,38,40,114,61,109,116,40,101,46,115,108,105,99,101,40,115,41,41,44,101,61,101,46,115,108,105,99,101,40,48,44,115,41,41,44,109,40,116,41,63,40,110,61,116,44,116,61,118,111,105,100,32,48,41,58,116,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,40,105,61,34,80,79,83,84,34,41,44,48,60,97,46,108,101,110,103,116,104,38,38,107,46,97,106,97,120,40,123,117,114,108,58,101,44,116,121,112,101,58,105,124,124,34,71,69,84,34,44,100,97,116,97,84,121,112,101,58,34,104,116,109,108,34,44,100,97,116,97,58,116,125,41,46,100,111,110,101,40,102,117,110,99,116,105,111,110,40,101,41,123,111,61,97,114,103,117,109,101,110,116,115,44,97,46,104,116,109,108,40,114,63,107,40,34,60,100,105,118,62,34,41,46,97,112,112,101,110,100,40,107,46,112,97,114,115,101,72,84,77,76,40,101,41,41,46,102,105,110,100,40,114,41,58,101,41,125,41,46,97,108,119,97,121,115,40,110,38,38,102,117,110,99,116,105,111,110,40,101,44,116,41,123,97,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,110,46,97,112,112,108,121,40,116,104,105,115,44,111,124,124,91,101,46,114,101,115,112,111,110,115,101,84,101,120,116,44,116,44,101,93,41,125,41,125,41,44,116,104,105,115,125,44,107,46,101,97,99,104,40,91,34,97,106,97,120,83,116,97,114,116,34,44,34,97,106,97,120,83,116,111,112,34,44,34,97,106,97,120,67,111,109,112,108,101,116,101,34,44,34,97,106,97,120,69,114,114,111,114,34,44,34,97,106,97,120,83,117,99,99,101,115,115,34,44,34,97,106,97,120,83,101,110,100,34,93,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,107,46,102,110,91,116,93,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,110,40,116,44,101,41,125,125,41,44,107,46,101,120,112,114,46,112,115,101,117,100,111,115,46,97,110,105,109,97,116,101,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,107,46,103,114,101,112,40,107,46,116,105,109,101,114,115,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,61,61,61,101,46,101,108,101,109,125,41,46,108,101,110,103,116,104,125,44,107,46,111,102,102,115,101,116,61,123,115,101,116,79,102,102,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,44,117,44,108,61,107,46,99,115,115,40,101,44,34,112,111,115,105,116,105,111,110,34,41,44,99,61,107,40,101,41,44,102,61,123,125,59,34,115,116,97,116,105,99,34,61,61,61,108,38,38,40,101,46,115,116,121,108,101,46,112,111,115,105,116,105,111,110,61,34,114,101,108,97,116,105,118,101,34,41,44,115,61,99,46,111,102,102,115,101,116,40,41,44,111,61,107,46,99,115,115,40,101,44,34,116,111,112,34,41,44,117,61,107,46,99,115,115,40,101,44,34,108,101,102,116,34,41,44,40,34,97,98,115,111,108,117,116,101,34,61,61,61,108,124,124,34,102,105,120,101,100,34,61,61,61,108,41,38,38,45,49,60,40,111,43,117,41,46,105,110,100,101,120,79,102,40,34,97,117,116,111,34,41,63,40,97,61,40,114,61,99,46,112,111,115,105,116,105,111,110,40,41,41,46,116,111,112,44,105,61,114,46,108,101,102,116,41,58,40,97,61,112,97,114,115,101,70,108,111,97,116,40,111,41,124,124,48,44,105,61,112,97,114,115,101,70,108,111,97,116,40,117,41,124,124,48,41,44,109,40,116,41,38,38,40,116,61,116,46,99,97,108,108,40,101,44,110,44,107,46,101,120,116,101,110,100,40,123,125,44,115,41,41,41,44,110,117,108,108,33,61,116,46,116,111,112,38,38,40,102,46,116,111,112,61,116,46,116,111,112,45,115,46,116,111,112,43,97,41,44,110,117,108,108,33,61,116,46,108,101,102,116,38,38,40,102,46,108,101,102,116,61,116,46,108,101,102,116,45,115,46,108,101,102,116,43,105,41,44,34,117,115,105,110,103,34,105,110,32,116,63,116,46,117,115,105,110,103,46,99,97,108,108,40,101,44,102,41,58,99,46,99,115,115,40,102,41,125,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,111,102,102,115,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,63,116,104,105,115,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,46,111,102,102,115,101,116,46,115,101,116,79,102,102,115,101,116,40,116,104,105,115,44,116,44,101,41,125,41,59,118,97,114,32,101,44,110,44,114,61,116,104,105,115,91,48,93,59,114,101,116,117,114,110,32,114,63,114,46,103,101,116,67,108,105,101,110,116,82,101,99,116,115,40,41,46,108,101,110,103,116,104,63,40,101,61,114,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,44,110,61,114,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,44,123,116,111,112,58,101,46,116,111,112,43,110,46,112,97,103,101,89,79,102,102,115,101,116,44,108,101,102,116,58,101,46,108,101,102,116,43,110,46,112,97,103,101,88,79,102,102,115,101,116,125,41,58,123,116,111,112,58,48,44,108,101,102,116,58,48,125,58,118,111,105,100,32,48,125,44,112,111,115,105,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,91,48,93,41,123,118,97,114,32,101,44,116,44,110,44,114,61,116,104,105,115,91,48,93,44,105,61,123,116,111,112,58,48,44,108,101,102,116,58,48,125,59,105,102,40,34,102,105,120,101,100,34,61,61,61,107,46,99,115,115,40,114,44,34,112,111,115,105,116,105,111,110,34,41,41,116,61,114,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,101,108,115,101,123,116,61,116,104,105,115,46,111,102,102,115,101,116,40,41,44,110,61,114,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,101,61,114,46,111,102,102,115,101,116,80,97,114,101,110,116,124,124,110,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,119,104,105,108,101,40,101,38,38,40,101,61,61,61,110,46,98,111,100,121,124,124,101,61,61,61,110,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,41,38,38,34,115,116,97,116,105,99,34,61,61,61,107,46,99,115,115,40,101,44,34,112,111,115,105,116,105,111,110,34,41,41,101,61,101,46,112,97,114,101,110,116,78,111,100,101,59,101,38,38,101,33,61,61,114,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,40,40,105,61,107,40,101,41,46,111,102,102,115,101,116,40,41,41,46,116,111,112,43,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,84,111,112,87,105,100,116,104,34,44,33,48,41,44,105,46,108,101,102,116,43,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,76,101,102,116,87,105,100,116,104,34,44,33,48,41,41,125,114,101,116,117,114,110,123,116,111,112,58,116,46,116,111,112,45,105,46,116,111,112,45,107,46,99,115,115,40,114,44,34,109,97,114,103,105,110,84,111,112,34,44,33,48,41,44,108,101,102,116,58,116,46,108,101,102,116,45,105,46,108,101,102,116,45,107,46,99,115,115,40,114,44,34,109,97,114,103,105,110,76,101,102,116,34,44,33,48,41,125,125,125,44,111,102,102,115,101,116,80,97,114,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,102,102,115,101,116,80,97,114,101,110,116,59,119,104,105,108,101,40,101,38,38,34,115,116,97,116,105,99,34,61,61,61,107,46,99,115,115,40,101,44,34,112,111,115,105,116,105,111,110,34,41,41,101,61,101,46,111,102,102,115,101,116,80,97,114,101,110,116,59,114,101,116,117,114,110,32,101,124,124,105,101,125,41,125,125,41,44,107,46,101,97,99,104,40,123,115,99,114,111,108,108,76,101,102,116,58,34,112,97,103,101,88,79,102,102,115,101,116,34,44,115,99,114,111,108,108,84,111,112,58,34,112,97,103,101,89,79,102,102,115,101,116,34,125,44,102,117,110,99,116,105,111,110,40,116,44,105,41,123,118,97,114,32,111,61,34,112,97,103,101,89,79,102,102,115,101,116,34,61,61,61,105,59,107,46,102,110,91,116,93,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,59,105,102,40,120,40,101,41,63,114,61,101,58,57,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,40,114,61,101,46,100,101,102,97,117,108,116,86,105,101,119,41,44,118,111,105,100,32,48,61,61,61,110,41,114,101,116,117,114,110,32,114,63,114,91,105,93,58,101,91,116,93,59,114,63,114,46,115,99,114,111,108,108,84,111,40,111,63,114,46,112,97,103,101,88,79,102,102,115,101,116,58,110,44,111,63,110,58,114,46,112,97,103,101,89,79,102,102,115,101,116,41,58,101,91,116,93,61,110,125,44,116,44,101,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,125,41,44,107,46,101,97,99,104,40,91,34,116,111,112,34,44,34,108,101,102,116,34,93,44,102,117,110,99,116,105,111,110,40,101,44,110,41,123,107,46,99,115,115,72,111,111,107,115,91,110,93,61,122,101,40,121,46,112,105,120,101,108,80,111,115,105,116,105,111,110,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,41,114,101,116,117,114,110,32,116,61,95,101,40,101,44,110,41,44,36,101,46,116,101,115,116,40,116,41,63,107,40,101,41,46,112,111,115,105,116,105,111,110,40,41,91,110,93,43,34,112,120,34,58,116,125,41,125,41,44,107,46,101,97,99,104,40,123,72,101,105,103,104,116,58,34,104,101,105,103,104,116,34,44,87,105,100,116,104,58,34,119,105,100,116,104,34,125,44,102,117,110,99,116,105,111,110,40,97,44,115,41,123,107,46,101,97,99,104,40,123,112,97,100,100,105,110,103,58,34,105,110,110,101,114,34,43,97,44,99,111,110,116,101,110,116,58,115,44,34,34,58,34,111,117,116,101,114,34,43,97,125,44,102,117,110,99,116,105,111,110,40,114,44,111,41,123,107,46,102,110,91,111,93,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,40,114,124,124,34,98,111,111,108,101,97,110,34,33,61,116,121,112,101,111,102,32,101,41,44,105,61,114,124,124,40,33,48,61,61,61,101,124,124,33,48,61,61,61,116,63,34,109,97,114,103,105,110,34,58,34,98,111,114,100,101,114,34,41,59,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,59,114,101,116,117,114,110,32,120,40,101,41,63,48,61,61,61,111,46,105,110,100,101,120,79,102,40,34,111,117,116,101,114,34,41,63,101,91,34,105,110,110,101,114,34,43,97,93,58,101,46,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,91,34,99,108,105,101,110,116,34,43,97,93,58,57,61,61,61,101,46,110,111,100,101,84,121,112,101,63,40,114,61,101,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,77,97,116,104,46,109,97,120,40,101,46,98,111,100,121,91,34,115,99,114,111,108,108,34,43,97,93,44,114,91,34,115,99,114,111,108,108,34,43,97,93,44,101,46,98,111,100,121,91,34,111,102,102,115,101,116,34,43,97,93,44,114,91,34,111,102,102,115,101,116,34,43,97,93,44,114,91,34,99,108,105,101,110,116,34,43,97,93,41,41,58,118,111,105,100,32,48,61,61,61,110,63,107,46,99,115,115,40,101,44,116,44,105,41,58,107,46,115,116,121,108,101,40,101,44,116,44,110,44,105,41,125,44,115,44,110,63,101,58,118,111,105,100,32,48,44,110,41,125,125,41,125,41,44,107,46,101,97,99,104,40,34,98,108,117,114,32,102,111,99,117,115,32,102,111,99,117,115,105,110,32,102,111,99,117,115,111,117,116,32,114,101,115,105,122,101,32,115,99,114,111,108,108,32,99,108,105,99,107,32,100,98,108,99,108,105,99,107,32,109,111,117,115,101,100,111,119,110,32,109,111,117,115,101,117,112,32,109,111,117,115,101,109,111,118,101,32,109,111,117,115,101,111,118,101,114,32,109,111,117,115,101,111,117,116,32,109,111,117,115,101,101,110,116,101,114,32,109,111,117,115,101,108,101,97,118,101,32,99,104,97,110,103,101,32,115,101,108,101,99,116,32,115,117,98,109,105,116,32,107,101,121,100,111,119,110,32,107,101,121,112,114,101,115,115,32,107,101,121,117,112,32,99,111,110,116,101,120,116,109,101,110,117,34,46,115,112,108,105,116,40,34,32,34,41,44,102,117,110,99,116,105,111,110,40,101,44,110,41,123,107,46,102,110,91,110,93,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,48,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,111,110,40,110,44,110,117,108,108,44,101,44,116,41,58,116,104,105,115,46,116,114,105,103,103,101,114,40,110,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,104,111,118,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,117,115,101,101,110,116,101,114,40,101,41,46,109,111,117,115,101,108,101,97,118,101,40,116,124,124,101,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,98,105,110,100,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,110,40,101,44,110,117,108,108,44,116,44,110,41,125,44,117,110,98,105,110,100,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,102,102,40,101,44,110,117,108,108,44,116,41,125,44,100,101,108,101,103,97,116,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,110,40,116,44,101,44,110,44,114,41,125,44,117,110,100,101,108,101,103,97,116,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,111,102,102,40,101,44,34,42,42,34,41,58,116,104,105,115,46,111,102,102,40,116,44,101,124,124,34,42,42,34,44,110,41,125,125,41,44,107,46,112,114,111,120,121,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,38,38,40,110,61,101,91,116,93,44,116,61,101,44,101,61,110,41,44,109,40,101,41,41,114,101,116,117,114,110,32,114,61,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,44,50,41,44,40,105,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,97,112,112,108,121,40,116,124,124,116,104,105,115,44,114,46,99,111,110,99,97,116,40,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,41,125,41,46,103,117,105,100,61,101,46,103,117,105,100,61,101,46,103,117,105,100,124,124,107,46,103,117,105,100,43,43,44,105,125,44,107,46,104,111,108,100,82,101,97,100,121,61,102,117,110,99,116,105,111,110,40,101,41,123,101,63,107,46,114,101,97,100,121,87,97,105,116,43,43,58,107,46,114,101,97,100,121,40,33,48,41,125,44,107,46,105,115,65,114,114,97,121,61,65,114,114,97,121,46,105,115,65,114,114,97,121,44,107,46,112,97,114,115,101,74,83,79,78,61,74,83,79,78,46,112,97,114,115,101,44,107,46,110,111,100,101,78,97,109,101,61,65,44,107,46,105,115,70,117,110,99,116,105,111,110,61,109,44,107,46,105,115,87,105,110,100,111,119,61,120,44,107,46,99,97,109,101,108,67,97,115,101,61,86,44,107,46,116,121,112,101,61,119,44,107,46,110,111,119,61,68,97,116,101,46,110,111,119,44,107,46,105,115,78,117,109,101,114,105,99,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,46,116,121,112,101,40,101,41,59,114,101,116,117,114,110,40,34,110,117,109,98,101,114,34,61,61,61,116,124,124,34,115,116,114,105,110,103,34,61,61,61,116,41,38,38,33,105,115,78,97,78,40,101,45,112,97,114,115,101,70,108,111,97,116,40,101,41,41,125,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,38,38,100,101,102,105,110,101,40,34,106,113,117,101,114,121,34,44,91,93,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,125,41,59,118,97,114,32,81,116,61,67,46,106,81,117,101,114,121,44,74,116,61,67,46,36,59,114,101,116,117,114,110,32,107,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,67,46,36,61,61,61,107,38,38,40,67,46,36,61,74,116,41,44,101,38,38,67,46,106,81,117,101,114,121,61,61,61,107,38,38,40,67,46,106,81,117,101,114,121,61,81,116,41,44,107,125,44,101,124,124,40,67,46,106,81,117,101,114,121,61,67,46,36,61,107,41,44,107,125,41,59,10,47,42,33,10,32,32,42,32,66,111,111,116,115,116,114,97,112,32,118,52,46,51,46,49,32,40,104,116,116,112,115,58,47,47,103,101,116,98,111,111,116,115,116,114,97,112,46,99,111,109,47,41,10,32,32,42,32,67,111,112,121,114,105,103,104,116,32,50,48,49,49,45,50,48,49,57,32,84,104,101,32,66,111,111,116,115,116,114,97,112,32,65,117,116,104,111,114,115,32,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,119,98,115,47,98,111,111,116,115,116,114,97,112,47,103,114,97,112,104,115,47,99,111,110,116,114,105,98,117,116,111,114,115,41,10,32,32,42,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,32,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,119,98,115,47,98,111,111,116,115,116,114,97,112,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,41,10,32,32,42,47,10,33,102,117,110,99,116,105,111,110,40,116,44,101,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,63,101,40,101,120,112,111,114,116,115,44,114,101,113,117,105,114,101,40,34,106,113,117,101,114,121,34,41,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,101,120,112,111,114,116,115,34,44,34,106,113,117,101,114,121,34,93,44,101,41,58,101,40,40,116,61,116,124,124,115,101,108,102,41,46,98,111,111,116,115,116,114,97,112,61,123,125,44,116,46,106,81,117,101,114,121,41,125,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,116,44,112,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,101,46,108,101,110,103,116,104,59,110,43,43,41,123,118,97,114,32,105,61,101,91,110,93,59,105,46,101,110,117,109,101,114,97,98,108,101,61,105,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,105,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,105,38,38,40,105,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,105,46,107,101,121,44,105,41,125,125,102,117,110,99,116,105,111,110,32,115,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,38,38,105,40,116,46,112,114,111,116,111,116,121,112,101,44,101,41,44,110,38,38,105,40,116,44,110,41,44,116,125,102,117,110,99,116,105,111,110,32,108,40,111,41,123,102,111,114,40,118,97,114,32,116,61,49,59,116,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,116,43,43,41,123,118,97,114,32,114,61,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,116,93,63,97,114,103,117,109,101,110,116,115,91,116,93,58,123,125,44,101,61,79,98,106,101,99,116,46,107,101,121,115,40,114,41,59,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,38,38,40,101,61,101,46,99,111,110,99,97,116,40,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,40,114,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,40,114,44,116,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,101,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,105,59,101,61,111,44,105,61,114,91,110,61,116,93,44,110,32,105,110,32,101,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,110,44,123,118,97,108,117,101,58,105,44,101,110,117,109,101,114,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,119,114,105,116,97,98,108,101,58,33,48,125,41,58,101,91,110,93,61,105,125,41,125,114,101,116,117,114,110,32,111,125,112,61,112,38,38,112,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,100,101,102,97,117,108,116,34,41,63,112,46,100,101,102,97,117,108,116,58,112,59,118,97,114,32,101,61,34,116,114,97,110,115,105,116,105,111,110,101,110,100,34,59,102,117,110,99,116,105,111,110,32,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,33,49,59,114,101,116,117,114,110,32,112,40,116,104,105,115,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,41,123,110,61,33,48,125,41,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,110,124,124,109,46,116,114,105,103,103,101,114,84,114,97,110,115,105,116,105,111,110,69,110,100,40,101,41,125,44,116,41,44,116,104,105,115,125,118,97,114,32,109,61,123,84,82,65,78,83,73,84,73,79,78,95,69,78,68,58,34,98,115,84,114,97,110,115,105,116,105,111,110,69,110,100,34,44,103,101,116,85,73,68,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,59,116,43,61,126,126,40,49,101,54,42,77,97,116,104,46,114,97,110,100,111,109,40,41,41,44,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,116,41,59,41,59,114,101,116,117,114,110,32,116,125,44,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,116,97,114,103,101,116,34,41,59,105,102,40,33,101,124,124,34,35,34,61,61,61,101,41,123,118,97,114,32,110,61,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,41,59,101,61,110,38,38,34,35,34,33,61,61,110,63,110,46,116,114,105,109,40,41,58,34,34,125,116,114,121,123,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,101,41,63,101,58,110,117,108,108,125,99,97,116,99,104,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,125,125,44,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,116,41,114,101,116,117,114,110,32,48,59,118,97,114,32,101,61,112,40,116,41,46,99,115,115,40,34,116,114,97,110,115,105,116,105,111,110,45,100,117,114,97,116,105,111,110,34,41,44,110,61,112,40,116,41,46,99,115,115,40,34,116,114,97,110,115,105,116,105,111,110,45,100,101,108,97,121,34,41,44,105,61,112,97,114,115,101,70,108,111,97,116,40,101,41,44,111,61,112,97,114,115,101,70,108,111,97,116,40,110,41,59,114,101,116,117,114,110,32,105,124,124,111,63,40,101,61,101,46,115,112,108,105,116,40,34,44,34,41,91,48,93,44,110,61,110,46,115,112,108,105,116,40,34,44,34,41,91,48,93,44,49,101,51,42,40,112,97,114,115,101,70,108,111,97,116,40,101,41,43,112,97,114,115,101,70,108,111,97,116,40,110,41,41,41,58,48,125,44,114,101,102,108,111,119,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,111,102,102,115,101,116,72,101,105,103,104,116,125,44,116,114,105,103,103,101,114,84,114,97,110,115,105,116,105,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,41,46,116,114,105,103,103,101,114,40,101,41,125,44,115,117,112,112,111,114,116,115,84,114,97,110,115,105,116,105,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,66,111,111,108,101,97,110,40,101,41,125,44,105,115,69,108,101,109,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,91,48,93,124,124,116,41,46,110,111,100,101,84,121,112,101,125,44,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,102,111,114,40,118,97,114,32,105,32,105,110,32,110,41,105,102,40,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,110,44,105,41,41,123,118,97,114,32,111,61,110,91,105,93,44,114,61,101,91,105,93,44,115,61,114,38,38,109,46,105,115,69,108,101,109,101,110,116,40,114,41,63,34,101,108,101,109,101,110,116,34,58,40,97,61,114,44,123,125,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,97,41,46,109,97,116,99,104,40,47,92,115,40,91,97,45,122,93,43,41,47,105,41,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,59,105,102,40,33,110,101,119,32,82,101,103,69,120,112,40,111,41,46,116,101,115,116,40,115,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,116,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,39,58,32,79,112,116,105,111,110,32,34,39,43,105,43,39,34,32,112,114,111,118,105,100,101,100,32,116,121,112,101,32,34,39,43,115,43,39,34,32,98,117,116,32,101,120,112,101,99,116,101,100,32,116,121,112,101,32,34,39,43,111,43,39,34,46,39,41,125,118,97,114,32,97,125,44,102,105,110,100,83,104,97,100,111,119,82,111,111,116,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,97,116,116,97,99,104,83,104,97,100,111,119,41,114,101,116,117,114,110,32,110,117,108,108,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,82,111,111,116,78,111,100,101,41,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,83,104,97,100,111,119,82,111,111,116,63,116,58,116,46,112,97,114,101,110,116,78,111,100,101,63,109,46,102,105,110,100,83,104,97,100,111,119,82,111,111,116,40,116,46,112,97,114,101,110,116,78,111,100,101,41,58,110,117,108,108,59,118,97,114,32,101,61,116,46,103,101,116,82,111,111,116,78,111,100,101,40,41,59,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,83,104,97,100,111,119,82,111,111,116,63,101,58,110,117,108,108,125,125,59,112,46,102,110,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,61,110,44,112,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,93,61,123,98,105,110,100,84,121,112,101,58,101,44,100,101,108,101,103,97,116,101,84,121,112,101,58,101,44,104,97,110,100,108,101,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,112,40,116,46,116,97,114,103,101,116,41,46,105,115,40,116,104,105,115,41,41,114,101,116,117,114,110,32,116,46,104,97,110,100,108,101,79,98,106,46,104,97,110,100,108,101,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,125,59,118,97,114,32,111,61,34,97,108,101,114,116,34,44,114,61,34,98,115,46,97,108,101,114,116,34,44,97,61,34,46,34,43,114,44,99,61,112,46,102,110,91,111,93,44,104,61,123,67,76,79,83,69,58,34,99,108,111,115,101,34,43,97,44,67,76,79,83,69,68,58,34,99,108,111,115,101,100,34,43,97,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,97,43,34,46,100,97,116,97,45,97,112,105,34,125,44,117,61,34,97,108,101,114,116,34,44,102,61,34,102,97,100,101,34,44,100,61,34,115,104,111,119,34,44,103,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,125,118,97,114,32,116,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,99,108,111,115,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,101,108,101,109,101,110,116,59,116,38,38,40,101,61,116,104,105,115,46,95,103,101,116,82,111,111,116,69,108,101,109,101,110,116,40,116,41,41,44,116,104,105,115,46,95,116,114,105,103,103,101,114,67,108,111,115,101,69,118,101,110,116,40,101,41,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,116,104,105,115,46,95,114,101,109,111,118,101,69,108,101,109,101,110,116,40,101,41,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,114,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,125,44,116,46,95,103,101,116,82,111,111,116,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,41,44,110,61,33,49,59,114,101,116,117,114,110,32,101,38,38,40,110,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,101,41,41,44,110,124,124,40,110,61,112,40,116,41,46,99,108,111,115,101,115,116,40,34,46,34,43,117,41,91,48,93,41,44,110,125,44,116,46,95,116,114,105,103,103,101,114,67,108,111,115,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,112,46,69,118,101,110,116,40,104,46,67,76,79,83,69,41,59,114,101,116,117,114,110,32,112,40,116,41,46,116,114,105,103,103,101,114,40,101,41,44,101,125,44,116,46,95,114,101,109,111,118,101,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,112,40,101,41,46,114,101,109,111,118,101,67,108,97,115,115,40,100,41,44,112,40,101,41,46,104,97,115,67,108,97,115,115,40,102,41,41,123,118,97,114,32,116,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,101,41,59,112,40,101,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,95,100,101,115,116,114,111,121,69,108,101,109,101,110,116,40,101,44,116,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,116,41,125,101,108,115,101,32,116,104,105,115,46,95,100,101,115,116,114,111,121,69,108,101,109,101,110,116,40,101,41,125,44,116,46,95,100,101,115,116,114,111,121,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,41,46,100,101,116,97,99,104,40,41,46,116,114,105,103,103,101,114,40,104,46,67,76,79,83,69,68,41,46,114,101,109,111,118,101,40,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,114,41,59,101,124,124,40,101,61,110,101,119,32,105,40,116,104,105,115,41,44,116,46,100,97,116,97,40,114,44,101,41,41,44,34,99,108,111,115,101,34,61,61,61,110,38,38,101,91,110,93,40,116,104,105,115,41,125,41,125,44,105,46,95,104,97,110,100,108,101,68,105,115,109,105,115,115,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,99,108,111,115,101,40,116,104,105,115,41,125,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,93,41,44,105,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,104,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,39,91,100,97,116,97,45,100,105,115,109,105,115,115,61,34,97,108,101,114,116,34,93,39,44,103,46,95,104,97,110,100,108,101,68,105,115,109,105,115,115,40,110,101,119,32,103,41,41,44,112,46,102,110,91,111,93,61,103,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,111,93,46,67,111,110,115,116,114,117,99,116,111,114,61,103,44,112,46,102,110,91,111,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,111,93,61,99,44,103,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,95,61,34,98,117,116,116,111,110,34,44,118,61,34,98,115,46,98,117,116,116,111,110,34,44,121,61,34,46,34,43,118,44,69,61,34,46,100,97,116,97,45,97,112,105,34,44,98,61,112,46,102,110,91,95,93,44,119,61,34,97,99,116,105,118,101,34,44,67,61,34,98,116,110,34,44,84,61,34,102,111,99,117,115,34,44,83,61,39,91,100,97,116,97,45,116,111,103,103,108,101,94,61,34,98,117,116,116,111,110,34,93,39,44,68,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,98,117,116,116,111,110,115,34,93,39,44,73,61,39,105,110,112,117,116,58,110,111,116,40,91,116,121,112,101,61,34,104,105,100,100,101,110,34,93,41,39,44,65,61,34,46,97,99,116,105,118,101,34,44,79,61,34,46,98,116,110,34,44,78,61,123,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,121,43,69,44,70,79,67,85,83,95,66,76,85,82,95,68,65,84,65,95,65,80,73,58,34,102,111,99,117,115,34,43,121,43,69,43,34,32,98,108,117,114,34,43,121,43,69,125,44,107,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,110,40,116,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,125,118,97,114,32,116,61,110,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,33,48,44,101,61,33,48,44,110,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,68,41,91,48,93,59,105,102,40,110,41,123,118,97,114,32,105,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,73,41,59,105,102,40,105,41,123,105,102,40,34,114,97,100,105,111,34,61,61,61,105,46,116,121,112,101,41,105,102,40,105,46,99,104,101,99,107,101,100,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,119,41,41,116,61,33,49,59,101,108,115,101,123,118,97,114,32,111,61,110,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,65,41,59,111,38,38,112,40,111,41,46,114,101,109,111,118,101,67,108,97,115,115,40,119,41,125,105,102,40,116,41,123,105,102,40,105,46,104,97,115,65,116,116,114,105,98,117,116,101,40,34,100,105,115,97,98,108,101,100,34,41,124,124,110,46,104,97,115,65,116,116,114,105,98,117,116,101,40,34,100,105,115,97,98,108,101,100,34,41,124,124,105,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,34,100,105,115,97,98,108,101,100,34,41,124,124,110,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,34,100,105,115,97,98,108,101,100,34,41,41,114,101,116,117,114,110,59,105,46,99,104,101,99,107,101,100,61,33,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,119,41,44,112,40,105,41,46,116,114,105,103,103,101,114,40,34,99,104,97,110,103,101,34,41,125,105,46,102,111,99,117,115,40,41,44,101,61,33,49,125,125,101,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,112,114,101,115,115,101,100,34,44,33,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,119,41,41,44,116,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,111,103,103,108,101,67,108,97,115,115,40,119,41,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,118,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,125,44,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,118,41,59,116,124,124,40,116,61,110,101,119,32,110,40,116,104,105,115,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,118,44,116,41,41,44,34,116,111,103,103,108,101,34,61,61,61,101,38,38,116,91,101,93,40,41,125,41,125,44,115,40,110,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,93,41,44,110,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,78,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,83,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,101,61,116,46,116,97,114,103,101,116,59,112,40,101,41,46,104,97,115,67,108,97,115,115,40,67,41,124,124,40,101,61,112,40,101,41,46,99,108,111,115,101,115,116,40,79,41,41,44,107,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,101,41,44,34,116,111,103,103,108,101,34,41,125,41,46,111,110,40,78,46,70,79,67,85,83,95,66,76,85,82,95,68,65,84,65,95,65,80,73,44,83,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,112,40,116,46,116,97,114,103,101,116,41,46,99,108,111,115,101,115,116,40,79,41,91,48,93,59,112,40,101,41,46,116,111,103,103,108,101,67,108,97,115,115,40,84,44,47,94,102,111,99,117,115,40,105,110,41,63,36,47,46,116,101,115,116,40,116,46,116,121,112,101,41,41,125,41,44,112,46,102,110,91,95,93,61,107,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,95,93,46,67,111,110,115,116,114,117,99,116,111,114,61,107,44,112,46,102,110,91,95,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,95,93,61,98,44,107,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,76,61,34,99,97,114,111,117,115,101,108,34,44,120,61,34,98,115,46,99,97,114,111,117,115,101,108,34,44,80,61,34,46,34,43,120,44,72,61,34,46,100,97,116,97,45,97,112,105,34,44,106,61,112,46,102,110,91,76,93,44,82,61,123,105,110,116,101,114,118,97,108,58,53,101,51,44,107,101,121,98,111,97,114,100,58,33,48,44,115,108,105,100,101,58,33,49,44,112,97,117,115,101,58,34,104,111,118,101,114,34,44,119,114,97,112,58,33,48,44,116,111,117,99,104,58,33,48,125,44,70,61,123,105,110,116,101,114,118,97,108,58,34,40,110,117,109,98,101,114,124,98,111,111,108,101,97,110,41,34,44,107,101,121,98,111,97,114,100,58,34,98,111,111,108,101,97,110,34,44,115,108,105,100,101,58,34,40,98,111,111,108,101,97,110,124,115,116,114,105,110,103,41,34,44,112,97,117,115,101,58,34,40,115,116,114,105,110,103,124,98,111,111,108,101,97,110,41,34,44,119,114,97,112,58,34,98,111,111,108,101,97,110,34,44,116,111,117,99,104,58,34,98,111,111,108,101,97,110,34,125,44,77,61,34,110,101,120,116,34,44,87,61,34,112,114,101,118,34,44,85,61,34,108,101,102,116,34,44,66,61,34,114,105,103,104,116,34,44,113,61,123,83,76,73,68,69,58,34,115,108,105,100,101,34,43,80,44,83,76,73,68,58,34,115,108,105,100,34,43,80,44,75,69,89,68,79,87,78,58,34,107,101,121,100,111,119,110,34,43,80,44,77,79,85,83,69,69,78,84,69,82,58,34,109,111,117,115,101,101,110,116,101,114,34,43,80,44,77,79,85,83,69,76,69,65,86,69,58,34,109,111,117,115,101,108,101,97,118,101,34,43,80,44,84,79,85,67,72,83,84,65,82,84,58,34,116,111,117,99,104,115,116,97,114,116,34,43,80,44,84,79,85,67,72,77,79,86,69,58,34,116,111,117,99,104,109,111,118,101,34,43,80,44,84,79,85,67,72,69,78,68,58,34,116,111,117,99,104,101,110,100,34,43,80,44,80,79,73,78,84,69,82,68,79,87,78,58,34,112,111,105,110,116,101,114,100,111,119,110,34,43,80,44,80,79,73,78,84,69,82,85,80,58,34,112,111,105,110,116,101,114,117,112,34,43,80,44,68,82,65,71,95,83,84,65,82,84,58,34,100,114,97,103,115,116,97,114,116,34,43,80,44,76,79,65,68,95,68,65,84,65,95,65,80,73,58,34,108,111,97,100,34,43,80,43,72,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,80,43,72,125,44,75,61,34,99,97,114,111,117,115,101,108,34,44,81,61,34,97,99,116,105,118,101,34,44,86,61,34,115,108,105,100,101,34,44,89,61,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,34,44,122,61,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,34,44,88,61,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,34,44,71,61,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,34,44,36,61,34,112,111,105,110,116,101,114,45,101,118,101,110,116,34,44,74,61,34,46,97,99,116,105,118,101,34,44,90,61,34,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,34,44,116,116,61,34,46,99,97,114,111,117,115,101,108,45,105,116,101,109,34,44,101,116,61,34,46,99,97,114,111,117,115,101,108,45,105,116,101,109,32,105,109,103,34,44,110,116,61,34,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,44,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,34,44,105,116,61,34,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,34,44,111,116,61,34,91,100,97,116,97,45,115,108,105,100,101,93,44,32,91,100,97,116,97,45,115,108,105,100,101,45,116,111,93,34,44,114,116,61,39,91,100,97,116,97,45,114,105,100,101,61,34,99,97,114,111,117,115,101,108,34,93,39,44,115,116,61,123,84,79,85,67,72,58,34,116,111,117,99,104,34,44,80,69,78,58,34,112,101,110,34,125,44,97,116,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,114,40,116,44,101,41,123,116,104,105,115,46,95,105,116,101,109,115,61,110,117,108,108,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,110,117,108,108,44,116,104,105,115,46,95,97,99,116,105,118,101,69,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,105,115,80,97,117,115,101,100,61,33,49,44,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,33,49,44,116,104,105,115,46,116,111,117,99,104,84,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,116,111,117,99,104,83,116,97,114,116,88,61,48,44,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,61,48,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,105,116,41,44,116,104,105,115,46,95,116,111,117,99,104,83,117,112,112,111,114,116,101,100,61,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,124,124,48,60,110,97,118,105,103,97,116,111,114,46,109,97,120,84,111,117,99,104,80,111,105,110,116,115,44,116,104,105,115,46,95,112,111,105,110,116,101,114,69,118,101,110,116,61,66,111,111,108,101,97,110,40,119,105,110,100,111,119,46,80,111,105,110,116,101,114,69,118,101,110,116,124,124,119,105,110,100,111,119,46,77,83,80,111,105,110,116,101,114,69,118,101,110,116,41,44,116,104,105,115,46,95,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,125,118,97,114,32,116,61,114,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,110,101,120,116,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,124,124,116,104,105,115,46,95,115,108,105,100,101,40,77,41,125,44,116,46,110,101,120,116,87,104,101,110,86,105,115,105,98,108,101,61,102,117,110,99,116,105,111,110,40,41,123,33,100,111,99,117,109,101,110,116,46,104,105,100,100,101,110,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,105,115,40,34,58,118,105,115,105,98,108,101,34,41,38,38,34,104,105,100,100,101,110,34,33,61,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,99,115,115,40,34,118,105,115,105,98,105,108,105,116,121,34,41,38,38,116,104,105,115,46,110,101,120,116,40,41,125,44,116,46,112,114,101,118,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,124,124,116,104,105,115,46,95,115,108,105,100,101,40,87,41,125,44,116,46,112,97,117,115,101,61,102,117,110,99,116,105,111,110,40,116,41,123,116,124,124,40,116,104,105,115,46,95,105,115,80,97,117,115,101,100,61,33,48,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,110,116,41,38,38,40,109,46,116,114,105,103,103,101,114,84,114,97,110,115,105,116,105,111,110,69,110,100,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,116,104,105,115,46,99,121,99,108,101,40,33,48,41,41,44,99,108,101,97,114,73,110,116,101,114,118,97,108,40,116,104,105,115,46,95,105,110,116,101,114,118,97,108,41,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,110,117,108,108,125,44,116,46,99,121,99,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,116,124,124,40,116,104,105,115,46,95,105,115,80,97,117,115,101,100,61,33,49,41,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,38,38,40,99,108,101,97,114,73,110,116,101,114,118,97,108,40,116,104,105,115,46,95,105,110,116,101,114,118,97,108,41,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,110,117,108,108,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,38,38,33,116,104,105,115,46,95,105,115,80,97,117,115,101,100,38,38,40,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,115,101,116,73,110,116,101,114,118,97,108,40,40,100,111,99,117,109,101,110,116,46,118,105,115,105,98,105,108,105,116,121,83,116,97,116,101,63,116,104,105,115,46,110,101,120,116,87,104,101,110,86,105,115,105,98,108,101,58,116,104,105,115,46,110,101,120,116,41,46,98,105,110,100,40,116,104,105,115,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,41,41,125,44,116,46,116,111,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,97,99,116,105,118,101,69,108,101,109,101,110,116,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,90,41,59,118,97,114,32,110,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,116,104,105,115,46,95,97,99,116,105,118,101,69,108,101,109,101,110,116,41,59,105,102,40,33,40,116,62,116,104,105,115,46,95,105,116,101,109,115,46,108,101,110,103,116,104,45,49,124,124,116,60,48,41,41,105,102,40,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,41,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,113,46,83,76,73,68,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,116,111,40,116,41,125,41,59,101,108,115,101,123,105,102,40,110,61,61,61,116,41,114,101,116,117,114,110,32,116,104,105,115,46,112,97,117,115,101,40,41,44,118,111,105,100,32,116,104,105,115,46,99,121,99,108,101,40,41,59,118,97,114,32,105,61,110,60,116,63,77,58,87,59,116,104,105,115,46,95,115,108,105,100,101,40,105,44,116,104,105,115,46,95,105,116,101,109,115,91,116,93,41,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,80,41,44,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,120,41,44,116,104,105,115,46,95,105,116,101,109,115,61,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,110,117,108,108,44,116,104,105,115,46,95,105,115,80,97,117,115,101,100,61,110,117,108,108,44,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,110,117,108,108,44,116,104,105,115,46,95,97,99,116,105,118,101,69,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,61,110,117,108,108,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,108,40,123,125,44,82,44,116,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,76,44,116,44,70,41,44,116,125,44,116,46,95,104,97,110,100,108,101,83,119,105,112,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,77,97,116,104,46,97,98,115,40,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,41,59,105,102,40,33,40,116,60,61,52,48,41,41,123,118,97,114,32,101,61,116,47,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,59,48,60,101,38,38,116,104,105,115,46,112,114,101,118,40,41,44,101,60,48,38,38,116,104,105,115,46,110,101,120,116,40,41,125,125,44,116,46,95,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,99,111,110,102,105,103,46,107,101,121,98,111,97,114,100,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,75,69,89,68,79,87,78,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,95,107,101,121,100,111,119,110,40,116,41,125,41,44,34,104,111,118,101,114,34,61,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,117,115,101,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,77,79,85,83,69,69,78,84,69,82,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,112,97,117,115,101,40,116,41,125,41,46,111,110,40,113,46,77,79,85,83,69,76,69,65,86,69,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,99,121,99,108,101,40,116,41,125,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,116,111,117,99,104,38,38,116,104,105,115,46,95,97,100,100,84,111,117,99,104,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,125,44,116,46,95,97,100,100,84,111,117,99,104,69,118,101,110,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,116,104,105,115,46,95,116,111,117,99,104,83,117,112,112,111,114,116,101,100,41,123,118,97,114,32,101,61,102,117,110,99,116,105,111,110,40,116,41,123,110,46,95,112,111,105,110,116,101,114,69,118,101,110,116,38,38,115,116,91,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,112,111,105,110,116,101,114,84,121,112,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,93,63,110,46,116,111,117,99,104,83,116,97,114,116,88,61,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,99,108,105,101,110,116,88,58,110,46,95,112,111,105,110,116,101,114,69,118,101,110,116,124,124,40,110,46,116,111,117,99,104,83,116,97,114,116,88,61,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,99,108,105,101,110,116,88,41,125,44,105,61,102,117,110,99,116,105,111,110,40,116,41,123,110,46,95,112,111,105,110,116,101,114,69,118,101,110,116,38,38,115,116,91,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,112,111,105,110,116,101,114,84,121,112,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,93,38,38,40,110,46,116,111,117,99,104,68,101,108,116,97,88,61,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,99,108,105,101,110,116,88,45,110,46,116,111,117,99,104,83,116,97,114,116,88,41,44,110,46,95,104,97,110,100,108,101,83,119,105,112,101,40,41,44,34,104,111,118,101,114,34,61,61,61,110,46,95,99,111,110,102,105,103,46,112,97,117,115,101,38,38,40,110,46,112,97,117,115,101,40,41,44,110,46,116,111,117,99,104,84,105,109,101,111,117,116,38,38,99,108,101,97,114,84,105,109,101,111,117,116,40,110,46,116,111,117,99,104,84,105,109,101,111,117,116,41,44,110,46,116,111,117,99,104,84,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,99,121,99,108,101,40,116,41,125,44,53,48,48,43,110,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,41,41,125,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,101,116,41,41,46,111,110,40,113,46,68,82,65,71,95,83,84,65,82,84,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,125,41,44,116,104,105,115,46,95,112,111,105,110,116,101,114,69,118,101,110,116,63,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,80,79,73,78,84,69,82,68,79,87,78,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,40,116,41,125,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,80,79,73,78,84,69,82,85,80,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,41,125,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,36,41,41,58,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,84,79,85,67,72,83,84,65,82,84,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,40,116,41,125,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,84,79,85,67,72,77,79,86,69,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,59,40,101,61,116,41,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,49,60,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,46,108,101,110,103,116,104,63,110,46,116,111,117,99,104,68,101,108,116,97,88,61,48,58,110,46,116,111,117,99,104,68,101,108,116,97,88,61,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,99,108,105,101,110,116,88,45,110,46,116,111,117,99,104,83,116,97,114,116,88,125,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,84,79,85,67,72,69,78,68,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,41,125,41,41,125,125,44,116,46,95,107,101,121,100,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,47,105,110,112,117,116,124,116,101,120,116,97,114,101,97,47,105,46,116,101,115,116,40,116,46,116,97,114,103,101,116,46,116,97,103,78,97,109,101,41,41,115,119,105,116,99,104,40,116,46,119,104,105,99,104,41,123,99,97,115,101,32,51,55,58,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,112,114,101,118,40,41,59,98,114,101,97,107,59,99,97,115,101,32,51,57,58,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,110,101,120,116,40,41,125,125,44,116,46,95,103,101,116,73,116,101,109,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,105,116,101,109,115,61,116,38,38,116,46,112,97,114,101,110,116,78,111,100,101,63,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,46,112,97,114,101,110,116,78,111,100,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,116,41,41,58,91,93,44,116,104,105,115,46,95,105,116,101,109,115,46,105,110,100,101,120,79,102,40,116,41,125,44,116,46,95,103,101,116,73,116,101,109,66,121,68,105,114,101,99,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,61,61,61,77,44,105,61,116,61,61,61,87,44,111,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,101,41,44,114,61,116,104,105,115,46,95,105,116,101,109,115,46,108,101,110,103,116,104,45,49,59,105,102,40,40,105,38,38,48,61,61,61,111,124,124,110,38,38,111,61,61,61,114,41,38,38,33,116,104,105,115,46,95,99,111,110,102,105,103,46,119,114,97,112,41,114,101,116,117,114,110,32,101,59,118,97,114,32,115,61,40,111,43,40,116,61,61,61,87,63,45,49,58,49,41,41,37,116,104,105,115,46,95,105,116,101,109,115,46,108,101,110,103,116,104,59,114,101,116,117,114,110,45,49,61,61,61,115,63,116,104,105,115,46,95,105,116,101,109,115,91,116,104,105,115,46,95,105,116,101,109,115,46,108,101,110,103,116,104,45,49,93,58,116,104,105,115,46,95,105,116,101,109,115,91,115,93,125,44,116,46,95,116,114,105,103,103,101,114,83,108,105,100,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,116,41,44,105,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,90,41,41,44,111,61,112,46,69,118,101,110,116,40,113,46,83,76,73,68,69,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,44,100,105,114,101,99,116,105,111,110,58,101,44,102,114,111,109,58,105,44,116,111,58,110,125,41,59,114,101,116,117,114,110,32,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,111,41,44,111,125,44,116,46,95,115,101,116,65,99,116,105,118,101,73,110,100,105,99,97,116,111,114,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,41,123,118,97,114,32,101,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,74,41,41,59,112,40,101,41,46,114,101,109,111,118,101,67,108,97,115,115,40,81,41,59,118,97,114,32,110,61,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,46,99,104,105,108,100,114,101,110,91,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,116,41,93,59,110,38,38,112,40,110,41,46,97,100,100,67,108,97,115,115,40,81,41,125,125,44,116,46,95,115,108,105,100,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,105,44,111,44,114,61,116,104,105,115,44,115,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,90,41,44,97,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,115,41,44,108,61,101,124,124,115,38,38,116,104,105,115,46,95,103,101,116,73,116,101,109,66,121,68,105,114,101,99,116,105,111,110,40,116,44,115,41,44,99,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,108,41,44,104,61,66,111,111,108,101,97,110,40,116,104,105,115,46,95,105,110,116,101,114,118,97,108,41,59,105,102,40,111,61,116,61,61,61,77,63,40,110,61,122,44,105,61,88,44,85,41,58,40,110,61,89,44,105,61,71,44,66,41,44,108,38,38,112,40,108,41,46,104,97,115,67,108,97,115,115,40,81,41,41,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,33,49,59,101,108,115,101,32,105,102,40,33,116,104,105,115,46,95,116,114,105,103,103,101,114,83,108,105,100,101,69,118,101,110,116,40,108,44,111,41,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,38,38,115,38,38,108,41,123,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,33,48,44,104,38,38,116,104,105,115,46,112,97,117,115,101,40,41,44,116,104,105,115,46,95,115,101,116,65,99,116,105,118,101,73,110,100,105,99,97,116,111,114,69,108,101,109,101,110,116,40,108,41,59,118,97,114,32,117,61,112,46,69,118,101,110,116,40,113,46,83,76,73,68,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,108,44,100,105,114,101,99,116,105,111,110,58,111,44,102,114,111,109,58,97,44,116,111,58,99,125,41,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,86,41,41,123,112,40,108,41,46,97,100,100,67,108,97,115,115,40,105,41,44,109,46,114,101,102,108,111,119,40,108,41,44,112,40,115,41,46,97,100,100,67,108,97,115,115,40,110,41,44,112,40,108,41,46,97,100,100,67,108,97,115,115,40,110,41,59,118,97,114,32,102,61,112,97,114,115,101,73,110,116,40,108,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,105,110,116,101,114,118,97,108,34,41,44,49,48,41,59,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,61,102,63,40,116,104,105,115,46,95,99,111,110,102,105,103,46,100,101,102,97,117,108,116,73,110,116,101,114,118,97,108,61,116,104,105,115,46,95,99,111,110,102,105,103,46,100,101,102,97,117,108,116,73,110,116,101,114,118,97,108,124,124,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,44,102,41,58,116,104,105,115,46,95,99,111,110,102,105,103,46,100,101,102,97,117,108,116,73,110,116,101,114,118,97,108,124,124,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,59,118,97,114,32,100,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,115,41,59,112,40,115,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,41,123,112,40,108,41,46,114,101,109,111,118,101,67,108,97,115,115,40,110,43,34,32,34,43,105,41,46,97,100,100,67,108,97,115,115,40,81,41,44,112,40,115,41,46,114,101,109,111,118,101,67,108,97,115,115,40,81,43,34,32,34,43,105,43,34,32,34,43,110,41,44,114,46,95,105,115,83,108,105,100,105,110,103,61,33,49,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,40,114,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,117,41,125,44,48,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,100,41,125,101,108,115,101,32,112,40,115,41,46,114,101,109,111,118,101,67,108,97,115,115,40,81,41,44,112,40,108,41,46,97,100,100,67,108,97,115,115,40,81,41,44,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,33,49,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,117,41,59,104,38,38,116,104,105,115,46,99,121,99,108,101,40,41,125,125,44,114,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,105,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,120,41,44,101,61,108,40,123,125,44,82,44,112,40,116,104,105,115,41,46,100,97,116,97,40,41,41,59,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,105,38,38,40,101,61,108,40,123,125,44,101,44,105,41,41,59,118,97,114,32,110,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,105,63,105,58,101,46,115,108,105,100,101,59,105,102,40,116,124,124,40,116,61,110,101,119,32,114,40,116,104,105,115,44,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,120,44,116,41,41,44,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,105,41,116,46,116,111,40,105,41,59,101,108,115,101,32,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,116,91,110,93,40,41,125,101,108,115,101,32,101,46,105,110,116,101,114,118,97,108,38,38,101,46,114,105,100,101,38,38,40,116,46,112,97,117,115,101,40,41,44,116,46,99,121,99,108,101,40,41,41,125,41,125,44,114,46,95,100,97,116,97,65,112,105,67,108,105,99,107,72,97,110,100,108,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,41,59,105,102,40,101,41,123,118,97,114,32,110,61,112,40,101,41,91,48,93,59,105,102,40,110,38,38,112,40,110,41,46,104,97,115,67,108,97,115,115,40,75,41,41,123,118,97,114,32,105,61,108,40,123,125,44,112,40,110,41,46,100,97,116,97,40,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,41,41,44,111,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,115,108,105,100,101,45,116,111,34,41,59,111,38,38,40,105,46,105,110,116,101,114,118,97,108,61,33,49,41,44,114,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,110,41,44,105,41,44,111,38,38,112,40,110,41,46,100,97,116,97,40,120,41,46,116,111,40,111,41,44,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,125,125,125,44,115,40,114,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,82,125,125,93,41,44,114,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,113,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,111,116,44,97,116,46,95,100,97,116,97,65,112,105,67,108,105,99,107,72,97,110,100,108,101,114,41,44,112,40,119,105,110,100,111,119,41,46,111,110,40,113,46,76,79,65,68,95,68,65,84,65,95,65,80,73,44,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,114,116,41,41,44,101,61,48,44,110,61,116,46,108,101,110,103,116,104,59,101,60,110,59,101,43,43,41,123,118,97,114,32,105,61,112,40,116,91,101,93,41,59,97,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,105,44,105,46,100,97,116,97,40,41,41,125,125,41,44,112,46,102,110,91,76,93,61,97,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,76,93,46,67,111,110,115,116,114,117,99,116,111,114,61,97,116,44,112,46,102,110,91,76,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,76,93,61,106,44,97,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,108,116,61,34,99,111,108,108,97,112,115,101,34,44,99,116,61,34,98,115,46,99,111,108,108,97,112,115,101,34,44,104,116,61,34,46,34,43,99,116,44,117,116,61,112,46,102,110,91,108,116,93,44,102,116,61,123,116,111,103,103,108,101,58,33,48,44,112,97,114,101,110,116,58,34,34,125,44,100,116,61,123,116,111,103,103,108,101,58,34,98,111,111,108,101,97,110,34,44,112,97,114,101,110,116,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,125,44,112,116,61,123,83,72,79,87,58,34,115,104,111,119,34,43,104,116,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,104,116,44,72,73,68,69,58,34,104,105,100,101,34,43,104,116,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,104,116,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,104,116,43,34,46,100,97,116,97,45,97,112,105,34,125,44,109,116,61,34,115,104,111,119,34,44,103,116,61,34,99,111,108,108,97,112,115,101,34,44,95,116,61,34,99,111,108,108,97,112,115,105,110,103,34,44,118,116,61,34,99,111,108,108,97,112,115,101,100,34,44,121,116,61,34,119,105,100,116,104,34,44,69,116,61,34,104,101,105,103,104,116,34,44,98,116,61,34,46,115,104,111,119,44,32,46,99,111,108,108,97,112,115,105,110,103,34,44,119,116,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,99,111,108,108,97,112,115,101,34,93,39,44,67,116,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,97,40,101,44,116,41,123,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,101,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,116,41,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,99,111,108,108,97,112,115,101,34,93,91,104,114,101,102,61,34,35,39,43,101,46,105,100,43,39,34,93,44,91,100,97,116,97,45,116,111,103,103,108,101,61,34,99,111,108,108,97,112,115,101,34,93,91,100,97,116,97,45,116,97,114,103,101,116,61,34,35,39,43,101,46,105,100,43,39,34,93,39,41,41,59,102,111,114,40,118,97,114,32,110,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,119,116,41,41,44,105,61,48,44,111,61,110,46,108,101,110,103,116,104,59,105,60,111,59,105,43,43,41,123,118,97,114,32,114,61,110,91,105,93,44,115,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,114,41,44,97,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,115,41,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,61,61,101,125,41,59,110,117,108,108,33,61,61,115,38,38,48,60,97,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,61,115,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,46,112,117,115,104,40,114,41,41,125,116,104,105,115,46,95,112,97,114,101,110,116,61,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,63,116,104,105,115,46,95,103,101,116,80,97,114,101,110,116,40,41,58,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,124,124,116,104,105,115,46,95,97,100,100,65,114,105,97,65,110,100,67,111,108,108,97,112,115,101,100,67,108,97,115,115,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,116,111,103,103,108,101,38,38,116,104,105,115,46,116,111,103,103,108,101,40,41,125,118,97,114,32,116,61,97,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,41,123,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,109,116,41,63,116,104,105,115,46,104,105,100,101,40,41,58,116,104,105,115,46,115,104,111,119,40,41,125,44,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,101,44,110,61,116,104,105,115,59,105,102,40,33,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,38,38,33,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,109,116,41,38,38,40,116,104,105,115,46,95,112,97,114,101,110,116,38,38,48,61,61,61,40,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,104,105,115,46,95,112,97,114,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,98,116,41,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,63,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,112,97,114,101,110,116,34,41,61,61,61,110,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,58,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,103,116,41,125,41,41,46,108,101,110,103,116,104,38,38,40,116,61,110,117,108,108,41,44,33,40,116,38,38,40,101,61,112,40,116,41,46,110,111,116,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,41,46,100,97,116,97,40,99,116,41,41,38,38,101,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,41,41,41,123,118,97,114,32,105,61,112,46,69,118,101,110,116,40,112,116,46,83,72,79,87,41,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,105,41,44,33,105,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,116,38,38,40,97,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,116,41,46,110,111,116,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,41,44,34,104,105,100,101,34,41,44,101,124,124,112,40,116,41,46,100,97,116,97,40,99,116,44,110,117,108,108,41,41,59,118,97,114,32,111,61,116,104,105,115,46,95,103,101,116,68,105,109,101,110,115,105,111,110,40,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,103,116,41,46,97,100,100,67,108,97,115,115,40,95,116,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,111,93,61,48,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,46,108,101,110,103,116,104,38,38,112,40,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,41,46,114,101,109,111,118,101,67,108,97,115,115,40,118,116,41,46,97,116,116,114,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,33,48,41,44,116,104,105,115,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,40,33,48,41,59,118,97,114,32,114,61,34,115,99,114,111,108,108,34,43,40,111,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,111,46,115,108,105,99,101,40,49,41,41,44,115,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,41,123,112,40,110,46,95,101,108,101,109,101,110,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,95,116,41,46,97,100,100,67,108,97,115,115,40,103,116,41,46,97,100,100,67,108,97,115,115,40,109,116,41,44,110,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,111,93,61,34,34,44,110,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,40,33,49,41,44,112,40,110,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,112,116,46,83,72,79,87,78,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,115,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,111,93,61,116,104,105,115,46,95,101,108,101,109,101,110,116,91,114,93,43,34,112,120,34,125,125,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,105,102,40,33,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,109,116,41,41,123,118,97,114,32,101,61,112,46,69,118,101,110,116,40,112,116,46,72,73,68,69,41,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,101,41,44,33,101,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,118,97,114,32,110,61,116,104,105,115,46,95,103,101,116,68,105,109,101,110,115,105,111,110,40,41,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,110,93,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,91,110,93,43,34,112,120,34,44,109,46,114,101,102,108,111,119,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,97,100,100,67,108,97,115,115,40,95,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,103,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,109,116,41,59,118,97,114,32,105,61,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,46,108,101,110,103,116,104,59,105,102,40,48,60,105,41,102,111,114,40,118,97,114,32,111,61,48,59,111,60,105,59,111,43,43,41,123,118,97,114,32,114,61,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,91,111,93,44,115,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,114,41,59,105,102,40,110,117,108,108,33,61,61,115,41,112,40,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,115,41,41,41,46,104,97,115,67,108,97,115,115,40,109,116,41,124,124,112,40,114,41,46,97,100,100,67,108,97,115,115,40,118,116,41,46,97,116,116,114,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,33,49,41,125,116,104,105,115,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,40,33,48,41,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,110,93,61,34,34,59,118,97,114,32,97,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,41,123,116,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,40,33,49,41,44,112,40,116,46,95,101,108,101,109,101,110,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,95,116,41,46,97,100,100,67,108,97,115,115,40,103,116,41,46,116,114,105,103,103,101,114,40,112,116,46,72,73,68,68,69,78,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,97,41,125,125,125,44,116,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,116,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,99,116,41,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,95,112,97,114,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,61,110,117,108,108,44,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,110,117,108,108,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,61,108,40,123,125,44,102,116,44,116,41,41,46,116,111,103,103,108,101,61,66,111,111,108,101,97,110,40,116,46,116,111,103,103,108,101,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,108,116,44,116,44,100,116,41,44,116,125,44,116,46,95,103,101,116,68,105,109,101,110,115,105,111,110,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,121,116,41,63,121,116,58,69,116,125,44,116,46,95,103,101,116,80,97,114,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,61,116,104,105,115,59,109,46,105,115,69,108,101,109,101,110,116,40,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,41,63,40,116,61,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,44,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,46,106,113,117,101,114,121,38,38,40,116,61,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,91,48,93,41,41,58,116,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,41,59,118,97,114,32,101,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,99,111,108,108,97,112,115,101,34,93,91,100,97,116,97,45,112,97,114,101,110,116,61,34,39,43,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,43,39,34,93,39,44,105,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,101,41,41,59,114,101,116,117,114,110,32,112,40,105,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,110,46,95,97,100,100,65,114,105,97,65,110,100,67,111,108,108,97,112,115,101,100,67,108,97,115,115,40,97,46,95,103,101,116,84,97,114,103,101,116,70,114,111,109,69,108,101,109,101,110,116,40,101,41,44,91,101,93,41,125,41,44,116,125,44,116,46,95,97,100,100,65,114,105,97,65,110,100,67,111,108,108,97,112,115,101,100,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,112,40,116,41,46,104,97,115,67,108,97,115,115,40,109,116,41,59,101,46,108,101,110,103,116,104,38,38,112,40,101,41,46,116,111,103,103,108,101,67,108,97,115,115,40,118,116,44,33,110,41,46,97,116,116,114,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,110,41,125,44,97,46,95,103,101,116,84,97,114,103,101,116,70,114,111,109,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,41,59,114,101,116,117,114,110,32,101,63,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,101,41,58,110,117,108,108,125,44,97,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,105,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,99,116,41,44,110,61,108,40,123,125,44,102,116,44,116,46,100,97,116,97,40,41,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,105,38,38,105,63,105,58,123,125,41,59,105,102,40,33,101,38,38,110,46,116,111,103,103,108,101,38,38,47,115,104,111,119,124,104,105,100,101,47,46,116,101,115,116,40,105,41,38,38,40,110,46,116,111,103,103,108,101,61,33,49,41,44,101,124,124,40,101,61,110,101,119,32,97,40,116,104,105,115,44,110,41,44,116,46,100,97,116,97,40,99,116,44,101,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,105,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,101,91,105,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,105,43,39,34,39,41,59,101,91,105,93,40,41,125,125,41,125,44,115,40,97,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,116,125,125,93,41,44,97,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,112,116,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,119,116,44,102,117,110,99,116,105,111,110,40,116,41,123,34,65,34,61,61,61,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,46,116,97,103,78,97,109,101,38,38,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,110,61,112,40,116,104,105,115,41,44,101,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,41,44,105,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,101,41,41,59,112,40,105,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,99,116,41,63,34,116,111,103,103,108,101,34,58,110,46,100,97,116,97,40,41,59,67,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,116,44,101,41,125,41,125,41,44,112,46,102,110,91,108,116,93,61,67,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,108,116,93,46,67,111,110,115,116,114,117,99,116,111,114,61,67,116,44,112,46,102,110,91,108,116,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,108,116,93,61,117,116,44,67,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,102,111,114,40,118,97,114,32,84,116,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,44,83,116,61,91,34,69,100,103,101,34,44,34,84,114,105,100,101,110,116,34,44,34,70,105,114,101,102,111,120,34,93,44,68,116,61,48,44,73,116,61,48,59,73,116,60,83,116,46,108,101,110,103,116,104,59,73,116,43,61,49,41,105,102,40,84,116,38,38,48,60,61,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,46,105,110,100,101,120,79,102,40,83,116,91,73,116,93,41,41,123,68,116,61,49,59,98,114,101,97,107,125,118,97,114,32,65,116,61,84,116,38,38,119,105,110,100,111,119,46,80,114,111,109,105,115,101,63,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,33,49,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,101,124,124,40,101,61,33,48,44,119,105,110,100,111,119,46,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,101,61,33,49,44,116,40,41,125,41,41,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,33,49,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,101,124,124,40,101,61,33,48,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,61,33,49,44,116,40,41,125,44,68,116,41,41,125,125,59,102,117,110,99,116,105,111,110,32,79,116,40,116,41,123,114,101,116,117,114,110,32,116,38,38,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,61,61,61,123,125,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,78,116,40,116,44,101,41,123,105,102,40,49,33,61,61,116,46,110,111,100,101,84,121,112,101,41,114,101,116,117,114,110,91,93,59,118,97,114,32,110,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,116,44,110,117,108,108,41,59,114,101,116,117,114,110,32,101,63,110,91,101,93,58,110,125,102,117,110,99,116,105,111,110,32,107,116,40,116,41,123,114,101,116,117,114,110,34,72,84,77,76,34,61,61,61,116,46,110,111,100,101,78,97,109,101,63,116,58,116,46,112,97,114,101,110,116,78,111,100,101,124,124,116,46,104,111,115,116,125,102,117,110,99,116,105,111,110,32,76,116,40,116,41,123,105,102,40,33,116,41,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,98,111,100,121,59,115,119,105,116,99,104,40,116,46,110,111,100,101,78,97,109,101,41,123,99,97,115,101,34,72,84,77,76,34,58,99,97,115,101,34,66,79,68,89,34,58,114,101,116,117,114,110,32,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,98,111,100,121,59,99,97,115,101,34,35,100,111,99,117,109,101,110,116,34,58,114,101,116,117,114,110,32,116,46,98,111,100,121,125,118,97,114,32,101,61,78,116,40,116,41,44,110,61,101,46,111,118,101,114,102,108,111,119,44,105,61,101,46,111,118,101,114,102,108,111,119,88,44,111,61,101,46,111,118,101,114,102,108,111,119,89,59,114,101,116,117,114,110,47,40,97,117,116,111,124,115,99,114,111,108,108,124,111,118,101,114,108,97,121,41,47,46,116,101,115,116,40,110,43,111,43,105,41,63,116,58,76,116,40,107,116,40,116,41,41,125,118,97,114,32,120,116,61,84,116,38,38,33,40,33,119,105,110,100,111,119,46,77,83,73,110,112,117,116,77,101,116,104,111,100,67,111,110,116,101,120,116,124,124,33,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,77,111,100,101,41,44,80,116,61,84,116,38,38,47,77,83,73,69,32,49,48,47,46,116,101,115,116,40,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,41,59,102,117,110,99,116,105,111,110,32,72,116,40,116,41,123,114,101,116,117,114,110,32,49,49,61,61,61,116,63,120,116,58,49,48,61,61,61,116,63,80,116,58,120,116,124,124,80,116,125,102,117,110,99,116,105,111,110,32,106,116,40,116,41,123,105,102,40,33,116,41,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,102,111,114,40,118,97,114,32,101,61,72,116,40,49,48,41,63,100,111,99,117,109,101,110,116,46,98,111,100,121,58,110,117,108,108,44,110,61,116,46,111,102,102,115,101,116,80,97,114,101,110,116,124,124,110,117,108,108,59,110,61,61,61,101,38,38,116,46,110,101,120,116,69,108,101,109,101,110,116,83,105,98,108,105,110,103,59,41,110,61,40,116,61,116,46,110,101,120,116,69,108,101,109,101,110,116,83,105,98,108,105,110,103,41,46,111,102,102,115,101,116,80,97,114,101,110,116,59,118,97,114,32,105,61,110,38,38,110,46,110,111,100,101,78,97,109,101,59,114,101,116,117,114,110,32,105,38,38,34,66,79,68,89,34,33,61,61,105,38,38,34,72,84,77,76,34,33,61,61,105,63,45,49,33,61,61,91,34,84,72,34,44,34,84,68,34,44,34,84,65,66,76,69,34,93,46,105,110,100,101,120,79,102,40,110,46,110,111,100,101,78,97,109,101,41,38,38,34,115,116,97,116,105,99,34,61,61,61,78,116,40,110,44,34,112,111,115,105,116,105,111,110,34,41,63,106,116,40,110,41,58,110,58,116,63,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,58,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,125,102,117,110,99,116,105,111,110,32,82,116,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,46,112,97,114,101,110,116,78,111,100,101,63,82,116,40,116,46,112,97,114,101,110,116,78,111,100,101,41,58,116,125,102,117,110,99,116,105,111,110,32,70,116,40,116,44,101,41,123,105,102,40,33,40,116,38,38,116,46,110,111,100,101,84,121,112,101,38,38,101,38,38,101,46,110,111,100,101,84,121,112,101,41,41,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,118,97,114,32,110,61,116,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,101,41,38,78,111,100,101,46,68,79,67,85,77,69,78,84,95,80,79,83,73,84,73,79,78,95,70,79,76,76,79,87,73,78,71,44,105,61,110,63,116,58,101,44,111,61,110,63,101,58,116,44,114,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,82,97,110,103,101,40,41,59,114,46,115,101,116,83,116,97,114,116,40,105,44,48,41,44,114,46,115,101,116,69,110,100,40,111,44,48,41,59,118,97,114,32,115,44,97,44,108,61,114,46,99,111,109,109,111,110,65,110,99,101,115,116,111,114,67,111,110,116,97,105,110,101,114,59,105,102,40,116,33,61,61,108,38,38,101,33,61,61,108,124,124,105,46,99,111,110,116,97,105,110,115,40,111,41,41,114,101,116,117,114,110,34,66,79,68,89,34,61,61,61,40,97,61,40,115,61,108,41,46,110,111,100,101,78,97,109,101,41,124,124,34,72,84,77,76,34,33,61,61,97,38,38,106,116,40,115,46,102,105,114,115,116,69,108,101,109,101,110,116,67,104,105,108,100,41,33,61,61,115,63,106,116,40,108,41,58,108,59,118,97,114,32,99,61,82,116,40,116,41,59,114,101,116,117,114,110,32,99,46,104,111,115,116,63,70,116,40,99,46,104,111,115,116,44,101,41,58,70,116,40,116,44,82,116,40,101,41,46,104,111,115,116,41,125,102,117,110,99,116,105,111,110,32,77,116,40,116,41,123,118,97,114,32,101,61,34,116,111,112,34,61,61,61,40,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,34,116,111,112,34,41,63,34,115,99,114,111,108,108,84,111,112,34,58,34,115,99,114,111,108,108,76,101,102,116,34,44,110,61,116,46,110,111,100,101,78,97,109,101,59,105,102,40,34,66,79,68,89,34,33,61,61,110,38,38,34,72,84,77,76,34,33,61,61,110,41,114,101,116,117,114,110,32,116,91,101,93,59,118,97,114,32,105,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,114,101,116,117,114,110,40,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,115,99,114,111,108,108,105,110,103,69,108,101,109,101,110,116,124,124,105,41,91,101,93,125,102,117,110,99,116,105,111,110,32,87,116,40,116,44,101,41,123,118,97,114,32,110,61,34,120,34,61,61,61,101,63,34,76,101,102,116,34,58,34,84,111,112,34,44,105,61,34,76,101,102,116,34,61,61,61,110,63,34,82,105,103,104,116,34,58,34,66,111,116,116,111,109,34,59,114,101,116,117,114,110,32,112,97,114,115,101,70,108,111,97,116,40,116,91,34,98,111,114,100,101,114,34,43,110,43,34,87,105,100,116,104,34,93,44,49,48,41,43,112,97,114,115,101,70,108,111,97,116,40,116,91,34,98,111,114,100,101,114,34,43,105,43,34,87,105,100,116,104,34,93,44,49,48,41,125,102,117,110,99,116,105,111,110,32,85,116,40,116,44,101,44,110,44,105,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,101,91,34,111,102,102,115,101,116,34,43,116,93,44,101,91,34,115,99,114,111,108,108,34,43,116,93,44,110,91,34,99,108,105,101,110,116,34,43,116,93,44,110,91,34,111,102,102,115,101,116,34,43,116,93,44,110,91,34,115,99,114,111,108,108,34,43,116,93,44,72,116,40,49,48,41,63,112,97,114,115,101,73,110,116,40,110,91,34,111,102,102,115,101,116,34,43,116,93,41,43,112,97,114,115,101,73,110,116,40,105,91,34,109,97,114,103,105,110,34,43,40,34,72,101,105,103,104,116,34,61,61,61,116,63,34,84,111,112,34,58,34,76,101,102,116,34,41,93,41,43,112,97,114,115,101,73,110,116,40,105,91,34,109,97,114,103,105,110,34,43,40,34,72,101,105,103,104,116,34,61,61,61,116,63,34,66,111,116,116,111,109,34,58,34,82,105,103,104,116,34,41,93,41,58,48,41,125,102,117,110,99,116,105,111,110,32,66,116,40,116,41,123,118,97,114,32,101,61,116,46,98,111,100,121,44,110,61,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,105,61,72,116,40,49,48,41,38,38,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,110,41,59,114,101,116,117,114,110,123,104,101,105,103,104,116,58,85,116,40,34,72,101,105,103,104,116,34,44,101,44,110,44,105,41,44,119,105,100,116,104,58,85,116,40,34,87,105,100,116,104,34,44,101,44,110,44,105,41,125,125,118,97,114,32,113,116,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,101,46,108,101,110,103,116,104,59,110,43,43,41,123,118,97,114,32,105,61,101,91,110,93,59,105,46,101,110,117,109,101,114,97,98,108,101,61,105,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,105,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,105,38,38,40,105,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,105,46,107,101,121,44,105,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,38,38,105,40,116,46,112,114,111,116,111,116,121,112,101,44,101,41,44,110,38,38,105,40,116,44,110,41,44,116,125,125,40,41,44,75,116,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,32,105,110,32,116,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,101,44,123,118,97,108,117,101,58,110,44,101,110,117,109,101,114,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,119,114,105,116,97,98,108,101,58,33,48,125,41,58,116,91,101,93,61,110,44,116,125,44,81,116,61,79,98,106,101,99,116,46,97,115,115,105,103,110,124,124,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,61,49,59,101,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,101,43,43,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,91,101,93,59,102,111,114,40,118,97,114,32,105,32,105,110,32,110,41,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,110,44,105,41,38,38,40,116,91,105,93,61,110,91,105,93,41,125,114,101,116,117,114,110,32,116,125,59,102,117,110,99,116,105,111,110,32,86,116,40,116,41,123,114,101,116,117,114,110,32,81,116,40,123,125,44,116,44,123,114,105,103,104,116,58,116,46,108,101,102,116,43,116,46,119,105,100,116,104,44,98,111,116,116,111,109,58,116,46,116,111,112,43,116,46,104,101,105,103,104,116,125,41,125,102,117,110,99,116,105,111,110,32,89,116,40,116,41,123,118,97,114,32,101,61,123,125,59,116,114,121,123,105,102,40,72,116,40,49,48,41,41,123,101,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,118,97,114,32,110,61,77,116,40,116,44,34,116,111,112,34,41,44,105,61,77,116,40,116,44,34,108,101,102,116,34,41,59,101,46,116,111,112,43,61,110,44,101,46,108,101,102,116,43,61,105,44,101,46,98,111,116,116,111,109,43,61,110,44,101,46,114,105,103,104,116,43,61,105,125,101,108,115,101,32,101,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,125,99,97,116,99,104,40,116,41,123,125,118,97,114,32,111,61,123,108,101,102,116,58,101,46,108,101,102,116,44,116,111,112,58,101,46,116,111,112,44,119,105,100,116,104,58,101,46,114,105,103,104,116,45,101,46,108,101,102,116,44,104,101,105,103,104,116,58,101,46,98,111,116,116,111,109,45,101,46,116,111,112,125,44,114,61,34,72,84,77,76,34,61,61,61,116,46,110,111,100,101,78,97,109,101,63,66,116,40,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,41,58,123,125,44,115,61,114,46,119,105,100,116,104,124,124,116,46,99,108,105,101,110,116,87,105,100,116,104,124,124,111,46,114,105,103,104,116,45,111,46,108,101,102,116,44,97,61,114,46,104,101,105,103,104,116,124,124,116,46,99,108,105,101,110,116,72,101,105,103,104,116,124,124,111,46,98,111,116,116,111,109,45,111,46,116,111,112,44,108,61,116,46,111,102,102,115,101,116,87,105,100,116,104,45,115,44,99,61,116,46,111,102,102,115,101,116,72,101,105,103,104,116,45,97,59,105,102,40,108,124,124,99,41,123,118,97,114,32,104,61,78,116,40,116,41,59,108,45,61,87,116,40,104,44,34,120,34,41,44,99,45,61,87,116,40,104,44,34,121,34,41,44,111,46,119,105,100,116,104,45,61,108,44,111,46,104,101,105,103,104,116,45,61,99,125,114,101,116,117,114,110,32,86,116,40,111,41,125,102,117,110,99,116,105,111,110,32,122,116,40,116,44,101,41,123,118,97,114,32,110,61,50,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,50,93,38,38,97,114,103,117,109,101,110,116,115,91,50,93,44,105,61,72,116,40,49,48,41,44,111,61,34,72,84,77,76,34,61,61,61,101,46,110,111,100,101,78,97,109,101,44,114,61,89,116,40,116,41,44,115,61,89,116,40,101,41,44,97,61,76,116,40,116,41,44,108,61,78,116,40,101,41,44,99,61,112,97,114,115,101,70,108,111,97,116,40,108,46,98,111,114,100,101,114,84,111,112,87,105,100,116,104,44,49,48,41,44,104,61,112,97,114,115,101,70,108,111,97,116,40,108,46,98,111,114,100,101,114,76,101,102,116,87,105,100,116,104,44,49,48,41,59,110,38,38,111,38,38,40,115,46,116,111,112,61,77,97,116,104,46,109,97,120,40,115,46,116,111,112,44,48,41,44,115,46,108,101,102,116,61,77,97,116,104,46,109,97,120,40,115,46,108,101,102,116,44,48,41,41,59,118,97,114,32,117,61,86,116,40,123,116,111,112,58,114,46,116,111,112,45,115,46,116,111,112,45,99,44,108,101,102,116,58,114,46,108,101,102,116,45,115,46,108,101,102,116,45,104,44,119,105,100,116,104,58,114,46,119,105,100,116,104,44,104,101,105,103,104,116,58,114,46,104,101,105,103,104,116,125,41,59,105,102,40,117,46,109,97,114,103,105,110,84,111,112,61,48,44,117,46,109,97,114,103,105,110,76,101,102,116,61,48,44,33,105,38,38,111,41,123,118,97,114,32,102,61,112,97,114,115,101,70,108,111,97,116,40,108,46,109,97,114,103,105,110,84,111,112,44,49,48,41,44,100,61,112,97,114,115,101,70,108,111,97,116,40,108,46,109,97,114,103,105,110,76,101,102,116,44,49,48,41,59,117,46,116,111,112,45,61,99,45,102,44,117,46,98,111,116,116,111,109,45,61,99,45,102,44,117,46,108,101,102,116,45,61,104,45,100,44,117,46,114,105,103,104,116,45,61,104,45,100,44,117,46,109,97,114,103,105,110,84,111,112,61,102,44,117,46,109,97,114,103,105,110,76,101,102,116,61,100,125,114,101,116,117,114,110,40,105,38,38,33,110,63,101,46,99,111,110,116,97,105,110,115,40,97,41,58,101,61,61,61,97,38,38,34,66,79,68,89,34,33,61,61,97,46,110,111,100,101,78,97,109,101,41,38,38,40,117,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,50,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,50,93,38,38,97,114,103,117,109,101,110,116,115,91,50,93,44,105,61,77,116,40,101,44,34,116,111,112,34,41,44,111,61,77,116,40,101,44,34,108,101,102,116,34,41,44,114,61,110,63,45,49,58,49,59,114,101,116,117,114,110,32,116,46,116,111,112,43,61,105,42,114,44,116,46,98,111,116,116,111,109,43,61,105,42,114,44,116,46,108,101,102,116,43,61,111,42,114,44,116,46,114,105,103,104,116,43,61,111,42,114,44,116,125,40,117,44,101,41,41,44,117,125,102,117,110,99,116,105,111,110,32,88,116,40,116,41,123,105,102,40,33,116,124,124,33,116,46,112,97,114,101,110,116,69,108,101,109,101,110,116,124,124,72,116,40,41,41,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,102,111,114,40,118,97,114,32,101,61,116,46,112,97,114,101,110,116,69,108,101,109,101,110,116,59,101,38,38,34,110,111,110,101,34,61,61,61,78,116,40,101,44,34,116,114,97,110,115,102,111,114,109,34,41,59,41,101,61,101,46,112,97,114,101,110,116,69,108,101,109,101,110,116,59,114,101,116,117,114,110,32,101,124,124,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,125,102,117,110,99,116,105,111,110,32,71,116,40,116,44,101,44,110,44,105,41,123,118,97,114,32,111,61,52,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,52,93,38,38,97,114,103,117,109,101,110,116,115,91,52,93,44,114,61,123,116,111,112,58,48,44,108,101,102,116,58,48,125,44,115,61,111,63,88,116,40,116,41,58,70,116,40,116,44,101,41,59,105,102,40,34,118,105,101,119,112,111,114,116,34,61,61,61,105,41,114,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,38,38,97,114,103,117,109,101,110,116,115,91,49,93,44,110,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,105,61,122,116,40,116,44,110,41,44,111,61,77,97,116,104,46,109,97,120,40,110,46,99,108,105,101,110,116,87,105,100,116,104,44,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,124,124,48,41,44,114,61,77,97,116,104,46,109,97,120,40,110,46,99,108,105,101,110,116,72,101,105,103,104,116,44,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,124,124,48,41,44,115,61,101,63,48,58,77,116,40,110,41,44,97,61,101,63,48,58,77,116,40,110,44,34,108,101,102,116,34,41,59,114,101,116,117,114,110,32,86,116,40,123,116,111,112,58,115,45,105,46,116,111,112,43,105,46,109,97,114,103,105,110,84,111,112,44,108,101,102,116,58,97,45,105,46,108,101,102,116,43,105,46,109,97,114,103,105,110,76,101,102,116,44,119,105,100,116,104,58,111,44,104,101,105,103,104,116,58,114,125,41,125,40,115,44,111,41,59,101,108,115,101,123,118,97,114,32,97,61,118,111,105,100,32,48,59,34,115,99,114,111,108,108,80,97,114,101,110,116,34,61,61,61,105,63,34,66,79,68,89,34,61,61,61,40,97,61,76,116,40,107,116,40,101,41,41,41,46,110,111,100,101,78,97,109,101,38,38,40,97,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,41,58,97,61,34,119,105,110,100,111,119,34,61,61,61,105,63,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,58,105,59,118,97,114,32,108,61,122,116,40,97,44,115,44,111,41,59,105,102,40,34,72,84,77,76,34,33,61,61,97,46,110,111,100,101,78,97,109,101,124,124,102,117,110,99,116,105,111,110,32,116,40,101,41,123,118,97,114,32,110,61,101,46,110,111,100,101,78,97,109,101,59,105,102,40,34,66,79,68,89,34,61,61,61,110,124,124,34,72,84,77,76,34,61,61,61,110,41,114,101,116,117,114,110,33,49,59,105,102,40,34,102,105,120,101,100,34,61,61,61,78,116,40,101,44,34,112,111,115,105,116,105,111,110,34,41,41,114,101,116,117,114,110,33,48,59,118,97,114,32,105,61,107,116,40,101,41,59,114,101,116,117,114,110,33,33,105,38,38,116,40,105,41,125,40,115,41,41,114,61,108,59,101,108,115,101,123,118,97,114,32,99,61,66,116,40,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,41,44,104,61,99,46,104,101,105,103,104,116,44,117,61,99,46,119,105,100,116,104,59,114,46,116,111,112,43,61,108,46,116,111,112,45,108,46,109,97,114,103,105,110,84,111,112,44,114,46,98,111,116,116,111,109,61,104,43,108,46,116,111,112,44,114,46,108,101,102,116,43,61,108,46,108,101,102,116,45,108,46,109,97,114,103,105,110,76,101,102,116,44,114,46,114,105,103,104,116,61,117,43,108,46,108,101,102,116,125,125,118,97,114,32,102,61,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,40,110,61,110,124,124,48,41,59,114,101,116,117,114,110,32,114,46,108,101,102,116,43,61,102,63,110,58,110,46,108,101,102,116,124,124,48,44,114,46,116,111,112,43,61,102,63,110,58,110,46,116,111,112,124,124,48,44,114,46,114,105,103,104,116,45,61,102,63,110,58,110,46,114,105,103,104,116,124,124,48,44,114,46,98,111,116,116,111,109,45,61,102,63,110,58,110,46,98,111,116,116,111,109,124,124,48,44,114,125,102,117,110,99,116,105,111,110,32,36,116,40,116,44,101,44,105,44,110,44,111,41,123,118,97,114,32,114,61,53,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,53,93,63,97,114,103,117,109,101,110,116,115,91,53,93,58,48,59,105,102,40,45,49,61,61,61,116,46,105,110,100,101,120,79,102,40,34,97,117,116,111,34,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,115,61,71,116,40,105,44,110,44,114,44,111,41,44,97,61,123,116,111,112,58,123,119,105,100,116,104,58,115,46,119,105,100,116,104,44,104,101,105,103,104,116,58,101,46,116,111,112,45,115,46,116,111,112,125,44,114,105,103,104,116,58,123,119,105,100,116,104,58,115,46,114,105,103,104,116,45,101,46,114,105,103,104,116,44,104,101,105,103,104,116,58,115,46,104,101,105,103,104,116,125,44,98,111,116,116,111,109,58,123,119,105,100,116,104,58,115,46,119,105,100,116,104,44,104,101,105,103,104,116,58,115,46,98,111,116,116,111,109,45,101,46,98,111,116,116,111,109,125,44,108,101,102,116,58,123,119,105,100,116,104,58,101,46,108,101,102,116,45,115,46,108,101,102,116,44,104,101,105,103,104,116,58,115,46,104,101,105,103,104,116,125,125,44,108,61,79,98,106,101,99,116,46,107,101,121,115,40,97,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,81,116,40,123,107,101,121,58,116,125,44,97,91,116,93,44,123,97,114,101,97,58,40,101,61,97,91,116,93,44,101,46,119,105,100,116,104,42,101,46,104,101,105,103,104,116,41,125,41,59,118,97,114,32,101,125,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,101,46,97,114,101,97,45,116,46,97,114,101,97,125,41,44,99,61,108,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,119,105,100,116,104,44,110,61,116,46,104,101,105,103,104,116,59,114,101,116,117,114,110,32,101,62,61,105,46,99,108,105,101,110,116,87,105,100,116,104,38,38,110,62,61,105,46,99,108,105,101,110,116,72,101,105,103,104,116,125,41,44,104,61,48,60,99,46,108,101,110,103,116,104,63,99,91,48,93,46,107,101,121,58,108,91,48,93,46,107,101,121,44,117,61,116,46,115,112,108,105,116,40,34,45,34,41,91,49,93,59,114,101,116,117,114,110,32,104,43,40,117,63,34,45,34,43,117,58,34,34,41,125,102,117,110,99,116,105,111,110,32,74,116,40,116,44,101,44,110,41,123,118,97,114,32,105,61,51,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,51,93,63,97,114,103,117,109,101,110,116,115,91,51,93,58,110,117,108,108,59,114,101,116,117,114,110,32,122,116,40,110,44,105,63,88,116,40,101,41,58,70,116,40,101,44,110,41,44,105,41,125,102,117,110,99,116,105,111,110,32,90,116,40,116,41,123,118,97,114,32,101,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,116,41,44,110,61,112,97,114,115,101,70,108,111,97,116,40,101,46,109,97,114,103,105,110,84,111,112,124,124,48,41,43,112,97,114,115,101,70,108,111,97,116,40,101,46,109,97,114,103,105,110,66,111,116,116,111,109,124,124,48,41,44,105,61,112,97,114,115,101,70,108,111,97,116,40,101,46,109,97,114,103,105,110,76,101,102,116,124,124,48,41,43,112,97,114,115,101,70,108,111,97,116,40,101,46,109,97,114,103,105,110,82,105,103,104,116,124,124,48,41,59,114,101,116,117,114,110,123,119,105,100,116,104,58,116,46,111,102,102,115,101,116,87,105,100,116,104,43,105,44,104,101,105,103,104,116,58,116,46,111,102,102,115,101,116,72,101,105,103,104,116,43,110,125,125,102,117,110,99,116,105,111,110,32,116,101,40,116,41,123,118,97,114,32,101,61,123,108,101,102,116,58,34,114,105,103,104,116,34,44,114,105,103,104,116,58,34,108,101,102,116,34,44,98,111,116,116,111,109,58,34,116,111,112,34,44,116,111,112,58,34,98,111,116,116,111,109,34,125,59,114,101,116,117,114,110,32,116,46,114,101,112,108,97,99,101,40,47,108,101,102,116,124,114,105,103,104,116,124,98,111,116,116,111,109,124,116,111,112,47,103,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,91,116,93,125,41,125,102,117,110,99,116,105,111,110,32,101,101,40,116,44,101,44,110,41,123,110,61,110,46,115,112,108,105,116,40,34,45,34,41,91,48,93,59,118,97,114,32,105,61,90,116,40,116,41,44,111,61,123,119,105,100,116,104,58,105,46,119,105,100,116,104,44,104,101,105,103,104,116,58,105,46,104,101,105,103,104,116,125,44,114,61,45,49,33,61,61,91,34,114,105,103,104,116,34,44,34,108,101,102,116,34,93,46,105,110,100,101,120,79,102,40,110,41,44,115,61,114,63,34,116,111,112,34,58,34,108,101,102,116,34,44,97,61,114,63,34,108,101,102,116,34,58,34,116,111,112,34,44,108,61,114,63,34,104,101,105,103,104,116,34,58,34,119,105,100,116,104,34,44,99,61,114,63,34,119,105,100,116,104,34,58,34,104,101,105,103,104,116,34,59,114,101,116,117,114,110,32,111,91,115,93,61,101,91,115,93,43,101,91,108,93,47,50,45,105,91,108,93,47,50,44,111,91,97,93,61,110,61,61,61,97,63,101,91,97,93,45,105,91,99,93,58,101,91,116,101,40,97,41,93,44,111,125,102,117,110,99,116,105,111,110,32,110,101,40,116,44,101,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,63,116,46,102,105,110,100,40,101,41,58,116,46,102,105,108,116,101,114,40,101,41,91,48,93,125,102,117,110,99,116,105,111,110,32,105,101,40,116,44,110,44,101,41,123,114,101,116,117,114,110,40,118,111,105,100,32,48,61,61,61,101,63,116,58,116,46,115,108,105,99,101,40,48,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,73,110,100,101,120,41,114,101,116,117,114,110,32,116,46,102,105,110,100,73,110,100,101,120,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,91,101,93,61,61,61,110,125,41,59,118,97,114,32,105,61,110,101,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,91,101,93,61,61,61,110,125,41,59,114,101,116,117,114,110,32,116,46,105,110,100,101,120,79,102,40,105,41,125,40,116,44,34,110,97,109,101,34,44,101,41,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,102,117,110,99,116,105,111,110,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,96,109,111,100,105,102,105,101,114,46,102,117,110,99,116,105,111,110,96,32,105,115,32,100,101,112,114,101,99,97,116,101,100,44,32,117,115,101,32,96,109,111,100,105,102,105,101,114,46,102,110,96,33,34,41,59,118,97,114,32,101,61,116,46,102,117,110,99,116,105,111,110,124,124,116,46,102,110,59,116,46,101,110,97,98,108,101,100,38,38,79,116,40,101,41,38,38,40,110,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,86,116,40,110,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,41,44,110,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,61,86,116,40,110,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,41,44,110,61,101,40,110,44,116,41,41,125,41,44,110,125,102,117,110,99,116,105,111,110,32,111,101,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,115,111,109,101,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,110,97,109,101,59,114,101,116,117,114,110,32,116,46,101,110,97,98,108,101,100,38,38,101,61,61,61,110,125,41,125,102,117,110,99,116,105,111,110,32,114,101,40,116,41,123,102,111,114,40,118,97,114,32,101,61,91,33,49,44,34,109,115,34,44,34,87,101,98,107,105,116,34,44,34,77,111,122,34,44,34,79,34,93,44,110,61,116,46,99,104,97,114,65,116,40,48,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,116,46,115,108,105,99,101,40,49,41,44,105,61,48,59,105,60,101,46,108,101,110,103,116,104,59,105,43,43,41,123,118,97,114,32,111,61,101,91,105,93,44,114,61,111,63,34,34,43,111,43,110,58,116,59,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,116,121,108,101,91,114,93,41,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,32,110,117,108,108,125,102,117,110,99,116,105,111,110,32,115,101,40,116,41,123,118,97,114,32,101,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,59,114,101,116,117,114,110,32,101,63,101,46,100,101,102,97,117,108,116,86,105,101,119,58,119,105,110,100,111,119,125,102,117,110,99,116,105,111,110,32,97,101,40,116,44,101,44,110,44,105,41,123,110,46,117,112,100,97,116,101,66,111,117,110,100,61,105,44,115,101,40,116,41,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,114,101,115,105,122,101,34,44,110,46,117,112,100,97,116,101,66,111,117,110,100,44,123,112,97,115,115,105,118,101,58,33,48,125,41,59,118,97,114,32,111,61,76,116,40,116,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,116,40,101,44,110,44,105,44,111,41,123,118,97,114,32,114,61,34,66,79,68,89,34,61,61,61,101,46,110,111,100,101,78,97,109,101,44,115,61,114,63,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,58,101,59,115,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,110,44,105,44,123,112,97,115,115,105,118,101,58,33,48,125,41,44,114,124,124,116,40,76,116,40,115,46,112,97,114,101,110,116,78,111,100,101,41,44,110,44,105,44,111,41,44,111,46,112,117,115,104,40,115,41,125,40,111,44,34,115,99,114,111,108,108,34,44,110,46,117,112,100,97,116,101,66,111,117,110,100,44,110,46,115,99,114,111,108,108,80,97,114,101,110,116,115,41,44,110,46,115,99,114,111,108,108,69,108,101,109,101,110,116,61,111,44,110,46,101,118,101,110,116,115,69,110,97,98,108,101,100,61,33,48,44,110,125,102,117,110,99,116,105,111,110,32,108,101,40,41,123,118,97,114,32,116,44,101,59,116,104,105,115,46,115,116,97,116,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,38,38,40,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,116,104,105,115,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,41,44,116,104,105,115,46,115,116,97,116,101,61,40,116,61,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,101,61,116,104,105,115,46,115,116,97,116,101,44,115,101,40,116,41,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,114,101,115,105,122,101,34,44,101,46,117,112,100,97,116,101,66,111,117,110,100,41,44,101,46,115,99,114,111,108,108,80,97,114,101,110,116,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,115,99,114,111,108,108,34,44,101,46,117,112,100,97,116,101,66,111,117,110,100,41,125,41,44,101,46,117,112,100,97,116,101,66,111,117,110,100,61,110,117,108,108,44,101,46,115,99,114,111,108,108,80,97,114,101,110,116,115,61,91,93,44,101,46,115,99,114,111,108,108,69,108,101,109,101,110,116,61,110,117,108,108,44,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,61,33,49,44,101,41,41,125,102,117,110,99,116,105,111,110,32,99,101,40,116,41,123,114,101,116,117,114,110,34,34,33,61,61,116,38,38,33,105,115,78,97,78,40,112,97,114,115,101,70,108,111,97,116,40,116,41,41,38,38,105,115,70,105,110,105,116,101,40,116,41,125,102,117,110,99,116,105,111,110,32,104,101,40,110,44,105,41,123,79,98,106,101,99,116,46,107,101,121,115,40,105,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,34,34,59,45,49,33,61,61,91,34,119,105,100,116,104,34,44,34,104,101,105,103,104,116,34,44,34,116,111,112,34,44,34,114,105,103,104,116,34,44,34,98,111,116,116,111,109,34,44,34,108,101,102,116,34,93,46,105,110,100,101,120,79,102,40,116,41,38,38,99,101,40,105,91,116,93,41,38,38,40,101,61,34,112,120,34,41,44,110,46,115,116,121,108,101,91,116,93,61,105,91,116,93,43,101,125,41,125,118,97,114,32,117,101,61,84,116,38,38,47,70,105,114,101,102,111,120,47,105,46,116,101,115,116,40,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,41,59,102,117,110,99,116,105,111,110,32,102,101,40,116,44,101,44,110,41,123,118,97,114,32,105,61,110,101,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,110,97,109,101,61,61,61,101,125,41,44,111,61,33,33,105,38,38,116,46,115,111,109,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,110,97,109,101,61,61,61,110,38,38,116,46,101,110,97,98,108,101,100,38,38,116,46,111,114,100,101,114,60,105,46,111,114,100,101,114,125,41,59,105,102,40,33,111,41,123,118,97,114,32,114,61,34,96,34,43,101,43,34,96,34,44,115,61,34,96,34,43,110,43,34,96,34,59,99,111,110,115,111,108,101,46,119,97,114,110,40,115,43,34,32,109,111,100,105,102,105,101,114,32,105,115,32,114,101,113,117,105,114,101,100,32,98,121,32,34,43,114,43,34,32,109,111,100,105,102,105,101,114,32,105,110,32,111,114,100,101,114,32,116,111,32,119,111,114,107,44,32,98,101,32,115,117,114,101,32,116,111,32,105,110,99,108,117,100,101,32,105,116,32,98,101,102,111,114,101,32,34,43,114,43,34,33,34,41,125,114,101,116,117,114,110,32,111,125,118,97,114,32,100,101,61,91,34,97,117,116,111,45,115,116,97,114,116,34,44,34,97,117,116,111,34,44,34,97,117,116,111,45,101,110,100,34,44,34,116,111,112,45,115,116,97,114,116,34,44,34,116,111,112,34,44,34,116,111,112,45,101,110,100,34,44,34,114,105,103,104,116,45,115,116,97,114,116,34,44,34,114,105,103,104,116,34,44,34,114,105,103,104,116,45,101,110,100,34,44,34,98,111,116,116,111,109,45,101,110,100,34,44,34,98,111,116,116,111,109,34,44,34,98,111,116,116,111,109,45,115,116,97,114,116,34,44,34,108,101,102,116,45,101,110,100,34,44,34,108,101,102,116,34,44,34,108,101,102,116,45,115,116,97,114,116,34,93,44,112,101,61,100,101,46,115,108,105,99,101,40,51,41,59,102,117,110,99,116,105,111,110,32,109,101,40,116,41,123,118,97,114,32,101,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,38,38,97,114,103,117,109,101,110,116,115,91,49,93,44,110,61,112,101,46,105,110,100,101,120,79,102,40,116,41,44,105,61,112,101,46,115,108,105,99,101,40,110,43,49,41,46,99,111,110,99,97,116,40,112,101,46,115,108,105,99,101,40,48,44,110,41,41,59,114,101,116,117,114,110,32,101,63,105,46,114,101,118,101,114,115,101,40,41,58,105,125,118,97,114,32,103,101,61,34,102,108,105,112,34,44,95,101,61,34,99,108,111,99,107,119,105,115,101,34,44,118,101,61,34,99,111,117,110,116,101,114,99,108,111,99,107,119,105,115,101,34,59,102,117,110,99,116,105,111,110,32,121,101,40,116,44,111,44,114,44,101,41,123,118,97,114,32,115,61,91,48,44,48,93,44,97,61,45,49,33,61,61,91,34,114,105,103,104,116,34,44,34,108,101,102,116,34,93,46,105,110,100,101,120,79,102,40,101,41,44,110,61,116,46,115,112,108,105,116,40,47,40,92,43,124,92,45,41,47,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,114,105,109,40,41,125,41,44,105,61,110,46,105,110,100,101,120,79,102,40,110,101,40,110,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,45,49,33,61,61,116,46,115,101,97,114,99,104,40,47,44,124,92,115,47,41,125,41,41,59,110,91,105,93,38,38,45,49,61,61,61,110,91,105,93,46,105,110,100,101,120,79,102,40,34,44,34,41,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,79,102,102,115,101,116,115,32,115,101,112,97,114,97,116,101,100,32,98,121,32,119,104,105,116,101,32,115,112,97,99,101,40,115,41,32,97,114,101,32,100,101,112,114,101,99,97,116,101,100,44,32,117,115,101,32,97,32,99,111,109,109,97,32,40,44,41,32,105,110,115,116,101,97,100,46,34,41,59,118,97,114,32,108,61,47,92,115,42,44,92,115,42,124,92,115,43,47,44,99,61,45,49,33,61,61,105,63,91,110,46,115,108,105,99,101,40,48,44,105,41,46,99,111,110,99,97,116,40,91,110,91,105,93,46,115,112,108,105,116,40,108,41,91,48,93,93,41,44,91,110,91,105,93,46,115,112,108,105,116,40,108,41,91,49,93,93,46,99,111,110,99,97,116,40,110,46,115,108,105,99,101,40,105,43,49,41,41,93,58,91,110,93,59,114,101,116,117,114,110,40,99,61,99,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,40,49,61,61,61,101,63,33,97,58,97,41,63,34,104,101,105,103,104,116,34,58,34,119,105,100,116,104,34,44,105,61,33,49,59,114,101,116,117,114,110,32,116,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,34,34,61,61,61,116,91,116,46,108,101,110,103,116,104,45,49,93,38,38,45,49,33,61,61,91,34,43,34,44,34,45,34,93,46,105,110,100,101,120,79,102,40,101,41,63,40,116,91,116,46,108,101,110,103,116,104,45,49,93,61,101,44,105,61,33,48,44,116,41,58,105,63,40,116,91,116,46,108,101,110,103,116,104,45,49,93,43,61,101,44,105,61,33,49,44,116,41,58,116,46,99,111,110,99,97,116,40,101,41,125,44,91,93,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,105,41,123,118,97,114,32,111,61,116,46,109,97,116,99,104,40,47,40,40,63,58,92,45,124,92,43,41,63,92,100,42,92,46,63,92,100,42,41,40,46,42,41,47,41,44,114,61,43,111,91,49,93,44,115,61,111,91,50,93,59,105,102,40,33,114,41,114,101,116,117,114,110,32,116,59,105,102,40,48,33,61,61,115,46,105,110,100,101,120,79,102,40,34,37,34,41,41,114,101,116,117,114,110,34,118,104,34,33,61,61,115,38,38,34,118,119,34,33,61,61,115,63,114,58,40,34,118,104,34,61,61,61,115,63,77,97,116,104,46,109,97,120,40,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,99,108,105,101,110,116,72,101,105,103,104,116,44,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,124,124,48,41,58,77,97,116,104,46,109,97,120,40,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,99,108,105,101,110,116,87,105,100,116,104,44,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,124,124,48,41,41,47,49,48,48,42,114,59,118,97,114,32,97,61,118,111,105,100,32,48,59,115,119,105,116,99,104,40,115,41,123,99,97,115,101,34,37,112,34,58,97,61,110,59,98,114,101,97,107,59,99,97,115,101,34,37,34,58,99,97,115,101,34,37,114,34,58,100,101,102,97,117,108,116,58,97,61,105,125,114,101,116,117,114,110,32,86,116,40,97,41,91,101,93,47,49,48,48,42,114,125,40,116,44,110,44,111,44,114,41,125,41,125,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,110,44,105,41,123,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,99,101,40,116,41,38,38,40,115,91,105,93,43,61,116,42,40,34,45,34,61,61,61,110,91,101,45,49,93,63,45,49,58,49,41,41,125,41,125,41,44,115,125,118,97,114,32,69,101,61,123,112,108,97,99,101,109,101,110,116,58,34,98,111,116,116,111,109,34,44,112,111,115,105,116,105,111,110,70,105,120,101,100,58,33,49,44,101,118,101,110,116,115,69,110,97,98,108,101,100,58,33,48,44,114,101,109,111,118,101,79,110,68,101,115,116,114,111,121,58,33,49,44,111,110,67,114,101,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,125,44,111,110,85,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,125,44,109,111,100,105,102,105,101,114,115,58,123,115,104,105,102,116,58,123,111,114,100,101,114,58,49,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,112,108,97,99,101,109,101,110,116,44,110,61,101,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,105,61,101,46,115,112,108,105,116,40,34,45,34,41,91,49,93,59,105,102,40,105,41,123,118,97,114,32,111,61,116,46,111,102,102,115,101,116,115,44,114,61,111,46,114,101,102,101,114,101,110,99,101,44,115,61,111,46,112,111,112,112,101,114,44,97,61,45,49,33,61,61,91,34,98,111,116,116,111,109,34,44,34,116,111,112,34,93,46,105,110,100,101,120,79,102,40,110,41,44,108,61,97,63,34,108,101,102,116,34,58,34,116,111,112,34,44,99,61,97,63,34,119,105,100,116,104,34,58,34,104,101,105,103,104,116,34,44,104,61,123,115,116,97,114,116,58,75,116,40,123,125,44,108,44,114,91,108,93,41,44,101,110,100,58,75,116,40,123,125,44,108,44,114,91,108,93,43,114,91,99,93,45,115,91,99,93,41,125,59,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,81,116,40,123,125,44,115,44,104,91,105,93,41,125,114,101,116,117,114,110,32,116,125,125,44,111,102,102,115,101,116,58,123,111,114,100,101,114,58,50,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,111,102,102,115,101,116,44,105,61,116,46,112,108,97,99,101,109,101,110,116,44,111,61,116,46,111,102,102,115,101,116,115,44,114,61,111,46,112,111,112,112,101,114,44,115,61,111,46,114,101,102,101,114,101,110,99,101,44,97,61,105,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,108,61,118,111,105,100,32,48,59,114,101,116,117,114,110,32,108,61,99,101,40,43,110,41,63,91,43,110,44,48,93,58,121,101,40,110,44,114,44,115,44,97,41,44,34,108,101,102,116,34,61,61,61,97,63,40,114,46,116,111,112,43,61,108,91,48,93,44,114,46,108,101,102,116,45,61,108,91,49,93,41,58,34,114,105,103,104,116,34,61,61,61,97,63,40,114,46,116,111,112,43,61,108,91,48,93,44,114,46,108,101,102,116,43,61,108,91,49,93,41,58,34,116,111,112,34,61,61,61,97,63,40,114,46,108,101,102,116,43,61,108,91,48,93,44,114,46,116,111,112,45,61,108,91,49,93,41,58,34,98,111,116,116,111,109,34,61,61,61,97,38,38,40,114,46,108,101,102,116,43,61,108,91,48,93,44,114,46,116,111,112,43,61,108,91,49,93,41,44,116,46,112,111,112,112,101,114,61,114,44,116,125,44,111,102,102,115,101,116,58,48,125,44,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,58,123,111,114,100,101,114,58,51,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,44,105,41,123,118,97,114,32,101,61,105,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,124,124,106,116,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,41,59,116,46,105,110,115,116,97,110,99,101,46,114,101,102,101,114,101,110,99,101,61,61,61,101,38,38,40,101,61,106,116,40,101,41,41,59,118,97,114,32,110,61,114,101,40,34,116,114,97,110,115,102,111,114,109,34,41,44,111,61,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,46,115,116,121,108,101,44,114,61,111,46,116,111,112,44,115,61,111,46,108,101,102,116,44,97,61,111,91,110,93,59,111,46,116,111,112,61,34,34,44,111,46,108,101,102,116,61,34,34,44,111,91,110,93,61,34,34,59,118,97,114,32,108,61,71,116,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,116,46,105,110,115,116,97,110,99,101,46,114,101,102,101,114,101,110,99,101,44,105,46,112,97,100,100,105,110,103,44,101,44,116,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,59,111,46,116,111,112,61,114,44,111,46,108,101,102,116,61,115,44,111,91,110,93,61,97,44,105,46,98,111,117,110,100,97,114,105,101,115,61,108,59,118,97,114,32,99,61,105,46,112,114,105,111,114,105,116,121,44,104,61,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,117,61,123,112,114,105,109,97,114,121,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,104,91,116,93,59,114,101,116,117,114,110,32,104,91,116,93,60,108,91,116,93,38,38,33,105,46,101,115,99,97,112,101,87,105,116,104,82,101,102,101,114,101,110,99,101,38,38,40,101,61,77,97,116,104,46,109,97,120,40,104,91,116,93,44,108,91,116,93,41,41,44,75,116,40,123,125,44,116,44,101,41,125,44,115,101,99,111,110,100,97,114,121,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,34,114,105,103,104,116,34,61,61,61,116,63,34,108,101,102,116,34,58,34,116,111,112,34,44,110,61,104,91,101,93,59,114,101,116,117,114,110,32,104,91,116,93,62,108,91,116,93,38,38,33,105,46,101,115,99,97,112,101,87,105,116,104,82,101,102,101,114,101,110,99,101,38,38,40,110,61,77,97,116,104,46,109,105,110,40,104,91,101,93,44,108,91,116,93,45,40,34,114,105,103,104,116,34,61,61,61,116,63,104,46,119,105,100,116,104,58,104,46,104,101,105,103,104,116,41,41,41,44,75,116,40,123,125,44,101,44,110,41,125,125,59,114,101,116,117,114,110,32,99,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,45,49,33,61,61,91,34,108,101,102,116,34,44,34,116,111,112,34,93,46,105,110,100,101,120,79,102,40,116,41,63,34,112,114,105,109,97,114,121,34,58,34,115,101,99,111,110,100,97,114,121,34,59,104,61,81,116,40,123,125,44,104,44,117,91,101,93,40,116,41,41,125,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,104,44,116,125,44,112,114,105,111,114,105,116,121,58,91,34,108,101,102,116,34,44,34,114,105,103,104,116,34,44,34,116,111,112,34,44,34,98,111,116,116,111,109,34,93,44,112,97,100,100,105,110,103,58,53,44,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,34,115,99,114,111,108,108,80,97,114,101,110,116,34,125,44,107,101,101,112,84,111,103,101,116,104,101,114,58,123,111,114,100,101,114,58,52,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,111,102,102,115,101,116,115,44,110,61,101,46,112,111,112,112,101,114,44,105,61,101,46,114,101,102,101,114,101,110,99,101,44,111,61,116,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,114,61,77,97,116,104,46,102,108,111,111,114,44,115,61,45,49,33,61,61,91,34,116,111,112,34,44,34,98,111,116,116,111,109,34,93,46,105,110,100,101,120,79,102,40,111,41,44,97,61,115,63,34,114,105,103,104,116,34,58,34,98,111,116,116,111,109,34,44,108,61,115,63,34,108,101,102,116,34,58,34,116,111,112,34,44,99,61,115,63,34,119,105,100,116,104,34,58,34,104,101,105,103,104,116,34,59,114,101,116,117,114,110,32,110,91,97,93,60,114,40,105,91,108,93,41,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,108,93,61,114,40,105,91,108,93,41,45,110,91,99,93,41,44,110,91,108,93,62,114,40,105,91,97,93,41,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,108,93,61,114,40,105,91,97,93,41,41,44,116,125,125,44,97,114,114,111,119,58,123,111,114,100,101,114,58,53,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,59,105,102,40,33,102,101,40,116,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,34,97,114,114,111,119,34,44,34,107,101,101,112,84,111,103,101,116,104,101,114,34,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,105,61,101,46,101,108,101,109,101,110,116,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,105,41,123,105,102,40,33,40,105,61,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,105,41,41,41,114,101,116,117,114,110,32,116,125,101,108,115,101,32,105,102,40,33,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,46,99,111,110,116,97,105,110,115,40,105,41,41,114,101,116,117,114,110,32,99,111,110,115,111,108,101,46,119,97,114,110,40,34,87,65,82,78,73,78,71,58,32,96,97,114,114,111,119,46,101,108,101,109,101,110,116,96,32,109,117,115,116,32,98,101,32,99,104,105,108,100,32,111,102,32,105,116,115,32,112,111,112,112,101,114,32,101,108,101,109,101,110,116,33,34,41,44,116,59,118,97,114,32,111,61,116,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,114,61,116,46,111,102,102,115,101,116,115,44,115,61,114,46,112,111,112,112,101,114,44,97,61,114,46,114,101,102,101,114,101,110,99,101,44,108,61,45,49,33,61,61,91,34,108,101,102,116,34,44,34,114,105,103,104,116,34,93,46,105,110,100,101,120,79,102,40,111,41,44,99,61,108,63,34,104,101,105,103,104,116,34,58,34,119,105,100,116,104,34,44,104,61,108,63,34,84,111,112,34,58,34,76,101,102,116,34,44,117,61,104,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,102,61,108,63,34,108,101,102,116,34,58,34,116,111,112,34,44,100,61,108,63,34,98,111,116,116,111,109,34,58,34,114,105,103,104,116,34,44,112,61,90,116,40,105,41,91,99,93,59,97,91,100,93,45,112,60,115,91,117,93,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,117,93,45,61,115,91,117,93,45,40,97,91,100,93,45,112,41,41,44,97,91,117,93,43,112,62,115,91,100,93,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,117,93,43,61,97,91,117,93,43,112,45,115,91,100,93,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,86,116,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,41,59,118,97,114,32,109,61,97,91,117,93,43,97,91,99,93,47,50,45,112,47,50,44,103,61,78,116,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,41,44,95,61,112,97,114,115,101,70,108,111,97,116,40,103,91,34,109,97,114,103,105,110,34,43,104,93,44,49,48,41,44,118,61,112,97,114,115,101,70,108,111,97,116,40,103,91,34,98,111,114,100,101,114,34,43,104,43,34,87,105,100,116,104,34,93,44,49,48,41,44,121,61,109,45,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,117,93,45,95,45,118,59,114,101,116,117,114,110,32,121,61,77,97,116,104,46,109,97,120,40,77,97,116,104,46,109,105,110,40,115,91,99,93,45,112,44,121,41,44,48,41,44,116,46,97,114,114,111,119,69,108,101,109,101,110,116,61,105,44,116,46,111,102,102,115,101,116,115,46,97,114,114,111,119,61,40,75,116,40,110,61,123,125,44,117,44,77,97,116,104,46,114,111,117,110,100,40,121,41,41,44,75,116,40,110,44,102,44,34,34,41,44,110,41,44,116,125,44,101,108,101,109,101,110,116,58,34,91,120,45,97,114,114,111,119,93,34,125,44,102,108,105,112,58,123,111,114,100,101,114,58,54,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,112,44,109,41,123,105,102,40,111,101,40,112,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,34,105,110,110,101,114,34,41,41,114,101,116,117,114,110,32,112,59,105,102,40,112,46,102,108,105,112,112,101,100,38,38,112,46,112,108,97,99,101,109,101,110,116,61,61,61,112,46,111,114,105,103,105,110,97,108,80,108,97,99,101,109,101,110,116,41,114,101,116,117,114,110,32,112,59,118,97,114,32,103,61,71,116,40,112,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,112,46,105,110,115,116,97,110,99,101,46,114,101,102,101,114,101,110,99,101,44,109,46,112,97,100,100,105,110,103,44,109,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,44,112,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,44,95,61,112,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,118,61,116,101,40,95,41,44,121,61,112,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,49,93,124,124,34,34,44,69,61,91,93,59,115,119,105,116,99,104,40,109,46,98,101,104,97,118,105,111,114,41,123,99,97,115,101,32,103,101,58,69,61,91,95,44,118,93,59,98,114,101,97,107,59,99,97,115,101,32,95,101,58,69,61,109,101,40,95,41,59,98,114,101,97,107,59,99,97,115,101,32,118,101,58,69,61,109,101,40,95,44,33,48,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,69,61,109,46,98,101,104,97,118,105,111,114,125,114,101,116,117,114,110,32,69,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,95,33,61,61,116,124,124,69,46,108,101,110,103,116,104,61,61,61,101,43,49,41,114,101,116,117,114,110,32,112,59,95,61,112,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,118,61,116,101,40,95,41,59,118,97,114,32,110,44,105,61,112,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,111,61,112,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,114,61,77,97,116,104,46,102,108,111,111,114,44,115,61,34,108,101,102,116,34,61,61,61,95,38,38,114,40,105,46,114,105,103,104,116,41,62,114,40,111,46,108,101,102,116,41,124,124,34,114,105,103,104,116,34,61,61,61,95,38,38,114,40,105,46,108,101,102,116,41,60,114,40,111,46,114,105,103,104,116,41,124,124,34,116,111,112,34,61,61,61,95,38,38,114,40,105,46,98,111,116,116,111,109,41,62,114,40,111,46,116,111,112,41,124,124,34,98,111,116,116,111,109,34,61,61,61,95,38,38,114,40,105,46,116,111,112,41,60,114,40,111,46,98,111,116,116,111,109,41,44,97,61,114,40,105,46,108,101,102,116,41,60,114,40,103,46,108,101,102,116,41,44,108,61,114,40,105,46,114,105,103,104,116,41,62,114,40,103,46,114,105,103,104,116,41,44,99,61,114,40,105,46,116,111,112,41,60,114,40,103,46,116,111,112,41,44,104,61,114,40,105,46,98,111,116,116,111,109,41,62,114,40,103,46,98,111,116,116,111,109,41,44,117,61,34,108,101,102,116,34,61,61,61,95,38,38,97,124,124,34,114,105,103,104,116,34,61,61,61,95,38,38,108,124,124,34,116,111,112,34,61,61,61,95,38,38,99,124,124,34,98,111,116,116,111,109,34,61,61,61,95,38,38,104,44,102,61,45,49,33,61,61,91,34,116,111,112,34,44,34,98,111,116,116,111,109,34,93,46,105,110,100,101,120,79,102,40,95,41,44,100,61,33,33,109,46,102,108,105,112,86,97,114,105,97,116,105,111,110,115,38,38,40,102,38,38,34,115,116,97,114,116,34,61,61,61,121,38,38,97,124,124,102,38,38,34,101,110,100,34,61,61,61,121,38,38,108,124,124,33,102,38,38,34,115,116,97,114,116,34,61,61,61,121,38,38,99,124,124,33,102,38,38,34,101,110,100,34,61,61,61,121,38,38,104,41,59,40,115,124,124,117,124,124,100,41,38,38,40,112,46,102,108,105,112,112,101,100,61,33,48,44,40,115,124,124,117,41,38,38,40,95,61,69,91,101,43,49,93,41,44,100,38,38,40,121,61,34,101,110,100,34,61,61,61,40,110,61,121,41,63,34,115,116,97,114,116,34,58,34,115,116,97,114,116,34,61,61,61,110,63,34,101,110,100,34,58,110,41,44,112,46,112,108,97,99,101,109,101,110,116,61,95,43,40,121,63,34,45,34,43,121,58,34,34,41,44,112,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,81,116,40,123,125,44,112,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,101,101,40,112,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,112,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,112,46,112,108,97,99,101,109,101,110,116,41,41,44,112,61,105,101,40,112,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,112,44,34,102,108,105,112,34,41,41,125,41,44,112,125,44,98,101,104,97,118,105,111,114,58,34,102,108,105,112,34,44,112,97,100,100,105,110,103,58,53,44,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,34,118,105,101,119,112,111,114,116,34,125,44,105,110,110,101,114,58,123,111,114,100,101,114,58,55,48,48,44,101,110,97,98,108,101,100,58,33,49,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,112,108,97,99,101,109,101,110,116,44,110,61,101,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,105,61,116,46,111,102,102,115,101,116,115,44,111,61,105,46,112,111,112,112,101,114,44,114,61,105,46,114,101,102,101,114,101,110,99,101,44,115,61,45,49,33,61,61,91,34,108,101,102,116,34,44,34,114,105,103,104,116,34,93,46,105,110,100,101,120,79,102,40,110,41,44,97,61,45,49,61,61,61,91,34,116,111,112,34,44,34,108,101,102,116,34,93,46,105,110,100,101,120,79,102,40,110,41,59,114,101,116,117,114,110,32,111,91,115,63,34,108,101,102,116,34,58,34,116,111,112,34,93,61,114,91,110,93,45,40,97,63,111,91,115,63,34,119,105,100,116,104,34,58,34,104,101,105,103,104,116,34,93,58,48,41,44,116,46,112,108,97,99,101,109,101,110,116,61,116,101,40,101,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,86,116,40,111,41,44,116,125,125,44,104,105,100,101,58,123,111,114,100,101,114,58,56,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,102,101,40,116,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,34,104,105,100,101,34,44,34,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,34,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,101,61,116,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,110,61,110,101,40,116,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,34,61,61,61,116,46,110,97,109,101,125,41,46,98,111,117,110,100,97,114,105,101,115,59,105,102,40,101,46,98,111,116,116,111,109,60,110,46,116,111,112,124,124,101,46,108,101,102,116,62,110,46,114,105,103,104,116,124,124,101,46,116,111,112,62,110,46,98,111,116,116,111,109,124,124,101,46,114,105,103,104,116,60,110,46,108,101,102,116,41,123,105,102,40,33,48,61,61,61,116,46,104,105,100,101,41,114,101,116,117,114,110,32,116,59,116,46,104,105,100,101,61,33,48,44,116,46,97,116,116,114,105,98,117,116,101,115,91,34,120,45,111,117,116,45,111,102,45,98,111,117,110,100,97,114,105,101,115,34,93,61,34,34,125,101,108,115,101,123,105,102,40,33,49,61,61,61,116,46,104,105,100,101,41,114,101,116,117,114,110,32,116,59,116,46,104,105,100,101,61,33,49,44,116,46,97,116,116,114,105,98,117,116,101,115,91,34,120,45,111,117,116,45,111,102,45,98,111,117,110,100,97,114,105,101,115,34,93,61,33,49,125,114,101,116,117,114,110,32,116,125,125,44,99,111,109,112,117,116,101,83,116,121,108,101,58,123,111,114,100,101,114,58,56,53,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,120,44,105,61,101,46,121,44,111,61,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,114,61,110,101,40,116,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,97,112,112,108,121,83,116,121,108,101,34,61,61,61,116,46,110,97,109,101,125,41,46,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,59,118,111,105,100,32,48,33,61,61,114,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,87,65,82,78,73,78,71,58,32,96,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,96,32,111,112,116,105,111,110,32,109,111,118,101,100,32,116,111,32,96,99,111,109,112,117,116,101,83,116,121,108,101,96,32,109,111,100,105,102,105,101,114,32,97,110,100,32,119,105,108,108,32,110,111,116,32,98,101,32,115,117,112,112,111,114,116,101,100,32,105,110,32,102,117,116,117,114,101,32,118,101,114,115,105,111,110,115,32,111,102,32,80,111,112,112,101,114,46,106,115,33,34,41,59,118,97,114,32,115,44,97,44,108,44,99,44,104,44,117,44,102,44,100,44,112,44,109,44,103,44,95,44,118,44,121,44,69,61,118,111,105,100,32,48,33,61,61,114,63,114,58,101,46,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,44,98,61,106,116,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,41,44,119,61,89,116,40,98,41,44,67,61,123,112,111,115,105,116,105,111,110,58,111,46,112,111,115,105,116,105,111,110,125,44,84,61,40,115,61,116,44,97,61,119,105,110,100,111,119,46,100,101,118,105,99,101,80,105,120,101,108,82,97,116,105,111,60,50,124,124,33,117,101,44,108,61,115,46,111,102,102,115,101,116,115,44,99,61,108,46,112,111,112,112,101,114,44,104,61,108,46,114,101,102,101,114,101,110,99,101,44,117,61,77,97,116,104,46,114,111,117,110,100,44,102,61,77,97,116,104,46,102,108,111,111,114,44,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,44,112,61,117,40,104,46,119,105,100,116,104,41,44,109,61,117,40,99,46,119,105,100,116,104,41,44,103,61,45,49,33,61,61,91,34,108,101,102,116,34,44,34,114,105,103,104,116,34,93,46,105,110,100,101,120,79,102,40,115,46,112,108,97,99,101,109,101,110,116,41,44,95,61,45,49,33,61,61,115,46,112,108,97,99,101,109,101,110,116,46,105,110,100,101,120,79,102,40,34,45,34,41,44,121,61,97,63,117,58,100,44,123,108,101,102,116,58,40,118,61,97,63,103,124,124,95,124,124,112,37,50,61,61,109,37,50,63,117,58,102,58,100,41,40,112,37,50,61,61,49,38,38,109,37,50,61,61,49,38,38,33,95,38,38,97,63,99,46,108,101,102,116,45,49,58,99,46,108,101,102,116,41,44,116,111,112,58,121,40,99,46,116,111,112,41,44,98,111,116,116,111,109,58,121,40,99,46,98,111,116,116,111,109,41,44,114,105,103,104,116,58,118,40,99,46,114,105,103,104,116,41,125,41,44,83,61,34,98,111,116,116,111,109,34,61,61,61,110,63,34,116,111,112,34,58,34,98,111,116,116,111,109,34,44,68,61,34,114,105,103,104,116,34,61,61,61,105,63,34,108,101,102,116,34,58,34,114,105,103,104,116,34,44,73,61,114,101,40,34,116,114,97,110,115,102,111,114,109,34,41,44,65,61,118,111,105,100,32,48,44,79,61,118,111,105,100,32,48,59,105,102,40,79,61,34,98,111,116,116,111,109,34,61,61,61,83,63,34,72,84,77,76,34,61,61,61,98,46,110,111,100,101,78,97,109,101,63,45,98,46,99,108,105,101,110,116,72,101,105,103,104,116,43,84,46,98,111,116,116,111,109,58,45,119,46,104,101,105,103,104,116,43,84,46,98,111,116,116,111,109,58,84,46,116,111,112,44,65,61,34,114,105,103,104,116,34,61,61,61,68,63,34,72,84,77,76,34,61,61,61,98,46,110,111,100,101,78,97,109,101,63,45,98,46,99,108,105,101,110,116,87,105,100,116,104,43,84,46,114,105,103,104,116,58,45,119,46,119,105,100,116,104,43,84,46,114,105,103,104,116,58,84,46,108,101,102,116,44,69,38,38,73,41,67,91,73,93,61,34,116,114,97,110,115,108,97,116,101,51,100,40,34,43,65,43,34,112,120,44,32,34,43,79,43,34,112,120,44,32,48,41,34,44,67,91,83,93,61,48,44,67,91,68,93,61,48,44,67,46,119,105,108,108,67,104,97,110,103,101,61,34,116,114,97,110,115,102,111,114,109,34,59,101,108,115,101,123,118,97,114,32,78,61,34,98,111,116,116,111,109,34,61,61,61,83,63,45,49,58,49,44,107,61,34,114,105,103,104,116,34,61,61,61,68,63,45,49,58,49,59,67,91,83,93,61,79,42,78,44,67,91,68,93,61,65,42,107,44,67,46,119,105,108,108,67,104,97,110,103,101,61,83,43,34,44,32,34,43,68,125,118,97,114,32,76,61,123,34,120,45,112,108,97,99,101,109,101,110,116,34,58,116,46,112,108,97,99,101,109,101,110,116,125,59,114,101,116,117,114,110,32,116,46,97,116,116,114,105,98,117,116,101,115,61,81,116,40,123,125,44,76,44,116,46,97,116,116,114,105,98,117,116,101,115,41,44,116,46,115,116,121,108,101,115,61,81,116,40,123,125,44,67,44,116,46,115,116,121,108,101,115,41,44,116,46,97,114,114,111,119,83,116,121,108,101,115,61,81,116,40,123,125,44,116,46,111,102,102,115,101,116,115,46,97,114,114,111,119,44,116,46,97,114,114,111,119,83,116,121,108,101,115,41,44,116,125,44,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,58,33,48,44,120,58,34,98,111,116,116,111,109,34,44,121,58,34,114,105,103,104,116,34,125,44,97,112,112,108,121,83,116,121,108,101,58,123,111,114,100,101,114,58,57,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,59,114,101,116,117,114,110,32,104,101,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,116,46,115,116,121,108,101,115,41,44,101,61,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,110,61,116,46,97,116,116,114,105,98,117,116,101,115,44,79,98,106,101,99,116,46,107,101,121,115,40,110,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,33,49,33,61,61,110,91,116,93,63,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,116,44,110,91,116,93,41,58,101,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,41,125,41,44,116,46,97,114,114,111,119,69,108,101,109,101,110,116,38,38,79,98,106,101,99,116,46,107,101,121,115,40,116,46,97,114,114,111,119,83,116,121,108,101,115,41,46,108,101,110,103,116,104,38,38,104,101,40,116,46,97,114,114,111,119,69,108,101,109,101,110,116,44,116,46,97,114,114,111,119,83,116,121,108,101,115,41,44,116,125,44,111,110,76,111,97,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,105,44,111,41,123,118,97,114,32,114,61,74,116,40,111,44,101,44,116,44,110,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,44,115,61,36,116,40,110,46,112,108,97,99,101,109,101,110,116,44,114,44,101,44,116,44,110,46,109,111,100,105,102,105,101,114,115,46,102,108,105,112,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,44,110,46,109,111,100,105,102,105,101,114,115,46,102,108,105,112,46,112,97,100,100,105,110,103,41,59,114,101,116,117,114,110,32,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,120,45,112,108,97,99,101,109,101,110,116,34,44,115,41,44,104,101,40,101,44,123,112,111,115,105,116,105,111,110,58,110,46,112,111,115,105,116,105,111,110,70,105,120,101,100,63,34,102,105,120,101,100,34,58,34,97,98,115,111,108,117,116,101,34,125,41,44,110,125,44,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,58,118,111,105,100,32,48,125,125,125,44,98,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,114,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,44,105,61,50,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,50,93,63,97,114,103,117,109,101,110,116,115,91,50,93,58,123,125,59,33,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,40,116,32,105,110,115,116,97,110,99,101,111,102,32,101,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,40,116,104,105,115,44,114,41,44,116,104,105,115,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,110,46,117,112,100,97,116,101,41,125,44,116,104,105,115,46,117,112,100,97,116,101,61,65,116,40,116,104,105,115,46,117,112,100,97,116,101,46,98,105,110,100,40,116,104,105,115,41,41,44,116,104,105,115,46,111,112,116,105,111,110,115,61,81,116,40,123,125,44,114,46,68,101,102,97,117,108,116,115,44,105,41,44,116,104,105,115,46,115,116,97,116,101,61,123,105,115,68,101,115,116,114,111,121,101,100,58,33,49,44,105,115,67,114,101,97,116,101,100,58,33,49,44,115,99,114,111,108,108,80,97,114,101,110,116,115,58,91,93,125,44,116,104,105,115,46,114,101,102,101,114,101,110,99,101,61,116,38,38,116,46,106,113,117,101,114,121,63,116,91,48,93,58,116,44,116,104,105,115,46,112,111,112,112,101,114,61,101,38,38,101,46,106,113,117,101,114,121,63,101,91,48,93,58,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,61,123,125,44,79,98,106,101,99,116,46,107,101,121,115,40,81,116,40,123,125,44,114,46,68,101,102,97,117,108,116,115,46,109,111,100,105,102,105,101,114,115,44,105,46,109,111,100,105,102,105,101,114,115,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,110,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,91,116,93,61,81,116,40,123,125,44,114,46,68,101,102,97,117,108,116,115,46,109,111,100,105,102,105,101,114,115,91,116,93,124,124,123,125,44,105,46,109,111,100,105,102,105,101,114,115,63,105,46,109,111,100,105,102,105,101,114,115,91,116,93,58,123,125,41,125,41,44,116,104,105,115,46,109,111,100,105,102,105,101,114,115,61,79,98,106,101,99,116,46,107,101,121,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,81,116,40,123,110,97,109,101,58,116,125,44,110,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,91,116,93,41,125,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,111,114,100,101,114,45,101,46,111,114,100,101,114,125,41,44,116,104,105,115,46,109,111,100,105,102,105,101,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,110,97,98,108,101,100,38,38,79,116,40,116,46,111,110,76,111,97,100,41,38,38,116,46,111,110,76,111,97,100,40,110,46,114,101,102,101,114,101,110,99,101,44,110,46,112,111,112,112,101,114,44,110,46,111,112,116,105,111,110,115,44,116,44,110,46,115,116,97,116,101,41,125,41,44,116,104,105,115,46,117,112,100,97,116,101,40,41,59,118,97,114,32,111,61,116,104,105,115,46,111,112,116,105,111,110,115,46,101,118,101,110,116,115,69,110,97,98,108,101,100,59,111,38,38,116,104,105,115,46,101,110,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,44,116,104,105,115,46,115,116,97,116,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,61,111,125,114,101,116,117,114,110,32,113,116,40,114,44,91,123,107,101,121,58,34,117,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,115,116,97,116,101,46,105,115,68,101,115,116,114,111,121,101,100,41,123,118,97,114,32,116,61,123,105,110,115,116,97,110,99,101,58,116,104,105,115,44,115,116,121,108,101,115,58,123,125,44,97,114,114,111,119,83,116,121,108,101,115,58,123,125,44,97,116,116,114,105,98,117,116,101,115,58,123,125,44,102,108,105,112,112,101,100,58,33,49,44,111,102,102,115,101,116,115,58,123,125,125,59,116,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,61,74,116,40,116,104,105,115,46,115,116,97,116,101,44,116,104,105,115,46,112,111,112,112,101,114,44,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,44,116,46,112,108,97,99,101,109,101,110,116,61,36,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,112,108,97,99,101,109,101,110,116,44,116,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,116,104,105,115,46,112,111,112,112,101,114,44,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,46,102,108,105,112,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,46,102,108,105,112,46,112,97,100,100,105,110,103,41,44,116,46,111,114,105,103,105,110,97,108,80,108,97,99,101,109,101,110,116,61,116,46,112,108,97,99,101,109,101,110,116,44,116,46,112,111,115,105,116,105,111,110,70,105,120,101,100,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,70,105,120,101,100,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,101,101,40,116,104,105,115,46,112,111,112,112,101,114,44,116,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,116,46,112,108,97,99,101,109,101,110,116,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,46,112,111,115,105,116,105,111,110,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,70,105,120,101,100,63,34,102,105,120,101,100,34,58,34,97,98,115,111,108,117,116,101,34,44,116,61,105,101,40,116,104,105,115,46,109,111,100,105,102,105,101,114,115,44,116,41,44,116,104,105,115,46,115,116,97,116,101,46,105,115,67,114,101,97,116,101,100,63,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,40,116,41,58,40,116,104,105,115,46,115,116,97,116,101,46,105,115,67,114,101,97,116,101,100,61,33,48,44,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,114,101,97,116,101,40,116,41,41,125,125,46,99,97,108,108,40,116,104,105,115,41,125,125,44,123,107,101,121,58,34,100,101,115,116,114,111,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,46,105,115,68,101,115,116,114,111,121,101,100,61,33,48,44,111,101,40,116,104,105,115,46,109,111,100,105,102,105,101,114,115,44,34,97,112,112,108,121,83,116,121,108,101,34,41,38,38,40,116,104,105,115,46,112,111,112,112,101,114,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,120,45,112,108,97,99,101,109,101,110,116,34,41,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,112,111,115,105,116,105,111,110,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,116,111,112,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,108,101,102,116,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,114,105,103,104,116,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,98,111,116,116,111,109,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,119,105,108,108,67,104,97,110,103,101,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,91,114,101,40,34,116,114,97,110,115,102,111,114,109,34,41,93,61,34,34,41,44,116,104,105,115,46,100,105,115,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,114,101,109,111,118,101,79,110,68,101,115,116,114,111,121,38,38,116,104,105,115,46,112,111,112,112,101,114,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,104,105,115,46,112,111,112,112,101,114,41,44,116,104,105,115,125,46,99,97,108,108,40,116,104,105,115,41,125,125,44,123,107,101,121,58,34,101,110,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,97,116,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,124,124,40,116,104,105,115,46,115,116,97,116,101,61,97,101,40,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,116,104,105,115,46,111,112,116,105,111,110,115,44,116,104,105,115,46,115,116,97,116,101,44,116,104,105,115,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,41,41,125,46,99,97,108,108,40,116,104,105,115,41,125,125,44,123,107,101,121,58,34,100,105,115,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,108,101,46,99,97,108,108,40,116,104,105,115,41,125,125,93,41,44,114,125,40,41,59,98,101,46,85,116,105,108,115,61,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,103,108,111,98,97,108,41,46,80,111,112,112,101,114,85,116,105,108,115,44,98,101,46,112,108,97,99,101,109,101,110,116,115,61,100,101,44,98,101,46,68,101,102,97,117,108,116,115,61,69,101,59,118,97,114,32,119,101,61,34,100,114,111,112,100,111,119,110,34,44,67,101,61,34,98,115,46,100,114,111,112,100,111,119,110,34,44,84,101,61,34,46,34,43,67,101,44,83,101,61,34,46,100,97,116,97,45,97,112,105,34,44,68,101,61,112,46,102,110,91,119,101,93,44,73,101,61,110,101,119,32,82,101,103,69,120,112,40,34,51,56,124,52,48,124,50,55,34,41,44,65,101,61,123,72,73,68,69,58,34,104,105,100,101,34,43,84,101,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,84,101,44,83,72,79,87,58,34,115,104,111,119,34,43,84,101,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,84,101,44,67,76,73,67,75,58,34,99,108,105,99,107,34,43,84,101,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,84,101,43,83,101,44,75,69,89,68,79,87,78,95,68,65,84,65,95,65,80,73,58,34,107,101,121,100,111,119,110,34,43,84,101,43,83,101,44,75,69,89,85,80,95,68,65,84,65,95,65,80,73,58,34,107,101,121,117,112,34,43,84,101,43,83,101,125,44,79,101,61,34,100,105,115,97,98,108,101,100,34,44,78,101,61,34,115,104,111,119,34,44,107,101,61,34,100,114,111,112,117,112,34,44,76,101,61,34,100,114,111,112,114,105,103,104,116,34,44,120,101,61,34,100,114,111,112,108,101,102,116,34,44,80,101,61,34,100,114,111,112,100,111,119,110,45,109,101,110,117,45,114,105,103,104,116,34,44,72,101,61,34,112,111,115,105,116,105,111,110,45,115,116,97,116,105,99,34,44,106,101,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,100,114,111,112,100,111,119,110,34,93,39,44,82,101,61,34,46,100,114,111,112,100,111,119,110,32,102,111,114,109,34,44,70,101,61,34,46,100,114,111,112,100,111,119,110,45,109,101,110,117,34,44,77,101,61,34,46,110,97,118,98,97,114,45,110,97,118,34,44,87,101,61,34,46,100,114,111,112,100,111,119,110,45,109,101,110,117,32,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,34,44,85,101,61,34,116,111,112,45,115,116,97,114,116,34,44,66,101,61,34,116,111,112,45,101,110,100,34,44,113,101,61,34,98,111,116,116,111,109,45,115,116,97,114,116,34,44,75,101,61,34,98,111,116,116,111,109,45,101,110,100,34,44,81,101,61,34,114,105,103,104,116,45,115,116,97,114,116,34,44,86,101,61,34,108,101,102,116,45,115,116,97,114,116,34,44,89,101,61,123,111,102,102,115,101,116,58,48,44,102,108,105,112,58,33,48,44,98,111,117,110,100,97,114,121,58,34,115,99,114,111,108,108,80,97,114,101,110,116,34,44,114,101,102,101,114,101,110,99,101,58,34,116,111,103,103,108,101,34,44,100,105,115,112,108,97,121,58,34,100,121,110,97,109,105,99,34,125,44,122,101,61,123,111,102,102,115,101,116,58,34,40,110,117,109,98,101,114,124,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,41,34,44,102,108,105,112,58,34,98,111,111,108,101,97,110,34,44,98,111,117,110,100,97,114,121,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,44,114,101,102,101,114,101,110,99,101,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,44,100,105,115,112,108,97,121,58,34,115,116,114,105,110,103,34,125,44,88,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,99,40,116,44,101,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,109,101,110,117,61,116,104,105,115,46,95,103,101,116,77,101,110,117,69,108,101,109,101,110,116,40,41,44,116,104,105,115,46,95,105,110,78,97,118,98,97,114,61,116,104,105,115,46,95,100,101,116,101,99,116,78,97,118,98,97,114,40,41,44,116,104,105,115,46,95,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,125,118,97,114,32,116,61,99,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,95,101,108,101,109,101,110,116,46,100,105,115,97,98,108,101,100,38,38,33,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,79,101,41,41,123,118,97,114,32,116,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,101,61,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,78,101,41,59,105,102,40,99,46,95,99,108,101,97,114,77,101,110,117,115,40,41,44,33,101,41,123,118,97,114,32,110,61,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,104,105,115,46,95,101,108,101,109,101,110,116,125,44,105,61,112,46,69,118,101,110,116,40,65,101,46,83,72,79,87,44,110,41,59,105,102,40,112,40,116,41,46,116,114,105,103,103,101,114,40,105,41,44,33,105,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,105,102,40,33,116,104,105,115,46,95,105,110,78,97,118,98,97,114,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,98,101,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,66,111,111,116,115,116,114,97,112,39,115,32,100,114,111,112,100,111,119,110,115,32,114,101,113,117,105,114,101,32,80,111,112,112,101,114,46,106,115,32,40,104,116,116,112,115,58,47,47,112,111,112,112,101,114,46,106,115,46,111,114,103,47,41,34,41,59,118,97,114,32,111,61,116,104,105,115,46,95,101,108,101,109,101,110,116,59,34,112,97,114,101,110,116,34,61,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,63,111,61,116,58,109,46,105,115,69,108,101,109,101,110,116,40,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,41,38,38,40,111,61,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,44,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,46,106,113,117,101,114,121,38,38,40,111,61,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,91,48,93,41,41,44,34,115,99,114,111,108,108,80,97,114,101,110,116,34,33,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,98,111,117,110,100,97,114,121,38,38,112,40,116,41,46,97,100,100,67,108,97,115,115,40,72,101,41,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,101,119,32,98,101,40,111,44,116,104,105,115,46,95,109,101,110,117,44,116,104,105,115,46,95,103,101,116,80,111,112,112,101,114,67,111,110,102,105,103,40,41,41,125,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,48,61,61,61,112,40,116,41,46,99,108,111,115,101,115,116,40,77,101,41,46,108,101,110,103,116,104,38,38,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,104,105,108,100,114,101,110,40,41,46,111,110,40,34,109,111,117,115,101,111,118,101,114,34,44,110,117,108,108,44,112,46,110,111,111,112,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,102,111,99,117,115,40,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,33,48,41,44,112,40,116,104,105,115,46,95,109,101,110,117,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,44,112,40,116,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,46,116,114,105,103,103,101,114,40,112,46,69,118,101,110,116,40,65,101,46,83,72,79,87,78,44,110,41,41,125,125,125,125,44,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,100,105,115,97,98,108,101,100,124,124,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,79,101,41,124,124,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,78,101,41,41,41,123,118,97,114,32,116,61,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,104,105,115,46,95,101,108,101,109,101,110,116,125,44,101,61,112,46,69,118,101,110,116,40,65,101,46,83,72,79,87,44,116,41,44,110,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,110,41,46,116,114,105,103,103,101,114,40,101,41,44,101,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,40,112,40,116,104,105,115,46,95,109,101,110,117,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,44,112,40,110,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,46,116,114,105,103,103,101,114,40,112,46,69,118,101,110,116,40,65,101,46,83,72,79,87,78,44,116,41,41,41,125,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,95,101,108,101,109,101,110,116,46,100,105,115,97,98,108,101,100,38,38,33,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,79,101,41,38,38,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,78,101,41,41,123,118,97,114,32,116,61,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,104,105,115,46,95,101,108,101,109,101,110,116,125,44,101,61,112,46,69,118,101,110,116,40,65,101,46,72,73,68,69,44,116,41,44,110,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,110,41,46,116,114,105,103,103,101,114,40,101,41,44,101,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,40,112,40,116,104,105,115,46,95,109,101,110,117,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,44,112,40,110,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,46,116,114,105,103,103,101,114,40,112,46,69,118,101,110,116,40,65,101,46,72,73,68,68,69,78,44,116,41,41,41,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,67,101,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,84,101,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,40,116,104,105,115,46,95,109,101,110,117,61,110,117,108,108,41,33,61,61,116,104,105,115,46,95,112,111,112,112,101,114,38,38,40,116,104,105,115,46,95,112,111,112,112,101,114,46,100,101,115,116,114,111,121,40,41,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,117,108,108,41,125,44,116,46,117,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,110,78,97,118,98,97,114,61,116,104,105,115,46,95,100,101,116,101,99,116,78,97,118,98,97,114,40,41,44,110,117,108,108,33,61,61,116,104,105,115,46,95,112,111,112,112,101,114,38,38,116,104,105,115,46,95,112,111,112,112,101,114,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,40,41,125,44,116,46,95,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,65,101,46,67,76,73,67,75,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,101,46,116,111,103,103,108,101,40,41,125,41,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,108,40,123,125,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,100,97,116,97,40,41,44,116,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,119,101,44,116,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,84,121,112,101,41,44,116,125,44,116,46,95,103,101,116,77,101,110,117,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,95,109,101,110,117,41,123,118,97,114,32,116,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,116,38,38,40,116,104,105,115,46,95,109,101,110,117,61,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,70,101,41,41,125,114,101,116,117,114,110,32,116,104,105,115,46,95,109,101,110,117,125,44,116,46,95,103,101,116,80,108,97,99,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,41,44,101,61,113,101,59,114,101,116,117,114,110,32,116,46,104,97,115,67,108,97,115,115,40,107,101,41,63,40,101,61,85,101,44,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,80,101,41,38,38,40,101,61,66,101,41,41,58,116,46,104,97,115,67,108,97,115,115,40,76,101,41,63,101,61,81,101,58,116,46,104,97,115,67,108,97,115,115,40,120,101,41,63,101,61,86,101,58,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,80,101,41,38,38,40,101,61,75,101,41,44,101,125,44,116,46,95,100,101,116,101,99,116,78,97,118,98,97,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,60,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,34,46,110,97,118,98,97,114,34,41,46,108,101,110,103,116,104,125,44,116,46,95,103,101,116,79,102,102,115,101,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,44,116,61,123,125,59,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,63,116,46,102,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,111,102,102,115,101,116,115,61,108,40,123,125,44,116,46,111,102,102,115,101,116,115,44,101,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,40,116,46,111,102,102,115,101,116,115,44,101,46,95,101,108,101,109,101,110,116,41,124,124,123,125,41,44,116,125,58,116,46,111,102,102,115,101,116,61,116,104,105,115,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,44,116,125,44,116,46,95,103,101,116,80,111,112,112,101,114,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,112,108,97,99,101,109,101,110,116,58,116,104,105,115,46,95,103,101,116,80,108,97,99,101,109,101,110,116,40,41,44,109,111,100,105,102,105,101,114,115,58,123,111,102,102,115,101,116,58,116,104,105,115,46,95,103,101,116,79,102,102,115,101,116,40,41,44,102,108,105,112,58,123,101,110,97,98,108,101,100,58,116,104,105,115,46,95,99,111,110,102,105,103,46,102,108,105,112,125,44,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,58,123,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,116,104,105,115,46,95,99,111,110,102,105,103,46,98,111,117,110,100,97,114,121,125,125,125,59,114,101,116,117,114,110,34,115,116,97,116,105,99,34,61,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,100,105,115,112,108,97,121,38,38,40,116,46,109,111,100,105,102,105,101,114,115,46,97,112,112,108,121,83,116,121,108,101,61,123,101,110,97,98,108,101,100,58,33,49,125,41,44,116,125,44,99,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,67,101,41,59,105,102,40,116,124,124,40,116,61,110,101,119,32,99,40,116,104,105,115,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,63,101,58,110,117,108,108,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,67,101,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,101,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,101,43,39,34,39,41,59,116,91,101,93,40,41,125,125,41,125,44,99,46,95,99,108,101,97,114,77,101,110,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,116,124,124,51,33,61,61,116,46,119,104,105,99,104,38,38,40,34,107,101,121,117,112,34,33,61,61,116,46,116,121,112,101,124,124,57,61,61,61,116,46,119,104,105,99,104,41,41,102,111,114,40,118,97,114,32,101,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,106,101,41,41,44,110,61,48,44,105,61,101,46,108,101,110,103,116,104,59,110,60,105,59,110,43,43,41,123,118,97,114,32,111,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,101,91,110,93,41,44,114,61,112,40,101,91,110,93,41,46,100,97,116,97,40,67,101,41,44,115,61,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,101,91,110,93,125,59,105,102,40,116,38,38,34,99,108,105,99,107,34,61,61,61,116,46,116,121,112,101,38,38,40,115,46,99,108,105,99,107,69,118,101,110,116,61,116,41,44,114,41,123,118,97,114,32,97,61,114,46,95,109,101,110,117,59,105,102,40,112,40,111,41,46,104,97,115,67,108,97,115,115,40,78,101,41,38,38,33,40,116,38,38,40,34,99,108,105,99,107,34,61,61,61,116,46,116,121,112,101,38,38,47,105,110,112,117,116,124,116,101,120,116,97,114,101,97,47,105,46,116,101,115,116,40,116,46,116,97,114,103,101,116,46,116,97,103,78,97,109,101,41,124,124,34,107,101,121,117,112,34,61,61,61,116,46,116,121,112,101,38,38,57,61,61,61,116,46,119,104,105,99,104,41,38,38,112,46,99,111,110,116,97,105,110,115,40,111,44,116,46,116,97,114,103,101,116,41,41,41,123,118,97,114,32,108,61,112,46,69,118,101,110,116,40,65,101,46,72,73,68,69,44,115,41,59,112,40,111,41,46,116,114,105,103,103,101,114,40,108,41,44,108,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,40,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,104,105,108,100,114,101,110,40,41,46,111,102,102,40,34,109,111,117,115,101,111,118,101,114,34,44,110,117,108,108,44,112,46,110,111,111,112,41,44,101,91,110,93,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,34,102,97,108,115,101,34,41,44,112,40,97,41,46,114,101,109,111,118,101,67,108,97,115,115,40,78,101,41,44,112,40,111,41,46,114,101,109,111,118,101,67,108,97,115,115,40,78,101,41,46,116,114,105,103,103,101,114,40,112,46,69,118,101,110,116,40,65,101,46,72,73,68,68,69,78,44,115,41,41,41,125,125,125,125,44,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,41,59,114,101,116,117,114,110,32,110,38,38,40,101,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,110,41,41,44,101,124,124,116,46,112,97,114,101,110,116,78,111,100,101,125,44,99,46,95,100,97,116,97,65,112,105,75,101,121,100,111,119,110,72,97,110,100,108,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,40,47,105,110,112,117,116,124,116,101,120,116,97,114,101,97,47,105,46,116,101,115,116,40,116,46,116,97,114,103,101,116,46,116,97,103,78,97,109,101,41,63,33,40,51,50,61,61,61,116,46,119,104,105,99,104,124,124,50,55,33,61,61,116,46,119,104,105,99,104,38,38,40,52,48,33,61,61,116,46,119,104,105,99,104,38,38,51,56,33,61,61,116,46,119,104,105,99,104,124,124,112,40,116,46,116,97,114,103,101,116,41,46,99,108,111,115,101,115,116,40,70,101,41,46,108,101,110,103,116,104,41,41,58,73,101,46,116,101,115,116,40,116,46,119,104,105,99,104,41,41,38,38,40,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,33,116,104,105,115,46,100,105,115,97,98,108,101,100,38,38,33,112,40,116,104,105,115,41,46,104,97,115,67,108,97,115,115,40,79,101,41,41,41,123,118,97,114,32,101,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,41,44,110,61,112,40,101,41,46,104,97,115,67,108,97,115,115,40,78,101,41,59,105,102,40,110,38,38,40,33,110,124,124,50,55,33,61,61,116,46,119,104,105,99,104,38,38,51,50,33,61,61,116,46,119,104,105,99,104,41,41,123,118,97,114,32,105,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,87,101,41,41,59,105,102,40,48,33,61,61,105,46,108,101,110,103,116,104,41,123,118,97,114,32,111,61,105,46,105,110,100,101,120,79,102,40,116,46,116,97,114,103,101,116,41,59,51,56,61,61,61,116,46,119,104,105,99,104,38,38,48,60,111,38,38,111,45,45,44,52,48,61,61,61,116,46,119,104,105,99,104,38,38,111,60,105,46,108,101,110,103,116,104,45,49,38,38,111,43,43,44,111,60,48,38,38,40,111,61,48,41,44,105,91,111,93,46,102,111,99,117,115,40,41,125,125,101,108,115,101,123,105,102,40,50,55,61,61,61,116,46,119,104,105,99,104,41,123,118,97,114,32,114,61,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,106,101,41,59,112,40,114,41,46,116,114,105,103,103,101,114,40,34,102,111,99,117,115,34,41,125,112,40,116,104,105,115,41,46,116,114,105,103,103,101,114,40,34,99,108,105,99,107,34,41,125,125,125,44,115,40,99,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,101,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,84,121,112,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,122,101,125,125,93,41,44,99,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,65,101,46,75,69,89,68,79,87,78,95,68,65,84,65,95,65,80,73,44,106,101,44,88,101,46,95,100,97,116,97,65,112,105,75,101,121,100,111,119,110,72,97,110,100,108,101,114,41,46,111,110,40,65,101,46,75,69,89,68,79,87,78,95,68,65,84,65,95,65,80,73,44,70,101,44,88,101,46,95,100,97,116,97,65,112,105,75,101,121,100,111,119,110,72,97,110,100,108,101,114,41,46,111,110,40,65,101,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,43,34,32,34,43,65,101,46,75,69,89,85,80,95,68,65,84,65,95,65,80,73,44,88,101,46,95,99,108,101,97,114,77,101,110,117,115,41,46,111,110,40,65,101,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,106,101,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,88,101,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,116,104,105,115,41,44,34,116,111,103,103,108,101,34,41,125,41,46,111,110,40,65,101,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,82,101,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,41,44,112,46,102,110,91,119,101,93,61,88,101,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,119,101,93,46,67,111,110,115,116,114,117,99,116,111,114,61,88,101,44,112,46,102,110,91,119,101,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,119,101,93,61,68,101,44,88,101,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,71,101,61,34,109,111,100,97,108,34,44,36,101,61,34,98,115,46,109,111,100,97,108,34,44,74,101,61,34,46,34,43,36,101,44,90,101,61,112,46,102,110,91,71,101,93,44,116,110,61,123,98,97,99,107,100,114,111,112,58,33,48,44,107,101,121,98,111,97,114,100,58,33,48,44,102,111,99,117,115,58,33,48,44,115,104,111,119,58,33,48,125,44,101,110,61,123,98,97,99,107,100,114,111,112,58,34,40,98,111,111,108,101,97,110,124,115,116,114,105,110,103,41,34,44,107,101,121,98,111,97,114,100,58,34,98,111,111,108,101,97,110,34,44,102,111,99,117,115,58,34,98,111,111,108,101,97,110,34,44,115,104,111,119,58,34,98,111,111,108,101,97,110,34,125,44,110,110,61,123,72,73,68,69,58,34,104,105,100,101,34,43,74,101,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,74,101,44,83,72,79,87,58,34,115,104,111,119,34,43,74,101,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,74,101,44,70,79,67,85,83,73,78,58,34,102,111,99,117,115,105,110,34,43,74,101,44,82,69,83,73,90,69,58,34,114,101,115,105,122,101,34,43,74,101,44,67,76,73,67,75,95,68,73,83,77,73,83,83,58,34,99,108,105,99,107,46,100,105,115,109,105,115,115,34,43,74,101,44,75,69,89,68,79,87,78,95,68,73,83,77,73,83,83,58,34,107,101,121,100,111,119,110,46,100,105,115,109,105,115,115,34,43,74,101,44,77,79,85,83,69,85,80,95,68,73,83,77,73,83,83,58,34,109,111,117,115,101,117,112,46,100,105,115,109,105,115,115,34,43,74,101,44,77,79,85,83,69,68,79,87,78,95,68,73,83,77,73,83,83,58,34,109,111,117,115,101,100,111,119,110,46,100,105,115,109,105,115,115,34,43,74,101,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,74,101,43,34,46,100,97,116,97,45,97,112,105,34,125,44,111,110,61,34,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,34,44,114,110,61,34,109,111,100,97,108,45,115,99,114,111,108,108,98,97,114,45,109,101,97,115,117,114,101,34,44,115,110,61,34,109,111,100,97,108,45,98,97,99,107,100,114,111,112,34,44,97,110,61,34,109,111,100,97,108,45,111,112,101,110,34,44,108,110,61,34,102,97,100,101,34,44,99,110,61,34,115,104,111,119,34,44,104,110,61,34,46,109,111,100,97,108,45,100,105,97,108,111,103,34,44,117,110,61,34,46,109,111,100,97,108,45,98,111,100,121,34,44,102,110,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,109,111,100,97,108,34,93,39,44,100,110,61,39,91,100,97,116,97,45,100,105,115,109,105,115,115,61,34,109,111,100,97,108,34,93,39,44,112,110,61,34,46,102,105,120,101,100,45,116,111,112,44,32,46,102,105,120,101,100,45,98,111,116,116,111,109,44,32,46,105,115,45,102,105,120,101,100,44,32,46,115,116,105,99,107,121,45,116,111,112,34,44,109,110,61,34,46,115,116,105,99,107,121,45,116,111,112,34,44,103,110,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,111,40,116,44,101,41,123,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,100,105,97,108,111,103,61,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,104,110,41,44,116,104,105,115,46,95,98,97,99,107,100,114,111,112,61,110,117,108,108,44,116,104,105,115,46,95,105,115,83,104,111,119,110,61,33,49,44,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,61,33,49,44,116,104,105,115,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,61,33,49,44,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,61,48,125,118,97,114,32,116,61,111,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,105,115,83,104,111,119,110,63,116,104,105,115,46,104,105,100,101,40,41,58,116,104,105,115,46,115,104,111,119,40,116,41,125,44,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,105,102,40,33,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,33,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,41,123,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,38,38,40,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,48,41,59,118,97,114,32,110,61,112,46,69,118,101,110,116,40,110,110,46,83,72,79,87,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,125,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,110,41,44,116,104,105,115,46,95,105,115,83,104,111,119,110,124,124,110,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,40,116,104,105,115,46,95,105,115,83,104,111,119,110,61,33,48,44,116,104,105,115,46,95,99,104,101,99,107,83,99,114,111,108,108,98,97,114,40,41,44,116,104,105,115,46,95,115,101,116,83,99,114,111,108,108,98,97,114,40,41,44,116,104,105,115,46,95,97,100,106,117,115,116,68,105,97,108,111,103,40,41,44,116,104,105,115,46,95,115,101,116,69,115,99,97,112,101,69,118,101,110,116,40,41,44,116,104,105,115,46,95,115,101,116,82,101,115,105,122,101,69,118,101,110,116,40,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,110,110,46,67,76,73,67,75,95,68,73,83,77,73,83,83,44,100,110,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,104,105,100,101,40,116,41,125,41,44,112,40,116,104,105,115,46,95,100,105,97,108,111,103,41,46,111,110,40,110,110,46,77,79,85,83,69,68,79,87,78,95,68,73,83,77,73,83,83,44,102,117,110,99,116,105,111,110,40,41,123,112,40,101,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,110,110,46,77,79,85,83,69,85,80,95,68,73,83,77,73,83,83,44,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,46,116,97,114,103,101,116,41,46,105,115,40,101,46,95,101,108,101,109,101,110,116,41,38,38,40,101,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,61,33,48,41,125,41,125,41,44,116,104,105,115,46,95,115,104,111,119,66,97,99,107,100,114,111,112,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,95,115,104,111,119,69,108,101,109,101,110,116,40,116,41,125,41,41,125,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,105,102,40,116,38,38,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,33,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,41,123,118,97,114,32,110,61,112,46,69,118,101,110,116,40,110,110,46,72,73,68,69,41,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,110,41,44,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,33,110,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,116,104,105,115,46,95,105,115,83,104,111,119,110,61,33,49,59,118,97,114,32,105,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,59,105,102,40,105,38,38,40,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,48,41,44,116,104,105,115,46,95,115,101,116,69,115,99,97,112,101,69,118,101,110,116,40,41,44,116,104,105,115,46,95,115,101,116,82,101,115,105,122,101,69,118,101,110,116,40,41,44,112,40,100,111,99,117,109,101,110,116,41,46,111,102,102,40,110,110,46,70,79,67,85,83,73,78,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,99,110,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,110,110,46,67,76,73,67,75,95,68,73,83,77,73,83,83,41,44,112,40,116,104,105,115,46,95,100,105,97,108,111,103,41,46,111,102,102,40,110,110,46,77,79,85,83,69,68,79,87,78,95,68,73,83,77,73,83,83,41,44,105,41,123,118,97,114,32,111,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,95,104,105,100,101,77,111,100,97,108,40,116,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,111,41,125,101,108,115,101,32,116,104,105,115,46,95,104,105,100,101,77,111,100,97,108,40,41,125,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,91,119,105,110,100,111,119,44,116,104,105,115,46,95,101,108,101,109,101,110,116,44,116,104,105,115,46,95,100,105,97,108,111,103,93,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,112,40,116,41,46,111,102,102,40,74,101,41,125,41,44,112,40,100,111,99,117,109,101,110,116,41,46,111,102,102,40,110,110,46,70,79,67,85,83,73,78,41,44,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,36,101,41,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,100,105,97,108,111,103,61,110,117,108,108,44,116,104,105,115,46,95,98,97,99,107,100,114,111,112,61,110,117,108,108,44,116,104,105,115,46,95,105,115,83,104,111,119,110,61,110,117,108,108,44,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,61,110,117,108,108,44,116,104,105,115,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,61,110,117,108,108,44,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,110,117,108,108,44,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,61,110,117,108,108,125,44,116,46,104,97,110,100,108,101,85,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,97,100,106,117,115,116,68,105,97,108,111,103,40,41,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,108,40,123,125,44,116,110,44,116,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,71,101,44,116,44,101,110,41,44,116,125,44,116,46,95,115,104,111,119,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,46,110,111,100,101,84,121,112,101,61,61,61,78,111,100,101,46,69,76,69,77,69,78,84,95,78,79,68,69,124,124,100,111,99,117,109,101,110,116,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,98,108,111,99,107,34,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,104,105,100,100,101,110,34,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,109,111,100,97,108,34,44,33,48,41,44,112,40,116,104,105,115,46,95,100,105,97,108,111,103,41,46,104,97,115,67,108,97,115,115,40,111,110,41,63,116,104,105,115,46,95,100,105,97,108,111,103,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,117,110,41,46,115,99,114,111,108,108,84,111,112,61,48,58,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,99,114,111,108,108,84,111,112,61,48,44,110,38,38,109,46,114,101,102,108,111,119,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,97,100,100,67,108,97,115,115,40,99,110,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,102,111,99,117,115,38,38,116,104,105,115,46,95,101,110,102,111,114,99,101,70,111,99,117,115,40,41,59,118,97,114,32,105,61,112,46,69,118,101,110,116,40,110,110,46,83,72,79,87,78,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,125,41,44,111,61,102,117,110,99,116,105,111,110,40,41,123,101,46,95,99,111,110,102,105,103,46,102,111,99,117,115,38,38,101,46,95,101,108,101,109,101,110,116,46,102,111,99,117,115,40,41,44,101,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,112,40,101,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,105,41,125,59,105,102,40,110,41,123,118,97,114,32,114,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,100,105,97,108,111,103,41,59,112,40,116,104,105,115,46,95,100,105,97,108,111,103,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,111,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,114,41,125,101,108,115,101,32,111,40,41,125,44,116,46,95,101,110,102,111,114,99,101,70,111,99,117,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,112,40,100,111,99,117,109,101,110,116,41,46,111,102,102,40,110,110,46,70,79,67,85,83,73,78,41,46,111,110,40,110,110,46,70,79,67,85,83,73,78,44,102,117,110,99,116,105,111,110,40,116,41,123,100,111,99,117,109,101,110,116,33,61,61,116,46,116,97,114,103,101,116,38,38,101,46,95,101,108,101,109,101,110,116,33,61,61,116,46,116,97,114,103,101,116,38,38,48,61,61,61,112,40,101,46,95,101,108,101,109,101,110,116,41,46,104,97,115,40,116,46,116,97,114,103,101,116,41,46,108,101,110,103,116,104,38,38,101,46,95,101,108,101,109,101,110,116,46,102,111,99,117,115,40,41,125,41,125,44,116,46,95,115,101,116,69,115,99,97,112,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,116,104,105,115,46,95,99,111,110,102,105,103,46,107,101,121,98,111,97,114,100,63,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,110,110,46,75,69,89,68,79,87,78,95,68,73,83,77,73,83,83,44,102,117,110,99,116,105,111,110,40,116,41,123,50,55,61,61,61,116,46,119,104,105,99,104,38,38,40,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,104,105,100,101,40,41,41,125,41,58,116,104,105,115,46,95,105,115,83,104,111,119,110,124,124,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,110,110,46,75,69,89,68,79,87,78,95,68,73,83,77,73,83,83,41,125,44,116,46,95,115,101,116,82,101,115,105,122,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,105,115,83,104,111,119,110,63,112,40,119,105,110,100,111,119,41,46,111,110,40,110,110,46,82,69,83,73,90,69,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,104,97,110,100,108,101,85,112,100,97,116,101,40,116,41,125,41,58,112,40,119,105,110,100,111,119,41,46,111,102,102,40,110,110,46,82,69,83,73,90,69,41,125,44,116,46,95,104,105,100,101,77,111,100,97,108,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,104,105,100,100,101,110,34,44,33,48,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,109,111,100,97,108,34,41,44,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,116,104,105,115,46,95,115,104,111,119,66,97,99,107,100,114,111,112,40,102,117,110,99,116,105,111,110,40,41,123,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,114,101,109,111,118,101,67,108,97,115,115,40,97,110,41,44,116,46,95,114,101,115,101,116,65,100,106,117,115,116,109,101,110,116,115,40,41,44,116,46,95,114,101,115,101,116,83,99,114,111,108,108,98,97,114,40,41,44,112,40,116,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,110,110,46,72,73,68,68,69,78,41,125,41,125,44,116,46,95,114,101,109,111,118,101,66,97,99,107,100,114,111,112,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,98,97,99,107,100,114,111,112,38,38,40,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,114,101,109,111,118,101,40,41,44,116,104,105,115,46,95,98,97,99,107,100,114,111,112,61,110,117,108,108,41,125,44,116,46,95,115,104,111,119,66,97,99,107,100,114,111,112,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,63,108,110,58,34,34,59,105,102,40,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,116,104,105,115,46,95,99,111,110,102,105,103,46,98,97,99,107,100,114,111,112,41,123,105,102,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,44,116,104,105,115,46,95,98,97,99,107,100,114,111,112,46,99,108,97,115,115,78,97,109,101,61,115,110,44,110,38,38,116,104,105,115,46,95,98,97,99,107,100,114,111,112,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,110,41,44,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,97,112,112,101,110,100,84,111,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,110,110,46,67,76,73,67,75,95,68,73,83,77,73,83,83,44,102,117,110,99,116,105,111,110,40,116,41,123,101,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,63,101,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,61,33,49,58,116,46,116,97,114,103,101,116,61,61,61,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,38,38,40,34,115,116,97,116,105,99,34,61,61,61,101,46,95,99,111,110,102,105,103,46,98,97,99,107,100,114,111,112,63,101,46,95,101,108,101,109,101,110,116,46,102,111,99,117,115,40,41,58,101,46,104,105,100,101,40,41,41,125,41,44,110,38,38,109,46,114,101,102,108,111,119,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,44,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,97,100,100,67,108,97,115,115,40,99,110,41,44,33,116,41,114,101,116,117,114,110,59,105,102,40,33,110,41,114,101,116,117,114,110,32,118,111,105,100,32,116,40,41,59,118,97,114,32,105,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,59,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,116,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,105,41,125,101,108,115,101,32,105,102,40,33,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,123,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,114,101,109,111,118,101,67,108,97,115,115,40,99,110,41,59,118,97,114,32,111,61,102,117,110,99,116,105,111,110,40,41,123,101,46,95,114,101,109,111,118,101,66,97,99,107,100,114,111,112,40,41,44,116,38,38,116,40,41,125,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,41,123,118,97,114,32,114,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,59,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,111,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,114,41,125,101,108,115,101,32,111,40,41,125,101,108,115,101,32,116,38,38,116,40,41,125,44,116,46,95,97,100,106,117,115,116,68,105,97,108,111,103,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,99,114,111,108,108,72,101,105,103,104,116,62,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,99,108,105,101,110,116,72,101,105,103,104,116,59,33,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,38,38,116,38,38,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,112,97,100,100,105,110,103,76,101,102,116,61,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,44,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,38,38,33,116,38,38,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,61,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,125,44,116,46,95,114,101,115,101,116,65,100,106,117,115,116,109,101,110,116,115,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,112,97,100,100,105,110,103,76,101,102,116,61,34,34,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,61,34,34,125,44,116,46,95,99,104,101,99,107,83,99,114,111,108,108,98,97,114,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,100,111,99,117,109,101,110,116,46,98,111,100,121,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,61,116,46,108,101,102,116,43,116,46,114,105,103,104,116,60,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,44,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,61,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,98,97,114,87,105,100,116,104,40,41,125,44,116,46,95,115,101,116,83,99,114,111,108,108,98,97,114,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,116,104,105,115,59,105,102,40,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,41,123,118,97,114,32,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,112,110,41,41,44,101,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,109,110,41,41,59,112,40,116,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,44,105,61,112,40,101,41,46,99,115,115,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,59,112,40,101,41,46,100,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,44,110,41,46,99,115,115,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,44,112,97,114,115,101,70,108,111,97,116,40,105,41,43,111,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,125,41,44,112,40,101,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,115,116,121,108,101,46,109,97,114,103,105,110,82,105,103,104,116,44,105,61,112,40,101,41,46,99,115,115,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,41,59,112,40,101,41,46,100,97,116,97,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,44,110,41,46,99,115,115,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,44,112,97,114,115,101,70,108,111,97,116,40,105,41,45,111,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,125,41,59,118,97,114,32,110,61,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,44,105,61,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,115,115,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,59,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,100,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,44,110,41,46,99,115,115,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,44,112,97,114,115,101,70,108,111,97,116,40,105,41,43,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,125,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,97,100,100,67,108,97,115,115,40,97,110,41,125,44,116,46,95,114,101,115,101,116,83,99,114,111,108,108,98,97,114,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,112,110,41,41,59,112,40,116,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,112,40,101,41,46,100,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,59,112,40,101,41,46,114,101,109,111,118,101,68,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,44,101,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,61,110,124,124,34,34,125,41,59,118,97,114,32,101,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,34,43,109,110,41,41,59,112,40,101,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,112,40,101,41,46,100,97,116,97,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,41,59,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,110,38,38,112,40,101,41,46,99,115,115,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,44,110,41,46,114,101,109,111,118,101,68,97,116,97,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,41,125,41,59,118,97,114,32,110,61,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,100,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,59,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,114,101,109,111,118,101,68,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,44,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,61,110,124,124,34,34,125,44,116,46,95,103,101,116,83,99,114,111,108,108,98,97,114,87,105,100,116,104,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,116,46,99,108,97,115,115,78,97,109,101,61,114,110,44,100,111,99,117,109,101,110,116,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,116,41,59,118,97,114,32,101,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,119,105,100,116,104,45,116,46,99,108,105,101,110,116,87,105,100,116,104,59,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,98,111,100,121,46,114,101,109,111,118,101,67,104,105,108,100,40,116,41,44,101,125,44,111,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,44,105,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,36,101,41,44,101,61,108,40,123,125,44,116,110,44,112,40,116,104,105,115,41,46,100,97,116,97,40,41,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,38,38,110,63,110,58,123,125,41,59,105,102,40,116,124,124,40,116,61,110,101,119,32,111,40,116,104,105,115,44,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,36,101,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,116,91,110,93,40,105,41,125,101,108,115,101,32,101,46,115,104,111,119,38,38,116,46,115,104,111,119,40,105,41,125,41,125,44,115,40,111,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,110,125,125,93,41,44,111,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,110,110,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,102,110,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,116,104,105,115,44,105,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,41,59,105,38,38,40,101,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,105,41,41,59,118,97,114,32,111,61,112,40,101,41,46,100,97,116,97,40,36,101,41,63,34,116,111,103,103,108,101,34,58,108,40,123,125,44,112,40,101,41,46,100,97,116,97,40,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,41,41,59,34,65,34,33,61,61,116,104,105,115,46,116,97,103,78,97,109,101,38,38,34,65,82,69,65,34,33,61,61,116,104,105,115,46,116,97,103,78,97,109,101,124,124,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,114,61,112,40,101,41,46,111,110,101,40,110,110,46,83,72,79,87,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,114,46,111,110,101,40,110,110,46,72,73,68,68,69,78,44,102,117,110,99,116,105,111,110,40,41,123,112,40,110,41,46,105,115,40,34,58,118,105,115,105,98,108,101,34,41,38,38,110,46,102,111,99,117,115,40,41,125,41,125,41,59,103,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,101,41,44,111,44,116,104,105,115,41,125,41,44,112,46,102,110,91,71,101,93,61,103,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,71,101,93,46,67,111,110,115,116,114,117,99,116,111,114,61,103,110,44,112,46,102,110,91,71,101,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,71,101,93,61,90,101,44,103,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,95,110,61,91,34,98,97,99,107,103,114,111,117,110,100,34,44,34,99,105,116,101,34,44,34,104,114,101,102,34,44,34,105,116,101,109,116,121,112,101,34,44,34,108,111,110,103,100,101,115,99,34,44,34,112,111,115,116,101,114,34,44,34,115,114,99,34,44,34,120,108,105,110,107,58,104,114,101,102,34,93,44,118,110,61,123,34,42,34,58,91,34,99,108,97,115,115,34,44,34,100,105,114,34,44,34,105,100,34,44,34,108,97,110,103,34,44,34,114,111,108,101,34,44,47,94,97,114,105,97,45,91,92,119,45,93,42,36,47,105,93,44,97,58,91,34,116,97,114,103,101,116,34,44,34,104,114,101,102,34,44,34,116,105,116,108,101,34,44,34,114,101,108,34,93,44,97,114,101,97,58,91,93,44,98,58,91,93,44,98,114,58,91,93,44,99,111,108,58,91,93,44,99,111,100,101,58,91,93,44,100,105,118,58,91,93,44,101,109,58,91,93,44,104,114,58,91,93,44,104,49,58,91,93,44,104,50,58,91,93,44,104,51,58,91,93,44,104,52,58,91,93,44,104,53,58,91,93,44,104,54,58,91,93,44,105,58,91,93,44,105,109,103,58,91,34,115,114,99,34,44,34,97,108,116,34,44,34,116,105,116,108,101,34,44,34,119,105,100,116,104,34,44,34,104,101,105,103,104,116,34,93,44,108,105,58,91,93,44,111,108,58,91,93,44,112,58,91,93,44,112,114,101,58,91,93,44,115,58,91,93,44,115,109,97,108,108,58,91,93,44,115,112,97,110,58,91,93,44,115,117,98,58,91,93,44,115,117,112,58,91,93,44,115,116,114,111,110,103,58,91,93,44,117,58,91,93,44,117,108,58,91,93,125,44,121,110,61,47,94,40,63,58,40,63,58,104,116,116,112,115,63,124,109,97,105,108,116,111,124,102,116,112,124,116,101,108,124,102,105,108,101,41,58,124,91,94,38,58,47,63,35,93,42,40,63,58,91,47,63,35,93,124,36,41,41,47,103,105,44,69,110,61,47,94,100,97,116,97,58,40,63,58,105,109,97,103,101,92,47,40,63,58,98,109,112,124,103,105,102,124,106,112,101,103,124,106,112,103,124,112,110,103,124,116,105,102,102,124,119,101,98,112,41,124,118,105,100,101,111,92,47,40,63,58,109,112,101,103,124,109,112,52,124,111,103,103,124,119,101,98,109,41,124,97,117,100,105,111,92,47,40,63,58,109,112,51,124,111,103,97,124,111,103,103,124,111,112,117,115,41,41,59,98,97,115,101,54,52,44,91,97,45,122,48,45,57,43,47,93,43,61,42,36,47,105,59,102,117,110,99,116,105,111,110,32,98,110,40,116,44,115,44,101,41,123,105,102,40,48,61,61,61,116,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,116,59,105,102,40,101,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,101,40,116,41,59,102,111,114,40,118,97,114,32,110,61,40,110,101,119,32,119,105,110,100,111,119,46,68,79,77,80,97,114,115,101,114,41,46,112,97,114,115,101,70,114,111,109,83,116,114,105,110,103,40,116,44,34,116,101,120,116,47,104,116,109,108,34,41,44,97,61,79,98,106,101,99,116,46,107,101,121,115,40,115,41,44,108,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,110,46,98,111,100,121,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,42,34,41,41,44,105,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,108,91,116,93,44,105,61,110,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,105,102,40,45,49,61,61,61,97,46,105,110,100,101,120,79,102,40,110,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,41,114,101,116,117,114,110,32,110,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,110,41,44,34,99,111,110,116,105,110,117,101,34,59,118,97,114,32,111,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,110,46,97,116,116,114,105,98,117,116,101,115,41,44,114,61,91,93,46,99,111,110,99,97,116,40,115,91,34,42,34,93,124,124,91,93,44,115,91,105,93,124,124,91,93,41,59,111,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,105,102,40,45,49,33,61,61,101,46,105,110,100,101,120,79,102,40,110,41,41,114,101,116,117,114,110,45,49,61,61,61,95,110,46,105,110,100,101,120,79,102,40,110,41,124,124,66,111,111,108,101,97,110,40,116,46,110,111,100,101,86,97,108,117,101,46,109,97,116,99,104,40,121,110,41,124,124,116,46,110,111,100,101,86,97,108,117,101,46,109,97,116,99,104,40,69,110,41,41,59,102,111,114,40,118,97,114,32,105,61,101,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,82,101,103,69,120,112,125,41,44,111,61,48,44,114,61,105,46,108,101,110,103,116,104,59,111,60,114,59,111,43,43,41,105,102,40,110,46,109,97,116,99,104,40,105,91,111,93,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,41,40,116,44,114,41,124,124,110,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,46,110,111,100,101,78,97,109,101,41,125,41,125,44,111,61,48,44,114,61,108,46,108,101,110,103,116,104,59,111,60,114,59,111,43,43,41,105,40,111,41,59,114,101,116,117,114,110,32,110,46,98,111,100,121,46,105,110,110,101,114,72,84,77,76,125,118,97,114,32,119,110,61,34,116,111,111,108,116,105,112,34,44,67,110,61,34,98,115,46,116,111,111,108,116,105,112,34,44,84,110,61,34,46,34,43,67,110,44,83,110,61,112,46,102,110,91,119,110,93,44,68,110,61,34,98,115,45,116,111,111,108,116,105,112,34,44,73,110,61,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,92,92,115,41,34,43,68,110,43,34,92,92,83,43,34,44,34,103,34,41,44,65,110,61,91,34,115,97,110,105,116,105,122,101,34,44,34,119,104,105,116,101,76,105,115,116,34,44,34,115,97,110,105,116,105,122,101,70,110,34,93,44,79,110,61,123,97,110,105,109,97,116,105,111,110,58,34,98,111,111,108,101,97,110,34,44,116,101,109,112,108,97,116,101,58,34,115,116,114,105,110,103,34,44,116,105,116,108,101,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,124,102,117,110,99,116,105,111,110,41,34,44,116,114,105,103,103,101,114,58,34,115,116,114,105,110,103,34,44,100,101,108,97,121,58,34,40,110,117,109,98,101,114,124,111,98,106,101,99,116,41,34,44,104,116,109,108,58,34,98,111,111,108,101,97,110,34,44,115,101,108,101,99,116,111,114,58,34,40,115,116,114,105,110,103,124,98,111,111,108,101,97,110,41,34,44,112,108,97,99,101,109,101,110,116,58,34,40,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,41,34,44,111,102,102,115,101,116,58,34,40,110,117,109,98,101,114,124,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,41,34,44,99,111,110,116,97,105,110,101,114,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,124,98,111,111,108,101,97,110,41,34,44,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,58,34,40,115,116,114,105,110,103,124,97,114,114,97,121,41,34,44,98,111,117,110,100,97,114,121,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,44,115,97,110,105,116,105,122,101,58,34,98,111,111,108,101,97,110,34,44,115,97,110,105,116,105,122,101,70,110,58,34,40,110,117,108,108,124,102,117,110,99,116,105,111,110,41,34,44,119,104,105,116,101,76,105,115,116,58,34,111,98,106,101,99,116,34,125,44,78,110,61,123,65,85,84,79,58,34,97,117,116,111,34,44,84,79,80,58,34,116,111,112,34,44,82,73,71,72,84,58,34,114,105,103,104,116,34,44,66,79,84,84,79,77,58,34,98,111,116,116,111,109,34,44,76,69,70,84,58,34,108,101,102,116,34,125,44,107,110,61,123,97,110,105,109,97,116,105,111,110,58,33,48,44,116,101,109,112,108,97,116,101,58,39,60,100,105,118,32,99,108,97,115,115,61,34,116,111,111,108,116,105,112,34,32,114,111,108,101,61,34,116,111,111,108,116,105,112,34,62,60,100,105,118,32,99,108,97,115,115,61,34,97,114,114,111,119,34,62,60,47,100,105,118,62,60,100,105,118,32,99,108,97,115,115,61,34,116,111,111,108,116,105,112,45,105,110,110,101,114,34,62,60,47,100,105,118,62,60,47,100,105,118,62,39,44,116,114,105,103,103,101,114,58,34,104,111,118,101,114,32,102,111,99,117,115,34,44,116,105,116,108,101,58,34,34,44,100,101,108,97,121,58,48,44,104,116,109,108,58,33,49,44,115,101,108,101,99,116,111,114,58,33,49,44,112,108,97,99,101,109,101,110,116,58,34,116,111,112,34,44,111,102,102,115,101,116,58,48,44,99,111,110,116,97,105,110,101,114,58,33,49,44,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,58,34,102,108,105,112,34,44,98,111,117,110,100,97,114,121,58,34,115,99,114,111,108,108,80,97,114,101,110,116,34,44,115,97,110,105,116,105,122,101,58,33,48,44,115,97,110,105,116,105,122,101,70,110,58,110,117,108,108,44,119,104,105,116,101,76,105,115,116,58,118,110,125,44,76,110,61,34,115,104,111,119,34,44,120,110,61,34,111,117,116,34,44,80,110,61,123,72,73,68,69,58,34,104,105,100,101,34,43,84,110,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,84,110,44,83,72,79,87,58,34,115,104,111,119,34,43,84,110,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,84,110,44,73,78,83,69,82,84,69,68,58,34,105,110,115,101,114,116,101,100,34,43,84,110,44,67,76,73,67,75,58,34,99,108,105,99,107,34,43,84,110,44,70,79,67,85,83,73,78,58,34,102,111,99,117,115,105,110,34,43,84,110,44,70,79,67,85,83,79,85,84,58,34,102,111,99,117,115,111,117,116,34,43,84,110,44,77,79,85,83,69,69,78,84,69,82,58,34,109,111,117,115,101,101,110,116,101,114,34,43,84,110,44,77,79,85,83,69,76,69,65,86,69,58,34,109,111,117,115,101,108,101,97,118,101,34,43,84,110,125,44,72,110,61,34,102,97,100,101,34,44,106,110,61,34,115,104,111,119,34,44,82,110,61,34,46,116,111,111,108,116,105,112,45,105,110,110,101,114,34,44,70,110,61,34,46,97,114,114,111,119,34,44,77,110,61,34,104,111,118,101,114,34,44,87,110,61,34,102,111,99,117,115,34,44,85,110,61,34,99,108,105,99,107,34,44,66,110,61,34,109,97,110,117,97,108,34,44,113,110,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,98,101,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,66,111,111,116,115,116,114,97,112,39,115,32,116,111,111,108,116,105,112,115,32,114,101,113,117,105,114,101,32,80,111,112,112,101,114,46,106,115,32,40,104,116,116,112,115,58,47,47,112,111,112,112,101,114,46,106,115,46,111,114,103,47,41,34,41,59,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,33,48,44,116,104,105,115,46,95,116,105,109,101,111,117,116,61,48,44,116,104,105,115,46,95,104,111,118,101,114,83,116,97,116,101,61,34,34,44,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,61,123,125,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,117,108,108,44,116,104,105,115,46,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,116,105,112,61,110,117,108,108,44,116,104,105,115,46,95,115,101,116,76,105,115,116,101,110,101,114,115,40,41,125,118,97,114,32,116,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,101,110,97,98,108,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,33,48,125,44,116,46,100,105,115,97,98,108,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,33,49,125,44,116,46,116,111,103,103,108,101,69,110,97,98,108,101,100,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,33,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,125,44,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,41,105,102,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,44,110,61,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,101,41,59,110,124,124,40,110,61,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,44,116,104,105,115,46,95,103,101,116,68,101,108,101,103,97,116,101,67,111,110,102,105,103,40,41,41,44,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,101,44,110,41,41,44,110,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,46,99,108,105,99,107,61,33,110,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,46,99,108,105,99,107,44,110,46,95,105,115,87,105,116,104,65,99,116,105,118,101,84,114,105,103,103,101,114,40,41,63,110,46,95,101,110,116,101,114,40,110,117,108,108,44,110,41,58,110,46,95,108,101,97,118,101,40,110,117,108,108,44,110,41,125,101,108,115,101,123,105,102,40,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,46,104,97,115,67,108,97,115,115,40,106,110,41,41,114,101,116,117,114,110,32,118,111,105,100,32,116,104,105,115,46,95,108,101,97,118,101,40,110,117,108,108,44,116,104,105,115,41,59,116,104,105,115,46,95,101,110,116,101,114,40,110,117,108,108,44,116,104,105,115,41,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,95,116,105,109,101,111,117,116,41,44,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,101,108,101,109,101,110,116,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,41,44,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,111,102,102,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,86,69,78,84,95,75,69,89,41,44,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,34,46,109,111,100,97,108,34,41,46,111,102,102,40,34,104,105,100,101,46,98,115,46,109,111,100,97,108,34,41,44,116,104,105,115,46,116,105,112,38,38,112,40,116,104,105,115,46,116,105,112,41,46,114,101,109,111,118,101,40,41,44,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,110,117,108,108,44,116,104,105,115,46,95,116,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,95,104,111,118,101,114,83,116,97,116,101,61,110,117,108,108,44,40,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,61,110,117,108,108,41,33,61,61,116,104,105,115,46,95,112,111,112,112,101,114,38,38,116,104,105,115,46,95,112,111,112,112,101,114,46,100,101,115,116,114,111,121,40,41,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,117,108,108,44,116,104,105,115,46,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,116,105,112,61,110,117,108,108,125,44,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,105,102,40,34,110,111,110,101,34,61,61,61,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,99,115,115,40,34,100,105,115,112,108,97,121,34,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,80,108,101,97,115,101,32,117,115,101,32,115,104,111,119,32,111,110,32,118,105,115,105,98,108,101,32,101,108,101,109,101,110,116,115,34,41,59,118,97,114,32,116,61,112,46,69,118,101,110,116,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,83,72,79,87,41,59,105,102,40,116,104,105,115,46,105,115,87,105,116,104,67,111,110,116,101,110,116,40,41,38,38,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,41,123,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,116,41,59,118,97,114,32,110,61,109,46,102,105,110,100,83,104,97,100,111,119,82,111,111,116,40,116,104,105,115,46,101,108,101,109,101,110,116,41,44,105,61,112,46,99,111,110,116,97,105,110,115,40,110,117,108,108,33,61,61,110,63,110,58,116,104,105,115,46,101,108,101,109,101,110,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,116,104,105,115,46,101,108,101,109,101,110,116,41,59,105,102,40,116,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,33,105,41,114,101,116,117,114,110,59,118,97,114,32,111,61,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,44,114,61,109,46,103,101,116,85,73,68,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,78,65,77,69,41,59,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,44,114,41,44,116,104,105,115,46,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,44,114,41,44,116,104,105,115,46,115,101,116,67,111,110,116,101,110,116,40,41,44,116,104,105,115,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,38,38,112,40,111,41,46,97,100,100,67,108,97,115,115,40,72,110,41,59,118,97,114,32,115,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,99,111,110,102,105,103,46,112,108,97,99,101,109,101,110,116,63,116,104,105,115,46,99,111,110,102,105,103,46,112,108,97,99,101,109,101,110,116,46,99,97,108,108,40,116,104,105,115,44,111,44,116,104,105,115,46,101,108,101,109,101,110,116,41,58,116,104,105,115,46,99,111,110,102,105,103,46,112,108,97,99,101,109,101,110,116,44,97,61,116,104,105,115,46,95,103,101,116,65,116,116,97,99,104,109,101,110,116,40,115,41,59,116,104,105,115,46,97,100,100,65,116,116,97,99,104,109,101,110,116,67,108,97,115,115,40,97,41,59,118,97,114,32,108,61,116,104,105,115,46,95,103,101,116,67,111,110,116,97,105,110,101,114,40,41,59,112,40,111,41,46,100,97,116,97,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,44,116,104,105,115,41,44,112,46,99,111,110,116,97,105,110,115,40,116,104,105,115,46,101,108,101,109,101,110,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,116,104,105,115,46,116,105,112,41,124,124,112,40,111,41,46,97,112,112,101,110,100,84,111,40,108,41,44,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,73,78,83,69,82,84,69,68,41,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,101,119,32,98,101,40,116,104,105,115,46,101,108,101,109,101,110,116,44,111,44,123,112,108,97,99,101,109,101,110,116,58,97,44,109,111,100,105,102,105,101,114,115,58,123,111,102,102,115,101,116,58,116,104,105,115,46,95,103,101,116,79,102,102,115,101,116,40,41,44,102,108,105,112,58,123,98,101,104,97,118,105,111,114,58,116,104,105,115,46,99,111,110,102,105,103,46,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,125,44,97,114,114,111,119,58,123,101,108,101,109,101,110,116,58,70,110,125,44,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,58,123,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,116,104,105,115,46,99,111,110,102,105,103,46,98,111,117,110,100,97,114,121,125,125,44,111,110,67,114,101,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,111,114,105,103,105,110,97,108,80,108,97,99,101,109,101,110,116,33,61,61,116,46,112,108,97,99,101,109,101,110,116,38,38,101,46,95,104,97,110,100,108,101,80,111,112,112,101,114,80,108,97,99,101,109,101,110,116,67,104,97,110,103,101,40,116,41,125,44,111,110,85,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,95,104,97,110,100,108,101,80,111,112,112,101,114,80,108,97,99,101,109,101,110,116,67,104,97,110,103,101,40,116,41,125,125,41,44,112,40,111,41,46,97,100,100,67,108,97,115,115,40,106,110,41,44,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,104,105,108,100,114,101,110,40,41,46,111,110,40,34,109,111,117,115,101,111,118,101,114,34,44,110,117,108,108,44,112,46,110,111,111,112,41,59,118,97,114,32,99,61,102,117,110,99,116,105,111,110,40,41,123,101,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,38,38,101,46,95,102,105,120,84,114,97,110,115,105,116,105,111,110,40,41,59,118,97,114,32,116,61,101,46,95,104,111,118,101,114,83,116,97,116,101,59,101,46,95,104,111,118,101,114,83,116,97,116,101,61,110,117,108,108,44,112,40,101,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,101,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,83,72,79,87,78,41,44,116,61,61,61,120,110,38,38,101,46,95,108,101,97,118,101,40,110,117,108,108,44,101,41,125,59,105,102,40,112,40,116,104,105,115,46,116,105,112,41,46,104,97,115,67,108,97,115,115,40,72,110,41,41,123,118,97,114,32,104,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,116,105,112,41,59,112,40,116,104,105,115,46,116,105,112,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,99,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,104,41,125,101,108,115,101,32,99,40,41,125,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,44,105,61,112,46,69,118,101,110,116,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,72,73,68,69,41,44,111,61,102,117,110,99,116,105,111,110,40,41,123,101,46,95,104,111,118,101,114,83,116,97,116,101,33,61,61,76,110,38,38,110,46,112,97,114,101,110,116,78,111,100,101,38,38,110,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,110,41,44,101,46,95,99,108,101,97,110,84,105,112,67,108,97,115,115,40,41,44,101,46,101,108,101,109,101,110,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,41,44,112,40,101,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,101,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,72,73,68,68,69,78,41,44,110,117,108,108,33,61,61,101,46,95,112,111,112,112,101,114,38,38,101,46,95,112,111,112,112,101,114,46,100,101,115,116,114,111,121,40,41,44,116,38,38,116,40,41,125,59,105,102,40,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,105,41,44,33,105,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,105,102,40,112,40,110,41,46,114,101,109,111,118,101,67,108,97,115,115,40,106,110,41,44,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,104,105,108,100,114,101,110,40,41,46,111,102,102,40,34,109,111,117,115,101,111,118,101,114,34,44,110,117,108,108,44,112,46,110,111,111,112,41,44,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,85,110,93,61,33,49,44,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,87,110,93,61,33,49,44,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,77,110,93,61,33,49,44,112,40,116,104,105,115,46,116,105,112,41,46,104,97,115,67,108,97,115,115,40,72,110,41,41,123,118,97,114,32,114,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,110,41,59,112,40,110,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,111,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,114,41,125,101,108,115,101,32,111,40,41,59,116,104,105,115,46,95,104,111,118,101,114,83,116,97,116,101,61,34,34,125,125,44,116,46,117,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,110,117,108,108,33,61,61,116,104,105,115,46,95,112,111,112,112,101,114,38,38,116,104,105,115,46,95,112,111,112,112,101,114,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,40,41,125,44,116,46,105,115,87,105,116,104,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,66,111,111,108,101,97,110,40,116,104,105,115,46,103,101,116,84,105,116,108,101,40,41,41,125,44,116,46,97,100,100,65,116,116,97,99,104,109,101,110,116,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,46,97,100,100,67,108,97,115,115,40,68,110,43,34,45,34,43,116,41,125,44,116,46,103,101,116,84,105,112,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,105,112,61,116,104,105,115,46,116,105,112,124,124,112,40,116,104,105,115,46,99,111,110,102,105,103,46,116,101,109,112,108,97,116,101,41,91,48,93,44,116,104,105,115,46,116,105,112,125,44,116,46,115,101,116,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,59,116,104,105,115,46,115,101,116,69,108,101,109,101,110,116,67,111,110,116,101,110,116,40,112,40,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,82,110,41,41,44,116,104,105,115,46,103,101,116,84,105,116,108,101,40,41,41,44,112,40,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,72,110,43,34,32,34,43,106,110,41,125,44,116,46,115,101,116,69,108,101,109,101,110,116,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,101,124,124,33,101,46,110,111,100,101,84,121,112,101,38,38,33,101,46,106,113,117,101,114,121,63,116,104,105,115,46,99,111,110,102,105,103,46,104,116,109,108,63,40,116,104,105,115,46,99,111,110,102,105,103,46,115,97,110,105,116,105,122,101,38,38,40,101,61,98,110,40,101,44,116,104,105,115,46,99,111,110,102,105,103,46,119,104,105,116,101,76,105,115,116,44,116,104,105,115,46,99,111,110,102,105,103,46,115,97,110,105,116,105,122,101,70,110,41,41,44,116,46,104,116,109,108,40,101,41,41,58,116,46,116,101,120,116,40,101,41,58,116,104,105,115,46,99,111,110,102,105,103,46,104,116,109,108,63,112,40,101,41,46,112,97,114,101,110,116,40,41,46,105,115,40,116,41,124,124,116,46,101,109,112,116,121,40,41,46,97,112,112,101,110,100,40,101,41,58,116,46,116,101,120,116,40,112,40,101,41,46,116,101,120,116,40,41,41,125,44,116,46,103,101,116,84,105,116,108,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,34,41,59,114,101,116,117,114,110,32,116,124,124,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,99,111,110,102,105,103,46,116,105,116,108,101,63,116,104,105,115,46,99,111,110,102,105,103,46,116,105,116,108,101,46,99,97,108,108,40,116,104,105,115,46,101,108,101,109,101,110,116,41,58,116,104,105,115,46,99,111,110,102,105,103,46,116,105,116,108,101,41,44,116,125,44,116,46,95,103,101,116,79,102,102,115,101,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,44,116,61,123,125,59,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,99,111,110,102,105,103,46,111,102,102,115,101,116,63,116,46,102,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,111,102,102,115,101,116,115,61,108,40,123,125,44,116,46,111,102,102,115,101,116,115,44,101,46,99,111,110,102,105,103,46,111,102,102,115,101,116,40,116,46,111,102,102,115,101,116,115,44,101,46,101,108,101,109,101,110,116,41,124,124,123,125,41,44,116,125,58,116,46,111,102,102,115,101,116,61,116,104,105,115,46,99,111,110,102,105,103,46,111,102,102,115,101,116,44,116,125,44,116,46,95,103,101,116,67,111,110,116,97,105,110,101,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,49,61,61,61,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,63,100,111,99,117,109,101,110,116,46,98,111,100,121,58,109,46,105,115,69,108,101,109,101,110,116,40,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,41,63,112,40,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,41,58,112,40,100,111,99,117,109,101,110,116,41,46,102,105,110,100,40,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,41,125,44,116,46,95,103,101,116,65,116,116,97,99,104,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,78,110,91,116,46,116,111,85,112,112,101,114,67,97,115,101,40,41,93,125,44,116,46,95,115,101,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,61,116,104,105,115,59,116,104,105,115,46,99,111,110,102,105,103,46,116,114,105,103,103,101,114,46,115,112,108,105,116,40,34,32,34,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,34,99,108,105,99,107,34,61,61,61,116,41,112,40,105,46,101,108,101,109,101,110,116,41,46,111,110,40,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,67,76,73,67,75,44,105,46,99,111,110,102,105,103,46,115,101,108,101,99,116,111,114,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,46,116,111,103,103,108,101,40,116,41,125,41,59,101,108,115,101,32,105,102,40,116,33,61,61,66,110,41,123,118,97,114,32,101,61,116,61,61,61,77,110,63,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,77,79,85,83,69,69,78,84,69,82,58,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,70,79,67,85,83,73,78,44,110,61,116,61,61,61,77,110,63,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,77,79,85,83,69,76,69,65,86,69,58,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,70,79,67,85,83,79,85,84,59,112,40,105,46,101,108,101,109,101,110,116,41,46,111,110,40,101,44,105,46,99,111,110,102,105,103,46,115,101,108,101,99,116,111,114,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,46,95,101,110,116,101,114,40,116,41,125,41,46,111,110,40,110,44,105,46,99,111,110,102,105,103,46,115,101,108,101,99,116,111,114,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,46,95,108,101,97,118,101,40,116,41,125,41,125,125,41,44,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,34,46,109,111,100,97,108,34,41,46,111,110,40,34,104,105,100,101,46,98,115,46,109,111,100,97,108,34,44,102,117,110,99,116,105,111,110,40,41,123,105,46,101,108,101,109,101,110,116,38,38,105,46,104,105,100,101,40,41,125,41,44,116,104,105,115,46,99,111,110,102,105,103,46,115,101,108,101,99,116,111,114,63,116,104,105,115,46,99,111,110,102,105,103,61,108,40,123,125,44,116,104,105,115,46,99,111,110,102,105,103,44,123,116,114,105,103,103,101,114,58,34,109,97,110,117,97,108,34,44,115,101,108,101,99,116,111,114,58,34,34,125,41,58,116,104,105,115,46,95,102,105,120,84,105,116,108,101,40,41,125,44,116,46,95,102,105,120,84,105,116,108,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,121,112,101,111,102,32,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,34,41,59,40,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,41,124,124,34,115,116,114,105,110,103,34,33,61,61,116,41,38,38,40,116,104,105,115,46,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,34,44,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,41,124,124,34,34,41,44,116,104,105,115,46,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,34,34,41,41,125,44,116,46,95,101,110,116,101,114,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,59,40,101,61,101,124,124,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,110,41,41,124,124,40,101,61,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,44,116,104,105,115,46,95,103,101,116,68,101,108,101,103,97,116,101,67,111,110,102,105,103,40,41,41,44,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,110,44,101,41,41,44,116,38,38,40,101,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,34,102,111,99,117,115,105,110,34,61,61,61,116,46,116,121,112,101,63,87,110,58,77,110,93,61,33,48,41,44,112,40,101,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,46,104,97,115,67,108,97,115,115,40,106,110,41,124,124,101,46,95,104,111,118,101,114,83,116,97,116,101,61,61,61,76,110,63,101,46,95,104,111,118,101,114,83,116,97,116,101,61,76,110,58,40,99,108,101,97,114,84,105,109,101,111,117,116,40,101,46,95,116,105,109,101,111,117,116,41,44,101,46,95,104,111,118,101,114,83,116,97,116,101,61,76,110,44,101,46,99,111,110,102,105,103,46,100,101,108,97,121,38,38,101,46,99,111,110,102,105,103,46,100,101,108,97,121,46,115,104,111,119,63,101,46,95,116,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,46,95,104,111,118,101,114,83,116,97,116,101,61,61,61,76,110,38,38,101,46,115,104,111,119,40,41,125,44,101,46,99,111,110,102,105,103,46,100,101,108,97,121,46,115,104,111,119,41,58,101,46,115,104,111,119,40,41,41,125,44,116,46,95,108,101,97,118,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,59,40,101,61,101,124,124,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,110,41,41,124,124,40,101,61,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,44,116,104,105,115,46,95,103,101,116,68,101,108,101,103,97,116,101,67,111,110,102,105,103,40,41,41,44,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,110,44,101,41,41,44,116,38,38,40,101,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,34,102,111,99,117,115,111,117,116,34,61,61,61,116,46,116,121,112,101,63,87,110,58,77,110,93,61,33,49,41,44,101,46,95,105,115,87,105,116,104,65,99,116,105,118,101,84,114,105,103,103,101,114,40,41,124,124,40,99,108,101,97,114,84,105,109,101,111,117,116,40,101,46,95,116,105,109,101,111,117,116,41,44,101,46,95,104,111,118,101,114,83,116,97,116,101,61,120,110,44,101,46,99,111,110,102,105,103,46,100,101,108,97,121,38,38,101,46,99,111,110,102,105,103,46,100,101,108,97,121,46,104,105,100,101,63,101,46,95,116,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,46,95,104,111,118,101,114,83,116,97,116,101,61,61,61,120,110,38,38,101,46,104,105,100,101,40,41,125,44,101,46,99,111,110,102,105,103,46,100,101,108,97,121,46,104,105,100,101,41,58,101,46,104,105,100,101,40,41,41,125,44,116,46,95,105,115,87,105,116,104,65,99,116,105,118,101,84,114,105,103,103,101,114,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,32,105,110,32,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,41,105,102,40,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,116,93,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,100,97,116,97,40,41,59,114,101,116,117,114,110,32,79,98,106,101,99,116,46,107,101,121,115,40,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,45,49,33,61,61,65,110,46,105,110,100,101,120,79,102,40,116,41,38,38,100,101,108,101,116,101,32,101,91,116,93,125,41,44,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,40,116,61,108,40,123,125,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,44,101,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,116,63,116,58,123,125,41,41,46,100,101,108,97,121,38,38,40,116,46,100,101,108,97,121,61,123,115,104,111,119,58,116,46,100,101,108,97,121,44,104,105,100,101,58,116,46,100,101,108,97,121,125,41,44,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,46,116,105,116,108,101,38,38,40,116,46,116,105,116,108,101,61,116,46,116,105,116,108,101,46,116,111,83,116,114,105,110,103,40,41,41,44,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,46,99,111,110,116,101,110,116,38,38,40,116,46,99,111,110,116,101,110,116,61,116,46,99,111,110,116,101,110,116,46,116,111,83,116,114,105,110,103,40,41,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,119,110,44,116,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,84,121,112,101,41,44,116,46,115,97,110,105,116,105,122,101,38,38,40,116,46,116,101,109,112,108,97,116,101,61,98,110,40,116,46,116,101,109,112,108,97,116,101,44,116,46,119,104,105,116,101,76,105,115,116,44,116,46,115,97,110,105,116,105,122,101,70,110,41,41,44,116,125,44,116,46,95,103,101,116,68,101,108,101,103,97,116,101,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,125,59,105,102,40,116,104,105,115,46,99,111,110,102,105,103,41,102,111,114,40,118,97,114,32,101,32,105,110,32,116,104,105,115,46,99,111,110,102,105,103,41,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,91,101,93,33,61,61,116,104,105,115,46,99,111,110,102,105,103,91,101,93,38,38,40,116,91,101,93,61,116,104,105,115,46,99,111,110,102,105,103,91,101,93,41,59,114,101,116,117,114,110,32,116,125,44,116,46,95,99,108,101,97,110,84,105,112,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,44,101,61,116,46,97,116,116,114,40,34,99,108,97,115,115,34,41,46,109,97,116,99,104,40,73,110,41,59,110,117,108,108,33,61,61,101,38,38,101,46,108,101,110,103,116,104,38,38,116,46,114,101,109,111,118,101,67,108,97,115,115,40,101,46,106,111,105,110,40,34,34,41,41,125,44,116,46,95,104,97,110,100,108,101,80,111,112,112,101,114,80,108,97,99,101,109,101,110,116,67,104,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,105,110,115,116,97,110,99,101,59,116,104,105,115,46,116,105,112,61,101,46,112,111,112,112,101,114,44,116,104,105,115,46,95,99,108,101,97,110,84,105,112,67,108,97,115,115,40,41,44,116,104,105,115,46,97,100,100,65,116,116,97,99,104,109,101,110,116,67,108,97,115,115,40,116,104,105,115,46,95,103,101,116,65,116,116,97,99,104,109,101,110,116,40,116,46,112,108,97,99,101,109,101,110,116,41,41,125,44,116,46,95,102,105,120,84,114,97,110,115,105,116,105,111,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,44,101,61,116,104,105,115,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,59,110,117,108,108,61,61,61,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,120,45,112,108,97,99,101,109,101,110,116,34,41,38,38,40,112,40,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,72,110,41,44,116,104,105,115,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,61,33,49,44,116,104,105,115,46,104,105,100,101,40,41,44,116,104,105,115,46,115,104,111,119,40,41,44,116,104,105,115,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,61,101,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,67,110,41,44,101,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,38,38,110,59,105,102,40,40,116,124,124,33,47,100,105,115,112,111,115,101,124,104,105,100,101,47,46,116,101,115,116,40,110,41,41,38,38,40,116,124,124,40,116,61,110,101,119,32,105,40,116,104,105,115,44,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,67,110,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,116,91,110,93,40,41,125,125,41,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,110,125,125,44,123,107,101,121,58,34,78,65,77,69,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,119,110,125,125,44,123,107,101,121,58,34,68,65,84,65,95,75,69,89,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,67,110,125,125,44,123,107,101,121,58,34,69,118,101,110,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,80,110,125,125,44,123,107,101,121,58,34,69,86,69,78,84,95,75,69,89,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,84,110,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,84,121,112,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,79,110,125,125,93,41,44,105,125,40,41,59,112,46,102,110,91,119,110,93,61,113,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,119,110,93,46,67,111,110,115,116,114,117,99,116,111,114,61,113,110,44,112,46,102,110,91,119,110,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,119,110,93,61,83,110,44,113,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,75,110,61,34,112,111,112,111,118,101,114,34,44,81,110,61,34,98,115,46,112,111,112,111,118,101,114,34,44,86,110,61,34,46,34,43,81,110,44,89,110,61,112,46,102,110,91,75,110,93,44,122,110,61,34,98,115,45,112,111,112,111,118,101,114,34,44,88,110,61,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,92,92,115,41,34,43,122,110,43,34,92,92,83,43,34,44,34,103,34,41,44,71,110,61,108,40,123,125,44,113,110,46,68,101,102,97,117,108,116,44,123,112,108,97,99,101,109,101,110,116,58,34,114,105,103,104,116,34,44,116,114,105,103,103,101,114,58,34,99,108,105,99,107,34,44,99,111,110,116,101,110,116,58,34,34,44,116,101,109,112,108,97,116,101,58,39,60,100,105,118,32,99,108,97,115,115,61,34,112,111,112,111,118,101,114,34,32,114,111,108,101,61,34,116,111,111,108,116,105,112,34,62,60,100,105,118,32,99,108,97,115,115,61,34,97,114,114,111,119,34,62,60,47,100,105,118,62,60,104,51,32,99,108,97,115,115,61,34,112,111,112,111,118,101,114,45,104,101,97,100,101,114,34,62,60,47,104,51,62,60,100,105,118,32,99,108,97,115,115,61,34,112,111,112,111,118,101,114,45,98,111,100,121,34,62,60,47,100,105,118,62,60,47,100,105,118,62,39,125,41,44,36,110,61,108,40,123,125,44,113,110,46,68,101,102,97,117,108,116,84,121,112,101,44,123,99,111,110,116,101,110,116,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,124,102,117,110,99,116,105,111,110,41,34,125,41,44,74,110,61,34,102,97,100,101,34,44,90,110,61,34,115,104,111,119,34,44,116,105,61,34,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,34,44,101,105,61,34,46,112,111,112,111,118,101,114,45,98,111,100,121,34,44,110,105,61,123,72,73,68,69,58,34,104,105,100,101,34,43,86,110,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,86,110,44,83,72,79,87,58,34,115,104,111,119,34,43,86,110,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,86,110,44,73,78,83,69,82,84,69,68,58,34,105,110,115,101,114,116,101,100,34,43,86,110,44,67,76,73,67,75,58,34,99,108,105,99,107,34,43,86,110,44,70,79,67,85,83,73,78,58,34,102,111,99,117,115,105,110,34,43,86,110,44,70,79,67,85,83,79,85,84,58,34,102,111,99,117,115,111,117,116,34,43,86,110,44,77,79,85,83,69,69,78,84,69,82,58,34,109,111,117,115,101,101,110,116,101,114,34,43,86,110,44,77,79,85,83,69,76,69,65,86,69,58,34,109,111,117,115,101,108,101,97,118,101,34,43,86,110,125,44,105,105,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,59,102,117,110,99,116,105,111,110,32,105,40,41,123,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,124,124,116,104,105,115,125,110,61,116,44,40,101,61,105,41,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,46,112,114,111,116,111,116,121,112,101,41,44,40,101,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,101,41,46,95,95,112,114,111,116,111,95,95,61,110,59,118,97,114,32,111,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,111,46,105,115,87,105,116,104,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,103,101,116,84,105,116,108,101,40,41,124,124,116,104,105,115,46,95,103,101,116,67,111,110,116,101,110,116,40,41,125,44,111,46,97,100,100,65,116,116,97,99,104,109,101,110,116,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,46,97,100,100,67,108,97,115,115,40,122,110,43,34,45,34,43,116,41,125,44,111,46,103,101,116,84,105,112,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,105,112,61,116,104,105,115,46,116,105,112,124,124,112,40,116,104,105,115,46,99,111,110,102,105,103,46,116,101,109,112,108,97,116,101,41,91,48,93,44,116,104,105,115,46,116,105,112,125,44,111,46,115,101,116,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,59,116,104,105,115,46,115,101,116,69,108,101,109,101,110,116,67,111,110,116,101,110,116,40,116,46,102,105,110,100,40,116,105,41,44,116,104,105,115,46,103,101,116,84,105,116,108,101,40,41,41,59,118,97,114,32,101,61,116,104,105,115,46,95,103,101,116,67,111,110,116,101,110,116,40,41,59,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,38,38,40,101,61,101,46,99,97,108,108,40,116,104,105,115,46,101,108,101,109,101,110,116,41,41,44,116,104,105,115,46,115,101,116,69,108,101,109,101,110,116,67,111,110,116,101,110,116,40,116,46,102,105,110,100,40,101,105,41,44,101,41,44,116,46,114,101,109,111,118,101,67,108,97,115,115,40,74,110,43,34,32,34,43,90,110,41,125,44,111,46,95,103,101,116,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,99,111,110,116,101,110,116,34,41,124,124,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,101,110,116,125,44,111,46,95,99,108,101,97,110,84,105,112,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,44,101,61,116,46,97,116,116,114,40,34,99,108,97,115,115,34,41,46,109,97,116,99,104,40,88,110,41,59,110,117,108,108,33,61,61,101,38,38,48,60,101,46,108,101,110,103,116,104,38,38,116,46,114,101,109,111,118,101,67,108,97,115,115,40,101,46,106,111,105,110,40,34,34,41,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,81,110,41,44,101,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,63,110,58,110,117,108,108,59,105,102,40,40,116,124,124,33,47,100,105,115,112,111,115,101,124,104,105,100,101,47,46,116,101,115,116,40,110,41,41,38,38,40,116,124,124,40,116,61,110,101,119,32,105,40,116,104,105,115,44,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,81,110,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,116,91,110,93,40,41,125,125,41,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,71,110,125,125,44,123,107,101,121,58,34,78,65,77,69,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,75,110,125,125,44,123,107,101,121,58,34,68,65,84,65,95,75,69,89,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,110,125,125,44,123,107,101,121,58,34,69,118,101,110,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,105,125,125,44,123,107,101,121,58,34,69,86,69,78,84,95,75,69,89,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,110,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,84,121,112,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,110,125,125,93,41,44,105,125,40,113,110,41,59,112,46,102,110,91,75,110,93,61,105,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,75,110,93,46,67,111,110,115,116,114,117,99,116,111,114,61,105,105,44,112,46,102,110,91,75,110,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,75,110,93,61,89,110,44,105,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,111,105,61,34,115,99,114,111,108,108,115,112,121,34,44,114,105,61,34,98,115,46,115,99,114,111,108,108,115,112,121,34,44,115,105,61,34,46,34,43,114,105,44,97,105,61,112,46,102,110,91,111,105,93,44,108,105,61,123,111,102,102,115,101,116,58,49,48,44,109,101,116,104,111,100,58,34,97,117,116,111,34,44,116,97,114,103,101,116,58,34,34,125,44,99,105,61,123,111,102,102,115,101,116,58,34,110,117,109,98,101,114,34,44,109,101,116,104,111,100,58,34,115,116,114,105,110,103,34,44,116,97,114,103,101,116,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,125,44,104,105,61,123,65,67,84,73,86,65,84,69,58,34,97,99,116,105,118,97,116,101,34,43,115,105,44,83,67,82,79,76,76,58,34,115,99,114,111,108,108,34,43,115,105,44,76,79,65,68,95,68,65,84,65,95,65,80,73,58,34,108,111,97,100,34,43,115,105,43,34,46,100,97,116,97,45,97,112,105,34,125,44,117,105,61,34,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,102,105,61,34,97,99,116,105,118,101,34,44,100,105,61,39,91,100,97,116,97,45,115,112,121,61,34,115,99,114,111,108,108,34,93,39,44,112,105,61,34,46,110,97,118,44,32,46,108,105,115,116,45,103,114,111,117,112,34,44,109,105,61,34,46,110,97,118,45,108,105,110,107,34,44,103,105,61,34,46,110,97,118,45,105,116,101,109,34,44,95,105,61,34,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,34,44,118,105,61,34,46,100,114,111,112,100,111,119,110,34,44,121,105,61,34,46,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,69,105,61,34,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,34,44,98,105,61,34,111,102,102,115,101,116,34,44,119,105,61,34,112,111,115,105,116,105,111,110,34,44,67,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,59,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,34,66,79,68,89,34,61,61,61,116,46,116,97,103,78,97,109,101,63,119,105,110,100,111,119,58,116,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,115,101,108,101,99,116,111,114,61,116,104,105,115,46,95,99,111,110,102,105,103,46,116,97,114,103,101,116,43,34,32,34,43,109,105,43,34,44,34,43,116,104,105,115,46,95,99,111,110,102,105,103,46,116,97,114,103,101,116,43,34,32,34,43,95,105,43,34,44,34,43,116,104,105,115,46,95,99,111,110,102,105,103,46,116,97,114,103,101,116,43,34,32,34,43,121,105,44,116,104,105,115,46,95,111,102,102,115,101,116,115,61,91,93,44,116,104,105,115,46,95,116,97,114,103,101,116,115,61,91,93,44,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,61,110,117,108,108,44,116,104,105,115,46,95,115,99,114,111,108,108,72,101,105,103,104,116,61,48,44,112,40,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,41,46,111,110,40,104,105,46,83,67,82,79,76,76,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,95,112,114,111,99,101,115,115,40,116,41,125,41,44,116,104,105,115,46,114,101,102,114,101,115,104,40,41,44,116,104,105,115,46,95,112,114,111,99,101,115,115,40,41,125,118,97,114,32,116,61,110,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,114,101,102,114,101,115,104,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,44,116,61,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,61,61,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,119,105,110,100,111,119,63,98,105,58,119,105,44,111,61,34,97,117,116,111,34,61,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,109,101,116,104,111,100,63,116,58,116,104,105,115,46,95,99,111,110,102,105,103,46,109,101,116,104,111,100,44,114,61,111,61,61,61,119,105,63,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,84,111,112,40,41,58,48,59,116,104,105,115,46,95,111,102,102,115,101,116,115,61,91,93,44,116,104,105,115,46,95,116,97,114,103,101,116,115,61,91,93,44,116,104,105,115,46,95,115,99,114,111,108,108,72,101,105,103,104,116,61,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,72,101,105,103,104,116,40,41,44,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,41,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,41,59,105,102,40,110,38,38,40,101,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,110,41,41,44,101,41,123,118,97,114,32,105,61,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,105,102,40,105,46,119,105,100,116,104,124,124,105,46,104,101,105,103,104,116,41,114,101,116,117,114,110,91,112,40,101,41,91,111,93,40,41,46,116,111,112,43,114,44,110,93,125,114,101,116,117,114,110,32,110,117,108,108,125,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,91,48,93,45,101,91,48,93,125,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,95,111,102,102,115,101,116,115,46,112,117,115,104,40,116,91,48,93,41,44,101,46,95,116,97,114,103,101,116,115,46,112,117,115,104,40,116,91,49,93,41,125,41,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,114,105,41,44,112,40,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,41,46,111,102,102,40,115,105,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,95,115,101,108,101,99,116,111,114,61,110,117,108,108,44,116,104,105,115,46,95,111,102,102,115,101,116,115,61,110,117,108,108,44,116,104,105,115,46,95,116,97,114,103,101,116,115,61,110,117,108,108,44,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,61,110,117,108,108,44,116,104,105,115,46,95,115,99,114,111,108,108,72,101,105,103,104,116,61,110,117,108,108,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,40,116,61,108,40,123,125,44,108,105,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,116,63,116,58,123,125,41,41,46,116,97,114,103,101,116,41,123,118,97,114,32,101,61,112,40,116,46,116,97,114,103,101,116,41,46,97,116,116,114,40,34,105,100,34,41,59,101,124,124,40,101,61,109,46,103,101,116,85,73,68,40,111,105,41,44,112,40,116,46,116,97,114,103,101,116,41,46,97,116,116,114,40,34,105,100,34,44,101,41,41,44,116,46,116,97,114,103,101,116,61,34,35,34,43,101,125,114,101,116,117,114,110,32,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,111,105,44,116,44,99,105,41,44,116,125,44,116,46,95,103,101,116,83,99,114,111,108,108,84,111,112,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,61,61,119,105,110,100,111,119,63,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,112,97,103,101,89,79,102,102,115,101,116,58,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,115,99,114,111,108,108,84,111,112,125,44,116,46,95,103,101,116,83,99,114,111,108,108,72,101,105,103,104,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,115,99,114,111,108,108,72,101,105,103,104,116,124,124,77,97,116,104,46,109,97,120,40,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,99,114,111,108,108,72,101,105,103,104,116,44,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,115,99,114,111,108,108,72,101,105,103,104,116,41,125,44,116,46,95,103,101,116,79,102,102,115,101,116,72,101,105,103,104,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,61,61,119,105,110,100,111,119,63,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,58,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,104,101,105,103,104,116,125,44,116,46,95,112,114,111,99,101,115,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,84,111,112,40,41,43,116,104,105,115,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,44,101,61,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,72,101,105,103,104,116,40,41,44,110,61,116,104,105,115,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,43,101,45,116,104,105,115,46,95,103,101,116,79,102,102,115,101,116,72,101,105,103,104,116,40,41,59,105,102,40,116,104,105,115,46,95,115,99,114,111,108,108,72,101,105,103,104,116,33,61,61,101,38,38,116,104,105,115,46,114,101,102,114,101,115,104,40,41,44,110,60,61,116,41,123,118,97,114,32,105,61,116,104,105,115,46,95,116,97,114,103,101,116,115,91,116,104,105,115,46,95,116,97,114,103,101,116,115,46,108,101,110,103,116,104,45,49,93,59,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,33,61,61,105,38,38,116,104,105,115,46,95,97,99,116,105,118,97,116,101,40,105,41,125,101,108,115,101,123,105,102,40,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,38,38,116,60,116,104,105,115,46,95,111,102,102,115,101,116,115,91,48,93,38,38,48,60,116,104,105,115,46,95,111,102,102,115,101,116,115,91,48,93,41,114,101,116,117,114,110,32,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,61,110,117,108,108,44,118,111,105,100,32,116,104,105,115,46,95,99,108,101,97,114,40,41,59,102,111,114,40,118,97,114,32,111,61,116,104,105,115,46,95,111,102,102,115,101,116,115,46,108,101,110,103,116,104,59,111,45,45,59,41,123,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,33,61,61,116,104,105,115,46,95,116,97,114,103,101,116,115,91,111,93,38,38,116,62,61,116,104,105,115,46,95,111,102,102,115,101,116,115,91,111,93,38,38,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,95,111,102,102,115,101,116,115,91,111,43,49,93,124,124,116,60,116,104,105,115,46,95,111,102,102,115,101,116,115,91,111,43,49,93,41,38,38,116,104,105,115,46,95,97,99,116,105,118,97,116,101,40,116,104,105,115,46,95,116,97,114,103,101,116,115,91,111,93,41,125,125,125,44,116,46,95,97,99,116,105,118,97,116,101,61,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,61,101,44,116,104,105,115,46,95,99,108,101,97,114,40,41,59,118,97,114,32,116,61,116,104,105,115,46,95,115,101,108,101,99,116,111,114,46,115,112,108,105,116,40,34,44,34,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,43,39,91,100,97,116,97,45,116,97,114,103,101,116,61,34,39,43,101,43,39,34,93,44,39,43,116,43,39,91,104,114,101,102,61,34,39,43,101,43,39,34,93,39,125,41,44,110,61,112,40,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,46,106,111,105,110,40,34,44,34,41,41,41,41,59,110,46,104,97,115,67,108,97,115,115,40,117,105,41,63,40,110,46,99,108,111,115,101,115,116,40,118,105,41,46,102,105,110,100,40,69,105,41,46,97,100,100,67,108,97,115,115,40,102,105,41,44,110,46,97,100,100,67,108,97,115,115,40,102,105,41,41,58,40,110,46,97,100,100,67,108,97,115,115,40,102,105,41,44,110,46,112,97,114,101,110,116,115,40,112,105,41,46,112,114,101,118,40,109,105,43,34,44,32,34,43,95,105,41,46,97,100,100,67,108,97,115,115,40,102,105,41,44,110,46,112,97,114,101,110,116,115,40,112,105,41,46,112,114,101,118,40,103,105,41,46,99,104,105,108,100,114,101,110,40,109,105,41,46,97,100,100,67,108,97,115,115,40,102,105,41,41,44,112,40,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,104,105,46,65,67,84,73,86,65,84,69,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,101,125,41,125,44,116,46,95,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,41,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,102,105,41,125,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,102,105,41,125,41,125,44,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,114,105,41,59,105,102,40,116,124,124,40,116,61,110,101,119,32,110,40,116,104,105,115,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,114,105,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,101,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,101,43,39,34,39,41,59,116,91,101,93,40,41,125,125,41,125,44,115,40,110,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,108,105,125,125,93,41,44,110,125,40,41,59,112,40,119,105,110,100,111,119,41,46,111,110,40,104,105,46,76,79,65,68,95,68,65,84,65,95,65,80,73,44,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,100,105,41,41,44,101,61,116,46,108,101,110,103,116,104,59,101,45,45,59,41,123,118,97,114,32,110,61,112,40,116,91,101,93,41,59,67,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,110,44,110,46,100,97,116,97,40,41,41,125,125,41,44,112,46,102,110,91,111,105,93,61,67,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,111,105,93,46,67,111,110,115,116,114,117,99,116,111,114,61,67,105,44,112,46,102,110,91,111,105,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,111,105,93,61,97,105,44,67,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,84,105,61,34,98,115,46,116,97,98,34,44,83,105,61,34,46,34,43,84,105,44,68,105,61,112,46,102,110,46,116,97,98,44,73,105,61,123,72,73,68,69,58,34,104,105,100,101,34,43,83,105,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,83,105,44,83,72,79,87,58,34,115,104,111,119,34,43,83,105,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,83,105,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,83,105,43,34,46,100,97,116,97,45,97,112,105,34,125,44,65,105,61,34,100,114,111,112,100,111,119,110,45,109,101,110,117,34,44,79,105,61,34,97,99,116,105,118,101,34,44,78,105,61,34,100,105,115,97,98,108,101,100,34,44,107,105,61,34,102,97,100,101,34,44,76,105,61,34,115,104,111,119,34,44,120,105,61,34,46,100,114,111,112,100,111,119,110,34,44,80,105,61,34,46,110,97,118,44,32,46,108,105,115,116,45,103,114,111,117,112,34,44,72,105,61,34,46,97,99,116,105,118,101,34,44,106,105,61,34,62,32,108,105,32,62,32,46,97,99,116,105,118,101,34,44,82,105,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,116,97,98,34,93,44,32,91,100,97,116,97,45,116,111,103,103,108,101,61,34,112,105,108,108,34,93,44,32,91,100,97,116,97,45,116,111,103,103,108,101,61,34,108,105,115,116,34,93,39,44,70,105,61,34,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,34,44,77,105,61,34,62,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,32,46,97,99,116,105,118,101,34,44,87,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,125,118,97,114,32,116,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,33,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,46,110,111,100,101,84,121,112,101,61,61,61,78,111,100,101,46,69,76,69,77,69,78,84,95,78,79,68,69,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,79,105,41,124,124,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,78,105,41,41,41,123,118,97,114,32,116,44,105,44,101,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,80,105,41,91,48,93,44,111,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,105,102,40,101,41,123,118,97,114,32,114,61,34,85,76,34,61,61,61,101,46,110,111,100,101,78,97,109,101,124,124,34,79,76,34,61,61,61,101,46,110,111,100,101,78,97,109,101,63,106,105,58,72,105,59,105,61,40,105,61,112,46,109,97,107,101,65,114,114,97,121,40,112,40,101,41,46,102,105,110,100,40,114,41,41,41,91,105,46,108,101,110,103,116,104,45,49,93,125,118,97,114,32,115,61,112,46,69,118,101,110,116,40,73,105,46,72,73,68,69,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,104,105,115,46,95,101,108,101,109,101,110,116,125,41,44,97,61,112,46,69,118,101,110,116,40,73,105,46,83,72,79,87,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,105,125,41,59,105,102,40,105,38,38,112,40,105,41,46,116,114,105,103,103,101,114,40,115,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,97,41,44,33,97,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,38,38,33,115,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,111,38,38,40,116,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,111,41,41,44,116,104,105,115,46,95,97,99,116,105,118,97,116,101,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,101,41,59,118,97,114,32,108,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,46,69,118,101,110,116,40,73,105,46,72,73,68,68,69,78,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,110,46,95,101,108,101,109,101,110,116,125,41,44,101,61,112,46,69,118,101,110,116,40,73,105,46,83,72,79,87,78,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,105,125,41,59,112,40,105,41,46,116,114,105,103,103,101,114,40,116,41,44,112,40,110,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,101,41,125,59,116,63,116,104,105,115,46,95,97,99,116,105,118,97,116,101,40,116,44,116,46,112,97,114,101,110,116,78,111,100,101,44,108,41,58,108,40,41,125,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,84,105,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,125,44,116,46,95,97,99,116,105,118,97,116,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,105,61,116,104,105,115,44,111,61,40,33,101,124,124,34,85,76,34,33,61,61,101,46,110,111,100,101,78,97,109,101,38,38,34,79,76,34,33,61,61,101,46,110,111,100,101,78,97,109,101,63,112,40,101,41,46,99,104,105,108,100,114,101,110,40,72,105,41,58,112,40,101,41,46,102,105,110,100,40,106,105,41,41,91,48,93,44,114,61,110,38,38,111,38,38,112,40,111,41,46,104,97,115,67,108,97,115,115,40,107,105,41,44,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,46,95,116,114,97,110,115,105,116,105,111,110,67,111,109,112,108,101,116,101,40,116,44,111,44,110,41,125,59,105,102,40,111,38,38,114,41,123,118,97,114,32,97,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,111,41,59,112,40,111,41,46,114,101,109,111,118,101,67,108,97,115,115,40,76,105,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,115,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,97,41,125,101,108,115,101,32,115,40,41,125,44,116,46,95,116,114,97,110,115,105,116,105,111,110,67,111,109,112,108,101,116,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,101,41,123,112,40,101,41,46,114,101,109,111,118,101,67,108,97,115,115,40,79,105,41,59,118,97,114,32,105,61,112,40,101,46,112,97,114,101,110,116,78,111,100,101,41,46,102,105,110,100,40,77,105,41,91,48,93,59,105,38,38,112,40,105,41,46,114,101,109,111,118,101,67,108,97,115,115,40,79,105,41,44,34,116,97,98,34,61,61,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,114,111,108,101,34,41,38,38,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,115,101,108,101,99,116,101,100,34,44,33,49,41,125,105,102,40,112,40,116,41,46,97,100,100,67,108,97,115,115,40,79,105,41,44,34,116,97,98,34,61,61,61,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,114,111,108,101,34,41,38,38,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,115,101,108,101,99,116,101,100,34,44,33,48,41,44,109,46,114,101,102,108,111,119,40,116,41,44,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,107,105,41,38,38,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,76,105,41,44,116,46,112,97,114,101,110,116,78,111,100,101,38,38,112,40,116,46,112,97,114,101,110,116,78,111,100,101,41,46,104,97,115,67,108,97,115,115,40,65,105,41,41,123,118,97,114,32,111,61,112,40,116,41,46,99,108,111,115,101,115,116,40,120,105,41,91,48,93,59,105,102,40,111,41,123,118,97,114,32,114,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,111,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,70,105,41,41,59,112,40,114,41,46,97,100,100,67,108,97,115,115,40,79,105,41,125,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,33,48,41,125,110,38,38,110,40,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,84,105,41,59,105,102,40,101,124,124,40,101,61,110,101,119,32,105,40,116,104,105,115,41,44,116,46,100,97,116,97,40,84,105,44,101,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,101,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,101,91,110,93,40,41,125,125,41,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,93,41,44,105,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,73,105,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,82,105,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,87,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,116,104,105,115,41,44,34,115,104,111,119,34,41,125,41,44,112,46,102,110,46,116,97,98,61,87,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,46,116,97,98,46,67,111,110,115,116,114,117,99,116,111,114,61,87,105,44,112,46,102,110,46,116,97,98,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,46,116,97,98,61,68,105,44,87,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,85,105,61,34,116,111,97,115,116,34,44,66,105,61,34,98,115,46,116,111,97,115,116,34,44,113,105,61,34,46,34,43,66,105,44,75,105,61,112,46,102,110,91,85,105,93,44,81,105,61,123,67,76,73,67,75,95,68,73,83,77,73,83,83,58,34,99,108,105,99,107,46,100,105,115,109,105,115,115,34,43,113,105,44,72,73,68,69,58,34,104,105,100,101,34,43,113,105,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,113,105,44,83,72,79,87,58,34,115,104,111,119,34,43,113,105,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,113,105,125,44,86,105,61,34,102,97,100,101,34,44,89,105,61,34,104,105,100,101,34,44,122,105,61,34,115,104,111,119,34,44,88,105,61,34,115,104,111,119,105,110,103,34,44,71,105,61,123,97,110,105,109,97,116,105,111,110,58,34,98,111,111,108,101,97,110,34,44,97,117,116,111,104,105,100,101,58,34,98,111,111,108,101,97,110,34,44,100,101,108,97,121,58,34,110,117,109,98,101,114,34,125,44,36,105,61,123,97,110,105,109,97,116,105,111,110,58,33,48,44,97,117,116,111,104,105,100,101,58,33,48,44,100,101,108,97,121,58,53,48,48,125,44,74,105,61,39,91,100,97,116,97,45,100,105,115,109,105,115,115,61,34,116,111,97,115,116,34,93,39,44,90,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,116,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,95,115,101,116,76,105,115,116,101,110,101,114,115,40,41,125,118,97,114,32,116,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,81,105,46,83,72,79,87,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,86,105,41,59,118,97,114,32,101,61,102,117,110,99,116,105,111,110,40,41,123,116,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,88,105,41,44,116,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,122,105,41,44,112,40,116,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,81,105,46,83,72,79,87,78,41,44,116,46,95,99,111,110,102,105,103,46,97,117,116,111,104,105,100,101,38,38,116,46,104,105,100,101,40,41,125,59,105,102,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,89,105,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,88,105,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,41,123,118,97,114,32,110,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,101,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,110,41,125,101,108,115,101,32,101,40,41,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,122,105,41,38,38,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,81,105,46,72,73,68,69,41,44,116,63,116,104,105,115,46,95,99,108,111,115,101,40,41,58,116,104,105,115,46,95,116,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,46,95,99,108,111,115,101,40,41,125,44,116,104,105,115,46,95,99,111,110,102,105,103,46,100,101,108,97,121,41,41,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,95,116,105,109,101,111,117,116,41,44,116,104,105,115,46,95,116,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,122,105,41,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,122,105,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,81,105,46,67,76,73,67,75,95,68,73,83,77,73,83,83,41,44,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,66,105,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,108,40,123,125,44,36,105,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,100,97,116,97,40,41,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,116,63,116,58,123,125,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,85,105,44,116,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,84,121,112,101,41,44,116,125,44,116,46,95,115,101,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,81,105,46,67,76,73,67,75,95,68,73,83,77,73,83,83,44,74,105,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,46,104,105,100,101,40,33,48,41,125,41,125,44,116,46,95,99,108,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,101,61,102,117,110,99,116,105,111,110,40,41,123,116,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,89,105,41,44,112,40,116,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,81,105,46,72,73,68,68,69,78,41,125,59,105,102,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,122,105,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,41,123,118,97,114,32,110,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,101,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,110,41,125,101,108,115,101,32,101,40,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,66,105,41,59,105,102,40,101,124,124,40,101,61,110,101,119,32,105,40,116,104,105,115,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,38,38,110,41,44,116,46,100,97,116,97,40,66,105,44,101,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,101,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,101,91,110,93,40,116,104,105,115,41,125,125,41,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,84,121,112,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,71,105,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,105,125,125,93,41,44,105,125,40,41,59,112,46,102,110,91,85,105,93,61,90,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,85,105,93,46,67,111,110,115,116,114,117,99,116,111,114,61,90,105,44,112,46,102,110,91,85,105,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,85,105,93,61,75,105,44,90,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,44,102,117,110,99,116,105,111,110,40,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,112,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,66,111,111,116,115,116,114,97,112,39,115,32,74,97,118,97,83,99,114,105,112,116,32,114,101,113,117,105,114,101,115,32,106,81,117,101,114,121,46,32,106,81,117,101,114,121,32,109,117,115,116,32,98,101,32,105,110,99,108,117,100,101,100,32,98,101,102,111,114,101,32,66,111,111,116,115,116,114,97,112,39,115,32,74,97,118,97,83,99,114,105,112,116,46,34,41,59,118,97,114,32,116,61,112,46,102,110,46,106,113,117,101,114,121,46,115,112,108,105,116,40,34,32,34,41,91,48,93,46,115,112,108,105,116,40,34,46,34,41,59,105,102,40,116,91,48,93,60,50,38,38,116,91,49,93,60,57,124,124,49,61,61,61,116,91,48,93,38,38,57,61,61,61,116,91,49,93,38,38,116,91,50,93,60,49,124,124,52,60,61,116,91,48,93,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,66,111,111,116,115,116,114,97,112,39,115,32,74,97,118,97,83,99,114,105,112,116,32,114,101,113,117,105,114,101,115,32,97,116,32,108,101,97,115,116,32,106,81,117,101,114,121,32,118,49,46,57,46,49,32,98,117,116,32,108,101,115,115,32,116,104,97,110,32,118,52,46,48,46,48,34,41,125,40,41,44,116,46,85,116,105,108,61,109,44,116,46,65,108,101,114,116,61,103,44,116,46,66,117,116,116,111,110,61,107,44,116,46,67,97,114,111,117,115,101,108,61,97,116,44,116,46,67,111,108,108,97,112,115,101,61,67,116,44,116,46,68,114,111,112,100,111,119,110,61,88,101,44,116,46,77,111,100,97,108,61,103,110,44,116,46,80,111,112,111,118,101,114,61,105,105,44,116,46,83,99,114,111,108,108,115,112,121,61,67,105,44,116,46,84,97,98,61,87,105,44,116,46,84,111,97,115,116,61,90,105,44,116,46,84,111,111,108,116,105,112,61,113,110,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,125,41,59,10,10,47,42,42,10,32,42,32,64,108,105,99,101,110,115,101,10,32,42,32,76,111,100,97,115,104,32,108,111,100,97,115,104,46,99,111,109,47,108,105,99,101,110,115,101,32,124,32,85,110,100,101,114,115,99,111,114,101,46,106,115,32,49,46,56,46,51,32,117,110,100,101,114,115,99,111,114,101,106,115,46,111,114,103,47,76,73,67,69,78,83,69,10,32,42,47,10,59,40,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,110,40,110,44,116,44,114,41,123,115,119,105,116,99,104,40,114,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,41,59,99,97,115,101,32,49,58,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,44,114,91,48,93,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,44,114,91,48,93,44,114,91,49,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,44,114,91,48,93,44,114,91,49,93,44,114,91,50,93,41,125,114,101,116,117,114,110,32,110,46,97,112,112,108,121,40,116,44,114,41,125,102,117,110,99,116,105,111,110,32,116,40,110,44,116,44,114,44,101,41,123,102,111,114,40,118,97,114,32,117,61,45,49,44,105,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,117,60,105,59,41,123,118,97,114,32,111,61,110,91,117,93,59,116,40,101,44,111,44,114,40,111,41,44,110,41,125,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,114,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,114,60,101,38,38,102,97,108,115,101,33,61,61,116,40,110,91,114,93,44,114,44,110,41,59,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,101,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,45,45,38,38,102,97,108,115,101,33,61,61,116,40,110,91,114,93,44,114,44,110,41,59,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,117,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,114,60,101,59,41,105,102,40,33,116,40,110,91,114,93,44,114,44,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,10,114,101,116,117,114,110,32,116,114,117,101,125,102,117,110,99,116,105,111,110,32,105,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,117,61,48,44,105,61,91,93,59,43,43,114,60,101,59,41,123,118,97,114,32,111,61,110,91,114,93,59,116,40,111,44,114,44,110,41,38,38,40,105,91,117,43,43,93,61,111,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,111,40,110,44,116,41,123,114,101,116,117,114,110,33,40,110,117,108,108,61,61,110,124,124,33,110,46,108,101,110,103,116,104,41,38,38,45,49,60,118,40,110,44,116,44,48,41,125,102,117,110,99,116,105,111,110,32,102,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,101,60,117,59,41,105,102,40,114,40,116,44,110,91,101,93,41,41,114,101,116,117,114,110,32,116,114,117,101,59,114,101,116,117,114,110,32,102,97,108,115,101,125,102,117,110,99,116,105,111,110,32,99,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,117,61,65,114,114,97,121,40,101,41,59,43,43,114,60,101,59,41,117,91,114,93,61,116,40,110,91,114,93,44,114,44,110,41,59,114,101,116,117,114,110,32,117,125,102,117,110,99,116,105,111,110,32,97,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,116,46,108,101,110,103,116,104,44,117,61,110,46,108,101,110,103,116,104,59,43,43,114,60,101,59,41,110,91,117,43,114,93,61,116,91,114,93,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,108,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,101,38,38,105,38,38,40,114,61,110,91,43,43,117,93,41,59,43,43,117,60,105,59,41,114,61,116,40,114,44,110,91,117,93,44,117,44,110,41,59,10,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,115,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,101,38,38,117,38,38,40,114,61,110,91,45,45,117,93,41,59,117,45,45,59,41,114,61,116,40,114,44,110,91,117,93,44,117,44,110,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,104,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,114,60,101,59,41,105,102,40,116,40,110,91,114,93,44,114,44,110,41,41,114,101,116,117,114,110,32,116,114,117,101,59,114,101,116,117,114,110,32,102,97,108,115,101,125,102,117,110,99,116,105,111,110,32,112,40,110,44,116,44,114,41,123,118,97,114,32,101,59,114,101,116,117,114,110,32,114,40,110,44,102,117,110,99,116,105,111,110,40,110,44,114,44,117,41,123,105,102,40,116,40,110,44,114,44,117,41,41,114,101,116,117,114,110,32,101,61,114,44,102,97,108,115,101,125,41,44,101,125,102,117,110,99,116,105,111,110,32,95,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,110,46,108,101,110,103,116,104,59,102,111,114,40,114,43,61,101,63,49,58,45,49,59,101,63,114,45,45,58,43,43,114,60,117,59,41,105,102,40,116,40,110,91,114,93,44,114,44,110,41,41,114,101,116,117,114,110,32,114,59,114,101,116,117,114,110,45,49,125,102,117,110,99,116,105,111,110,32,118,40,110,44,116,44,114,41,123,105,102,40,116,61,61,61,116,41,110,58,123,45,45,114,59,102,111,114,40,118,97,114,32,101,61,110,46,108,101,110,103,116,104,59,43,43,114,60,101,59,41,105,102,40,110,91,114,93,61,61,61,116,41,123,110,61,114,59,98,114,101,97,107,32,110,125,110,61,45,49,125,101,108,115,101,32,110,61,95,40,110,44,100,44,114,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,103,40,110,44,116,44,114,44,101,41,123,10,45,45,114,59,102,111,114,40,118,97,114,32,117,61,110,46,108,101,110,103,116,104,59,43,43,114,60,117,59,41,105,102,40,101,40,110,91,114,93,44,116,41,41,114,101,116,117,114,110,32,114,59,114,101,116,117,114,110,45,49,125,102,117,110,99,116,105,111,110,32,100,40,110,41,123,114,101,116,117,114,110,32,110,33,61,61,110,125,102,117,110,99,116,105,111,110,32,121,40,110,44,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,114,63,109,40,110,44,116,41,47,114,58,70,125,102,117,110,99,116,105,111,110,32,98,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,84,58,116,91,110,93,125,125,102,117,110,99,116,105,111,110,32,120,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,84,58,110,91,116,93,125,125,102,117,110,99,116,105,111,110,32,106,40,110,44,116,44,114,44,101,44,117,41,123,114,101,116,117,114,110,32,117,40,110,44,102,117,110,99,116,105,111,110,40,110,44,117,44,105,41,123,114,61,101,63,40,101,61,102,97,108,115,101,44,110,41,58,116,40,114,44,110,44,117,44,105,41,125,41,44,114,125,102,117,110,99,116,105,111,110,32,119,40,110,44,116,41,123,118,97,114,32,114,61,110,46,108,101,110,103,116,104,59,102,111,114,40,110,46,115,111,114,116,40,116,41,59,114,45,45,59,41,110,91,114,93,61,110,91,114,93,46,99,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,109,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,44,101,61,45,49,44,117,61,110,46,108,101,110,103,116,104,59,43,43,101,60,117,59,41,123,118,97,114,32,105,61,116,40,110,91,101,93,41,59,105,33,61,61,84,38,38,40,114,61,114,61,61,61,84,63,105,58,114,43,105,41,125,114,101,116,117,114,110,32,114,59,10,125,102,117,110,99,116,105,111,110,32,65,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,65,114,114,97,121,40,110,41,59,43,43,114,60,110,59,41,101,91,114,93,61,116,40,114,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,69,40,110,44,116,41,123,114,101,116,117,114,110,32,99,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,91,116,44,110,91,116,93,93,125,41,125,102,117,110,99,116,105,111,110,32,107,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,40,116,41,125,125,102,117,110,99,116,105,111,110,32,83,40,110,44,116,41,123,114,101,116,117,114,110,32,99,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,91,116,93,125,41,125,102,117,110,99,116,105,111,110,32,79,40,110,44,116,41,123,114,101,116,117,114,110,32,110,46,104,97,115,40,116,41,125,102,117,110,99,116,105,111,110,32,73,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,59,43,43,114,60,101,38,38,45,49,60,118,40,116,44,110,91,114,93,44,48,41,59,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,82,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,110,46,108,101,110,103,116,104,59,114,45,45,38,38,45,49,60,118,40,116,44,110,91,114,93,44,48,41,59,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,122,40,110,41,123,114,101,116,117,114,110,34,92,92,34,43,85,110,91,110,93,125,102,117,110,99,116,105,111,110,32,87,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,65,114,114,97,121,40,110,46,115,105,122,101,41,59,114,101,116,117,114,110,32,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,110,44,101,41,123,114,91,43,43,116,93,61,91,101,44,110,93,59,10,125,41,44,114,125,102,117,110,99,116,105,111,110,32,66,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,110,40,116,40,114,41,41,125,125,102,117,110,99,116,105,111,110,32,76,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,44,117,61,48,44,105,61,91,93,59,43,43,114,60,101,59,41,123,118,97,114,32,111,61,110,91,114,93,59,111,33,61,61,116,38,38,34,95,95,108,111,100,97,115,104,95,112,108,97,99,101,104,111,108,100,101,114,95,95,34,33,61,61,111,124,124,40,110,91,114,93,61,34,95,95,108,111,100,97,115,104,95,112,108,97,99,101,104,111,108,100,101,114,95,95,34,44,105,91,117,43,43,93,61,114,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,85,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,65,114,114,97,121,40,110,46,115,105,122,101,41,59,114,101,116,117,114,110,32,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,110,41,123,114,91,43,43,116,93,61,110,125,41,44,114,125,102,117,110,99,116,105,111,110,32,67,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,65,114,114,97,121,40,110,46,115,105,122,101,41,59,114,101,116,117,114,110,32,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,110,41,123,114,91,43,43,116,93,61,91,110,44,110,93,125,41,44,114,125,102,117,110,99,116,105,111,110,32,68,40,110,41,123,105,102,40,82,110,46,116,101,115,116,40,110,41,41,123,102,111,114,40,118,97,114,32,116,61,79,110,46,108,97,115,116,73,110,100,101,120,61,48,59,79,110,46,116,101,115,116,40,110,41,59,41,43,43,116,59,110,61,116,125,101,108,115,101,32,110,61,81,110,40,110,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,77,40,110,41,123,114,101,116,117,114,110,32,82,110,46,116,101,115,116,40,110,41,63,110,46,109,97,116,99,104,40,79,110,41,124,124,91,93,58,110,46,115,112,108,105,116,40,34,34,41,59,10,125,118,97,114,32,84,44,36,61,49,47,48,44,70,61,78,97,78,44,78,61,91,91,34,97,114,121,34,44,49,50,56,93,44,91,34,98,105,110,100,34,44,49,93,44,91,34,98,105,110,100,75,101,121,34,44,50,93,44,91,34,99,117,114,114,121,34,44,56,93,44,91,34,99,117,114,114,121,82,105,103,104,116,34,44,49,54,93,44,91,34,102,108,105,112,34,44,53,49,50,93,44,91,34,112,97,114,116,105,97,108,34,44,51,50,93,44,91,34,112,97,114,116,105,97,108,82,105,103,104,116,34,44,54,52,93,44,91,34,114,101,97,114,103,34,44,50,53,54,93,93,44,80,61,47,92,98,95,95,112,92,43,61,39,39,59,47,103,44,90,61,47,92,98,40,95,95,112,92,43,61,41,39,39,92,43,47,103,44,113,61,47,40,95,95,101,92,40,46,42,63,92,41,124,92,98,95,95,116,92,41,41,92,43,39,39,59,47,103,44,86,61,47,38,40,63,58,97,109,112,124,108,116,124,103,116,124,113,117,111,116,124,35,51,57,41,59,47,103,44,75,61,47,91,38,60,62,34,39,93,47,103,44,71,61,82,101,103,69,120,112,40,86,46,115,111,117,114,99,101,41,44,72,61,82,101,103,69,120,112,40,75,46,115,111,117,114,99,101,41,44,74,61,47,60,37,45,40,91,92,115,92,83,93,43,63,41,37,62,47,103,44,89,61,47,60,37,40,91,92,115,92,83,93,43,63,41,37,62,47,103,44,81,61,47,60,37,61,40,91,92,115,92,83,93,43,63,41,37,62,47,103,44,88,61,47,92,46,124,92,91,40,63,58,91,94,91,92,93,93,42,124,40,91,34,39,93,41,40,63,58,40,63,33,92,49,41,91,94,92,92,93,124,92,92,46,41,42,63,92,49,41,92,93,47,44,110,110,61,47,94,92,119,42,36,47,44,116,110,61,47,91,94,46,91,92,93,93,43,124,92,91,40,63,58,40,45,63,92,100,43,40,63,58,92,46,92,100,43,41,63,41,124,40,91,34,39,93,41,40,40,63,58,40,63,33,92,50,41,91,94,92,92,93,124,92,92,46,41,42,63,41,92,50,41,92,93,124,40,63,61,40,63,58,92,46,124,92,91,92,93,41,40,63,58,92,46,124,92,91,92,93,124,36,41,41,47,103,44,114,110,61,47,91,92,92,94,36,46,42,43,63,40,41,91,92,93,123,125,124,93,47,103,44,101,110,61,82,101,103,69,120,112,40,114,110,46,115,111,117,114,99,101,41,44,117,110,61,47,94,92,115,43,124,92,115,43,36,47,103,44,111,110,61,47,94,92,115,43,47,44,102,110,61,47,92,115,43,36,47,44,99,110,61,47,92,123,40,63,58,92,110,92,47,92,42,32,92,91,119,114,97,112,112,101,100,32,119,105,116,104,32,46,43,92,93,32,92,42,92,47,41,63,92,110,63,47,44,97,110,61,47,92,123,92,110,92,47,92,42,32,92,91,119,114,97,112,112,101,100,32,119,105,116,104,32,40,46,43,41,92,93,32,92,42,47,44,108,110,61,47,44,63,32,38,32,47,44,115,110,61,47,91,94,92,120,48,48,45,92,120,50,102,92,120,51,97,45,92,120,52,48,92,120,53,98,45,92,120,54,48,92,120,55,98,45,92,120,55,102,93,43,47,103,44,104,110,61,47,92,92,40,92,92,41,63,47,103,44,112,110,61,47,92,36,92,123,40,91,94,92,92,125,93,42,40,63,58,92,92,46,91,94,92,92,125,93,42,41,42,41,92,125,47,103,44,95,110,61,47,92,119,42,36,47,44,118,110,61,47,94,91,45,43,93,48,120,91,48,45,57,97,45,102,93,43,36,47,105,44,103,110,61,47,94,48,98,91,48,49,93,43,36,47,105,44,100,110,61,47,94,92,91,111,98,106,101,99,116,32,46,43,63,67,111,110,115,116,114,117,99,116,111,114,92,93,36,47,44,121,110,61,47,94,48,111,91,48,45,55,93,43,36,47,105,44,98,110,61,47,94,40,63,58,48,124,91,49,45,57,93,92,100,42,41,36,47,44,120,110,61,47,91,92,120,99,48,45,92,120,100,54,92,120,100,56,45,92,120,102,54,92,120,102,56,45,92,120,102,102,92,117,48,49,48,48,45,92,117,48,49,55,102,93,47,103,44,106,110,61,47,40,36,94,41,47,44,119,110,61,47,91,39,92,110,92,114,92,117,50,48,50,56,92,117,50,48,50,57,92,92,93,47,103,44,109,110,61,34,91,92,92,117,102,101,48,101,92,92,117,102,101,48,102,93,63,40,63,58,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,124,92,92,117,100,56,51,99,91,92,92,117,100,102,102,98,45,92,92,117,100,102,102,102,93,41,63,40,63,58,92,92,117,50,48,48,100,40,63,58,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,93,124,40,63,58,92,92,117,100,56,51,99,91,92,92,117,100,100,101,54,45,92,92,117,100,100,102,102,93,41,123,50,125,124,91,92,92,117,100,56,48,48,45,92,92,117,100,98,102,102,93,91,92,92,117,100,99,48,48,45,92,92,117,100,102,102,102,93,41,91,92,92,117,102,101,48,101,92,92,117,102,101,48,102,93,63,40,63,58,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,124,92,92,117,100,56,51,99,91,92,92,117,100,102,102,98,45,92,92,117,100,102,102,102,93,41,63,41,42,34,44,65,110,61,34,40,63,58,91,92,92,117,50,55,48,48,45,92,92,117,50,55,98,102,93,124,40,63,58,92,92,117,100,56,51,99,91,92,92,117,100,100,101,54,45,92,92,117,100,100,102,102,93,41,123,50,125,124,91,92,92,117,100,56,48,48,45,92,92,117,100,98,102,102,93,91,92,92,117,100,99,48,48,45,92,92,117,100,102,102,102,93,41,34,43,109,110,44,69,110,61,34,40,63,58,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,93,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,63,124,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,124,40,63,58,92,92,117,100,56,51,99,91,92,92,117,100,100,101,54,45,92,92,117,100,100,102,102,93,41,123,50,125,124,91,92,92,117,100,56,48,48,45,92,92,117,100,98,102,102,93,91,92,92,117,100,99,48,48,45,92,92,117,100,102,102,102,93,124,91,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,93,41,34,44,107,110,61,82,101,103,69,120,112,40,34,91,39,92,117,50,48,49,57,93,34,44,34,103,34,41,44,83,110,61,82,101,103,69,120,112,40,34,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,34,44,34,103,34,41,44,79,110,61,82,101,103,69,120,112,40,34,92,92,117,100,56,51,99,91,92,92,117,100,102,102,98,45,92,92,117,100,102,102,102,93,40,63,61,92,92,117,100,56,51,99,91,92,92,117,100,102,102,98,45,92,92,117,100,102,102,102,93,41,124,34,43,69,110,43,109,110,44,34,103,34,41,44,73,110,61,82,101,103,69,120,112,40,91,34,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,63,91,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,93,43,40,63,58,91,39,92,117,50,48,49,57,93,40,63,58,100,124,108,108,124,109,124,114,101,124,115,124,116,124,118,101,41,41,63,40,63,61,91,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,93,124,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,124,36,41,124,40,63,58,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,124,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,92,92,100,43,92,92,117,50,55,48,48,45,92,92,117,50,55,98,102,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,41,43,40,63,58,91,39,92,117,50,48,49,57,93,40,63,58,68,124,76,76,124,77,124,82,69,124,83,124,84,124,86,69,41,41,63,40,63,61,91,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,93,124,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,40,63,58,91,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,93,124,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,92,92,100,43,92,92,117,50,55,48,48,45,92,92,117,50,55,98,102,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,41,124,36,41,124,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,63,40,63,58,91,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,93,124,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,92,92,100,43,92,92,117,50,55,48,48,45,92,92,117,50,55,98,102,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,41,43,40,63,58,91,39,92,117,50,48,49,57,93,40,63,58,100,124,108,108,124,109,124,114,101,124,115,124,116,124,118,101,41,41,63,124,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,43,40,63,58,91,39,92,117,50,48,49,57,93,40,63,58,68,124,76,76,124,77,124,82,69,124,83,124,84,124,86,69,41,41,63,124,92,92,100,42,40,63,58,49,83,84,124,50,78,68,124,51,82,68,124,40,63,33,91,49,50,51,93,41,92,92,100,84,72,41,40,63,61,92,92,98,124,91,97,45,122,95,93,41,124,92,92,100,42,40,63,58,49,115,116,124,50,110,100,124,51,114,100,124,40,63,33,91,49,50,51,93,41,92,92,100,116,104,41,40,63,61,92,92,98,124,91,65,45,90,95,93,41,124,92,92,100,43,34,44,65,110,93,46,106,111,105,110,40,34,124,34,41,44,34,103,34,41,44,82,110,61,82,101,103,69,120,112,40,34,91,92,92,117,50,48,48,100,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,92,92,117,102,101,48,101,92,92,117,102,101,48,102,93,34,41,44,122,110,61,47,91,97,45,122,93,91,65,45,90,93,124,91,65,45,90,93,123,50,125,91,97,45,122,93,124,91,48,45,57,93,91,97,45,122,65,45,90,93,124,91,97,45,122,65,45,90,93,91,48,45,57,93,124,91,94,97,45,122,65,45,90,48,45,57,32,93,47,44,87,110,61,34,65,114,114,97,121,32,66,117,102,102,101,114,32,68,97,116,97,86,105,101,119,32,68,97,116,101,32,69,114,114,111,114,32,70,108,111,97,116,51,50,65,114,114,97,121,32,70,108,111,97,116,54,52,65,114,114,97,121,32,70,117,110,99,116,105,111,110,32,73,110,116,56,65,114,114,97,121,32,73,110,116,49,54,65,114,114,97,121,32,73,110,116,51,50,65,114,114,97,121,32,77,97,112,32,77,97,116,104,32,79,98,106,101,99,116,32,80,114,111,109,105,115,101,32,82,101,103,69,120,112,32,83,101,116,32,83,116,114,105,110,103,32,83,121,109,98,111,108,32,84,121,112,101,69,114,114,111,114,32,85,105,110,116,56,65,114,114,97,121,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,32,85,105,110,116,49,54,65,114,114,97,121,32,85,105,110,116,51,50,65,114,114,97,121,32,87,101,97,107,77,97,112,32,95,32,99,108,101,97,114,84,105,109,101,111,117,116,32,105,115,70,105,110,105,116,101,32,112,97,114,115,101,73,110,116,32,115,101,116,84,105,109,101,111,117,116,34,46,115,112,108,105,116,40,34,32,34,41,44,66,110,61,123,125,59,10,66,110,91,34,91,111,98,106,101,99,116,32,70,108,111,97,116,51,50,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,70,108,111,97,116,54,52,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,73,110,116,56,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,73,110,116,49,54,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,73,110,116,51,50,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,56,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,49,54,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,51,50,65,114,114,97,121,93,34,93,61,116,114,117,101,44,66,110,91,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,69,114,114,111,114,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,77,97,112,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,83,101,116,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,93,61,102,97,108,115,101,59,10,118,97,114,32,76,110,61,123,125,59,76,110,91,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,70,108,111,97,116,51,50,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,70,108,111,97,116,54,52,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,73,110,116,56,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,73,110,116,49,54,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,73,110,116,51,50,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,77,97,112,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,83,101,116,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,56,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,49,54,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,51,50,65,114,114,97,121,93,34,93,61,116,114,117,101,44,10,76,110,91,34,91,111,98,106,101,99,116,32,69,114,114,111,114,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,93,61,102,97,108,115,101,59,118,97,114,32,85,110,61,123,34,92,92,34,58,34,92,92,34,44,34,39,34,58,34,39,34,44,34,92,110,34,58,34,110,34,44,34,92,114,34,58,34,114,34,44,34,92,117,50,48,50,56,34,58,34,117,50,48,50,56,34,44,34,92,117,50,48,50,57,34,58,34,117,50,48,50,57,34,125,44,67,110,61,112,97,114,115,101,70,108,111,97,116,44,68,110,61,112,97,114,115,101,73,110,116,44,77,110,61,116,121,112,101,111,102,32,103,108,111,98,97,108,61,61,34,111,98,106,101,99,116,34,38,38,103,108,111,98,97,108,38,38,103,108,111,98,97,108,46,79,98,106,101,99,116,61,61,61,79,98,106,101,99,116,38,38,103,108,111,98,97,108,44,84,110,61,116,121,112,101,111,102,32,115,101,108,102,61,61,34,111,98,106,101,99,116,34,38,38,115,101,108,102,38,38,115,101,108,102,46,79,98,106,101,99,116,61,61,61,79,98,106,101,99,116,38,38,115,101,108,102,44,36,110,61,77,110,124,124,84,110,124,124,70,117,110,99,116,105,111,110,40,34,114,101,116,117,114,110,32,116,104,105,115,34,41,40,41,44,70,110,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,61,61,34,111,98,106,101,99,116,34,38,38,101,120,112,111,114,116,115,38,38,33,101,120,112,111,114,116,115,46,110,111,100,101,84,121,112,101,38,38,101,120,112,111,114,116,115,44,78,110,61,70,110,38,38,116,121,112,101,111,102,32,109,111,100,117,108,101,61,61,34,111,98,106,101,99,116,34,38,38,109,111,100,117,108,101,38,38,33,109,111,100,117,108,101,46,110,111,100,101,84,121,112,101,38,38,109,111,100,117,108,101,44,80,110,61,78,110,38,38,78,110,46,101,120,112,111,114,116,115,61,61,61,70,110,44,90,110,61,80,110,38,38,77,110,46,112,114,111,99,101,115,115,44,113,110,61,102,117,110,99,116,105,111,110,40,41,123,10,116,114,121,123,118,97,114,32,110,61,78,110,38,38,78,110,46,102,38,38,78,110,46,102,40,34,117,116,105,108,34,41,46,116,121,112,101,115,59,114,101,116,117,114,110,32,110,63,110,58,90,110,38,38,90,110,46,98,105,110,100,105,110,103,38,38,90,110,46,98,105,110,100,105,110,103,40,34,117,116,105,108,34,41,125,99,97,116,99,104,40,110,41,123,125,125,40,41,44,86,110,61,113,110,38,38,113,110,46,105,115,65,114,114,97,121,66,117,102,102,101,114,44,75,110,61,113,110,38,38,113,110,46,105,115,68,97,116,101,44,71,110,61,113,110,38,38,113,110,46,105,115,77,97,112,44,72,110,61,113,110,38,38,113,110,46,105,115,82,101,103,69,120,112,44,74,110,61,113,110,38,38,113,110,46,105,115,83,101,116,44,89,110,61,113,110,38,38,113,110,46,105,115,84,121,112,101,100,65,114,114,97,121,44,81,110,61,98,40,34,108,101,110,103,116,104,34,41,44,88,110,61,120,40,123,34,92,120,99,48,34,58,34,65,34,44,34,92,120,99,49,34,58,34,65,34,44,34,92,120,99,50,34,58,34,65,34,44,34,92,120,99,51,34,58,34,65,34,44,34,92,120,99,52,34,58,34,65,34,44,34,92,120,99,53,34,58,34,65,34,44,34,92,120,101,48,34,58,34,97,34,44,34,92,120,101,49,34,58,34,97,34,44,34,92,120,101,50,34,58,34,97,34,44,34,92,120,101,51,34,58,34,97,34,44,34,92,120,101,52,34,58,34,97,34,44,34,92,120,101,53,34,58,34,97,34,44,34,92,120,99,55,34,58,34,67,34,44,34,92,120,101,55,34,58,34,99,34,44,34,92,120,100,48,34,58,34,68,34,44,34,92,120,102,48,34,58,34,100,34,44,34,92,120,99,56,34,58,34,69,34,44,34,92,120,99,57,34,58,34,69,34,44,34,92,120,99,97,34,58,34,69,34,44,34,92,120,99,98,34,58,34,69,34,44,34,92,120,101,56,34,58,34,101,34,44,34,92,120,101,57,34,58,34,101,34,44,34,92,120,101,97,34,58,34,101,34,44,34,92,120,101,98,34,58,34,101,34,44,34,92,120,99,99,34,58,34,73,34,44,10,34,92,120,99,100,34,58,34,73,34,44,34,92,120,99,101,34,58,34,73,34,44,34,92,120,99,102,34,58,34,73,34,44,34,92,120,101,99,34,58,34,105,34,44,34,92,120,101,100,34,58,34,105,34,44,34,92,120,101,101,34,58,34,105,34,44,34,92,120,101,102,34,58,34,105,34,44,34,92,120,100,49,34,58,34,78,34,44,34,92,120,102,49,34,58,34,110,34,44,34,92,120,100,50,34,58,34,79,34,44,34,92,120,100,51,34,58,34,79,34,44,34,92,120,100,52,34,58,34,79,34,44,34,92,120,100,53,34,58,34,79,34,44,34,92,120,100,54,34,58,34,79,34,44,34,92,120,100,56,34,58,34,79,34,44,34,92,120,102,50,34,58,34,111,34,44,34,92,120,102,51,34,58,34,111,34,44,34,92,120,102,52,34,58,34,111,34,44,34,92,120,102,53,34,58,34,111,34,44,34,92,120,102,54,34,58,34,111,34,44,34,92,120,102,56,34,58,34,111,34,44,34,92,120,100,57,34,58,34,85,34,44,34,92,120,100,97,34,58,34,85,34,44,34,92,120,100,98,34,58,34,85,34,44,34,92,120,100,99,34,58,34,85,34,44,34,92,120,102,57,34,58,34,117,34,44,34,92,120,102,97,34,58,34,117,34,44,34,92,120,102,98,34,58,34,117,34,44,34,92,120,102,99,34,58,34,117,34,44,34,92,120,100,100,34,58,34,89,34,44,34,92,120,102,100,34,58,34,121,34,44,34,92,120,102,102,34,58,34,121,34,44,34,92,120,99,54,34,58,34,65,101,34,44,34,92,120,101,54,34,58,34,97,101,34,44,34,92,120,100,101,34,58,34,84,104,34,44,34,92,120,102,101,34,58,34,116,104,34,44,34,92,120,100,102,34,58,34,115,115,34,44,34,92,117,48,49,48,48,34,58,34,65,34,44,34,92,117,48,49,48,50,34,58,34,65,34,44,34,92,117,48,49,48,52,34,58,34,65,34,44,34,92,117,48,49,48,49,34,58,34,97,34,44,34,92,117,48,49,48,51,34,58,34,97,34,44,34,92,117,48,49,48,53,34,58,34,97,34,44,34,92,117,48,49,48,54,34,58,34,67,34,44,10,34,92,117,48,49,48,56,34,58,34,67,34,44,34,92,117,48,49,48,97,34,58,34,67,34,44,34,92,117,48,49,48,99,34,58,34,67,34,44,34,92,117,48,49,48,55,34,58,34,99,34,44,34,92,117,48,49,48,57,34,58,34,99,34,44,34,92,117,48,49,48,98,34,58,34,99,34,44,34,92,117,48,49,48,100,34,58,34,99,34,44,34,92,117,48,49,48,101,34,58,34,68,34,44,34,92,117,48,49,49,48,34,58,34,68,34,44,34,92,117,48,49,48,102,34,58,34,100,34,44,34,92,117,48,49,49,49,34,58,34,100,34,44,34,92,117,48,49,49,50,34,58,34,69,34,44,34,92,117,48,49,49,52,34,58,34,69,34,44,34,92,117,48,49,49,54,34,58,34,69,34,44,34,92,117,48,49,49,56,34,58,34,69,34,44,34,92,117,48,49,49,97,34,58,34,69,34,44,34,92,117,48,49,49,51,34,58,34,101,34,44,34,92,117,48,49,49,53,34,58,34,101,34,44,34,92,117,48,49,49,55,34,58,34,101,34,44,34,92,117,48,49,49,57,34,58,34,101,34,44,34,92,117,48,49,49,98,34,58,34,101,34,44,34,92,117,48,49,49,99,34,58,34,71,34,44,34,92,117,48,49,49,101,34,58,34,71,34,44,34,92,117,48,49,50,48,34,58,34,71,34,44,34,92,117,48,49,50,50,34,58,34,71,34,44,34,92,117,48,49,49,100,34,58,34,103,34,44,34,92,117,48,49,49,102,34,58,34,103,34,44,34,92,117,48,49,50,49,34,58,34,103,34,44,34,92,117,48,49,50,51,34,58,34,103,34,44,34,92,117,48,49,50,52,34,58,34,72,34,44,34,92,117,48,49,50,54,34,58,34,72,34,44,34,92,117,48,49,50,53,34,58,34,104,34,44,34,92,117,48,49,50,55,34,58,34,104,34,44,34,92,117,48,49,50,56,34,58,34,73,34,44,34,92,117,48,49,50,97,34,58,34,73,34,44,34,92,117,48,49,50,99,34,58,34,73,34,44,34,92,117,48,49,50,101,34,58,34,73,34,44,34,92,117,48,49,51,48,34,58,34,73,34,44,34,92,117,48,49,50,57,34,58,34,105,34,44,10,34,92,117,48,49,50,98,34,58,34,105,34,44,34,92,117,48,49,50,100,34,58,34,105,34,44,34,92,117,48,49,50,102,34,58,34,105,34,44,34,92,117,48,49,51,49,34,58,34,105,34,44,34,92,117,48,49,51,52,34,58,34,74,34,44,34,92,117,48,49,51,53,34,58,34,106,34,44,34,92,117,48,49,51,54,34,58,34,75,34,44,34,92,117,48,49,51,55,34,58,34,107,34,44,34,92,117,48,49,51,56,34,58,34,107,34,44,34,92,117,48,49,51,57,34,58,34,76,34,44,34,92,117,48,49,51,98,34,58,34,76,34,44,34,92,117,48,49,51,100,34,58,34,76,34,44,34,92,117,48,49,51,102,34,58,34,76,34,44,34,92,117,48,49,52,49,34,58,34,76,34,44,34,92,117,48,49,51,97,34,58,34,108,34,44,34,92,117,48,49,51,99,34,58,34,108,34,44,34,92,117,48,49,51,101,34,58,34,108,34,44,34,92,117,48,49,52,48,34,58,34,108,34,44,34,92,117,48,49,52,50,34,58,34,108,34,44,34,92,117,48,49,52,51,34,58,34,78,34,44,34,92,117,48,49,52,53,34,58,34,78,34,44,34,92,117,48,49,52,55,34,58,34,78,34,44,34,92,117,48,49,52,97,34,58,34,78,34,44,34,92,117,48,49,52,52,34,58,34,110,34,44,34,92,117,48,49,52,54,34,58,34,110,34,44,34,92,117,48,49,52,56,34,58,34,110,34,44,34,92,117,48,49,52,98,34,58,34,110,34,44,34,92,117,48,49,52,99,34,58,34,79,34,44,34,92,117,48,49,52,101,34,58,34,79,34,44,34,92,117,48,49,53,48,34,58,34,79,34,44,34,92,117,48,49,52,100,34,58,34,111,34,44,34,92,117,48,49,52,102,34,58,34,111,34,44,34,92,117,48,49,53,49,34,58,34,111,34,44,34,92,117,48,49,53,52,34,58,34,82,34,44,34,92,117,48,49,53,54,34,58,34,82,34,44,34,92,117,48,49,53,56,34,58,34,82,34,44,34,92,117,48,49,53,53,34,58,34,114,34,44,34,92,117,48,49,53,55,34,58,34,114,34,44,34,92,117,48,49,53,57,34,58,34,114,34,44,10,34,92,117,48,49,53,97,34,58,34,83,34,44,34,92,117,48,49,53,99,34,58,34,83,34,44,34,92,117,48,49,53,101,34,58,34,83,34,44,34,92,117,48,49,54,48,34,58,34,83,34,44,34,92,117,48,49,53,98,34,58,34,115,34,44,34,92,117,48,49,53,100,34,58,34,115,34,44,34,92,117,48,49,53,102,34,58,34,115,34,44,34,92,117,48,49,54,49,34,58,34,115,34,44,34,92,117,48,49,54,50,34,58,34,84,34,44,34,92,117,48,49,54,52,34,58,34,84,34,44,34,92,117,48,49,54,54,34,58,34,84,34,44,34,92,117,48,49,54,51,34,58,34,116,34,44,34,92,117,48,49,54,53,34,58,34,116,34,44,34,92,117,48,49,54,55,34,58,34,116,34,44,34,92,117,48,49,54,56,34,58,34,85,34,44,34,92,117,48,49,54,97,34,58,34,85,34,44,34,92,117,48,49,54,99,34,58,34,85,34,44,34,92,117,48,49,54,101,34,58,34,85,34,44,34,92,117,48,49,55,48,34,58,34,85,34,44,34,92,117,48,49,55,50,34,58,34,85,34,44,34,92,117,48,49,54,57,34,58,34,117,34,44,34,92,117,48,49,54,98,34,58,34,117,34,44,34,92,117,48,49,54,100,34,58,34,117,34,44,34,92,117,48,49,54,102,34,58,34,117,34,44,34,92,117,48,49,55,49,34,58,34,117,34,44,34,92,117,48,49,55,51,34,58,34,117,34,44,34,92,117,48,49,55,52,34,58,34,87,34,44,34,92,117,48,49,55,53,34,58,34,119,34,44,34,92,117,48,49,55,54,34,58,34,89,34,44,34,92,117,48,49,55,55,34,58,34,121,34,44,34,92,117,48,49,55,56,34,58,34,89,34,44,34,92,117,48,49,55,57,34,58,34,90,34,44,34,92,117,48,49,55,98,34,58,34,90,34,44,34,92,117,48,49,55,100,34,58,34,90,34,44,34,92,117,48,49,55,97,34,58,34,122,34,44,34,92,117,48,49,55,99,34,58,34,122,34,44,34,92,117,48,49,55,101,34,58,34,122,34,44,34,92,117,48,49,51,50,34,58,34,73,74,34,44,34,92,117,48,49,51,51,34,58,34,105,106,34,44,10,34,92,117,48,49,53,50,34,58,34,79,101,34,44,34,92,117,48,49,53,51,34,58,34,111,101,34,44,34,92,117,48,49,52,57,34,58,34,39,110,34,44,34,92,117,48,49,55,102,34,58,34,115,34,125,41,44,110,116,61,120,40,123,34,38,34,58,34,38,97,109,112,59,34,44,34,60,34,58,34,38,108,116,59,34,44,34,62,34,58,34,38,103,116,59,34,44,39,34,39,58,34,38,113,117,111,116,59,34,44,34,39,34,58,34,38,35,51,57,59,34,125,41,44,116,116,61,120,40,123,34,38,97,109,112,59,34,58,34,38,34,44,34,38,108,116,59,34,58,34,60,34,44,34,38,103,116,59,34,58,34,62,34,44,34,38,113,117,111,116,59,34,58,39,34,39,44,34,38,35,51,57,59,34,58,34,39,34,125,41,44,114,116,61,102,117,110,99,116,105,111,110,32,120,40,109,110,41,123,102,117,110,99,116,105,111,110,32,65,110,40,110,41,123,105,102,40,121,117,40,110,41,38,38,33,102,102,40,110,41,38,38,33,40,110,32,105,110,115,116,97,110,99,101,111,102,32,85,110,41,41,123,105,102,40,110,32,105,110,115,116,97,110,99,101,111,102,32,79,110,41,114,101,116,117,114,110,32,110,59,105,102,40,111,105,46,99,97,108,108,40,110,44,34,95,95,119,114,97,112,112,101,100,95,95,34,41,41,114,101,116,117,114,110,32,70,101,40,110,41,125,114,101,116,117,114,110,32,110,101,119,32,79,110,40,110,41,125,102,117,110,99,116,105,111,110,32,69,110,40,41,123,125,102,117,110,99,116,105,111,110,32,79,110,40,110,44,116,41,123,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,61,110,44,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,61,91,93,44,116,104,105,115,46,95,95,99,104,97,105,110,95,95,61,33,33,116,44,116,104,105,115,46,95,95,105,110,100,101,120,95,95,61,48,44,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,61,84,125,102,117,110,99,116,105,111,110,32,85,110,40,110,41,123,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,61,110,44,10,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,61,91,93,44,116,104,105,115,46,95,95,100,105,114,95,95,61,49,44,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,61,102,97,108,115,101,44,116,104,105,115,46,95,95,105,116,101,114,97,116,101,101,115,95,95,61,91,93,44,116,104,105,115,46,95,95,116,97,107,101,67,111,117,110,116,95,95,61,52,50,57,52,57,54,55,50,57,53,44,116,104,105,115,46,95,95,118,105,101,119,115,95,95,61,91,93,125,102,117,110,99,116,105,111,110,32,77,110,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,116,104,105,115,46,99,108,101,97,114,40,41,59,43,43,116,60,114,59,41,123,118,97,114,32,101,61,110,91,116,93,59,116,104,105,115,46,115,101,116,40,101,91,48,93,44,101,91,49,93,41,125,125,102,117,110,99,116,105,111,110,32,84,110,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,116,104,105,115,46,99,108,101,97,114,40,41,59,43,43,116,60,114,59,41,123,118,97,114,32,101,61,110,91,116,93,59,116,104,105,115,46,115,101,116,40,101,91,48,93,44,101,91,49,93,41,125,125,102,117,110,99,116,105,111,110,32,70,110,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,116,104,105,115,46,99,108,101,97,114,40,41,59,43,43,116,60,114,59,41,123,118,97,114,32,101,61,110,91,116,93,59,116,104,105,115,46,115,101,116,40,101,91,48,93,44,101,91,49,93,41,125,125,102,117,110,99,116,105,111,110,32,78,110,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,70,110,59,43,43,116,60,114,59,41,116,104,105,115,46,97,100,100,40,110,91,116,93,41,59,10,125,102,117,110,99,116,105,111,110,32,90,110,40,110,41,123,116,104,105,115,46,115,105,122,101,61,40,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,84,110,40,110,41,41,46,115,105,122,101,125,102,117,110,99,116,105,111,110,32,113,110,40,110,44,116,41,123,118,97,114,32,114,44,101,61,102,102,40,110,41,44,117,61,33,101,38,38,111,102,40,110,41,44,105,61,33,101,38,38,33,117,38,38,97,102,40,110,41,44,111,61,33,101,38,38,33,117,38,38,33,105,38,38,95,102,40,110,41,44,117,61,40,101,61,101,124,124,117,124,124,105,124,124,111,41,63,65,40,110,46,108,101,110,103,116,104,44,110,105,41,58,91,93,44,102,61,117,46,108,101,110,103,116,104,59,102,111,114,40,114,32,105,110,32,110,41,33,116,38,38,33,111,105,46,99,97,108,108,40,110,44,114,41,124,124,101,38,38,40,34,108,101,110,103,116,104,34,61,61,114,124,124,105,38,38,40,34,111,102,102,115,101,116,34,61,61,114,124,124,34,112,97,114,101,110,116,34,61,61,114,41,124,124,111,38,38,40,34,98,117,102,102,101,114,34,61,61,114,124,124,34,98,121,116,101,76,101,110,103,116,104,34,61,61,114,124,124,34,98,121,116,101,79,102,102,115,101,116,34,61,61,114,41,124,124,83,101,40,114,44,102,41,41,124,124,117,46,112,117,115,104,40,114,41,59,114,101,116,117,114,110,32,117,125,102,117,110,99,116,105,111,110,32,81,110,40,110,41,123,118,97,114,32,116,61,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,63,110,91,105,114,40,48,44,116,45,49,41,93,58,84,125,102,117,110,99,116,105,111,110,32,101,116,40,110,44,116,41,123,114,101,116,117,114,110,32,68,101,40,85,114,40,110,41,44,112,116,40,116,44,48,44,110,46,108,101,110,103,116,104,41,41,125,102,117,110,99,116,105,111,110,32,117,116,40,110,41,123,114,101,116,117,114,110,32,68,101,40,85,114,40,110,41,41,125,102,117,110,99,116,105,111,110,32,105,116,40,110,44,116,44,114,41,123,40,114,61,61,61,84,124,124,108,117,40,110,91,116,93,44,114,41,41,38,38,40,114,33,61,61,84,124,124,116,32,105,110,32,110,41,124,124,115,116,40,110,44,116,44,114,41,59,10,125,102,117,110,99,116,105,111,110,32,111,116,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,91,116,93,59,111,105,46,99,97,108,108,40,110,44,116,41,38,38,108,117,40,101,44,114,41,38,38,40,114,33,61,61,84,124,124,116,32,105,110,32,110,41,124,124,115,116,40,110,44,116,44,114,41,125,102,117,110,99,116,105,111,110,32,102,116,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,110,46,108,101,110,103,116,104,59,114,45,45,59,41,105,102,40,108,117,40,110,91,114,93,91,48,93,44,116,41,41,114,101,116,117,114,110,32,114,59,114,101,116,117,114,110,45,49,125,102,117,110,99,116,105,111,110,32,99,116,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,117,44,105,41,123,116,40,101,44,110,44,114,40,110,41,44,105,41,125,41,44,101,125,102,117,110,99,116,105,111,110,32,97,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,67,114,40,116,44,87,117,40,116,41,44,110,41,125,102,117,110,99,116,105,111,110,32,108,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,67,114,40,116,44,66,117,40,116,41,44,110,41,125,102,117,110,99,116,105,111,110,32,115,116,40,110,44,116,44,114,41,123,34,95,95,112,114,111,116,111,95,95,34,61,61,116,38,38,65,105,63,65,105,40,110,44,116,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,116,114,117,101,44,101,110,117,109,101,114,97,98,108,101,58,116,114,117,101,44,118,97,108,117,101,58,114,44,119,114,105,116,97,98,108,101,58,116,114,117,101,125,41,58,110,91,116,93,61,114,125,102,117,110,99,116,105,111,110,32,104,116,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,116,46,108,101,110,103,116,104,44,117,61,75,117,40,101,41,44,105,61,110,117,108,108,61,61,110,59,43,43,114,60,101,59,41,117,91,114,93,61,105,63,84,58,82,117,40,110,44,116,91,114,93,41,59,114,101,116,117,114,110,32,117,59,10,125,102,117,110,99,116,105,111,110,32,112,116,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,61,61,61,110,38,38,40,114,33,61,61,84,38,38,40,110,61,110,60,61,114,63,110,58,114,41,44,116,33,61,61,84,38,38,40,110,61,110,62,61,116,63,110,58,116,41,41,44,110,125,102,117,110,99,116,105,111,110,32,95,116,40,110,44,116,44,101,44,117,44,105,44,111,41,123,118,97,114,32,102,44,99,61,49,38,116,44,97,61,50,38,116,44,108,61,52,38,116,59,105,102,40,101,38,38,40,102,61,105,63,101,40,110,44,117,44,105,44,111,41,58,101,40,110,41,41,44,102,33,61,61,84,41,114,101,116,117,114,110,32,102,59,105,102,40,33,100,117,40,110,41,41,114,101,116,117,114,110,32,110,59,105,102,40,117,61,102,102,40,110,41,41,123,105,102,40,102,61,109,101,40,110,41,44,33,99,41,114,101,116,117,114,110,32,85,114,40,110,44,102,41,125,101,108,115,101,123,118,97,114,32,115,61,118,111,40,110,41,44,104,61,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,61,61,115,124,124,34,91,111,98,106,101,99,116,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,93,34,61,61,115,59,105,102,40,97,102,40,110,41,41,114,101,116,117,114,110,32,73,114,40,110,44,99,41,59,105,102,40,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,61,61,115,124,124,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,115,124,124,104,38,38,33,105,41,123,105,102,40,102,61,97,124,124,104,63,123,125,58,65,101,40,110,41,44,33,99,41,114,101,116,117,114,110,32,97,63,77,114,40,110,44,108,116,40,102,44,110,41,41,58,68,114,40,110,44,97,116,40,102,44,110,41,41,125,101,108,115,101,123,105,102,40,33,76,110,91,115,93,41,114,101,116,117,114,110,32,105,63,110,58,123,125,59,102,61,69,101,40,110,44,115,44,99,41,125,125,105,102,40,111,124,124,40,111,61,110,101,119,32,90,110,41,44,10,105,61,111,46,103,101,116,40,110,41,41,114,101,116,117,114,110,32,105,59,111,46,115,101,116,40,110,44,102,41,44,112,102,40,110,41,63,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,114,41,123,102,46,97,100,100,40,95,116,40,114,44,116,44,101,44,114,44,110,44,111,41,41,125,41,58,115,102,40,110,41,38,38,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,114,44,117,41,123,102,46,115,101,116,40,117,44,95,116,40,114,44,116,44,101,44,117,44,110,44,111,41,41,125,41,59,118,97,114,32,97,61,108,63,97,63,118,101,58,95,101,58,97,63,66,117,58,87,117,44,112,61,117,63,84,58,97,40,110,41,59,114,101,116,117,114,110,32,114,40,112,124,124,110,44,102,117,110,99,116,105,111,110,40,114,44,117,41,123,112,38,38,40,117,61,114,44,114,61,110,91,117,93,41,44,111,116,40,102,44,117,44,95,116,40,114,44,116,44,101,44,117,44,110,44,111,41,41,125,41,44,102,125,102,117,110,99,116,105,111,110,32,118,116,40,110,41,123,118,97,114,32,116,61,87,117,40,110,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,103,116,40,114,44,110,44,116,41,125,125,102,117,110,99,116,105,111,110,32,103,116,40,110,44,116,44,114,41,123,118,97,114,32,101,61,114,46,108,101,110,103,116,104,59,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,33,101,59,102,111,114,40,110,61,81,117,40,110,41,59,101,45,45,59,41,123,118,97,114,32,117,61,114,91,101,93,44,105,61,116,91,117,93,44,111,61,110,91,117,93,59,105,102,40,111,61,61,61,84,38,38,33,40,117,32,105,110,32,110,41,124,124,33,105,40,111,41,41,114,101,116,117,114,110,32,102,97,108,115,101,125,114,101,116,117,114,110,32,116,114,117,101,125,102,117,110,99,116,105,111,110,32,100,116,40,110,44,116,44,114,41,123,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,10,114,101,116,117,114,110,32,98,111,40,102,117,110,99,116,105,111,110,40,41,123,110,46,97,112,112,108,121,40,84,44,114,41,125,44,116,41,125,102,117,110,99,116,105,111,110,32,121,116,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,111,44,97,61,116,114,117,101,44,108,61,110,46,108,101,110,103,116,104,44,115,61,91,93,44,104,61,116,46,108,101,110,103,116,104,59,105,102,40,33,108,41,114,101,116,117,114,110,32,115,59,114,38,38,40,116,61,99,40,116,44,107,40,114,41,41,41,44,101,63,40,105,61,102,44,97,61,102,97,108,115,101,41,58,50,48,48,60,61,116,46,108,101,110,103,116,104,38,38,40,105,61,79,44,97,61,102,97,108,115,101,44,116,61,110,101,119,32,78,110,40,116,41,41,59,110,58,102,111,114,40,59,43,43,117,60,108,59,41,123,118,97,114,32,112,61,110,91,117,93,44,95,61,110,117,108,108,61,61,114,63,112,58,114,40,112,41,44,112,61,101,124,124,48,33,61,61,112,63,112,58,48,59,105,102,40,97,38,38,95,61,61,61,95,41,123,102,111,114,40,118,97,114,32,118,61,104,59,118,45,45,59,41,105,102,40,116,91,118,93,61,61,61,95,41,99,111,110,116,105,110,117,101,32,110,59,115,46,112,117,115,104,40,112,41,125,101,108,115,101,32,105,40,116,44,95,44,101,41,124,124,115,46,112,117,115,104,40,112,41,125,114,101,116,117,114,110,32,115,125,102,117,110,99,116,105,111,110,32,98,116,40,110,44,116,41,123,118,97,114,32,114,61,116,114,117,101,59,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,114,101,116,117,114,110,32,114,61,33,33,116,40,110,44,101,44,117,41,125,41,44,114,125,102,117,110,99,116,105,111,110,32,120,116,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,110,46,108,101,110,103,116,104,59,43,43,101,60,117,59,41,123,118,97,114,32,105,61,110,91,101,93,44,111,61,116,40,105,41,59,105,102,40,110,117,108,108,33,61,111,38,38,40,102,61,61,61,84,63,111,61,61,61,111,38,38,33,119,117,40,111,41,58,114,40,111,44,102,41,41,41,118,97,114,32,102,61,111,44,99,61,105,59,10,125,114,101,116,117,114,110,32,99,125,102,117,110,99,116,105,111,110,32,106,116,40,110,44,116,41,123,118,97,114,32,114,61,91,93,59,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,116,40,110,44,101,44,117,41,38,38,114,46,112,117,115,104,40,110,41,125,41,44,114,125,102,117,110,99,116,105,111,110,32,119,116,40,110,44,116,44,114,44,101,44,117,41,123,118,97,114,32,105,61,45,49,44,111,61,110,46,108,101,110,103,116,104,59,102,111,114,40,114,124,124,40,114,61,107,101,41,44,117,124,124,40,117,61,91,93,41,59,43,43,105,60,111,59,41,123,118,97,114,32,102,61,110,91,105,93,59,48,60,116,38,38,114,40,102,41,63,49,60,116,63,119,116,40,102,44,116,45,49,44,114,44,101,44,117,41,58,97,40,117,44,102,41,58,101,124,124,40,117,91,117,46,108,101,110,103,116,104,93,61,102,41,125,114,101,116,117,114,110,32,117,125,102,117,110,99,116,105,111,110,32,109,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,111,111,40,110,44,116,44,87,117,41,125,102,117,110,99,116,105,111,110,32,65,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,102,111,40,110,44,116,44,87,117,41,125,102,117,110,99,116,105,111,110,32,69,116,40,110,44,116,41,123,114,101,116,117,114,110,32,105,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,95,117,40,110,91,116,93,41,125,41,125,102,117,110,99,116,105,111,110,32,107,116,40,110,44,116,41,123,116,61,83,114,40,116,44,110,41,59,102,111,114,40,118,97,114,32,114,61,48,44,101,61,116,46,108,101,110,103,116,104,59,110,117,108,108,33,61,110,38,38,114,60,101,59,41,110,61,110,91,77,101,40,116,91,114,43,43,93,41,93,59,114,101,116,117,114,110,32,114,38,38,114,61,61,101,63,110,58,84,125,102,117,110,99,116,105,111,110,32,83,116,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,116,40,110,41,44,10,102,102,40,110,41,63,116,58,97,40,116,44,114,40,110,41,41,125,102,117,110,99,116,105,111,110,32,79,116,40,110,41,123,105,102,40,110,117,108,108,61,61,110,41,110,61,110,61,61,61,84,63,34,91,111,98,106,101,99,116,32,85,110,100,101,102,105,110,101,100,93,34,58,34,91,111,98,106,101,99,116,32,78,117,108,108,93,34,59,101,108,115,101,32,105,102,40,109,105,38,38,109,105,32,105,110,32,81,117,40,110,41,41,123,118,97,114,32,116,61,111,105,46,99,97,108,108,40,110,44,109,105,41,44,114,61,110,91,109,105,93,59,116,114,121,123,110,91,109,105,93,61,84,59,118,97,114,32,101,61,116,114,117,101,125,99,97,116,99,104,40,110,41,123,125,118,97,114,32,117,61,97,105,46,99,97,108,108,40,110,41,59,101,38,38,40,116,63,110,91,109,105,93,61,114,58,100,101,108,101,116,101,32,110,91,109,105,93,41,44,110,61,117,125,101,108,115,101,32,110,61,97,105,46,99,97,108,108,40,110,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,73,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,62,116,125,102,117,110,99,116,105,111,110,32,82,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,111,105,46,99,97,108,108,40,110,44,116,41,125,102,117,110,99,116,105,111,110,32,122,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,116,32,105,110,32,81,117,40,110,41,125,102,117,110,99,116,105,111,110,32,87,116,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,114,63,102,58,111,44,117,61,110,91,48,93,46,108,101,110,103,116,104,44,105,61,110,46,108,101,110,103,116,104,44,97,61,105,44,108,61,75,117,40,105,41,44,115,61,49,47,48,44,104,61,91,93,59,97,45,45,59,41,123,118,97,114,32,112,61,110,91,97,93,59,97,38,38,116,38,38,40,112,61,99,40,112,44,107,40,116,41,41,41,44,115,61,67,105,40,112,46,108,101,110,103,116,104,44,115,41,44,10,108,91,97,93,61,33,114,38,38,40,116,124,124,49,50,48,60,61,117,38,38,49,50,48,60,61,112,46,108,101,110,103,116,104,41,63,110,101,119,32,78,110,40,97,38,38,112,41,58,84,125,118,97,114,32,112,61,110,91,48,93,44,95,61,45,49,44,118,61,108,91,48,93,59,110,58,102,111,114,40,59,43,43,95,60,117,38,38,104,46,108,101,110,103,116,104,60,115,59,41,123,118,97,114,32,103,61,112,91,95,93,44,100,61,116,63,116,40,103,41,58,103,44,103,61,114,124,124,48,33,61,61,103,63,103,58,48,59,105,102,40,118,63,33,79,40,118,44,100,41,58,33,101,40,104,44,100,44,114,41,41,123,102,111,114,40,97,61,105,59,45,45,97,59,41,123,118,97,114,32,121,61,108,91,97,93,59,105,102,40,121,63,33,79,40,121,44,100,41,58,33,101,40,110,91,97,93,44,100,44,114,41,41,99,111,110,116,105,110,117,101,32,110,125,118,38,38,118,46,112,117,115,104,40,100,41,44,104,46,112,117,115,104,40,103,41,125,125,114,101,116,117,114,110,32,104,125,102,117,110,99,116,105,111,110,32,66,116,40,110,44,116,44,114,41,123,118,97,114,32,101,61,123,125,59,114,101,116,117,114,110,32,109,116,40,110,44,102,117,110,99,116,105,111,110,40,110,44,117,44,105,41,123,116,40,101,44,114,40,110,41,44,117,44,105,41,125,41,44,101,125,102,117,110,99,116,105,111,110,32,76,116,40,116,44,114,44,101,41,123,114,101,116,117,114,110,32,114,61,83,114,40,114,44,116,41,44,116,61,50,62,114,46,108,101,110,103,116,104,63,116,58,107,116,40,116,44,104,114,40,114,44,48,44,45,49,41,41,44,114,61,110,117,108,108,61,61,116,63,116,58,116,91,77,101,40,86,101,40,114,41,41,93,44,110,117,108,108,61,61,114,63,84,58,110,40,114,44,116,44,101,41,125,102,117,110,99,116,105,111,110,32,85,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,67,116,40,110,41,123,10,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,68,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,77,116,40,110,44,116,44,114,44,101,44,117,41,123,105,102,40,110,61,61,61,116,41,116,61,116,114,117,101,59,101,108,115,101,32,105,102,40,110,117,108,108,61,61,110,124,124,110,117,108,108,61,61,116,124,124,33,121,117,40,110,41,38,38,33,121,117,40,116,41,41,116,61,110,33,61,61,110,38,38,116,33,61,61,116,59,101,108,115,101,32,110,58,123,118,97,114,32,105,61,102,102,40,110,41,44,111,61,102,102,40,116,41,44,102,61,105,63,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,58,118,111,40,110,41,44,99,61,111,63,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,58,118,111,40,116,41,44,102,61,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,102,63,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,58,102,44,99,61,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,99,63,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,58,99,44,97,61,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,61,61,102,44,111,61,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,61,61,99,59,105,102,40,40,99,61,102,61,61,99,41,38,38,97,102,40,110,41,41,123,105,102,40,33,97,102,40,116,41,41,123,116,61,102,97,108,115,101,59,98,114,101,97,107,32,110,125,105,61,116,114,117,101,44,97,61,102,97,108,115,101,125,105,102,40,99,38,38,33,97,41,117,124,124,40,117,61,110,101,119,32,90,110,41,44,116,61,105,124,124,95,102,40,110,41,63,115,101,40,110,44,116,44,114,44,101,44,77,116,44,117,41,58,104,101,40,110,44,116,44,102,44,114,44,101,44,77,116,44,117,41,59,101,108,115,101,123,10,105,102,40,33,40,49,38,114,41,38,38,40,105,61,97,38,38,111,105,46,99,97,108,108,40,110,44,34,95,95,119,114,97,112,112,101,100,95,95,34,41,44,102,61,111,38,38,111,105,46,99,97,108,108,40,116,44,34,95,95,119,114,97,112,112,101,100,95,95,34,41,44,105,124,124,102,41,41,123,110,61,105,63,110,46,118,97,108,117,101,40,41,58,110,44,116,61,102,63,116,46,118,97,108,117,101,40,41,58,116,44,117,124,124,40,117,61,110,101,119,32,90,110,41,44,116,61,77,116,40,110,44,116,44,114,44,101,44,117,41,59,98,114,101,97,107,32,110,125,105,102,40,99,41,116,58,105,102,40,117,124,124,40,117,61,110,101,119,32,90,110,41,44,105,61,49,38,114,44,102,61,95,101,40,110,41,44,111,61,102,46,108,101,110,103,116,104,44,99,61,95,101,40,116,41,46,108,101,110,103,116,104,44,111,61,61,99,124,124,105,41,123,102,111,114,40,97,61,111,59,97,45,45,59,41,123,118,97,114,32,108,61,102,91,97,93,59,105,102,40,33,40,105,63,108,32,105,110,32,116,58,111,105,46,99,97,108,108,40,116,44,108,41,41,41,123,116,61,102,97,108,115,101,59,98,114,101,97,107,32,116,125,125,105,102,40,40,99,61,117,46,103,101,116,40,110,41,41,38,38,117,46,103,101,116,40,116,41,41,116,61,99,61,61,116,59,101,108,115,101,123,99,61,116,114,117,101,44,117,46,115,101,116,40,110,44,116,41,44,117,46,115,101,116,40,116,44,110,41,59,102,111,114,40,118,97,114,32,115,61,105,59,43,43,97,60,111,59,41,123,118,97,114,32,108,61,102,91,97,93,44,104,61,110,91,108,93,44,112,61,116,91,108,93,59,105,102,40,101,41,118,97,114,32,95,61,105,63,101,40,112,44,104,44,108,44,116,44,110,44,117,41,58,101,40,104,44,112,44,108,44,110,44,116,44,117,41,59,105,102,40,95,61,61,61,84,63,104,33,61,61,112,38,38,33,77,116,40,104,44,112,44,114,44,101,44,117,41,58,33,95,41,123,99,61,102,97,108,115,101,59,98,114,101,97,107,125,115,124,124,40,115,61,34,99,111,110,115,116,114,117,99,116,111,114,34,61,61,108,41,59,10,125,99,38,38,33,115,38,38,40,114,61,110,46,99,111,110,115,116,114,117,99,116,111,114,44,101,61,116,46,99,111,110,115,116,114,117,99,116,111,114,44,114,33,61,101,38,38,34,99,111,110,115,116,114,117,99,116,111,114,34,105,110,32,110,38,38,34,99,111,110,115,116,114,117,99,116,111,114,34,105,110,32,116,38,38,33,40,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,38,38,114,32,105,110,115,116,97,110,99,101,111,102,32,114,38,38,116,121,112,101,111,102,32,101,61,61,34,102,117,110,99,116,105,111,110,34,38,38,101,32,105,110,115,116,97,110,99,101,111,102,32,101,41,38,38,40,99,61,102,97,108,115,101,41,41,44,117,46,100,101,108,101,116,101,40,110,41,44,117,46,100,101,108,101,116,101,40,116,41,44,116,61,99,125,125,101,108,115,101,32,116,61,102,97,108,115,101,59,101,108,115,101,32,116,61,102,97,108,115,101,125,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,84,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,118,111,40,110,41,125,102,117,110,99,116,105,111,110,32,36,116,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,114,46,108,101,110,103,116,104,44,105,61,117,44,111,61,33,101,59,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,33,105,59,102,111,114,40,110,61,81,117,40,110,41,59,117,45,45,59,41,123,118,97,114,32,102,61,114,91,117,93,59,105,102,40,111,38,38,102,91,50,93,63,102,91,49,93,33,61,61,110,91,102,91,48,93,93,58,33,40,102,91,48,93,105,110,32,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,125,102,111,114,40,59,43,43,117,60,105,59,41,123,118,97,114,32,102,61,114,91,117,93,44,99,61,102,91,48,93,44,97,61,110,91,99,93,44,108,61,102,91,49,93,59,105,102,40,111,38,38,102,91,50,93,41,123,105,102,40,97,61,61,61,84,38,38,33,40,99,32,105,110,32,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,10,125,101,108,115,101,123,105,102,40,102,61,110,101,119,32,90,110,44,101,41,118,97,114,32,115,61,101,40,97,44,108,44,99,44,110,44,116,44,102,41,59,105,102,40,115,61,61,61,84,63,33,77,116,40,108,44,97,44,51,44,101,44,102,41,58,33,115,41,114,101,116,117,114,110,32,102,97,108,115,101,125,125,114,101,116,117,114,110,32,116,114,117,101,125,102,117,110,99,116,105,111,110,32,70,116,40,110,41,123,114,101,116,117,114,110,33,40,33,100,117,40,110,41,124,124,99,105,38,38,99,105,32,105,110,32,110,41,38,38,40,95,117,40,110,41,63,104,105,58,100,110,41,46,116,101,115,116,40,84,101,40,110,41,41,125,102,117,110,99,116,105,111,110,32,78,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,80,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,118,111,40,110,41,125,102,117,110,99,116,105,111,110,32,90,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,103,117,40,110,46,108,101,110,103,116,104,41,38,38,33,33,66,110,91,79,116,40,110,41,93,125,102,117,110,99,116,105,111,110,32,113,116,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,63,110,58,110,117,108,108,61,61,110,63,36,117,58,116,121,112,101,111,102,32,110,61,61,34,111,98,106,101,99,116,34,63,102,102,40,110,41,63,74,116,40,110,91,48,93,44,110,91,49,93,41,58,72,116,40,110,41,58,90,117,40,110,41,125,102,117,110,99,116,105,111,110,32,86,116,40,110,41,123,105,102,40,33,122,101,40,110,41,41,114,101,116,117,114,110,32,76,105,40,110,41,59,118,97,114,32,116,44,114,61,91,93,59,102,111,114,40,116,32,105,110,32,81,117,40,110,41,41,111,105,46,99,97,108,108,40,110,44,116,41,38,38,34,99,111,110,115,116,114,117,99,116,111,114,34,33,61,116,38,38,114,46,112,117,115,104,40,116,41,59,10,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,75,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,60,116,125,102,117,110,99,116,105,111,110,32,71,116,40,110,44,116,41,123,118,97,114,32,114,61,45,49,44,101,61,115,117,40,110,41,63,75,117,40,110,46,108,101,110,103,116,104,41,58,91,93,59,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,117,44,105,41,123,101,91,43,43,114,93,61,116,40,110,44,117,44,105,41,125,41,44,101,125,102,117,110,99,116,105,111,110,32,72,116,40,110,41,123,118,97,114,32,116,61,120,101,40,110,41,59,114,101,116,117,114,110,32,49,61,61,116,46,108,101,110,103,116,104,38,38,116,91,48,93,91,50,93,63,87,101,40,116,91,48,93,91,48,93,44,116,91,48,93,91,49,93,41,58,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,114,61,61,61,110,124,124,36,116,40,114,44,110,44,116,41,125,125,102,117,110,99,116,105,111,110,32,74,116,40,110,44,116,41,123,114,101,116,117,114,110,32,73,101,40,110,41,38,38,116,61,61,61,116,38,38,33,100,117,40,116,41,63,87,101,40,77,101,40,110,41,44,116,41,58,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,101,61,82,117,40,114,44,110,41,59,114,101,116,117,114,110,32,101,61,61,61,84,38,38,101,61,61,61,116,63,122,117,40,114,44,110,41,58,77,116,40,116,44,101,44,51,41,125,125,102,117,110,99,116,105,111,110,32,89,116,40,110,44,116,44,114,44,101,44,117,41,123,110,33,61,61,116,38,38,111,111,40,116,44,102,117,110,99,116,105,111,110,40,105,44,111,41,123,105,102,40,117,124,124,40,117,61,110,101,119,32,90,110,41,44,100,117,40,105,41,41,123,118,97,114,32,102,61,117,44,99,61,76,101,40,110,44,111,41,44,97,61,76,101,40,116,44,111,41,44,108,61,102,46,103,101,116,40,97,41,59,105,102,40,108,41,105,116,40,110,44,111,44,108,41,59,101,108,115,101,123,10,118,97,114,32,108,61,101,63,101,40,99,44,97,44,111,43,34,34,44,110,44,116,44,102,41,58,84,44,115,61,108,61,61,61,84,59,105,102,40,115,41,123,118,97,114,32,104,61,102,102,40,97,41,44,112,61,33,104,38,38,97,102,40,97,41,44,95,61,33,104,38,38,33,112,38,38,95,102,40,97,41,44,108,61,97,59,104,124,124,112,124,124,95,63,102,102,40,99,41,63,108,61,99,58,104,117,40,99,41,63,108,61,85,114,40,99,41,58,112,63,40,115,61,102,97,108,115,101,44,108,61,73,114,40,97,44,116,114,117,101,41,41,58,95,63,40,115,61,102,97,108,115,101,44,108,61,122,114,40,97,44,116,114,117,101,41,41,58,108,61,91,93,58,120,117,40,97,41,124,124,111,102,40,97,41,63,40,108,61,99,44,111,102,40,99,41,63,108,61,79,117,40,99,41,58,100,117,40,99,41,38,38,33,95,117,40,99,41,124,124,40,108,61,65,101,40,97,41,41,41,58,115,61,102,97,108,115,101,125,115,38,38,40,102,46,115,101,116,40,97,44,108,41,44,89,116,40,108,44,97,44,114,44,101,44,102,41,44,102,46,100,101,108,101,116,101,40,97,41,41,44,105,116,40,110,44,111,44,108,41,125,125,101,108,115,101,32,102,61,101,63,101,40,76,101,40,110,44,111,41,44,105,44,111,43,34,34,44,110,44,116,44,117,41,58,84,44,102,61,61,61,84,38,38,40,102,61,105,41,44,105,116,40,110,44,111,44,102,41,125,44,66,117,41,125,102,117,110,99,116,105,111,110,32,81,116,40,110,44,116,41,123,118,97,114,32,114,61,110,46,108,101,110,103,116,104,59,105,102,40,114,41,114,101,116,117,114,110,32,116,43,61,48,62,116,63,114,58,48,44,83,101,40,116,44,114,41,63,110,91,116,93,58,84,125,102,117,110,99,116,105,111,110,32,88,116,40,110,44,116,44,114,41,123,118,97,114,32,101,61,45,49,59,114,101,116,117,114,110,32,116,61,99,40,116,46,108,101,110,103,116,104,63,116,58,91,36,117,93,44,107,40,121,101,40,41,41,41,44,110,61,71,116,40,110,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,123,10,97,58,99,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,40,110,41,125,41,44,98,58,43,43,101,44,99,58,110,125,125,41,44,119,40,110,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,101,59,110,58,123,101,61,45,49,59,102,111,114,40,118,97,114,32,117,61,110,46,97,44,105,61,116,46,97,44,111,61,117,46,108,101,110,103,116,104,44,102,61,114,46,108,101,110,103,116,104,59,43,43,101,60,111,59,41,123,118,97,114,32,99,61,87,114,40,117,91,101,93,44,105,91,101,93,41,59,105,102,40,99,41,123,101,61,101,62,61,102,63,99,58,99,42,40,34,100,101,115,99,34,61,61,114,91,101,93,63,45,49,58,49,41,59,98,114,101,97,107,32,110,125,125,101,61,110,46,98,45,116,46,98,125,114,101,116,117,114,110,32,101,125,41,125,102,117,110,99,116,105,111,110,32,110,114,40,110,44,116,41,123,114,101,116,117,114,110,32,116,114,40,110,44,116,44,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,101,116,117,114,110,32,122,117,40,110,44,114,41,125,41,125,102,117,110,99,116,105,111,110,32,116,114,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,116,46,108,101,110,103,116,104,44,105,61,123,125,59,43,43,101,60,117,59,41,123,118,97,114,32,111,61,116,91,101,93,44,102,61,107,116,40,110,44,111,41,59,114,40,102,44,111,41,38,38,108,114,40,105,44,83,114,40,111,44,110,41,44,102,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,114,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,107,116,40,116,44,110,41,125,125,102,117,110,99,116,105,111,110,32,101,114,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,101,63,103,58,118,44,105,61,45,49,44,111,61,116,46,108,101,110,103,116,104,44,102,61,110,59,102,111,114,40,110,61,61,61,116,38,38,40,116,61,85,114,40,116,41,41,44,10,114,38,38,40,102,61,99,40,110,44,107,40,114,41,41,41,59,43,43,105,60,111,59,41,102,111,114,40,118,97,114,32,97,61,48,44,108,61,116,91,105,93,44,108,61,114,63,114,40,108,41,58,108,59,45,49,60,40,97,61,117,40,102,44,108,44,97,44,101,41,41,59,41,102,33,61,61,110,38,38,120,105,46,99,97,108,108,40,102,44,97,44,49,41,44,120,105,46,99,97,108,108,40,110,44,97,44,49,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,117,114,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,110,63,116,46,108,101,110,103,116,104,58,48,44,101,61,114,45,49,59,114,45,45,59,41,123,118,97,114,32,117,61,116,91,114,93,59,105,102,40,114,61,61,101,124,124,117,33,61,61,105,41,123,118,97,114,32,105,61,117,59,83,101,40,117,41,63,120,105,46,99,97,108,108,40,110,44,117,44,49,41,58,120,114,40,110,44,117,41,125,125,125,102,117,110,99,116,105,111,110,32,105,114,40,110,44,116,41,123,114,101,116,117,114,110,32,110,43,73,105,40,84,105,40,41,42,40,116,45,110,43,49,41,41,125,102,117,110,99,116,105,111,110,32,111,114,40,110,44,116,41,123,118,97,114,32,114,61,34,34,59,105,102,40,33,110,124,124,49,62,116,124,124,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,60,116,41,114,101,116,117,114,110,32,114,59,100,111,32,116,37,50,38,38,40,114,43,61,110,41,44,40,116,61,73,105,40,116,47,50,41,41,38,38,40,110,43,61,110,41,59,119,104,105,108,101,40,116,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,102,114,40,110,44,116,41,123,114,101,116,117,114,110,32,120,111,40,66,101,40,110,44,116,44,36,117,41,44,110,43,34,34,41,125,102,117,110,99,116,105,111,110,32,99,114,40,110,41,123,114,101,116,117,114,110,32,81,110,40,85,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,97,114,40,110,44,116,41,123,118,97,114,32,114,61,85,117,40,110,41,59,10,114,101,116,117,114,110,32,68,101,40,114,44,112,116,40,116,44,48,44,114,46,108,101,110,103,116,104,41,41,125,102,117,110,99,116,105,111,110,32,108,114,40,110,44,116,44,114,44,101,41,123,105,102,40,33,100,117,40,110,41,41,114,101,116,117,114,110,32,110,59,116,61,83,114,40,116,44,110,41,59,102,111,114,40,118,97,114,32,117,61,45,49,44,105,61,116,46,108,101,110,103,116,104,44,111,61,105,45,49,44,102,61,110,59,110,117,108,108,33,61,102,38,38,43,43,117,60,105,59,41,123,118,97,114,32,99,61,77,101,40,116,91,117,93,41,44,97,61,114,59,105,102,40,117,33,61,111,41,123,118,97,114,32,108,61,102,91,99,93,44,97,61,101,63,101,40,108,44,99,44,102,41,58,84,59,97,61,61,61,84,38,38,40,97,61,100,117,40,108,41,63,108,58,83,101,40,116,91,117,43,49,93,41,63,91,93,58,123,125,41,125,111,116,40,102,44,99,44,97,41,44,102,61,102,91,99,93,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,115,114,40,110,41,123,114,101,116,117,114,110,32,68,101,40,85,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,104,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,45,49,44,117,61,110,46,108,101,110,103,116,104,59,102,111,114,40,48,62,116,38,38,40,116,61,45,116,62,117,63,48,58,117,43,116,41,44,114,61,114,62,117,63,117,58,114,44,48,62,114,38,38,40,114,43,61,117,41,44,117,61,116,62,114,63,48,58,114,45,116,62,62,62,48,44,116,62,62,62,61,48,44,114,61,75,117,40,117,41,59,43,43,101,60,117,59,41,114,91,101,93,61,110,91,101,43,116,93,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,112,114,40,110,44,116,41,123,118,97,114,32,114,59,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,114,101,116,117,114,110,32,114,61,116,40,110,44,101,44,117,41,44,33,114,125,41,44,33,33,114,125,10,102,117,110,99,116,105,111,110,32,95,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,48,44,117,61,110,117,108,108,61,61,110,63,101,58,110,46,108,101,110,103,116,104,59,105,102,40,116,121,112,101,111,102,32,116,61,61,34,110,117,109,98,101,114,34,38,38,116,61,61,61,116,38,38,50,49,52,55,52,56,51,54,52,55,62,61,117,41,123,102,111,114,40,59,101,60,117,59,41,123,118,97,114,32,105,61,101,43,117,62,62,62,49,44,111,61,110,91,105,93,59,110,117,108,108,33,61,61,111,38,38,33,119,117,40,111,41,38,38,40,114,63,111,60,61,116,58,111,60,116,41,63,101,61,105,43,49,58,117,61,105,125,114,101,116,117,114,110,32,117,125,114,101,116,117,114,110,32,118,114,40,110,44,116,44,36,117,44,114,41,125,102,117,110,99,116,105,111,110,32,118,114,40,110,44,116,44,114,44,101,41,123,116,61,114,40,116,41,59,102,111,114,40,118,97,114,32,117,61,48,44,105,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,111,61,116,33,61,61,116,44,102,61,110,117,108,108,61,61,61,116,44,99,61,119,117,40,116,41,44,97,61,116,61,61,61,84,59,117,60,105,59,41,123,118,97,114,32,108,61,73,105,40,40,117,43,105,41,47,50,41,44,115,61,114,40,110,91,108,93,41,44,104,61,115,33,61,61,84,44,112,61,110,117,108,108,61,61,61,115,44,95,61,115,61,61,61,115,44,118,61,119,117,40,115,41,59,40,111,63,101,124,124,95,58,97,63,95,38,38,40,101,124,124,104,41,58,102,63,95,38,38,104,38,38,40,101,124,124,33,112,41,58,99,63,95,38,38,104,38,38,33,112,38,38,40,101,124,124,33,118,41,58,112,124,124,118,63,48,58,101,63,115,60,61,116,58,115,60,116,41,63,117,61,108,43,49,58,105,61,108,125,114,101,116,117,114,110,32,67,105,40,105,44,52,50,57,52,57,54,55,50,57,52,41,125,102,117,110,99,116,105,111,110,32,103,114,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,44,117,61,48,44,105,61,91,93,59,43,43,114,60,101,59,41,123,10,118,97,114,32,111,61,110,91,114,93,44,102,61,116,63,116,40,111,41,58,111,59,105,102,40,33,114,124,124,33,108,117,40,102,44,99,41,41,123,118,97,114,32,99,61,102,59,105,91,117,43,43,93,61,48,61,61,61,111,63,48,58,111,125,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,100,114,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,63,110,58,119,117,40,110,41,63,70,58,43,110,125,102,117,110,99,116,105,111,110,32,121,114,40,110,41,123,105,102,40,116,121,112,101,111,102,32,110,61,61,34,115,116,114,105,110,103,34,41,114,101,116,117,114,110,32,110,59,105,102,40,102,102,40,110,41,41,114,101,116,117,114,110,32,99,40,110,44,121,114,41,43,34,34,59,105,102,40,119,117,40,110,41,41,114,101,116,117,114,110,32,114,111,63,114,111,46,99,97,108,108,40,110,41,58,34,34,59,118,97,114,32,116,61,110,43,34,34,59,114,101,116,117,114,110,34,48,34,61,61,116,38,38,49,47,110,61,61,45,36,63,34,45,48,34,58,116,125,102,117,110,99,116,105,111,110,32,98,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,45,49,44,117,61,111,44,105,61,110,46,108,101,110,103,116,104,44,99,61,116,114,117,101,44,97,61,91,93,44,108,61,97,59,105,102,40,114,41,99,61,102,97,108,115,101,44,117,61,102,59,101,108,115,101,32,105,102,40,50,48,48,60,61,105,41,123,105,102,40,117,61,116,63,110,117,108,108,58,115,111,40,110,41,41,114,101,116,117,114,110,32,85,40,117,41,59,99,61,102,97,108,115,101,44,117,61,79,44,108,61,110,101,119,32,78,110,125,101,108,115,101,32,108,61,116,63,91,93,58,97,59,110,58,102,111,114,40,59,43,43,101,60,105,59,41,123,118,97,114,32,115,61,110,91,101,93,44,104,61,116,63,116,40,115,41,58,115,44,115,61,114,124,124,48,33,61,61,115,63,115,58,48,59,105,102,40,99,38,38,104,61,61,61,104,41,123,102,111,114,40,118,97,114,32,112,61,108,46,108,101,110,103,116,104,59,112,45,45,59,41,105,102,40,108,91,112,93,61,61,61,104,41,99,111,110,116,105,110,117,101,32,110,59,10,116,38,38,108,46,112,117,115,104,40,104,41,44,97,46,112,117,115,104,40,115,41,125,101,108,115,101,32,117,40,108,44,104,44,114,41,124,124,40,108,33,61,61,97,38,38,108,46,112,117,115,104,40,104,41,44,97,46,112,117,115,104,40,115,41,41,125,114,101,116,117,114,110,32,97,125,102,117,110,99,116,105,111,110,32,120,114,40,110,44,116,41,123,114,101,116,117,114,110,32,116,61,83,114,40,116,44,110,41,44,110,61,50,62,116,46,108,101,110,103,116,104,63,110,58,107,116,40,110,44,104,114,40,116,44,48,44,45,49,41,41,44,110,117,108,108,61,61,110,124,124,100,101,108,101,116,101,32,110,91,77,101,40,86,101,40,116,41,41,93,125,102,117,110,99,116,105,111,110,32,106,114,40,110,44,116,44,114,44,101,41,123,102,111,114,40,118,97,114,32,117,61,110,46,108,101,110,103,116,104,44,105,61,101,63,117,58,45,49,59,40,101,63,105,45,45,58,43,43,105,60,117,41,38,38,116,40,110,91,105,93,44,105,44,110,41,59,41,59,114,101,116,117,114,110,32,114,63,104,114,40,110,44,101,63,48,58,105,44,101,63,105,43,49,58,117,41,58,104,114,40,110,44,101,63,105,43,49,58,48,44,101,63,117,58,105,41,125,102,117,110,99,116,105,111,110,32,119,114,40,110,44,116,41,123,118,97,114,32,114,61,110,59,114,101,116,117,114,110,32,114,32,105,110,115,116,97,110,99,101,111,102,32,85,110,38,38,40,114,61,114,46,118,97,108,117,101,40,41,41,44,108,40,116,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,46,102,117,110,99,46,97,112,112,108,121,40,116,46,116,104,105,115,65,114,103,44,97,40,91,110,93,44,116,46,97,114,103,115,41,41,125,44,114,41,125,102,117,110,99,116,105,111,110,32,109,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,46,108,101,110,103,116,104,59,105,102,40,50,62,101,41,114,101,116,117,114,110,32,101,63,98,114,40,110,91,48,93,41,58,91,93,59,102,111,114,40,118,97,114,32,117,61,45,49,44,105,61,75,117,40,101,41,59,43,43,117,60,101,59,41,102,111,114,40,118,97,114,32,111,61,110,91,117,93,44,102,61,45,49,59,43,43,102,60,101,59,41,102,33,61,117,38,38,40,105,91,117,93,61,121,116,40,105,91,117,93,124,124,111,44,110,91,102,93,44,116,44,114,41,41,59,10,114,101,116,117,114,110,32,98,114,40,119,116,40,105,44,49,41,44,116,44,114,41,125,102,117,110,99,116,105,111,110,32,65,114,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,110,46,108,101,110,103,116,104,44,105,61,116,46,108,101,110,103,116,104,44,111,61,123,125,59,43,43,101,60,117,59,41,114,40,111,44,110,91,101,93,44,101,60,105,63,116,91,101,93,58,84,41,59,114,101,116,117,114,110,32,111,125,102,117,110,99,116,105,111,110,32,69,114,40,110,41,123,114,101,116,117,114,110,32,104,117,40,110,41,63,110,58,91,93,125,102,117,110,99,116,105,111,110,32,107,114,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,63,110,58,36,117,125,102,117,110,99,116,105,111,110,32,83,114,40,110,44,116,41,123,114,101,116,117,114,110,32,102,102,40,110,41,63,110,58,73,101,40,110,44,116,41,63,91,110,93,58,106,111,40,73,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,79,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,114,61,114,61,61,61,84,63,101,58,114,44,33,116,38,38,114,62,61,101,63,110,58,104,114,40,110,44,116,44,114,41,125,102,117,110,99,116,105,111,110,32,73,114,40,110,44,116,41,123,105,102,40,116,41,114,101,116,117,114,110,32,110,46,115,108,105,99,101,40,41,59,118,97,114,32,114,61,110,46,108,101,110,103,116,104,44,114,61,103,105,63,103,105,40,114,41,58,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,114,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,40,114,41,44,114,125,102,117,110,99,116,105,111,110,32,82,114,40,110,41,123,118,97,114,32,116,61,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,110,46,98,121,116,101,76,101,110,103,116,104,41,59,114,101,116,117,114,110,32,110,101,119,32,118,105,40,116,41,46,115,101,116,40,110,101,119,32,118,105,40,110,41,41,44,10,116,125,102,117,110,99,116,105,111,110,32,122,114,40,110,44,116,41,123,114,101,116,117,114,110,32,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,116,63,82,114,40,110,46,98,117,102,102,101,114,41,58,110,46,98,117,102,102,101,114,44,110,46,98,121,116,101,79,102,102,115,101,116,44,110,46,108,101,110,103,116,104,41,125,102,117,110,99,116,105,111,110,32,87,114,40,110,44,116,41,123,105,102,40,110,33,61,61,116,41,123,118,97,114,32,114,61,110,33,61,61,84,44,101,61,110,117,108,108,61,61,61,110,44,117,61,110,61,61,61,110,44,105,61,119,117,40,110,41,44,111,61,116,33,61,61,84,44,102,61,110,117,108,108,61,61,61,116,44,99,61,116,61,61,61,116,44,97,61,119,117,40,116,41,59,105,102,40,33,102,38,38,33,97,38,38,33,105,38,38,110,62,116,124,124,105,38,38,111,38,38,99,38,38,33,102,38,38,33,97,124,124,101,38,38,111,38,38,99,124,124,33,114,38,38,99,124,124,33,117,41,114,101,116,117,114,110,32,49,59,105,102,40,33,101,38,38,33,105,38,38,33,97,38,38,110,60,116,124,124,97,38,38,114,38,38,117,38,38,33,101,38,38,33,105,124,124,102,38,38,114,38,38,117,124,124,33,111,38,38,117,124,124,33,99,41,114,101,116,117,114,110,45,49,125,114,101,116,117,114,110,32,48,125,102,117,110,99,116,105,111,110,32,66,114,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,110,46,108,101,110,103,116,104,44,111,61,114,46,108,101,110,103,116,104,44,102,61,45,49,44,99,61,116,46,108,101,110,103,116,104,44,97,61,85,105,40,105,45,111,44,48,41,44,108,61,75,117,40,99,43,97,41,59,102,111,114,40,101,61,33,101,59,43,43,102,60,99,59,41,108,91,102,93,61,116,91,102,93,59,102,111,114,40,59,43,43,117,60,111,59,41,40,101,124,124,117,60,105,41,38,38,40,108,91,114,91,117,93,93,61,110,91,117,93,41,59,102,111,114,40,59,97,45,45,59,41,108,91,102,43,43,93,61,110,91,117,43,43,93,59,10,114,101,116,117,114,110,32,108,125,102,117,110,99,116,105,111,110,32,76,114,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,110,46,108,101,110,103,116,104,44,111,61,45,49,44,102,61,114,46,108,101,110,103,116,104,44,99,61,45,49,44,97,61,116,46,108,101,110,103,116,104,44,108,61,85,105,40,105,45,102,44,48,41,44,115,61,75,117,40,108,43,97,41,59,102,111,114,40,101,61,33,101,59,43,43,117,60,108,59,41,115,91,117,93,61,110,91,117,93,59,102,111,114,40,108,61,117,59,43,43,99,60,97,59,41,115,91,108,43,99,93,61,116,91,99,93,59,102,111,114,40,59,43,43,111,60,102,59,41,40,101,124,124,117,60,105,41,38,38,40,115,91,108,43,114,91,111,93,93,61,110,91,117,43,43,93,41,59,114,101,116,117,114,110,32,115,125,102,117,110,99,116,105,111,110,32,85,114,40,110,44,116,41,123,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,59,102,111,114,40,116,124,124,40,116,61,75,117,40,101,41,41,59,43,43,114,60,101,59,41,116,91,114,93,61,110,91,114,93,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,67,114,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,33,114,59,114,124,124,40,114,61,123,125,41,59,102,111,114,40,118,97,114,32,105,61,45,49,44,111,61,116,46,108,101,110,103,116,104,59,43,43,105,60,111,59,41,123,118,97,114,32,102,61,116,91,105,93,44,99,61,101,63,101,40,114,91,102,93,44,110,91,102,93,44,102,44,114,44,110,41,58,84,59,99,61,61,61,84,38,38,40,99,61,110,91,102,93,41,44,117,63,115,116,40,114,44,102,44,99,41,58,111,116,40,114,44,102,44,99,41,125,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,68,114,40,110,44,116,41,123,114,101,116,117,114,110,32,67,114,40,110,44,112,111,40,110,41,44,116,41,125,102,117,110,99,116,105,111,110,32,77,114,40,110,44,116,41,123,114,101,116,117,114,110,32,67,114,40,110,44,95,111,40,110,41,44,116,41,59,10,125,102,117,110,99,116,105,111,110,32,84,114,40,110,44,114,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,117,41,123,118,97,114,32,105,61,102,102,40,101,41,63,116,58,99,116,44,111,61,114,63,114,40,41,58,123,125,59,114,101,116,117,114,110,32,105,40,101,44,110,44,121,101,40,117,44,50,41,44,111,41,125,125,102,117,110,99,116,105,111,110,32,36,114,40,110,41,123,114,101,116,117,114,110,32,102,114,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,118,97,114,32,101,61,45,49,44,117,61,114,46,108,101,110,103,116,104,44,105,61,49,60,117,63,114,91,117,45,49,93,58,84,44,111,61,50,60,117,63,114,91,50,93,58,84,44,105,61,51,60,110,46,108,101,110,103,116,104,38,38,116,121,112,101,111,102,32,105,61,61,34,102,117,110,99,116,105,111,110,34,63,40,117,45,45,44,105,41,58,84,59,102,111,114,40,111,38,38,79,101,40,114,91,48,93,44,114,91,49,93,44,111,41,38,38,40,105,61,51,62,117,63,84,58,105,44,117,61,49,41,44,116,61,81,117,40,116,41,59,43,43,101,60,117,59,41,40,111,61,114,91,101,93,41,38,38,110,40,116,44,111,44,101,44,105,41,59,114,101,116,117,114,110,32,116,125,41,125,102,117,110,99,116,105,111,110,32,70,114,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,44,101,41,123,105,102,40,110,117,108,108,61,61,114,41,114,101,116,117,114,110,32,114,59,105,102,40,33,115,117,40,114,41,41,114,101,116,117,114,110,32,110,40,114,44,101,41,59,102,111,114,40,118,97,114,32,117,61,114,46,108,101,110,103,116,104,44,105,61,116,63,117,58,45,49,44,111,61,81,117,40,114,41,59,40,116,63,105,45,45,58,43,43,105,60,117,41,38,38,102,97,108,115,101,33,61,61,101,40,111,91,105,93,44,105,44,111,41,59,41,59,114,101,116,117,114,110,32,114,125,125,102,117,110,99,116,105,111,110,32,78,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,114,44,101,41,123,10,118,97,114,32,117,61,45,49,44,105,61,81,117,40,116,41,59,101,61,101,40,116,41,59,102,111,114,40,118,97,114,32,111,61,101,46,108,101,110,103,116,104,59,111,45,45,59,41,123,118,97,114,32,102,61,101,91,110,63,111,58,43,43,117,93,59,105,102,40,102,97,108,115,101,61,61,61,114,40,105,91,102,93,44,102,44,105,41,41,98,114,101,97,107,125,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,80,114,40,110,44,116,44,114,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,114,101,116,117,114,110,40,116,104,105,115,38,38,116,104,105,115,33,61,61,36,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,101,63,105,58,110,41,46,97,112,112,108,121,40,117,63,114,58,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,118,97,114,32,117,61,49,38,116,44,105,61,86,114,40,110,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,90,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,116,61,73,117,40,116,41,59,118,97,114,32,114,61,82,110,46,116,101,115,116,40,116,41,63,77,40,116,41,58,84,44,101,61,114,63,114,91,48,93,58,116,46,99,104,97,114,65,116,40,48,41,59,114,101,116,117,114,110,32,116,61,114,63,79,114,40,114,44,49,41,46,106,111,105,110,40,34,34,41,58,116,46,115,108,105,99,101,40,49,41,44,101,91,110,93,40,41,43,116,125,125,102,117,110,99,116,105,111,110,32,113,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,108,40,77,117,40,68,117,40,116,41,46,114,101,112,108,97,99,101,40,107,110,44,34,34,41,41,44,110,44,34,34,41,125,125,102,117,110,99,116,105,111,110,32,86,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,59,115,119,105,116,99,104,40,116,46,108,101,110,103,116,104,41,123,10,99,97,115,101,32,48,58,114,101,116,117,114,110,32,110,101,119,32,110,59,99,97,115,101,32,49,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,59,99,97,115,101,32,52,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,44,116,91,51,93,41,59,99,97,115,101,32,53,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,44,116,91,51,93,44,116,91,52,93,41,59,99,97,115,101,32,54,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,44,116,91,51,93,44,116,91,52,93,44,116,91,53,93,41,59,99,97,115,101,32,55,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,44,116,91,51,93,44,116,91,52,93,44,116,91,53,93,44,116,91,54,93,41,125,118,97,114,32,114,61,101,111,40,110,46,112,114,111,116,111,116,121,112,101,41,44,116,61,110,46,97,112,112,108,121,40,114,44,116,41,59,114,101,116,117,114,110,32,100,117,40,116,41,63,116,58,114,125,125,102,117,110,99,116,105,111,110,32,75,114,40,116,44,114,44,101,41,123,102,117,110,99,116,105,111,110,32,117,40,41,123,102,111,114,40,118,97,114,32,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,102,61,75,117,40,111,41,44,99,61,111,44,97,61,100,101,40,117,41,59,99,45,45,59,41,102,91,99,93,61,97,114,103,117,109,101,110,116,115,91,99,93,59,114,101,116,117,114,110,32,99,61,51,62,111,38,38,102,91,48,93,33,61,61,97,38,38,102,91,111,45,49,93,33,61,61,97,63,91,93,58,76,40,102,44,97,41,44,10,111,45,61,99,46,108,101,110,103,116,104,44,111,60,101,63,117,101,40,116,44,114,44,74,114,44,117,46,112,108,97,99,101,104,111,108,100,101,114,44,84,44,102,44,99,44,84,44,84,44,101,45,111,41,58,110,40,116,104,105,115,38,38,116,104,105,115,33,61,61,36,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,117,63,105,58,116,44,116,104,105,115,44,102,41,125,118,97,114,32,105,61,86,114,40,116,41,59,114,101,116,117,114,110,32,117,125,102,117,110,99,116,105,111,110,32,71,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,114,44,101,41,123,118,97,114,32,117,61,81,117,40,116,41,59,105,102,40,33,115,117,40,116,41,41,123,118,97,114,32,105,61,121,101,40,114,44,51,41,59,116,61,87,117,40,116,41,44,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,105,40,117,91,110,93,44,110,44,117,41,125,125,114,101,116,117,114,110,32,114,61,110,40,116,44,114,44,101,41,44,45,49,60,114,63,117,91,105,63,116,91,114,93,58,114,93,58,84,125,125,102,117,110,99,116,105,111,110,32,72,114,40,110,41,123,114,101,116,117,114,110,32,112,101,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,116,46,108,101,110,103,116,104,44,101,61,114,44,117,61,79,110,46,112,114,111,116,111,116,121,112,101,46,116,104,114,117,59,102,111,114,40,110,38,38,116,46,114,101,118,101,114,115,101,40,41,59,101,45,45,59,41,123,118,97,114,32,105,61,116,91,101,93,59,105,102,40,116,121,112,101,111,102,32,105,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,105,102,40,117,38,38,33,111,38,38,34,119,114,97,112,112,101,114,34,61,61,103,101,40,105,41,41,118,97,114,32,111,61,110,101,119,32,79,110,40,91,93,44,116,114,117,101,41,125,102,111,114,40,101,61,111,63,101,58,114,59,43,43,101,60,114,59,41,118,97,114,32,105,61,116,91,101,93,44,117,61,103,101,40,105,41,44,102,61,34,119,114,97,112,112,101,114,34,61,61,117,63,104,111,40,105,41,58,84,44,111,61,102,38,38,82,101,40,102,91,48,93,41,38,38,52,50,52,61,61,102,91,49,93,38,38,33,102,91,52,93,46,108,101,110,103,116,104,38,38,49,61,61,102,91,57,93,63,111,91,103,101,40,102,91,48,93,41,93,46,97,112,112,108,121,40,111,44,102,91,51,93,41,58,49,61,61,105,46,108,101,110,103,116,104,38,38,82,101,40,105,41,63,111,91,117,93,40,41,58,111,46,116,104,114,117,40,105,41,59,10,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,44,101,61,110,91,48,93,59,105,102,40,111,38,38,49,61,61,110,46,108,101,110,103,116,104,38,38,102,102,40,101,41,41,114,101,116,117,114,110,32,111,46,112,108,97,110,116,40,101,41,46,118,97,108,117,101,40,41,59,102,111,114,40,118,97,114,32,117,61,48,44,110,61,114,63,116,91,117,93,46,97,112,112,108,121,40,116,104,105,115,44,110,41,58,101,59,43,43,117,60,114,59,41,110,61,116,91,117,93,46,99,97,108,108,40,116,104,105,115,44,110,41,59,114,101,116,117,114,110,32,110,125,125,41,125,102,117,110,99,116,105,111,110,32,74,114,40,110,44,116,44,114,44,101,44,117,44,105,44,111,44,102,44,99,44,97,41,123,102,117,110,99,116,105,111,110,32,108,40,41,123,102,111,114,40,118,97,114,32,100,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,121,61,75,117,40,100,41,44,98,61,100,59,98,45,45,59,41,121,91,98,93,61,97,114,103,117,109,101,110,116,115,91,98,93,59,105,102,40,95,41,123,118,97,114,32,120,44,106,61,100,101,40,108,41,44,98,61,121,46,108,101,110,103,116,104,59,102,111,114,40,120,61,48,59,98,45,45,59,41,121,91,98,93,61,61,61,106,38,38,43,43,120,125,105,102,40,101,38,38,40,121,61,66,114,40,121,44,101,44,117,44,95,41,41,44,105,38,38,40,121,61,76,114,40,121,44,105,44,111,44,95,41,41,44,100,45,61,120,44,95,38,38,100,60,97,41,114,101,116,117,114,110,32,106,61,76,40,121,44,106,41,44,117,101,40,110,44,116,44,74,114,44,108,46,112,108,97,99,101,104,111,108,100,101,114,44,114,44,121,44,106,44,102,44,99,44,97,45,100,41,59,105,102,40,106,61,104,63,114,58,116,104,105,115,44,98,61,112,63,106,91,110,93,58,110,44,100,61,121,46,108,101,110,103,116,104,44,102,41,123,120,61,121,46,108,101,110,103,116,104,59,102,111,114,40,118,97,114,32,119,61,67,105,40,102,46,108,101,110,103,116,104,44,120,41,44,109,61,85,114,40,121,41,59,119,45,45,59,41,123,10,118,97,114,32,65,61,102,91,119,93,59,121,91,119,93,61,83,101,40,65,44,120,41,63,109,91,65,93,58,84,125,125,101,108,115,101,32,118,38,38,49,60,100,38,38,121,46,114,101,118,101,114,115,101,40,41,59,114,101,116,117,114,110,32,115,38,38,99,60,100,38,38,40,121,46,108,101,110,103,116,104,61,99,41,44,116,104,105,115,38,38,116,104,105,115,33,61,61,36,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,108,38,38,40,98,61,103,124,124,86,114,40,98,41,41,44,98,46,97,112,112,108,121,40,106,44,121,41,125,118,97,114,32,115,61,49,50,56,38,116,44,104,61,49,38,116,44,112,61,50,38,116,44,95,61,50,52,38,116,44,118,61,53,49,50,38,116,44,103,61,112,63,84,58,86,114,40,110,41,59,114,101,116,117,114,110,32,108,125,102,117,110,99,116,105,111,110,32,89,114,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,44,101,41,123,114,101,116,117,114,110,32,66,116,40,114,44,110,44,116,40,101,41,41,125,125,102,117,110,99,116,105,111,110,32,81,114,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,44,101,41,123,118,97,114,32,117,59,105,102,40,114,61,61,61,84,38,38,101,61,61,61,84,41,114,101,116,117,114,110,32,116,59,105,102,40,114,33,61,61,84,38,38,40,117,61,114,41,44,101,33,61,61,84,41,123,105,102,40,117,61,61,61,84,41,114,101,116,117,114,110,32,101,59,116,121,112,101,111,102,32,114,61,61,34,115,116,114,105,110,103,34,124,124,116,121,112,101,111,102,32,101,61,61,34,115,116,114,105,110,103,34,63,40,114,61,121,114,40,114,41,44,101,61,121,114,40,101,41,41,58,40,114,61,100,114,40,114,41,44,101,61,100,114,40,101,41,41,44,117,61,110,40,114,44,101,41,125,114,101,116,117,114,110,32,117,125,125,102,117,110,99,116,105,111,110,32,88,114,40,116,41,123,114,101,116,117,114,110,32,112,101,40,102,117,110,99,116,105,111,110,40,114,41,123,10,114,101,116,117,114,110,32,114,61,99,40,114,44,107,40,121,101,40,41,41,41,44,102,114,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,117,61,116,104,105,115,59,114,101,116,117,114,110,32,116,40,114,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,40,116,44,117,44,101,41,125,41,125,41,125,41,125,102,117,110,99,116,105,111,110,32,110,101,40,110,44,116,41,123,116,61,116,61,61,61,84,63,34,32,34,58,121,114,40,116,41,59,118,97,114,32,114,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,50,62,114,63,114,63,111,114,40,116,44,110,41,58,116,58,40,114,61,111,114,40,116,44,79,105,40,110,47,68,40,116,41,41,41,44,82,110,46,116,101,115,116,40,116,41,63,79,114,40,77,40,114,41,44,48,44,110,41,46,106,111,105,110,40,34,34,41,58,114,46,115,108,105,99,101,40,48,44,110,41,41,125,102,117,110,99,116,105,111,110,32,116,101,40,116,44,114,44,101,44,117,41,123,102,117,110,99,116,105,111,110,32,105,40,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,99,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,97,61,45,49,44,108,61,117,46,108,101,110,103,116,104,44,115,61,75,117,40,108,43,99,41,44,104,61,116,104,105,115,38,38,116,104,105,115,33,61,61,36,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,105,63,102,58,116,59,43,43,97,60,108,59,41,115,91,97,93,61,117,91,97,93,59,102,111,114,40,59,99,45,45,59,41,115,91,97,43,43,93,61,97,114,103,117,109,101,110,116,115,91,43,43,114,93,59,114,101,116,117,114,110,32,110,40,104,44,111,63,101,58,116,104,105,115,44,115,41,125,118,97,114,32,111,61,49,38,114,44,102,61,86,114,40,116,41,59,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,114,101,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,114,44,101,41,123,10,101,38,38,116,121,112,101,111,102,32,101,33,61,34,110,117,109,98,101,114,34,38,38,79,101,40,116,44,114,44,101,41,38,38,40,114,61,101,61,84,41,44,116,61,65,117,40,116,41,44,114,61,61,61,84,63,40,114,61,116,44,116,61,48,41,58,114,61,65,117,40,114,41,44,101,61,101,61,61,61,84,63,116,60,114,63,49,58,45,49,58,65,117,40,101,41,59,118,97,114,32,117,61,45,49,59,114,61,85,105,40,79,105,40,40,114,45,116,41,47,40,101,124,124,49,41,41,44,48,41,59,102,111,114,40,118,97,114,32,105,61,75,117,40,114,41,59,114,45,45,59,41,105,91,110,63,114,58,43,43,117,93,61,116,44,116,43,61,101,59,114,101,116,117,114,110,32,105,125,125,102,117,110,99,116,105,111,110,32,101,101,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,116,61,61,34,115,116,114,105,110,103,34,38,38,116,121,112,101,111,102,32,114,61,61,34,115,116,114,105,110,103,34,124,124,40,116,61,83,117,40,116,41,44,114,61,83,117,40,114,41,41,44,110,40,116,44,114,41,125,125,102,117,110,99,116,105,111,110,32,117,101,40,110,44,116,44,114,44,101,44,117,44,105,44,111,44,102,44,99,44,97,41,123,118,97,114,32,108,61,56,38,116,44,115,61,108,63,111,58,84,59,111,61,108,63,84,58,111,59,118,97,114,32,104,61,108,63,105,58,84,59,114,101,116,117,114,110,32,105,61,108,63,84,58,105,44,116,61,40,116,124,40,108,63,51,50,58,54,52,41,41,38,126,40,108,63,54,52,58,51,50,41,44,52,38,116,124,124,40,116,38,61,45,52,41,44,117,61,91,110,44,116,44,117,44,104,44,115,44,105,44,111,44,102,44,99,44,97,93,44,114,61,114,46,97,112,112,108,121,40,84,44,117,41,44,82,101,40,110,41,38,38,121,111,40,114,44,117,41,44,114,46,112,108,97,99,101,104,111,108,100,101,114,61,101,44,85,101,40,114,44,110,44,116,41,125,102,117,110,99,116,105,111,110,32,105,101,40,110,41,123,10,118,97,114,32,116,61,89,117,91,110,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,114,41,123,105,102,40,110,61,83,117,40,110,41,44,40,114,61,110,117,108,108,61,61,114,63,48,58,67,105,40,69,117,40,114,41,44,50,57,50,41,41,38,38,87,105,40,110,41,41,123,118,97,114,32,101,61,40,73,117,40,110,41,43,34,101,34,41,46,115,112,108,105,116,40,34,101,34,41,44,101,61,116,40,101,91,48,93,43,34,101,34,43,40,43,101,91,49,93,43,114,41,41,44,101,61,40,73,117,40,101,41,43,34,101,34,41,46,115,112,108,105,116,40,34,101,34,41,59,114,101,116,117,114,110,43,40,101,91,48,93,43,34,101,34,43,40,43,101,91,49,93,45,114,41,41,125,114,101,116,117,114,110,32,116,40,110,41,125,125,102,117,110,99,116,105,111,110,32,111,101,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,118,111,40,116,41,59,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,114,63,87,40,116,41,58,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,114,63,67,40,116,41,58,69,40,116,44,110,40,116,41,41,125,125,102,117,110,99,116,105,111,110,32,102,101,40,110,44,116,44,114,44,101,44,117,44,105,44,111,44,102,41,123,118,97,114,32,99,61,50,38,116,59,105,102,40,33,99,38,38,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,118,97,114,32,97,61,101,63,101,46,108,101,110,103,116,104,58,48,59,105,102,40,97,124,124,40,116,38,61,45,57,55,44,101,61,117,61,84,41,44,111,61,111,61,61,61,84,63,111,58,85,105,40,69,117,40,111,41,44,48,41,44,102,61,102,61,61,61,84,63,102,58,69,117,40,102,41,44,97,45,61,117,63,117,46,108,101,110,103,116,104,58,48,44,10,54,52,38,116,41,123,118,97,114,32,108,61,101,44,115,61,117,59,101,61,117,61,84,125,118,97,114,32,104,61,99,63,84,58,104,111,40,110,41,59,114,101,116,117,114,110,32,105,61,91,110,44,116,44,114,44,101,44,117,44,108,44,115,44,105,44,111,44,102,93,44,104,38,38,40,114,61,105,91,49,93,44,110,61,104,91,49,93,44,116,61,114,124,110,44,101,61,49,50,56,61,61,110,38,38,56,61,61,114,124,124,49,50,56,61,61,110,38,38,50,53,54,61,61,114,38,38,105,91,55,93,46,108,101,110,103,116,104,60,61,104,91,56,93,124,124,51,56,52,61,61,110,38,38,104,91,55,93,46,108,101,110,103,116,104,60,61,104,91,56,93,38,38,56,61,61,114,44,49,51,49,62,116,124,124,101,41,38,38,40,49,38,110,38,38,40,105,91,50,93,61,104,91,50,93,44,116,124,61,49,38,114,63,48,58,52,41,44,40,114,61,104,91,51,93,41,38,38,40,101,61,105,91,51,93,44,105,91,51,93,61,101,63,66,114,40,101,44,114,44,104,91,52,93,41,58,114,44,105,91,52,93,61,101,63,76,40,105,91,51,93,44,34,95,95,108,111,100,97,115,104,95,112,108,97,99,101,104,111,108,100,101,114,95,95,34,41,58,104,91,52,93,41,44,40,114,61,104,91,53,93,41,38,38,40,101,61,105,91,53,93,44,105,91,53,93,61,101,63,76,114,40,101,44,114,44,104,91,54,93,41,58,114,44,105,91,54,93,61,101,63,76,40,105,91,53,93,44,34,95,95,108,111,100,97,115,104,95,112,108,97,99,101,104,111,108,100,101,114,95,95,34,41,58,104,91,54,93,41,44,40,114,61,104,91,55,93,41,38,38,40,105,91,55,93,61,114,41,44,49,50,56,38,110,38,38,40,105,91,56,93,61,110,117,108,108,61,61,105,91,56,93,63,104,91,56,93,58,67,105,40,105,91,56,93,44,104,91,56,93,41,41,44,110,117,108,108,61,61,105,91,57,93,38,38,40,105,91,57,93,61,104,91,57,93,41,44,105,91,48,93,61,104,91,48,93,44,105,91,49,93,61,116,41,44,110,61,105,91,48,93,44,10,116,61,105,91,49,93,44,114,61,105,91,50,93,44,101,61,105,91,51,93,44,117,61,105,91,52,93,44,102,61,105,91,57,93,61,105,91,57,93,61,61,61,84,63,99,63,48,58,110,46,108,101,110,103,116,104,58,85,105,40,105,91,57,93,45,97,44,48,41,44,33,102,38,38,50,52,38,116,38,38,40,116,38,61,45,50,53,41,44,85,101,40,40,104,63,99,111,58,121,111,41,40,116,38,38,49,33,61,116,63,56,61,61,116,124,124,49,54,61,61,116,63,75,114,40,110,44,116,44,102,41,58,51,50,33,61,116,38,38,51,51,33,61,116,124,124,117,46,108,101,110,103,116,104,63,74,114,46,97,112,112,108,121,40,84,44,105,41,58,116,101,40,110,44,116,44,114,44,101,41,58,80,114,40,110,44,116,44,114,41,44,105,41,44,110,44,116,41,125,102,117,110,99,116,105,111,110,32,99,101,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,110,61,61,61,84,124,124,108,117,40,110,44,101,105,91,114,93,41,38,38,33,111,105,46,99,97,108,108,40,101,44,114,41,63,116,58,110,125,102,117,110,99,116,105,111,110,32,97,101,40,110,44,116,44,114,44,101,44,117,44,105,41,123,114,101,116,117,114,110,32,100,117,40,110,41,38,38,100,117,40,116,41,38,38,40,105,46,115,101,116,40,116,44,110,41,44,89,116,40,110,44,116,44,84,44,97,101,44,105,41,44,105,46,100,101,108,101,116,101,40,116,41,41,44,110,125,102,117,110,99,116,105,111,110,32,108,101,40,110,41,123,114,101,116,117,114,110,32,120,117,40,110,41,63,84,58,110,125,102,117,110,99,116,105,111,110,32,115,101,40,110,44,116,44,114,44,101,44,117,44,105,41,123,118,97,114,32,111,61,49,38,114,44,102,61,110,46,108,101,110,103,116,104,44,99,61,116,46,108,101,110,103,116,104,59,105,102,40,102,33,61,99,38,38,33,40,111,38,38,99,62,102,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,105,102,40,40,99,61,105,46,103,101,116,40,110,41,41,38,38,105,46,103,101,116,40,116,41,41,114,101,116,117,114,110,32,99,61,61,116,59,10,118,97,114,32,99,61,45,49,44,97,61,116,114,117,101,44,108,61,50,38,114,63,110,101,119,32,78,110,58,84,59,102,111,114,40,105,46,115,101,116,40,110,44,116,41,44,105,46,115,101,116,40,116,44,110,41,59,43,43,99,60,102,59,41,123,118,97,114,32,115,61,110,91,99,93,44,112,61,116,91,99,93,59,105,102,40,101,41,118,97,114,32,95,61,111,63,101,40,112,44,115,44,99,44,116,44,110,44,105,41,58,101,40,115,44,112,44,99,44,110,44,116,44,105,41,59,105,102,40,95,33,61,61,84,41,123,105,102,40,95,41,99,111,110,116,105,110,117,101,59,97,61,102,97,108,115,101,59,98,114,101,97,107,125,105,102,40,108,41,123,105,102,40,33,104,40,116,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,33,79,40,108,44,116,41,38,38,40,115,61,61,61,110,124,124,117,40,115,44,110,44,114,44,101,44,105,41,41,41,114,101,116,117,114,110,32,108,46,112,117,115,104,40,116,41,125,41,41,123,97,61,102,97,108,115,101,59,98,114,101,97,107,125,125,101,108,115,101,32,105,102,40,115,33,61,61,112,38,38,33,117,40,115,44,112,44,114,44,101,44,105,41,41,123,97,61,102,97,108,115,101,59,98,114,101,97,107,125,125,114,101,116,117,114,110,32,105,46,100,101,108,101,116,101,40,110,41,44,105,46,100,101,108,101,116,101,40,116,41,44,97,125,102,117,110,99,116,105,111,110,32,104,101,40,110,44,116,44,114,44,101,44,117,44,105,44,111,41,123,115,119,105,116,99,104,40,114,41,123,99,97,115,101,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,58,105,102,40,110,46,98,121,116,101,76,101,110,103,116,104,33,61,116,46,98,121,116,101,76,101,110,103,116,104,124,124,110,46,98,121,116,101,79,102,102,115,101,116,33,61,116,46,98,121,116,101,79,102,102,115,101,116,41,98,114,101,97,107,59,110,61,110,46,98,117,102,102,101,114,44,116,61,116,46,98,117,102,102,101,114,59,99,97,115,101,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,58,10,105,102,40,110,46,98,121,116,101,76,101,110,103,116,104,33,61,116,46,98,121,116,101,76,101,110,103,116,104,124,124,33,105,40,110,101,119,32,118,105,40,110,41,44,110,101,119,32,118,105,40,116,41,41,41,98,114,101,97,107,59,114,101,116,117,114,110,32,116,114,117,101,59,99,97,115,101,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,58,114,101,116,117,114,110,32,108,117,40,43,110,44,43,116,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,69,114,114,111,114,93,34,58,114,101,116,117,114,110,32,110,46,110,97,109,101,61,61,116,46,110,97,109,101,38,38,110,46,109,101,115,115,97,103,101,61,61,116,46,109,101,115,115,97,103,101,59,99,97,115,101,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,58,114,101,116,117,114,110,32,110,61,61,116,43,34,34,59,99,97,115,101,34,91,111,98,106,101,99,116,32,77,97,112,93,34,58,118,97,114,32,102,61,87,59,99,97,115,101,34,91,111,98,106,101,99,116,32,83,101,116,93,34,58,105,102,40,102,124,124,40,102,61,85,41,44,110,46,115,105,122,101,33,61,116,46,115,105,122,101,38,38,33,40,49,38,101,41,41,98,114,101,97,107,59,114,101,116,117,114,110,40,114,61,111,46,103,101,116,40,110,41,41,63,114,61,61,116,58,40,101,124,61,50,44,111,46,115,101,116,40,110,44,116,41,44,116,61,115,101,40,102,40,110,41,44,102,40,116,41,44,101,44,117,44,105,44,111,41,44,111,46,100,101,108,101,116,101,40,110,41,44,116,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,34,58,105,102,40,116,111,41,114,101,116,117,114,110,32,116,111,46,99,97,108,108,40,110,41,61,61,116,111,46,99,97,108,108,40,116,41,125,10,114,101,116,117,114,110,32,102,97,108,115,101,125,102,117,110,99,116,105,111,110,32,112,101,40,110,41,123,114,101,116,117,114,110,32,120,111,40,66,101,40,110,44,84,44,90,101,41,44,110,43,34,34,41,125,102,117,110,99,116,105,111,110,32,95,101,40,110,41,123,114,101,116,117,114,110,32,83,116,40,110,44,87,117,44,112,111,41,125,102,117,110,99,116,105,111,110,32,118,101,40,110,41,123,114,101,116,117,114,110,32,83,116,40,110,44,66,117,44,95,111,41,125,102,117,110,99,116,105,111,110,32,103,101,40,110,41,123,102,111,114,40,118,97,114,32,116,61,110,46,110,97,109,101,43,34,34,44,114,61,71,105,91,116,93,44,101,61,111,105,46,99,97,108,108,40,71,105,44,116,41,63,114,46,108,101,110,103,116,104,58,48,59,101,45,45,59,41,123,118,97,114,32,117,61,114,91,101,93,44,105,61,117,46,102,117,110,99,59,105,102,40,110,117,108,108,61,61,105,124,124,105,61,61,110,41,114,101,116,117,114,110,32,117,46,110,97,109,101,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,100,101,40,110,41,123,114,101,116,117,114,110,40,111,105,46,99,97,108,108,40,65,110,44,34,112,108,97,99,101,104,111,108,100,101,114,34,41,63,65,110,58,110,41,46,112,108,97,99,101,104,111,108,100,101,114,125,102,117,110,99,116,105,111,110,32,121,101,40,41,123,118,97,114,32,110,61,65,110,46,105,116,101,114,97,116,101,101,124,124,70,117,44,110,61,110,61,61,61,70,117,63,113,116,58,110,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,40,97,114,103,117,109,101,110,116,115,91,48,93,44,97,114,103,117,109,101,110,116,115,91,49,93,41,58,110,125,102,117,110,99,116,105,111,110,32,98,101,40,110,44,116,41,123,118,97,114,32,114,61,110,46,95,95,100,97,116,97,95,95,44,101,61,116,121,112,101,111,102,32,116,59,114,101,116,117,114,110,40,34,115,116,114,105,110,103,34,61,61,101,124,124,34,110,117,109,98,101,114,34,61,61,101,124,124,34,115,121,109,98,111,108,34,61,61,101,124,124,34,98,111,111,108,101,97,110,34,61,61,101,63,34,95,95,112,114,111,116,111,95,95,34,33,61,61,116,58,110,117,108,108,61,61,61,116,41,63,114,91,116,121,112,101,111,102,32,116,61,61,34,115,116,114,105,110,103,34,63,34,115,116,114,105,110,103,34,58,34,104,97,115,104,34,93,58,114,46,109,97,112,59,10,125,102,117,110,99,116,105,111,110,32,120,101,40,110,41,123,102,111,114,40,118,97,114,32,116,61,87,117,40,110,41,44,114,61,116,46,108,101,110,103,116,104,59,114,45,45,59,41,123,118,97,114,32,101,61,116,91,114,93,44,117,61,110,91,101,93,59,116,91,114,93,61,91,101,44,117,44,117,61,61,61,117,38,38,33,100,117,40,117,41,93,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,106,101,40,110,44,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,110,63,84,58,110,91,116,93,59,114,101,116,117,114,110,32,70,116,40,114,41,63,114,58,84,125,102,117,110,99,116,105,111,110,32,119,101,40,110,44,116,44,114,41,123,116,61,83,114,40,116,44,110,41,59,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,116,46,108,101,110,103,116,104,44,105,61,102,97,108,115,101,59,43,43,101,60,117,59,41,123,118,97,114,32,111,61,77,101,40,116,91,101,93,41,59,105,102,40,33,40,105,61,110,117,108,108,33,61,110,38,38,114,40,110,44,111,41,41,41,98,114,101,97,107,59,110,61,110,91,111,93,125,114,101,116,117,114,110,32,105,124,124,43,43,101,33,61,117,63,105,58,40,117,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,33,33,117,38,38,103,117,40,117,41,38,38,83,101,40,111,44,117,41,38,38,40,102,102,40,110,41,124,124,111,102,40,110,41,41,41,125,102,117,110,99,116,105,111,110,32,109,101,40,110,41,123,118,97,114,32,116,61,110,46,108,101,110,103,116,104,44,114,61,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,116,41,59,114,101,116,117,114,110,32,116,38,38,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,91,48,93,38,38,111,105,46,99,97,108,108,40,110,44,34,105,110,100,101,120,34,41,38,38,40,114,46,105,110,100,101,120,61,110,46,105,110,100,101,120,44,114,46,105,110,112,117,116,61,110,46,105,110,112,117,116,41,44,114,125,102,117,110,99,116,105,111,110,32,65,101,40,110,41,123,10,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,46,99,111,110,115,116,114,117,99,116,111,114,33,61,34,102,117,110,99,116,105,111,110,34,124,124,122,101,40,110,41,63,123,125,58,101,111,40,100,105,40,110,41,41,125,102,117,110,99,116,105,111,110,32,69,101,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,46,99,111,110,115,116,114,117,99,116,111,114,59,115,119,105,116,99,104,40,116,41,123,99,97,115,101,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,58,114,101,116,117,114,110,32,82,114,40,110,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,58,114,101,116,117,114,110,32,110,101,119,32,101,40,43,110,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,58,114,101,116,117,114,110,32,116,61,114,63,82,114,40,110,46,98,117,102,102,101,114,41,58,110,46,98,117,102,102,101,114,44,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,116,44,110,46,98,121,116,101,79,102,102,115,101,116,44,110,46,98,121,116,101,76,101,110,103,116,104,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,70,108,111,97,116,51,50,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,70,108,111,97,116,54,52,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,73,110,116,56,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,73,110,116,49,54,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,73,110,116,51,50,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,85,105,110,116,56,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,93,34,58,10,99,97,115,101,34,91,111,98,106,101,99,116,32,85,105,110,116,49,54,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,85,105,110,116,51,50,65,114,114,97,121,93,34,58,114,101,116,117,114,110,32,122,114,40,110,44,114,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,77,97,112,93,34,58,114,101,116,117,114,110,32,110,101,119,32,101,59,99,97,115,101,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,58,114,101,116,117,114,110,32,110,101,119,32,101,40,110,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,58,114,101,116,117,114,110,32,116,61,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,110,46,115,111,117,114,99,101,44,95,110,46,101,120,101,99,40,110,41,41,44,116,46,108,97,115,116,73,110,100,101,120,61,110,46,108,97,115,116,73,110,100,101,120,44,116,59,99,97,115,101,34,91,111,98,106,101,99,116,32,83,101,116,93,34,58,114,101,116,117,114,110,32,110,101,119,32,101,59,99,97,115,101,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,34,58,114,101,116,117,114,110,32,116,111,63,81,117,40,116,111,46,99,97,108,108,40,110,41,41,58,123,125,125,125,102,117,110,99,116,105,111,110,32,107,101,40,110,41,123,114,101,116,117,114,110,32,102,102,40,110,41,124,124,111,102,40,110,41,124,124,33,33,40,106,105,38,38,110,38,38,110,91,106,105,93,41,125,102,117,110,99,116,105,111,110,32,83,101,40,110,44,116,41,123,118,97,114,32,114,61,116,121,112,101,111,102,32,110,59,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,58,116,44,33,33,116,38,38,40,34,110,117,109,98,101,114,34,61,61,114,124,124,34,115,121,109,98,111,108,34,33,61,114,38,38,98,110,46,116,101,115,116,40,110,41,41,38,38,45,49,60,110,38,38,48,61,61,110,37,49,38,38,110,60,116,59,10,125,102,117,110,99,116,105,111,110,32,79,101,40,110,44,116,44,114,41,123,105,102,40,33,100,117,40,114,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,118,97,114,32,101,61,116,121,112,101,111,102,32,116,59,114,101,116,117,114,110,33,33,40,34,110,117,109,98,101,114,34,61,61,101,63,115,117,40,114,41,38,38,83,101,40,116,44,114,46,108,101,110,103,116,104,41,58,34,115,116,114,105,110,103,34,61,61,101,38,38,116,32,105,110,32,114,41,38,38,108,117,40,114,91,116,93,44,110,41,125,102,117,110,99,116,105,111,110,32,73,101,40,110,44,116,41,123,105,102,40,102,102,40,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,118,97,114,32,114,61,116,121,112,101,111,102,32,110,59,114,101,116,117,114,110,33,40,34,110,117,109,98,101,114,34,33,61,114,38,38,34,115,121,109,98,111,108,34,33,61,114,38,38,34,98,111,111,108,101,97,110,34,33,61,114,38,38,110,117,108,108,33,61,110,38,38,33,119,117,40,110,41,41,124,124,40,110,110,46,116,101,115,116,40,110,41,124,124,33,88,46,116,101,115,116,40,110,41,124,124,110,117,108,108,33,61,116,38,38,110,32,105,110,32,81,117,40,116,41,41,125,102,117,110,99,116,105,111,110,32,82,101,40,110,41,123,118,97,114,32,116,61,103,101,40,110,41,44,114,61,65,110,91,116,93,59,114,101,116,117,114,110,32,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,38,38,116,32,105,110,32,85,110,46,112,114,111,116,111,116,121,112,101,38,38,40,110,61,61,61,114,124,124,40,116,61,104,111,40,114,41,44,33,33,116,38,38,110,61,61,61,116,91,48,93,41,41,125,102,117,110,99,116,105,111,110,32,122,101,40,110,41,123,118,97,114,32,116,61,110,38,38,110,46,99,111,110,115,116,114,117,99,116,111,114,59,114,101,116,117,114,110,32,110,61,61,61,40,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,38,38,116,46,112,114,111,116,111,116,121,112,101,124,124,101,105,41,125,102,117,110,99,116,105,111,110,32,87,101,40,110,44,116,41,123,10,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,114,38,38,40,114,91,110,93,61,61,61,116,38,38,40,116,33,61,61,84,124,124,110,32,105,110,32,81,117,40,114,41,41,41,125,125,102,117,110,99,116,105,111,110,32,66,101,40,116,44,114,44,101,41,123,114,101,116,117,114,110,32,114,61,85,105,40,114,61,61,61,84,63,116,46,108,101,110,103,116,104,45,49,58,114,44,48,41,44,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,117,61,97,114,103,117,109,101,110,116,115,44,105,61,45,49,44,111,61,85,105,40,117,46,108,101,110,103,116,104,45,114,44,48,41,44,102,61,75,117,40,111,41,59,43,43,105,60,111,59,41,102,91,105,93,61,117,91,114,43,105,93,59,102,111,114,40,105,61,45,49,44,111,61,75,117,40,114,43,49,41,59,43,43,105,60,114,59,41,111,91,105,93,61,117,91,105,93,59,114,101,116,117,114,110,32,111,91,114,93,61,101,40,102,41,44,110,40,116,44,116,104,105,115,44,111,41,125,125,102,117,110,99,116,105,111,110,32,76,101,40,110,44,116,41,123,105,102,40,40,34,99,111,110,115,116,114,117,99,116,111,114,34,33,61,61,116,124,124,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,91,116,93,41,38,38,34,95,95,112,114,111,116,111,95,95,34,33,61,116,41,114,101,116,117,114,110,32,110,91,116,93,125,102,117,110,99,116,105,111,110,32,85,101,40,110,44,116,44,114,41,123,118,97,114,32,101,61,116,43,34,34,59,116,61,120,111,59,118,97,114,32,117,44,105,61,36,101,59,114,101,116,117,114,110,32,117,61,40,117,61,101,46,109,97,116,99,104,40,97,110,41,41,63,117,91,49,93,46,115,112,108,105,116,40,108,110,41,58,91,93,44,114,61,105,40,117,44,114,41,44,40,105,61,114,46,108,101,110,103,116,104,41,38,38,40,117,61,105,45,49,44,114,91,117,93,61,40,49,60,105,63,34,38,32,34,58,34,34,41,43,114,91,117,93,44,10,114,61,114,46,106,111,105,110,40,50,60,105,63,34,44,32,34,58,34,32,34,41,44,101,61,101,46,114,101,112,108,97,99,101,40,99,110,44,34,123,92,110,47,42,32,91,119,114,97,112,112,101,100,32,119,105,116,104,32,34,43,114,43,34,93,32,42,47,92,110,34,41,41,44,116,40,110,44,101,41,125,102,117,110,99,116,105,111,110,32,67,101,40,110,41,123,118,97,114,32,116,61,48,44,114,61,48,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,68,105,40,41,44,117,61,49,54,45,40,101,45,114,41,59,105,102,40,114,61,101,44,48,60,117,41,123,105,102,40,56,48,48,60,61,43,43,116,41,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,91,48,93,125,101,108,115,101,32,116,61,48,59,114,101,116,117,114,110,32,110,46,97,112,112,108,121,40,84,44,97,114,103,117,109,101,110,116,115,41,125,125,102,117,110,99,116,105,111,110,32,68,101,40,110,44,116,41,123,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,44,117,61,101,45,49,59,102,111,114,40,116,61,116,61,61,61,84,63,101,58,116,59,43,43,114,60,116,59,41,123,118,97,114,32,101,61,105,114,40,114,44,117,41,44,105,61,110,91,101,93,59,110,91,101,93,61,110,91,114,93,44,110,91,114,93,61,105,125,114,101,116,117,114,110,32,110,46,108,101,110,103,116,104,61,116,44,110,125,102,117,110,99,116,105,111,110,32,77,101,40,110,41,123,105,102,40,116,121,112,101,111,102,32,110,61,61,34,115,116,114,105,110,103,34,124,124,119,117,40,110,41,41,114,101,116,117,114,110,32,110,59,118,97,114,32,116,61,110,43,34,34,59,114,101,116,117,114,110,34,48,34,61,61,116,38,38,49,47,110,61,61,45,36,63,34,45,48,34,58,116,125,102,117,110,99,116,105,111,110,32,84,101,40,110,41,123,105,102,40,110,117,108,108,33,61,110,41,123,116,114,121,123,114,101,116,117,114,110,32,105,105,46,99,97,108,108,40,110,41,125,99,97,116,99,104,40,110,41,123,125,10,114,101,116,117,114,110,32,110,43,34,34,125,114,101,116,117,114,110,34,34,125,102,117,110,99,116,105,111,110,32,36,101,40,110,44,116,41,123,114,101,116,117,114,110,32,114,40,78,44,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,101,61,34,95,46,34,43,114,91,48,93,59,116,38,114,91,49,93,38,38,33,111,40,110,44,101,41,38,38,110,46,112,117,115,104,40,101,41,125,41,44,110,46,115,111,114,116,40,41,125,102,117,110,99,116,105,111,110,32,70,101,40,110,41,123,105,102,40,110,32,105,110,115,116,97,110,99,101,111,102,32,85,110,41,114,101,116,117,114,110,32,110,46,99,108,111,110,101,40,41,59,118,97,114,32,116,61,110,101,119,32,79,110,40,110,46,95,95,119,114,97,112,112,101,100,95,95,44,110,46,95,95,99,104,97,105,110,95,95,41,59,114,101,116,117,114,110,32,116,46,95,95,97,99,116,105,111,110,115,95,95,61,85,114,40,110,46,95,95,97,99,116,105,111,110,115,95,95,41,44,116,46,95,95,105,110,100,101,120,95,95,61,110,46,95,95,105,110,100,101,120,95,95,44,116,46,95,95,118,97,108,117,101,115,95,95,61,110,46,95,95,118,97,108,117,101,115,95,95,44,116,125,102,117,110,99,116,105,111,110,32,78,101,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,114,61,110,117,108,108,61,61,114,63,48,58,69,117,40,114,41,44,48,62,114,38,38,40,114,61,85,105,40,101,43,114,44,48,41,41,44,95,40,110,44,121,101,40,116,44,51,41,44,114,41,41,58,45,49,125,102,117,110,99,116,105,111,110,32,80,101,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,105,102,40,33,101,41,114,101,116,117,114,110,45,49,59,118,97,114,32,117,61,101,45,49,59,114,101,116,117,114,110,32,114,33,61,61,84,38,38,40,117,61,69,117,40,114,41,44,117,61,48,62,114,63,85,105,40,101,43,117,44,48,41,58,67,105,40,117,44,101,45,49,41,41,44,10,95,40,110,44,121,101,40,116,44,51,41,44,117,44,116,114,117,101,41,125,102,117,110,99,116,105,111,110,32,90,101,40,110,41,123,114,101,116,117,114,110,40,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,41,63,119,116,40,110,44,49,41,58,91,93,125,102,117,110,99,116,105,111,110,32,113,101,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,110,91,48,93,58,84,125,102,117,110,99,116,105,111,110,32,86,101,40,110,41,123,118,97,114,32,116,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,63,110,91,116,45,49,93,58,84,125,102,117,110,99,116,105,111,110,32,75,101,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,38,38,116,38,38,116,46,108,101,110,103,116,104,63,101,114,40,110,44,116,41,58,110,125,102,117,110,99,116,105,111,110,32,71,101,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,36,105,46,99,97,108,108,40,110,41,125,102,117,110,99,116,105,111,110,32,72,101,40,110,41,123,105,102,40,33,110,124,124,33,110,46,108,101,110,103,116,104,41,114,101,116,117,114,110,91,93,59,118,97,114,32,116,61,48,59,114,101,116,117,114,110,32,110,61,105,40,110,44,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,104,117,40,110,41,41,114,101,116,117,114,110,32,116,61,85,105,40,110,46,108,101,110,103,116,104,44,116,41,44,116,114,117,101,125,41,44,65,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,99,40,110,44,98,40,116,41,41,125,41,125,102,117,110,99,116,105,111,110,32,74,101,40,116,44,114,41,123,105,102,40,33,116,124,124,33,116,46,108,101,110,103,116,104,41,114,101,116,117,114,110,91,93,59,118,97,114,32,101,61,72,101,40,116,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,114,63,101,58,99,40,101,44,102,117,110,99,116,105,111,110,40,116,41,123,10,114,101,116,117,114,110,32,110,40,114,44,84,44,116,41,125,41,125,102,117,110,99,116,105,111,110,32,89,101,40,110,41,123,114,101,116,117,114,110,32,110,61,65,110,40,110,41,44,110,46,95,95,99,104,97,105,110,95,95,61,116,114,117,101,44,110,125,102,117,110,99,116,105,111,110,32,81,101,40,110,44,116,41,123,114,101,116,117,114,110,32,116,40,110,41,125,102,117,110,99,116,105,111,110,32,88,101,40,41,123,114,101,116,117,114,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,110,117,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,114,58,117,111,41,40,110,44,121,101,40,116,44,51,41,41,125,102,117,110,99,116,105,111,110,32,116,117,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,101,58,105,111,41,40,110,44,121,101,40,116,44,51,41,41,125,102,117,110,99,116,105,111,110,32,114,117,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,99,58,71,116,41,40,110,44,121,101,40,116,44,51,41,41,125,102,117,110,99,116,105,111,110,32,101,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,114,63,84,58,116,44,116,61,110,38,38,110,117,108,108,61,61,116,63,110,46,108,101,110,103,116,104,58,116,44,102,101,40,110,44,49,50,56,44,84,44,84,44,84,44,84,44,116,41,125,102,117,110,99,116,105,111,110,32,117,117,40,110,44,116,41,123,118,97,114,32,114,59,105,102,40,116,121,112,101,111,102,32,116,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,110,61,69,117,40,110,41,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,60,45,45,110,38,38,40,114,61,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,44,49,62,61,110,38,38,40,116,61,84,41,44,10,114,125,125,102,117,110,99,116,105,111,110,32,105,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,114,63,84,58,116,44,110,61,102,101,40,110,44,56,44,84,44,84,44,84,44,84,44,84,44,116,41,44,110,46,112,108,97,99,101,104,111,108,100,101,114,61,105,117,46,112,108,97,99,101,104,111,108,100,101,114,44,110,125,102,117,110,99,116,105,111,110,32,111,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,114,63,84,58,116,44,110,61,102,101,40,110,44,49,54,44,84,44,84,44,84,44,84,44,84,44,116,41,44,110,46,112,108,97,99,101,104,111,108,100,101,114,61,111,117,46,112,108,97,99,101,104,111,108,100,101,114,44,110,125,102,117,110,99,116,105,111,110,32,102,117,40,110,44,116,44,114,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,118,97,114,32,114,61,99,44,101,61,97,59,114,101,116,117,114,110,32,99,61,97,61,84,44,95,61,116,44,115,61,110,46,97,112,112,108,121,40,101,44,114,41,125,102,117,110,99,116,105,111,110,32,117,40,110,41,123,118,97,114,32,114,61,110,45,112,59,114,101,116,117,114,110,32,110,45,61,95,44,112,61,61,61,84,124,124,114,62,61,116,124,124,48,62,114,124,124,103,38,38,110,62,61,108,125,102,117,110,99,116,105,111,110,32,105,40,41,123,118,97,114,32,110,61,71,111,40,41,59,105,102,40,117,40,110,41,41,114,101,116,117,114,110,32,111,40,110,41,59,118,97,114,32,114,44,101,61,98,111,59,114,61,110,45,95,44,110,61,116,45,40,110,45,112,41,44,114,61,103,63,67,105,40,110,44,108,45,114,41,58,110,44,104,61,101,40,105,44,114,41,125,102,117,110,99,116,105,111,110,32,111,40,110,41,123,114,101,116,117,114,110,32,104,61,84,44,100,38,38,99,63,101,40,110,41,58,40,99,61,97,61,84,44,115,41,125,102,117,110,99,116,105,111,110,32,102,40,41,123,118,97,114,32,110,61,71,111,40,41,44,114,61,117,40,110,41,59,105,102,40,99,61,97,114,103,117,109,101,110,116,115,44,10,97,61,116,104,105,115,44,112,61,110,44,114,41,123,105,102,40,104,61,61,61,84,41,114,101,116,117,114,110,32,95,61,110,61,112,44,104,61,98,111,40,105,44,116,41,44,118,63,101,40,110,41,58,115,59,105,102,40,103,41,114,101,116,117,114,110,32,108,111,40,104,41,44,104,61,98,111,40,105,44,116,41,44,101,40,112,41,125,114,101,116,117,114,110,32,104,61,61,61,84,38,38,40,104,61,98,111,40,105,44,116,41,41,44,115,125,118,97,114,32,99,44,97,44,108,44,115,44,104,44,112,44,95,61,48,44,118,61,102,97,108,115,101,44,103,61,102,97,108,115,101,44,100,61,116,114,117,101,59,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,116,61,83,117,40,116,41,124,124,48,44,100,117,40,114,41,38,38,40,118,61,33,33,114,46,108,101,97,100,105,110,103,44,108,61,40,103,61,34,109,97,120,87,97,105,116,34,105,110,32,114,41,63,85,105,40,83,117,40,114,46,109,97,120,87,97,105,116,41,124,124,48,44,116,41,58,108,44,100,61,34,116,114,97,105,108,105,110,103,34,105,110,32,114,63,33,33,114,46,116,114,97,105,108,105,110,103,58,100,41,44,102,46,99,97,110,99,101,108,61,102,117,110,99,116,105,111,110,40,41,123,104,33,61,61,84,38,38,108,111,40,104,41,44,95,61,48,44,99,61,112,61,97,61,104,61,84,125,44,102,46,102,108,117,115,104,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,104,61,61,61,84,63,115,58,111,40,71,111,40,41,41,125,44,102,125,102,117,110,99,116,105,111,110,32,99,117,40,110,44,116,41,123,102,117,110,99,116,105,111,110,32,114,40,41,123,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,44,117,61,116,63,116,46,97,112,112,108,121,40,116,104,105,115,44,101,41,58,101,91,48,93,44,105,61,114,46,99,97,99,104,101,59,10,114,101,116,117,114,110,32,105,46,104,97,115,40,117,41,63,105,46,103,101,116,40,117,41,58,40,101,61,110,46,97,112,112,108,121,40,116,104,105,115,44,101,41,44,114,46,99,97,99,104,101,61,105,46,115,101,116,40,117,44,101,41,124,124,105,44,101,41,125,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,124,124,110,117,108,108,33,61,116,38,38,116,121,112,101,111,102,32,116,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,114,46,99,97,99,104,101,61,110,101,119,40,99,117,46,67,97,99,104,101,124,124,70,110,41,44,114,125,102,117,110,99,116,105,111,110,32,97,117,40,110,41,123,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,59,115,119,105,116,99,104,40,116,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,33,110,46,99,97,108,108,40,116,104,105,115,41,59,99,97,115,101,32,49,58,114,101,116,117,114,110,33,110,46,99,97,108,108,40,116,104,105,115,44,116,91,48,93,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,33,110,46,99,97,108,108,40,116,104,105,115,44,116,91,48,93,44,116,91,49,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,33,110,46,99,97,108,108,40,116,104,105,115,44,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,125,114,101,116,117,114,110,33,110,46,97,112,112,108,121,40,116,104,105,115,44,116,41,125,125,102,117,110,99,116,105,111,110,32,108,117,40,110,44,116,41,123,114,101,116,117,114,110,32,110,61,61,61,116,124,124,110,33,61,61,110,38,38,116,33,61,61,116,59,10,125,102,117,110,99,116,105,111,110,32,115,117,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,103,117,40,110,46,108,101,110,103,116,104,41,38,38,33,95,117,40,110,41,125,102,117,110,99,116,105,111,110,32,104,117,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,115,117,40,110,41,125,102,117,110,99,116,105,111,110,32,112,117,40,110,41,123,105,102,40,33,121,117,40,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,118,97,114,32,116,61,79,116,40,110,41,59,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,69,114,114,111,114,93,34,61,61,116,124,124,34,91,111,98,106,101,99,116,32,68,79,77,69,120,99,101,112,116,105,111,110,93,34,61,61,116,124,124,116,121,112,101,111,102,32,110,46,109,101,115,115,97,103,101,61,61,34,115,116,114,105,110,103,34,38,38,116,121,112,101,111,102,32,110,46,110,97,109,101,61,61,34,115,116,114,105,110,103,34,38,38,33,120,117,40,110,41,125,102,117,110,99,116,105,111,110,32,95,117,40,110,41,123,114,101,116,117,114,110,33,33,100,117,40,110,41,38,38,40,110,61,79,116,40,110,41,44,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,61,61,110,124,124,34,91,111,98,106,101,99,116,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,93,34,61,61,110,124,124,34,91,111,98,106,101,99,116,32,65,115,121,110,99,70,117,110,99,116,105,111,110,93,34,61,61,110,124,124,34,91,111,98,106,101,99,116,32,80,114,111,120,121,93,34,61,61,110,41,125,102,117,110,99,116,105,111,110,32,118,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,38,38,110,61,61,69,117,40,110,41,125,102,117,110,99,116,105,111,110,32,103,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,38,38,45,49,60,110,38,38,48,61,61,110,37,49,38,38,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,62,61,110,59,10,125,102,117,110,99,116,105,111,110,32,100,117,40,110,41,123,118,97,114,32,116,61,116,121,112,101,111,102,32,110,59,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,40,34,111,98,106,101,99,116,34,61,61,116,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,41,125,102,117,110,99,116,105,111,110,32,121,117,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,116,121,112,101,111,102,32,110,61,61,34,111,98,106,101,99,116,34,125,102,117,110,99,116,105,111,110,32,98,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,124,124,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,120,117,40,110,41,123,114,101,116,117,114,110,33,40,33,121,117,40,110,41,124,124,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,33,61,79,116,40,110,41,41,38,38,40,110,61,100,105,40,110,41,44,110,117,108,108,61,61,61,110,124,124,40,110,61,111,105,46,99,97,108,108,40,110,44,34,99,111,110,115,116,114,117,99,116,111,114,34,41,38,38,110,46,99,111,110,115,116,114,117,99,116,111,114,44,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,38,38,110,32,105,110,115,116,97,110,99,101,111,102,32,110,38,38,105,105,46,99,97,108,108,40,110,41,61,61,108,105,41,41,125,102,117,110,99,116,105,111,110,32,106,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,115,116,114,105,110,103,34,124,124,33,102,102,40,110,41,38,38,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,119,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,115,121,109,98,111,108,34,124,124,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,34,61,61,79,116,40,110,41,59,10,125,102,117,110,99,116,105,111,110,32,109,117,40,110,41,123,105,102,40,33,110,41,114,101,116,117,114,110,91,93,59,105,102,40,115,117,40,110,41,41,114,101,116,117,114,110,32,106,117,40,110,41,63,77,40,110,41,58,85,114,40,110,41,59,105,102,40,119,105,38,38,110,91,119,105,93,41,123,110,61,110,91,119,105,93,40,41,59,102,111,114,40,118,97,114,32,116,44,114,61,91,93,59,33,40,116,61,110,46,110,101,120,116,40,41,41,46,100,111,110,101,59,41,114,46,112,117,115,104,40,116,46,118,97,108,117,101,41,59,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,32,116,61,118,111,40,110,41,44,40,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,116,63,87,58,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,116,63,85,58,85,117,41,40,110,41,125,102,117,110,99,116,105,111,110,32,65,117,40,110,41,123,114,101,116,117,114,110,32,110,63,40,110,61,83,117,40,110,41,44,110,61,61,61,36,124,124,110,61,61,61,45,36,63,49,46,55,57,55,54,57,51,49,51,52,56,54,50,51,49,53,55,101,51,48,56,42,40,48,62,110,63,45,49,58,49,41,58,110,61,61,61,110,63,110,58,48,41,58,48,61,61,61,110,63,110,58,48,125,102,117,110,99,116,105,111,110,32,69,117,40,110,41,123,110,61,65,117,40,110,41,59,118,97,114,32,116,61,110,37,49,59,114,101,116,117,114,110,32,110,61,61,61,110,63,116,63,110,45,116,58,110,58,48,125,102,117,110,99,116,105,111,110,32,107,117,40,110,41,123,114,101,116,117,114,110,32,110,63,112,116,40,69,117,40,110,41,44,48,44,52,50,57,52,57,54,55,50,57,53,41,58,48,125,102,117,110,99,116,105,111,110,32,83,117,40,110,41,123,105,102,40,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,41,114,101,116,117,114,110,32,110,59,105,102,40,119,117,40,110,41,41,114,101,116,117,114,110,32,70,59,105,102,40,100,117,40,110,41,38,38,40,110,61,116,121,112,101,111,102,32,110,46,118,97,108,117,101,79,102,61,61,34,102,117,110,99,116,105,111,110,34,63,110,46,118,97,108,117,101,79,102,40,41,58,110,44,10,110,61,100,117,40,110,41,63,110,43,34,34,58,110,41,44,116,121,112,101,111,102,32,110,33,61,34,115,116,114,105,110,103,34,41,114,101,116,117,114,110,32,48,61,61,61,110,63,110,58,43,110,59,110,61,110,46,114,101,112,108,97,99,101,40,117,110,44,34,34,41,59,118,97,114,32,116,61,103,110,46,116,101,115,116,40,110,41,59,114,101,116,117,114,110,32,116,124,124,121,110,46,116,101,115,116,40,110,41,63,68,110,40,110,46,115,108,105,99,101,40,50,41,44,116,63,50,58,56,41,58,118,110,46,116,101,115,116,40,110,41,63,70,58,43,110,125,102,117,110,99,116,105,111,110,32,79,117,40,110,41,123,114,101,116,117,114,110,32,67,114,40,110,44,66,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,73,117,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,34,34,58,121,114,40,110,41,125,102,117,110,99,116,105,111,110,32,82,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,61,110,117,108,108,61,61,110,63,84,58,107,116,40,110,44,116,41,44,110,61,61,61,84,63,114,58,110,125,102,117,110,99,116,105,111,110,32,122,117,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,119,101,40,110,44,116,44,122,116,41,125,102,117,110,99,116,105,111,110,32,87,117,40,110,41,123,114,101,116,117,114,110,32,115,117,40,110,41,63,113,110,40,110,41,58,86,116,40,110,41,125,102,117,110,99,116,105,111,110,32,66,117,40,110,41,123,105,102,40,115,117,40,110,41,41,110,61,113,110,40,110,44,116,114,117,101,41,59,101,108,115,101,32,105,102,40,100,117,40,110,41,41,123,118,97,114,32,116,44,114,61,122,101,40,110,41,44,101,61,91,93,59,102,111,114,40,116,32,105,110,32,110,41,40,34,99,111,110,115,116,114,117,99,116,111,114,34,33,61,116,124,124,33,114,38,38,111,105,46,99,97,108,108,40,110,44,116,41,41,38,38,101,46,112,117,115,104,40,116,41,59,110,61,101,125,101,108,115,101,123,105,102,40,116,61,91,93,44,10,110,117,108,108,33,61,110,41,102,111,114,40,114,32,105,110,32,81,117,40,110,41,41,116,46,112,117,115,104,40,114,41,59,110,61,116,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,76,117,40,110,44,116,41,123,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,123,125,59,118,97,114,32,114,61,99,40,118,101,40,110,41,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,91,110,93,125,41,59,114,101,116,117,114,110,32,116,61,121,101,40,116,41,44,116,114,40,110,44,114,44,102,117,110,99,116,105,111,110,40,110,44,114,41,123,114,101,116,117,114,110,32,116,40,110,44,114,91,48,93,41,125,41,125,102,117,110,99,116,105,111,110,32,85,117,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,83,40,110,44,87,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,67,117,40,110,41,123,114,101,116,117,114,110,32,36,102,40,73,117,40,110,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,125,102,117,110,99,116,105,111,110,32,68,117,40,110,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,110,46,114,101,112,108,97,99,101,40,120,110,44,88,110,41,46,114,101,112,108,97,99,101,40,83,110,44,34,34,41,125,102,117,110,99,116,105,111,110,32,77,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,61,73,117,40,110,41,44,116,61,114,63,84,58,116,44,116,61,61,61,84,63,122,110,46,116,101,115,116,40,110,41,63,110,46,109,97,116,99,104,40,73,110,41,124,124,91,93,58,110,46,109,97,116,99,104,40,115,110,41,124,124,91,93,58,110,46,109,97,116,99,104,40,116,41,124,124,91,93,125,102,117,110,99,116,105,111,110,32,84,117,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,125,125,102,117,110,99,116,105,111,110,32,36,117,40,110,41,123,114,101,116,117,114,110,32,110,59,10,125,102,117,110,99,116,105,111,110,32,70,117,40,110,41,123,114,101,116,117,114,110,32,113,116,40,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,63,110,58,95,116,40,110,44,49,41,41,125,102,117,110,99,116,105,111,110,32,78,117,40,110,44,116,44,101,41,123,118,97,114,32,117,61,87,117,40,116,41,44,105,61,69,116,40,116,44,117,41,59,110,117,108,108,33,61,101,124,124,100,117,40,116,41,38,38,40,105,46,108,101,110,103,116,104,124,124,33,117,46,108,101,110,103,116,104,41,124,124,40,101,61,116,44,116,61,110,44,110,61,116,104,105,115,44,105,61,69,116,40,116,44,87,117,40,116,41,41,41,59,118,97,114,32,111,61,33,40,100,117,40,101,41,38,38,34,99,104,97,105,110,34,105,110,32,101,38,38,33,101,46,99,104,97,105,110,41,44,102,61,95,117,40,110,41,59,114,101,116,117,114,110,32,114,40,105,44,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,101,61,116,91,114,93,59,110,91,114,93,61,101,44,102,38,38,40,110,46,112,114,111,116,111,116,121,112,101,91,114,93,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,99,104,97,105,110,95,95,59,105,102,40,111,124,124,116,41,123,118,97,114,32,114,61,110,40,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,41,59,114,101,116,117,114,110,40,114,46,95,95,97,99,116,105,111,110,115,95,95,61,85,114,40,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,41,46,112,117,115,104,40,123,102,117,110,99,58,101,44,97,114,103,115,58,97,114,103,117,109,101,110,116,115,44,116,104,105,115,65,114,103,58,110,125,41,44,114,46,95,95,99,104,97,105,110,95,95,61,116,44,114,125,114,101,116,117,114,110,32,101,46,97,112,112,108,121,40,110,44,97,40,91,116,104,105,115,46,118,97,108,117,101,40,41,93,44,97,114,103,117,109,101,110,116,115,41,41,125,41,125,41,44,110,125,102,117,110,99,116,105,111,110,32,80,117,40,41,123,125,10,102,117,110,99,116,105,111,110,32,90,117,40,110,41,123,114,101,116,117,114,110,32,73,101,40,110,41,63,98,40,77,101,40,110,41,41,58,114,114,40,110,41,125,102,117,110,99,116,105,111,110,32,113,117,40,41,123,114,101,116,117,114,110,91,93,125,102,117,110,99,116,105,111,110,32,86,117,40,41,123,114,101,116,117,114,110,32,102,97,108,115,101,125,109,110,61,110,117,108,108,61,61,109,110,63,36,110,58,114,116,46,100,101,102,97,117,108,116,115,40,36,110,46,79,98,106,101,99,116,40,41,44,109,110,44,114,116,46,112,105,99,107,40,36,110,44,87,110,41,41,59,118,97,114,32,75,117,61,109,110,46,65,114,114,97,121,44,71,117,61,109,110,46,68,97,116,101,44,72,117,61,109,110,46,69,114,114,111,114,44,74,117,61,109,110,46,70,117,110,99,116,105,111,110,44,89,117,61,109,110,46,77,97,116,104,44,81,117,61,109,110,46,79,98,106,101,99,116,44,88,117,61,109,110,46,82,101,103,69,120,112,44,110,105,61,109,110,46,83,116,114,105,110,103,44,116,105,61,109,110,46,84,121,112,101,69,114,114,111,114,44,114,105,61,75,117,46,112,114,111,116,111,116,121,112,101,44,101,105,61,81,117,46,112,114,111,116,111,116,121,112,101,44,117,105,61,109,110,91,34,95,95,99,111,114,101,45,106,115,95,115,104,97,114,101,100,95,95,34,93,44,105,105,61,74,117,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,44,111,105,61,101,105,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,44,102,105,61,48,44,99,105,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,47,91,94,46,93,43,36,47,46,101,120,101,99,40,117,105,38,38,117,105,46,107,101,121,115,38,38,117,105,46,107,101,121,115,46,73,69,95,80,82,79,84,79,124,124,34,34,41,59,114,101,116,117,114,110,32,110,63,34,83,121,109,98,111,108,40,115,114,99,41,95,49,46,34,43,110,58,34,34,125,40,41,44,97,105,61,101,105,46,116,111,83,116,114,105,110,103,44,108,105,61,105,105,46,99,97,108,108,40,81,117,41,44,115,105,61,36,110,46,95,44,104,105,61,88,117,40,34,94,34,43,105,105,46,99,97,108,108,40,111,105,41,46,114,101,112,108,97,99,101,40,114,110,44,34,92,92,36,38,34,41,46,114,101,112,108,97,99,101,40,47,104,97,115,79,119,110,80,114,111,112,101,114,116,121,124,40,102,117,110,99,116,105,111,110,41,46,42,63,40,63,61,92,92,92,40,41,124,32,102,111,114,32,46,43,63,40,63,61,92,92,92,93,41,47,103,44,34,36,49,46,42,63,34,41,43,34,36,34,41,44,112,105,61,80,110,63,109,110,46,66,117,102,102,101,114,58,84,44,95,105,61,109,110,46,83,121,109,98,111,108,44,118,105,61,109,110,46,85,105,110,116,56,65,114,114,97,121,44,103,105,61,112,105,63,112,105,46,103,58,84,44,100,105,61,66,40,81,117,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,44,81,117,41,44,121,105,61,81,117,46,99,114,101,97,116,101,44,98,105,61,101,105,46,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,44,120,105,61,114,105,46,115,112,108,105,99,101,44,106,105,61,95,105,63,95,105,46,105,115,67,111,110,99,97,116,83,112,114,101,97,100,97,98,108,101,58,84,44,119,105,61,95,105,63,95,105,46,105,116,101,114,97,116,111,114,58,84,44,109,105,61,95,105,63,95,105,46,116,111,83,116,114,105,110,103,84,97,103,58,84,44,65,105,61,102,117,110,99,116,105,111,110,40,41,123,10,116,114,121,123,118,97,114,32,110,61,106,101,40,81,117,44,34,100,101,102,105,110,101,80,114,111,112,101,114,116,121,34,41,59,114,101,116,117,114,110,32,110,40,123,125,44,34,34,44,123,125,41,44,110,125,99,97,116,99,104,40,110,41,123,125,125,40,41,44,69,105,61,109,110,46,99,108,101,97,114,84,105,109,101,111,117,116,33,61,61,36,110,46,99,108,101,97,114,84,105,109,101,111,117,116,38,38,109,110,46,99,108,101,97,114,84,105,109,101,111,117,116,44,107,105,61,71,117,38,38,71,117,46,110,111,119,33,61,61,36,110,46,68,97,116,101,46,110,111,119,38,38,71,117,46,110,111,119,44,83,105,61,109,110,46,115,101,116,84,105,109,101,111,117,116,33,61,61,36,110,46,115,101,116,84,105,109,101,111,117,116,38,38,109,110,46,115,101,116,84,105,109,101,111,117,116,44,79,105,61,89,117,46,99,101,105,108,44,73,105,61,89,117,46,102,108,111,111,114,44,82,105,61,81,117,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,44,122,105,61,112,105,63,112,105,46,105,115,66,117,102,102,101,114,58,84,44,87,105,61,109,110,46,105,115,70,105,110,105,116,101,44,66,105,61,114,105,46,106,111,105,110,44,76,105,61,66,40,81,117,46,107,101,121,115,44,81,117,41,44,85,105,61,89,117,46,109,97,120,44,67,105,61,89,117,46,109,105,110,44,68,105,61,71,117,46,110,111,119,44,77,105,61,109,110,46,112,97,114,115,101,73,110,116,44,84,105,61,89,117,46,114,97,110,100,111,109,44,36,105,61,114,105,46,114,101,118,101,114,115,101,44,70,105,61,106,101,40,109,110,44,34,68,97,116,97,86,105,101,119,34,41,44,78,105,61,106,101,40,109,110,44,34,77,97,112,34,41,44,80,105,61,106,101,40,109,110,44,34,80,114,111,109,105,115,101,34,41,44,90,105,61,106,101,40,109,110,44,34,83,101,116,34,41,44,113,105,61,106,101,40,109,110,44,34,87,101,97,107,77,97,112,34,41,44,86,105,61,106,101,40,81,117,44,34,99,114,101,97,116,101,34,41,44,75,105,61,113,105,38,38,110,101,119,32,113,105,44,71,105,61,123,125,44,72,105,61,84,101,40,70,105,41,44,74,105,61,84,101,40,78,105,41,44,89,105,61,84,101,40,80,105,41,44,81,105,61,84,101,40,90,105,41,44,88,105,61,84,101,40,113,105,41,44,110,111,61,95,105,63,95,105,46,112,114,111,116,111,116,121,112,101,58,84,44,116,111,61,110,111,63,110,111,46,118,97,108,117,101,79,102,58,84,44,114,111,61,110,111,63,110,111,46,116,111,83,116,114,105,110,103,58,84,44,101,111,61,102,117,110,99,116,105,111,110,40,41,123,10,102,117,110,99,116,105,111,110,32,110,40,41,123,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,100,117,40,116,41,63,121,105,63,121,105,40,116,41,58,40,110,46,112,114,111,116,111,116,121,112,101,61,116,44,116,61,110,101,119,32,110,44,110,46,112,114,111,116,111,116,121,112,101,61,84,44,116,41,58,123,125,125,125,40,41,59,65,110,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,61,123,101,115,99,97,112,101,58,74,44,101,118,97,108,117,97,116,101,58,89,44,105,110,116,101,114,112,111,108,97,116,101,58,81,44,118,97,114,105,97,98,108,101,58,34,34,44,105,109,112,111,114,116,115,58,123,95,58,65,110,125,125,44,65,110,46,112,114,111,116,111,116,121,112,101,61,69,110,46,112,114,111,116,111,116,121,112,101,44,65,110,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,65,110,44,79,110,46,112,114,111,116,111,116,121,112,101,61,101,111,40,69,110,46,112,114,111,116,111,116,121,112,101,41,44,79,110,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,79,110,44,85,110,46,112,114,111,116,111,116,121,112,101,61,101,111,40,69,110,46,112,114,111,116,111,116,121,112,101,41,44,85,110,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,85,110,44,77,110,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,100,97,116,97,95,95,61,86,105,63,86,105,40,110,117,108,108,41,58,123,125,44,116,104,105,115,46,115,105,122,101,61,48,125,44,77,110,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,61,116,104,105,115,46,104,97,115,40,110,41,38,38,100,101,108,101,116,101,32,116,104,105,115,46,95,95,100,97,116,97,95,95,91,110,93,44,10,116,104,105,115,46,115,105,122,101,45,61,110,63,49,58,48,44,110,125,44,77,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,86,105,63,40,110,61,116,91,110,93,44,34,95,95,108,111,100,97,115,104,95,104,97,115,104,95,117,110,100,101,102,105,110,101,100,95,95,34,61,61,61,110,63,84,58,110,41,58,111,105,46,99,97,108,108,40,116,44,110,41,63,116,91,110,93,58,84,125,44,77,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,86,105,63,116,91,110,93,33,61,61,84,58,111,105,46,99,97,108,108,40,116,44,110,41,125,44,77,110,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,116,104,105,115,46,115,105,122,101,43,61,116,104,105,115,46,104,97,115,40,110,41,63,48,58,49,44,114,91,110,93,61,86,105,38,38,116,61,61,61,84,63,34,95,95,108,111,100,97,115,104,95,104,97,115,104,95,117,110,100,101,102,105,110,101,100,95,95,34,58,116,44,116,104,105,115,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,100,97,116,97,95,95,61,91,93,44,116,104,105,115,46,115,105,122,101,61,48,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,110,61,102,116,40,116,44,110,41,44,33,40,48,62,110,41,38,38,40,110,61,61,116,46,108,101,110,103,116,104,45,49,63,116,46,112,111,112,40,41,58,120,105,46,99,97,108,108,40,116,44,110,44,49,41,44,10,45,45,116,104,105,115,46,115,105,122,101,44,116,114,117,101,41,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,110,61,102,116,40,116,44,110,41,44,48,62,110,63,84,58,116,91,110,93,91,49,93,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,45,49,60,102,116,40,116,104,105,115,46,95,95,100,97,116,97,95,95,44,110,41,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,116,104,105,115,46,95,95,100,97,116,97,95,95,44,101,61,102,116,40,114,44,110,41,59,114,101,116,117,114,110,32,48,62,101,63,40,43,43,116,104,105,115,46,115,105,122,101,44,114,46,112,117,115,104,40,91,110,44,116,93,41,41,58,114,91,101,93,91,49,93,61,116,44,116,104,105,115,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,105,122,101,61,48,44,116,104,105,115,46,95,95,100,97,116,97,95,95,61,123,104,97,115,104,58,110,101,119,32,77,110,44,109,97,112,58,110,101,119,40,78,105,124,124,84,110,41,44,115,116,114,105,110,103,58,110,101,119,32,77,110,125,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,61,98,101,40,116,104,105,115,44,110,41,46,100,101,108,101,116,101,40,110,41,44,116,104,105,115,46,115,105,122,101,45,61,110,63,49,58,48,44,110,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,98,101,40,116,104,105,115,44,110,41,46,103,101,116,40,110,41,59,10,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,98,101,40,116,104,105,115,44,110,41,46,104,97,115,40,110,41,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,98,101,40,116,104,105,115,44,110,41,44,101,61,114,46,115,105,122,101,59,114,101,116,117,114,110,32,114,46,115,101,116,40,110,44,116,41,44,116,104,105,115,46,115,105,122,101,43,61,114,46,115,105,122,101,61,61,101,63,48,58,49,44,116,104,105,115,125,44,78,110,46,112,114,111,116,111,116,121,112,101,46,97,100,100,61,78,110,46,112,114,111,116,111,116,121,112,101,46,112,117,115,104,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,95,100,97,116,97,95,95,46,115,101,116,40,110,44,34,95,95,108,111,100,97,115,104,95,104,97,115,104,95,117,110,100,101,102,105,110,101,100,95,95,34,41,44,116,104,105,115,125,44,78,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,95,100,97,116,97,95,95,46,104,97,115,40,110,41,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,84,110,44,116,104,105,115,46,115,105,122,101,61,48,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,110,61,116,46,100,101,108,101,116,101,40,110,41,44,116,104,105,115,46,115,105,122,101,61,116,46,115,105,122,101,44,110,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,32,116,104,105,115,46,95,95,100,97,116,97,95,95,46,103,101,116,40,110,41,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,95,100,97,116,97,95,95,46,104,97,115,40,110,41,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,105,102,40,114,32,105,110,115,116,97,110,99,101,111,102,32,84,110,41,123,118,97,114,32,101,61,114,46,95,95,100,97,116,97,95,95,59,105,102,40,33,78,105,124,124,49,57,57,62,101,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,101,46,112,117,115,104,40,91,110,44,116,93,41,44,116,104,105,115,46,115,105,122,101,61,43,43,114,46,115,105,122,101,44,116,104,105,115,59,114,61,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,70,110,40,101,41,125,114,101,116,117,114,110,32,114,46,115,101,116,40,110,44,116,41,44,116,104,105,115,46,115,105,122,101,61,114,46,115,105,122,101,44,116,104,105,115,125,59,118,97,114,32,117,111,61,70,114,40,109,116,41,44,105,111,61,70,114,40,65,116,44,116,114,117,101,41,44,111,111,61,78,114,40,41,44,102,111,61,78,114,40,116,114,117,101,41,44,99,111,61,75,105,63,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,75,105,46,115,101,116,40,110,44,116,41,44,110,125,58,36,117,44,97,111,61,65,105,63,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,65,105,40,110,44,34,116,111,83,116,114,105,110,103,34,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,116,114,117,101,44,101,110,117,109,101,114,97,98,108,101,58,102,97,108,115,101,44,118,97,108,117,101,58,84,117,40,116,41,44,119,114,105,116,97,98,108,101,58,116,114,117,101,125,41,125,58,36,117,44,108,111,61,69,105,124,124,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,32,36,110,46,99,108,101,97,114,84,105,109,101,111,117,116,40,110,41,125,44,115,111,61,90,105,38,38,49,47,85,40,110,101,119,32,90,105,40,91,44,45,48,93,41,41,91,49,93,61,61,36,63,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,101,119,32,90,105,40,110,41,125,58,80,117,44,104,111,61,75,105,63,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,75,105,46,103,101,116,40,110,41,125,58,80,117,44,112,111,61,82,105,63,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,40,110,61,81,117,40,110,41,44,105,40,82,105,40,110,41,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,98,105,46,99,97,108,108,40,110,44,116,41,125,41,41,125,58,113,117,44,95,111,61,82,105,63,102,117,110,99,116,105,111,110,40,110,41,123,102,111,114,40,118,97,114,32,116,61,91,93,59,110,59,41,97,40,116,44,112,111,40,110,41,41,44,110,61,100,105,40,110,41,59,114,101,116,117,114,110,32,116,125,58,113,117,44,118,111,61,79,116,59,40,70,105,38,38,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,33,61,118,111,40,110,101,119,32,70,105,40,110,101,119,32,65,114,114,97,121,66,117,102,102,101,114,40,49,41,41,41,124,124,78,105,38,38,34,91,111,98,106,101,99,116,32,77,97,112,93,34,33,61,118,111,40,110,101,119,32,78,105,41,124,124,80,105,38,38,34,91,111,98,106,101,99,116,32,80,114,111,109,105,115,101,93,34,33,61,118,111,40,80,105,46,114,101,115,111,108,118,101,40,41,41,124,124,90,105,38,38,34,91,111,98,106,101,99,116,32,83,101,116,93,34,33,61,118,111,40,110,101,119,32,90,105,41,124,124,113,105,38,38,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,33,61,118,111,40,110,101,119,32,113,105,41,41,38,38,40,118,111,61,102,117,110,99,116,105,111,110,40,110,41,123,10,118,97,114,32,116,61,79,116,40,110,41,59,105,102,40,110,61,40,110,61,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,61,61,116,63,110,46,99,111,110,115,116,114,117,99,116,111,114,58,84,41,63,84,101,40,110,41,58,34,34,41,115,119,105,116,99,104,40,110,41,123,99,97,115,101,32,72,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,59,99,97,115,101,32,74,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,77,97,112,93,34,59,99,97,115,101,32,89,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,80,114,111,109,105,115,101,93,34,59,99,97,115,101,32,81,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,83,101,116,93,34,59,99,97,115,101,32,88,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,125,114,101,116,117,114,110,32,116,125,41,59,118,97,114,32,103,111,61,117,105,63,95,117,58,86,117,44,121,111,61,67,101,40,99,111,41,44,98,111,61,83,105,124,124,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,36,110,46,115,101,116,84,105,109,101,111,117,116,40,110,44,116,41,125,44,120,111,61,67,101,40,97,111,41,44,106,111,61,102,117,110,99,116,105,111,110,40,110,41,123,110,61,99,117,40,110,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,53,48,48,61,61,61,116,46,115,105,122,101,38,38,116,46,99,108,101,97,114,40,41,44,110,125,41,59,118,97,114,32,116,61,110,46,99,97,99,104,101,59,114,101,116,117,114,110,32,110,125,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,52,54,61,61,61,110,46,99,104,97,114,67,111,100,101,65,116,40,48,41,38,38,116,46,112,117,115,104,40,34,34,41,44,110,46,114,101,112,108,97,99,101,40,116,110,44,102,117,110,99,116,105,111,110,40,110,44,114,44,101,44,117,41,123,10,116,46,112,117,115,104,40,101,63,117,46,114,101,112,108,97,99,101,40,104,110,44,34,36,49,34,41,58,114,124,124,110,41,125,41,44,116,125,41,44,119,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,104,117,40,110,41,63,121,116,40,110,44,119,116,40,116,44,49,44,104,117,44,116,114,117,101,41,41,58,91,93,125,41,44,109,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,86,101,40,116,41,59,114,101,116,117,114,110,32,104,117,40,114,41,38,38,40,114,61,84,41,44,104,117,40,110,41,63,121,116,40,110,44,119,116,40,116,44,49,44,104,117,44,116,114,117,101,41,44,121,101,40,114,44,50,41,41,58,91,93,125,41,44,65,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,86,101,40,116,41,59,114,101,116,117,114,110,32,104,117,40,114,41,38,38,40,114,61,84,41,44,104,117,40,110,41,63,121,116,40,110,44,119,116,40,116,44,49,44,104,117,44,116,114,117,101,41,44,84,44,114,41,58,91,93,125,41,44,69,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,99,40,110,44,69,114,41,59,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,38,38,116,91,48,93,61,61,61,110,91,48,93,63,87,116,40,116,41,58,91,93,125,41,44,107,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,44,114,61,99,40,110,44,69,114,41,59,114,101,116,117,114,110,32,116,61,61,61,86,101,40,114,41,63,116,61,84,58,114,46,112,111,112,40,41,44,114,46,108,101,110,103,116,104,38,38,114,91,48,93,61,61,61,110,91,48,93,63,87,116,40,114,44,121,101,40,116,44,50,41,41,58,91,93,125,41,44,83,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,44,114,61,99,40,110,44,69,114,41,59,114,101,116,117,114,110,40,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,41,38,38,114,46,112,111,112,40,41,44,10,114,46,108,101,110,103,116,104,38,38,114,91,48,93,61,61,61,110,91,48,93,63,87,116,40,114,44,84,44,116,41,58,91,93,125,41,44,79,111,61,102,114,40,75,101,41,44,73,111,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,101,61,104,116,40,110,44,116,41,59,114,101,116,117,114,110,32,117,114,40,110,44,99,40,116,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,83,101,40,110,44,114,41,63,43,110,58,110,125,41,46,115,111,114,116,40,87,114,41,41,44,101,125,41,44,82,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,98,114,40,119,116,40,110,44,49,44,104,117,44,116,114,117,101,41,41,125,41,44,122,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,59,114,101,116,117,114,110,32,104,117,40,116,41,38,38,40,116,61,84,41,44,98,114,40,119,116,40,110,44,49,44,104,117,44,116,114,117,101,41,44,121,101,40,116,44,50,41,41,125,41,44,87,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,44,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,59,114,101,116,117,114,110,32,98,114,40,119,116,40,110,44,49,44,104,117,44,116,114,117,101,41,44,84,44,116,41,125,41,44,66,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,104,117,40,110,41,63,121,116,40,110,44,116,41,58,91,93,125,41,44,76,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,109,114,40,105,40,110,44,104,117,41,41,125,41,44,85,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,59,114,101,116,117,114,110,32,104,117,40,116,41,38,38,40,116,61,84,41,44,10,109,114,40,105,40,110,44,104,117,41,44,121,101,40,116,44,50,41,41,125,41,44,67,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,44,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,59,114,101,116,117,114,110,32,109,114,40,105,40,110,44,104,117,41,44,84,44,116,41,125,41,44,68,111,61,102,114,40,72,101,41,44,77,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,110,46,108,101,110,103,116,104,44,116,61,49,60,116,63,110,91,116,45,49,93,58,84,44,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,40,110,46,112,111,112,40,41,44,116,41,58,84,59,114,101,116,117,114,110,32,74,101,40,110,44,116,41,125,41,44,84,111,61,112,101,40,102,117,110,99,116,105,111,110,40,110,41,123,102,117,110,99,116,105,111,110,32,116,40,116,41,123,114,101,116,117,114,110,32,104,116,40,116,44,110,41,125,118,97,114,32,114,61,110,46,108,101,110,103,116,104,44,101,61,114,63,110,91,48,93,58,48,44,117,61,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,59,114,101,116,117,114,110,33,40,49,60,114,124,124,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,46,108,101,110,103,116,104,41,38,38,117,32,105,110,115,116,97,110,99,101,111,102,32,85,110,38,38,83,101,40,101,41,63,40,117,61,117,46,115,108,105,99,101,40,101,44,43,101,43,40,114,63,49,58,48,41,41,44,117,46,95,95,97,99,116,105,111,110,115,95,95,46,112,117,115,104,40,123,102,117,110,99,58,81,101,44,97,114,103,115,58,91,116,93,44,116,104,105,115,65,114,103,58,84,125,41,44,110,101,119,32,79,110,40,117,44,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,46,116,104,114,117,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,114,38,38,33,110,46,108,101,110,103,116,104,38,38,110,46,112,117,115,104,40,84,41,44,10,110,125,41,41,58,116,104,105,115,46,116,104,114,117,40,116,41,125,41,44,36,111,61,84,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,111,105,46,99,97,108,108,40,110,44,114,41,63,43,43,110,91,114,93,58,115,116,40,110,44,114,44,49,41,125,41,44,70,111,61,71,114,40,78,101,41,44,78,111,61,71,114,40,80,101,41,44,80,111,61,84,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,111,105,46,99,97,108,108,40,110,44,114,41,63,110,91,114,93,46,112,117,115,104,40,116,41,58,115,116,40,110,44,114,44,91,116,93,41,125,41,44,90,111,61,102,114,40,102,117,110,99,116,105,111,110,40,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,44,111,61,115,117,40,116,41,63,75,117,40,116,46,108,101,110,103,116,104,41,58,91,93,59,114,101,116,117,114,110,32,117,111,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,111,91,43,43,117,93,61,105,63,110,40,114,44,116,44,101,41,58,76,116,40,116,44,114,44,101,41,125,41,44,111,125,41,44,113,111,61,84,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,115,116,40,110,44,114,44,116,41,125,41,44,86,111,61,84,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,91,114,63,48,58,49,93,46,112,117,115,104,40,116,41,125,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,91,93,44,91,93,93,125,41,44,75,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,91,93,59,118,97,114,32,114,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,49,60,114,38,38,79,101,40,110,44,116,91,48,93,44,116,91,49,93,41,63,116,61,91,93,58,50,60,114,38,38,79,101,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,38,38,40,116,61,91,116,91,48,93,93,41,44,10,88,116,40,110,44,119,116,40,116,44,49,41,44,91,93,41,125,41,44,71,111,61,107,105,124,124,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,110,46,68,97,116,101,46,110,111,119,40,41,125,44,72,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,49,59,105,102,40,114,46,108,101,110,103,116,104,41,118,97,114,32,117,61,76,40,114,44,100,101,40,72,111,41,41,44,101,61,51,50,124,101,59,114,101,116,117,114,110,32,102,101,40,110,44,101,44,116,44,114,44,117,41,125,41,44,74,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,51,59,105,102,40,114,46,108,101,110,103,116,104,41,118,97,114,32,117,61,76,40,114,44,100,101,40,74,111,41,41,44,101,61,51,50,124,101,59,114,101,116,117,114,110,32,102,101,40,116,44,101,44,110,44,114,44,117,41,125,41,44,89,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,100,116,40,110,44,49,44,116,41,125,41,44,81,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,100,116,40,110,44,83,117,40,116,41,124,124,48,44,114,41,125,41,59,99,117,46,67,97,99,104,101,61,70,110,59,118,97,114,32,88,111,61,102,114,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,61,49,61,61,114,46,108,101,110,103,116,104,38,38,102,102,40,114,91,48,93,41,63,99,40,114,91,48,93,44,107,40,121,101,40,41,41,41,58,99,40,119,116,40,114,44,49,41,44,107,40,121,101,40,41,41,41,59,118,97,114,32,101,61,114,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,102,114,40,102,117,110,99,116,105,111,110,40,117,41,123,102,111,114,40,118,97,114,32,105,61,45,49,44,111,61,67,105,40,117,46,108,101,110,103,116,104,44,101,41,59,43,43,105,60,111,59,41,117,91,105,93,61,114,91,105,93,46,99,97,108,108,40,116,104,105,115,44,117,91,105,93,41,59,10,114,101,116,117,114,110,32,110,40,116,44,116,104,105,115,44,117,41,125,41,125,41,44,110,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,101,40,110,44,51,50,44,84,44,116,44,76,40,116,44,100,101,40,110,102,41,41,41,125,41,44,116,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,101,40,110,44,54,52,44,84,44,116,44,76,40,116,44,100,101,40,116,102,41,41,41,125,41,44,114,102,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,101,40,110,44,50,53,54,44,84,44,84,44,84,44,116,41,125,41,44,101,102,61,101,101,40,73,116,41,44,117,102,61,101,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,62,61,116,125,41,44,111,102,61,85,116,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,125,40,41,41,63,85,116,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,111,105,46,99,97,108,108,40,110,44,34,99,97,108,108,101,101,34,41,38,38,33,98,105,46,99,97,108,108,40,110,44,34,99,97,108,108,101,101,34,41,125,44,102,102,61,75,117,46,105,115,65,114,114,97,121,44,99,102,61,86,110,63,107,40,86,110,41,58,67,116,44,97,102,61,122,105,124,124,86,117,44,108,102,61,75,110,63,107,40,75,110,41,58,68,116,44,115,102,61,71,110,63,107,40,71,110,41,58,84,116,44,104,102,61,72,110,63,107,40,72,110,41,58,78,116,44,112,102,61,74,110,63,107,40,74,110,41,58,80,116,44,95,102,61,89,110,63,107,40,89,110,41,58,90,116,44,118,102,61,101,101,40,75,116,41,44,103,102,61,101,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,60,61,116,125,41,44,100,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,10,105,102,40,122,101,40,116,41,124,124,115,117,40,116,41,41,67,114,40,116,44,87,117,40,116,41,44,110,41,59,101,108,115,101,32,102,111,114,40,118,97,114,32,114,32,105,110,32,116,41,111,105,46,99,97,108,108,40,116,44,114,41,38,38,111,116,40,110,44,114,44,116,91,114,93,41,125,41,44,121,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,67,114,40,116,44,66,117,40,116,41,44,110,41,125,41,44,98,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,67,114,40,116,44,66,117,40,116,41,44,110,44,101,41,125,41,44,120,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,67,114,40,116,44,87,117,40,116,41,44,110,44,101,41,125,41,44,106,102,61,112,101,40,104,116,41,44,119,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,110,61,81,117,40,110,41,59,118,97,114,32,114,61,45,49,44,101,61,116,46,108,101,110,103,116,104,44,117,61,50,60,101,63,116,91,50,93,58,84,59,102,111,114,40,117,38,38,79,101,40,116,91,48,93,44,116,91,49,93,44,117,41,38,38,40,101,61,49,41,59,43,43,114,60,101,59,41,102,111,114,40,118,97,114,32,117,61,116,91,114,93,44,105,61,66,117,40,117,41,44,111,61,45,49,44,102,61,105,46,108,101,110,103,116,104,59,43,43,111,60,102,59,41,123,118,97,114,32,99,61,105,91,111,93,44,97,61,110,91,99,93,59,40,97,61,61,61,84,124,124,108,117,40,97,44,101,105,91,99,93,41,38,38,33,111,105,46,99,97,108,108,40,110,44,99,41,41,38,38,40,110,91,99,93,61,117,91,99,93,41,125,114,101,116,117,114,110,32,110,125,41,44,109,102,61,102,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,112,117,115,104,40,84,44,97,101,41,44,110,40,79,102,44,84,44,116,41,125,41,44,65,102,61,89,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,10,110,117,108,108,33,61,116,38,38,116,121,112,101,111,102,32,116,46,116,111,83,116,114,105,110,103,33,61,34,102,117,110,99,116,105,111,110,34,38,38,40,116,61,97,105,46,99,97,108,108,40,116,41,41,44,110,91,116,93,61,114,125,44,84,117,40,36,117,41,41,44,69,102,61,89,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,117,108,108,33,61,116,38,38,116,121,112,101,111,102,32,116,46,116,111,83,116,114,105,110,103,33,61,34,102,117,110,99,116,105,111,110,34,38,38,40,116,61,97,105,46,99,97,108,108,40,116,41,41,44,111,105,46,99,97,108,108,40,110,44,116,41,63,110,91,116,93,46,112,117,115,104,40,114,41,58,110,91,116,93,61,91,114,93,125,44,121,101,41,44,107,102,61,102,114,40,76,116,41,44,83,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,89,116,40,110,44,116,44,114,41,125,41,44,79,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,89,116,40,110,44,116,44,114,44,101,41,125,41,44,73,102,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,123,125,59,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,32,114,59,118,97,114,32,101,61,102,97,108,115,101,59,116,61,99,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,83,114,40,116,44,110,41,44,101,124,124,40,101,61,49,60,116,46,108,101,110,103,116,104,41,44,116,125,41,44,67,114,40,110,44,118,101,40,110,41,44,114,41,44,101,38,38,40,114,61,95,116,40,114,44,55,44,108,101,41,41,59,102,111,114,40,118,97,114,32,117,61,116,46,108,101,110,103,116,104,59,117,45,45,59,41,120,114,40,114,44,116,91,117,93,41,59,114,101,116,117,114,110,32,114,125,41,44,82,102,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,123,125,58,110,114,40,110,44,116,41,59,10,125,41,44,122,102,61,111,101,40,87,117,41,44,87,102,61,111,101,40,66,117,41,44,66,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,110,43,40,114,63,67,117,40,116,41,58,116,41,125,41,44,76,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,45,34,58,34,34,41,43,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,44,85,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,32,34,58,34,34,41,43,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,44,67,102,61,90,114,40,34,116,111,76,111,119,101,114,67,97,115,101,34,41,44,68,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,95,34,58,34,34,41,43,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,44,77,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,32,34,58,34,34,41,43,36,102,40,116,41,125,41,44,84,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,32,34,58,34,34,41,43,116,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,41,44,36,102,61,90,114,40,34,116,111,85,112,112,101,114,67,97,115,101,34,41,44,70,102,61,102,114,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,116,114,121,123,114,101,116,117,114,110,32,110,40,116,44,84,44,114,41,125,99,97,116,99,104,40,110,41,123,114,101,116,117,114,110,32,112,117,40,110,41,63,110,58,110,101,119,32,72,117,40,110,41,125,125,41,44,78,102,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,10,114,101,116,117,114,110,32,114,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,116,61,77,101,40,116,41,44,115,116,40,110,44,116,44,72,111,40,110,91,116,93,44,110,41,41,125,41,44,110,125,41,44,80,102,61,72,114,40,41,44,90,102,61,72,114,40,116,114,117,101,41,44,113,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,76,116,40,114,44,110,44,116,41,125,125,41,44,86,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,76,116,40,110,44,114,44,116,41,125,125,41,44,75,102,61,88,114,40,99,41,44,71,102,61,88,114,40,117,41,44,72,102,61,88,114,40,104,41,44,74,102,61,114,101,40,41,44,89,102,61,114,101,40,116,114,117,101,41,44,81,102,61,81,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,43,116,125,44,48,41,44,88,102,61,105,101,40,34,99,101,105,108,34,41,44,110,99,61,81,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,47,116,125,44,49,41,44,116,99,61,105,101,40,34,102,108,111,111,114,34,41,44,114,99,61,81,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,42,116,125,44,49,41,44,101,99,61,105,101,40,34,114,111,117,110,100,34,41,44,117,99,61,81,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,45,116,125,44,48,41,59,114,101,116,117,114,110,32,65,110,46,97,102,116,101,114,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,116,121,112,101,111,102,32,116,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,10,114,101,116,117,114,110,32,110,61,69,117,40,110,41,44,102,117,110,99,116,105,111,110,40,41,123,105,102,40,49,62,45,45,110,41,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,125,44,65,110,46,97,114,121,61,101,117,44,65,110,46,97,115,115,105,103,110,61,100,102,44,65,110,46,97,115,115,105,103,110,73,110,61,121,102,44,65,110,46,97,115,115,105,103,110,73,110,87,105,116,104,61,98,102,44,65,110,46,97,115,115,105,103,110,87,105,116,104,61,120,102,44,65,110,46,97,116,61,106,102,44,65,110,46,98,101,102,111,114,101,61,117,117,44,65,110,46,98,105,110,100,61,72,111,44,65,110,46,98,105,110,100,65,108,108,61,78,102,44,65,110,46,98,105,110,100,75,101,121,61,74,111,44,65,110,46,99,97,115,116,65,114,114,97,121,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,91,93,59,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,91,48,93,59,114,101,116,117,114,110,32,102,102,40,110,41,63,110,58,91,110,93,125,44,65,110,46,99,104,97,105,110,61,89,101,44,65,110,46,99,104,117,110,107,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,105,102,40,116,61,40,114,63,79,101,40,110,44,116,44,114,41,58,116,61,61,61,84,41,63,49,58,85,105,40,69,117,40,116,41,44,48,41,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,33,114,124,124,49,62,116,41,114,101,116,117,114,110,91,93,59,102,111,114,40,118,97,114,32,101,61,48,44,117,61,48,44,105,61,75,117,40,79,105,40,114,47,116,41,41,59,101,60,114,59,41,105,91,117,43,43,93,61,104,114,40,110,44,101,44,101,43,61,116,41,59,114,101,116,117,114,110,32,105,125,44,65,110,46,99,111,109,112,97,99,116,61,102,117,110,99,116,105,111,110,40,110,41,123,102,111,114,40,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,101,61,48,44,117,61,91,93,59,43,43,116,60,114,59,41,123,10,118,97,114,32,105,61,110,91,116,93,59,105,38,38,40,117,91,101,43,43,93,61,105,41,125,114,101,116,117,114,110,32,117,125,44,65,110,46,99,111,110,99,97,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,105,102,40,33,110,41,114,101,116,117,114,110,91,93,59,102,111,114,40,118,97,114,32,116,61,75,117,40,110,45,49,41,44,114,61,97,114,103,117,109,101,110,116,115,91,48,93,59,110,45,45,59,41,116,91,110,45,49,93,61,97,114,103,117,109,101,110,116,115,91,110,93,59,114,101,116,117,114,110,32,97,40,102,102,40,114,41,63,85,114,40,114,41,58,91,114,93,44,119,116,40,116,44,49,41,41,125,44,65,110,46,99,111,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,44,101,61,121,101,40,41,59,114,101,116,117,114,110,32,116,61,114,63,99,40,116,44,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,91,49,93,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,91,101,40,110,91,48,93,41,44,110,91,49,93,93,125,41,58,91,93,44,102,114,40,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,117,61,45,49,59,43,43,117,60,114,59,41,123,118,97,114,32,105,61,116,91,117,93,59,105,102,40,110,40,105,91,48,93,44,116,104,105,115,44,101,41,41,114,101,116,117,114,110,32,110,40,105,91,49,93,44,116,104,105,115,44,101,41,125,125,41,125,44,65,110,46,99,111,110,102,111,114,109,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,118,116,40,95,116,40,110,44,49,41,41,125,44,65,110,46,99,111,110,115,116,97,110,116,61,84,117,44,10,65,110,46,99,111,117,110,116,66,121,61,36,111,44,65,110,46,99,114,101,97,116,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,101,111,40,110,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,114,58,97,116,40,114,44,116,41,125,44,65,110,46,99,117,114,114,121,61,105,117,44,65,110,46,99,117,114,114,121,82,105,103,104,116,61,111,117,44,65,110,46,100,101,98,111,117,110,99,101,61,102,117,44,65,110,46,100,101,102,97,117,108,116,115,61,119,102,44,65,110,46,100,101,102,97,117,108,116,115,68,101,101,112,61,109,102,44,65,110,46,100,101,102,101,114,61,89,111,44,65,110,46,100,101,108,97,121,61,81,111,44,65,110,46,100,105,102,102,101,114,101,110,99,101,61,119,111,44,65,110,46,100,105,102,102,101,114,101,110,99,101,66,121,61,109,111,44,65,110,46,100,105,102,102,101,114,101,110,99,101,87,105,116,104,61,65,111,44,65,110,46,100,114,111,112,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,116,61,114,124,124,116,61,61,61,84,63,49,58,69,117,40,116,41,44,104,114,40,110,44,48,62,116,63,48,58,116,44,101,41,41,58,91,93,125,44,65,110,46,100,114,111,112,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,116,61,114,124,124,116,61,61,61,84,63,49,58,69,117,40,116,41,44,116,61,101,45,116,44,104,114,40,110,44,48,44,48,62,116,63,48,58,116,41,41,58,91,93,125,44,65,110,46,100,114,111,112,82,105,103,104,116,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,106,114,40,110,44,121,101,40,116,44,51,41,44,116,114,117,101,44,116,114,117,101,41,58,91,93,59,10,125,44,65,110,46,100,114,111,112,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,106,114,40,110,44,121,101,40,116,44,51,41,44,116,114,117,101,41,58,91,93,125,44,65,110,46,102,105,108,108,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,105,102,40,33,117,41,114,101,116,117,114,110,91,93,59,102,111,114,40,114,38,38,116,121,112,101,111,102,32,114,33,61,34,110,117,109,98,101,114,34,38,38,79,101,40,110,44,116,44,114,41,38,38,40,114,61,48,44,101,61,117,41,44,117,61,110,46,108,101,110,103,116,104,44,114,61,69,117,40,114,41,44,48,62,114,38,38,40,114,61,45,114,62,117,63,48,58,117,43,114,41,44,101,61,101,61,61,61,84,124,124,101,62,117,63,117,58,69,117,40,101,41,44,48,62,101,38,38,40,101,43,61,117,41,44,101,61,114,62,101,63,48,58,107,117,40,101,41,59,114,60,101,59,41,110,91,114,43,43,93,61,116,59,114,101,116,117,114,110,32,110,125,44,65,110,46,102,105,108,116,101,114,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,105,58,106,116,41,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,102,108,97,116,77,97,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,119,116,40,114,117,40,110,44,116,41,44,49,41,125,44,65,110,46,102,108,97,116,77,97,112,68,101,101,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,119,116,40,114,117,40,110,44,116,41,44,36,41,125,44,65,110,46,102,108,97,116,77,97,112,68,101,112,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,114,61,114,61,61,61,84,63,49,58,69,117,40,114,41,44,10,119,116,40,114,117,40,110,44,116,41,44,114,41,125,44,65,110,46,102,108,97,116,116,101,110,61,90,101,44,65,110,46,102,108,97,116,116,101,110,68,101,101,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,41,63,119,116,40,110,44,36,41,58,91,93,125,44,65,110,46,102,108,97,116,116,101,110,68,101,112,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,110,46,108,101,110,103,116,104,63,40,116,61,116,61,61,61,84,63,49,58,69,117,40,116,41,44,119,116,40,110,44,116,41,41,58,91,93,125,44,65,110,46,102,108,105,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,102,101,40,110,44,53,49,50,41,125,44,65,110,46,102,108,111,119,61,80,102,44,65,110,46,102,108,111,119,82,105,103,104,116,61,90,102,44,65,110,46,102,114,111,109,80,97,105,114,115,61,102,117,110,99,116,105,111,110,40,110,41,123,102,111,114,40,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,101,61,123,125,59,43,43,116,60,114,59,41,123,118,97,114,32,117,61,110,91,116,93,59,101,91,117,91,48,93,93,61,117,91,49,93,125,114,101,116,117,114,110,32,101,125,44,65,110,46,102,117,110,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,69,116,40,110,44,87,117,40,110,41,41,125,44,65,110,46,102,117,110,99,116,105,111,110,115,73,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,69,116,40,110,44,66,117,40,110,41,41,125,44,65,110,46,103,114,111,117,112,66,121,61,80,111,44,65,110,46,105,110,105,116,105,97,108,61,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,40,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,41,63,104,114,40,110,44,48,44,45,49,41,58,91,93,125,44,65,110,46,105,110,116,101,114,115,101,99,116,105,111,110,61,69,111,44,65,110,46,105,110,116,101,114,115,101,99,116,105,111,110,66,121,61,107,111,44,65,110,46,105,110,116,101,114,115,101,99,116,105,111,110,87,105,116,104,61,83,111,44,65,110,46,105,110,118,101,114,116,61,65,102,44,65,110,46,105,110,118,101,114,116,66,121,61,69,102,44,65,110,46,105,110,118,111,107,101,77,97,112,61,90,111,44,65,110,46,105,116,101,114,97,116,101,101,61,70,117,44,65,110,46,107,101,121,66,121,61,113,111,44,65,110,46,107,101,121,115,61,87,117,44,65,110,46,107,101,121,115,73,110,61,66,117,44,65,110,46,109,97,112,61,114,117,44,65,110,46,109,97,112,75,101,121,115,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,123,125,59,114,101,116,117,114,110,32,116,61,121,101,40,116,44,51,41,44,109,116,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,115,116,40,114,44,116,40,110,44,101,44,117,41,44,110,41,125,41,44,114,125,44,65,110,46,109,97,112,86,97,108,117,101,115,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,123,125,59,114,101,116,117,114,110,32,116,61,121,101,40,116,44,51,41,44,109,116,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,115,116,40,114,44,101,44,116,40,110,44,101,44,117,41,41,125,41,44,114,125,44,65,110,46,109,97,116,99,104,101,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,72,116,40,95,116,40,110,44,49,41,41,125,44,65,110,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,74,116,40,110,44,95,116,40,116,44,49,41,41,125,44,65,110,46,109,101,109,111,105,122,101,61,99,117,44,10,65,110,46,109,101,114,103,101,61,83,102,44,65,110,46,109,101,114,103,101,87,105,116,104,61,79,102,44,65,110,46,109,101,116,104,111,100,61,113,102,44,65,110,46,109,101,116,104,111,100,79,102,61,86,102,44,65,110,46,109,105,120,105,110,61,78,117,44,65,110,46,110,101,103,97,116,101,61,97,117,44,65,110,46,110,116,104,65,114,103,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,61,69,117,40,110,41,44,102,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,81,116,40,116,44,110,41,125,41,125,44,65,110,46,111,109,105,116,61,73,102,44,65,110,46,111,109,105,116,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,76,117,40,110,44,97,117,40,121,101,40,116,41,41,41,125,44,65,110,46,111,110,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,117,117,40,50,44,110,41,125,44,65,110,46,111,114,100,101,114,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,40,102,102,40,116,41,124,124,40,116,61,110,117,108,108,61,61,116,63,91,93,58,91,116,93,41,44,114,61,101,63,84,58,114,44,102,102,40,114,41,124,124,40,114,61,110,117,108,108,61,61,114,63,91,93,58,91,114,93,41,44,88,116,40,110,44,116,44,114,41,41,125,44,65,110,46,111,118,101,114,61,75,102,44,65,110,46,111,118,101,114,65,114,103,115,61,88,111,44,65,110,46,111,118,101,114,69,118,101,114,121,61,71,102,44,65,110,46,111,118,101,114,83,111,109,101,61,72,102,44,65,110,46,112,97,114,116,105,97,108,61,110,102,44,65,110,46,112,97,114,116,105,97,108,82,105,103,104,116,61,116,102,44,65,110,46,112,97,114,116,105,116,105,111,110,61,86,111,44,65,110,46,112,105,99,107,61,82,102,44,65,110,46,112,105,99,107,66,121,61,76,117,44,65,110,46,112,114,111,112,101,114,116,121,61,90,117,44,10,65,110,46,112,114,111,112,101,114,116,121,79,102,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,84,58,107,116,40,110,44,116,41,125,125,44,65,110,46,112,117,108,108,61,79,111,44,65,110,46,112,117,108,108,65,108,108,61,75,101,44,65,110,46,112,117,108,108,65,108,108,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,38,38,116,38,38,116,46,108,101,110,103,116,104,63,101,114,40,110,44,116,44,121,101,40,114,44,50,41,41,58,110,125,44,65,110,46,112,117,108,108,65,108,108,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,38,38,116,38,38,116,46,108,101,110,103,116,104,63,101,114,40,110,44,116,44,84,44,114,41,58,110,125,44,65,110,46,112,117,108,108,65,116,61,73,111,44,65,110,46,114,97,110,103,101,61,74,102,44,65,110,46,114,97,110,103,101,82,105,103,104,116,61,89,102,44,65,110,46,114,101,97,114,103,61,114,102,44,65,110,46,114,101,106,101,99,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,105,58,106,116,41,40,110,44,97,117,40,121,101,40,116,44,51,41,41,41,125,44,65,110,46,114,101,109,111,118,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,91,93,59,105,102,40,33,110,124,124,33,110,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,114,59,118,97,114,32,101,61,45,49,44,117,61,91,93,44,105,61,110,46,108,101,110,103,116,104,59,102,111,114,40,116,61,121,101,40,116,44,51,41,59,43,43,101,60,105,59,41,123,118,97,114,32,111,61,110,91,101,93,59,116,40,111,44,101,44,110,41,38,38,40,114,46,112,117,115,104,40,111,41,44,10,117,46,112,117,115,104,40,101,41,41,125,114,101,116,117,114,110,32,117,114,40,110,44,117,41,44,114,125,44,65,110,46,114,101,115,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,116,61,116,61,61,61,84,63,116,58,69,117,40,116,41,44,102,114,40,110,44,116,41,125,44,65,110,46,114,101,118,101,114,115,101,61,71,101,44,65,110,46,115,97,109,112,108,101,83,105,122,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,40,114,63,79,101,40,110,44,116,44,114,41,58,116,61,61,61,84,41,63,49,58,69,117,40,116,41,44,40,102,102,40,110,41,63,101,116,58,97,114,41,40,110,44,116,41,125,44,65,110,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,108,114,40,110,44,116,44,114,41,125,44,65,110,46,115,101,116,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,101,61,116,121,112,101,111,102,32,101,61,61,34,102,117,110,99,116,105,111,110,34,63,101,58,84,44,110,117,108,108,61,61,110,63,110,58,108,114,40,110,44,116,44,114,44,101,41,125,44,65,110,46,115,104,117,102,102,108,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,117,116,58,115,114,41,40,110,41,125,44,65,110,46,115,108,105,99,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,114,38,38,116,121,112,101,111,102,32,114,33,61,34,110,117,109,98,101,114,34,38,38,79,101,40,110,44,116,44,114,41,63,40,116,61,48,44,10,114,61,101,41,58,40,116,61,110,117,108,108,61,61,116,63,48,58,69,117,40,116,41,44,114,61,114,61,61,61,84,63,101,58,69,117,40,114,41,41,44,104,114,40,110,44,116,44,114,41,41,58,91,93,125,44,65,110,46,115,111,114,116,66,121,61,75,111,44,65,110,46,115,111,114,116,101,100,85,110,105,113,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,103,114,40,110,41,58,91,93,125,44,65,110,46,115,111,114,116,101,100,85,110,105,113,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,103,114,40,110,44,121,101,40,116,44,50,41,41,58,91,93,125,44,65,110,46,115,112,108,105,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,114,38,38,116,121,112,101,111,102,32,114,33,61,34,110,117,109,98,101,114,34,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,114,61,84,41,44,114,61,114,61,61,61,84,63,52,50,57,52,57,54,55,50,57,53,58,114,62,62,62,48,44,114,63,40,110,61,73,117,40,110,41,41,38,38,40,116,121,112,101,111,102,32,116,61,61,34,115,116,114,105,110,103,34,124,124,110,117,108,108,33,61,116,38,38,33,104,102,40,116,41,41,38,38,40,116,61,121,114,40,116,41,44,33,116,38,38,82,110,46,116,101,115,116,40,110,41,41,63,79,114,40,77,40,110,41,44,48,44,114,41,58,110,46,115,112,108,105,116,40,116,44,114,41,58,91,93,125,44,65,110,46,115,112,114,101,97,100,61,102,117,110,99,116,105,111,110,40,116,44,114,41,123,105,102,40,116,121,112,101,111,102,32,116,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,114,61,110,117,108,108,61,61,114,63,48,58,85,105,40,69,117,40,114,41,44,48,41,44,10,102,114,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,117,61,101,91,114,93,59,114,101,116,117,114,110,32,101,61,79,114,40,101,44,48,44,114,41,44,117,38,38,97,40,101,44,117,41,44,110,40,116,44,116,104,105,115,44,101,41,125,41,125,44,65,110,46,116,97,105,108,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,63,104,114,40,110,44,49,44,116,41,58,91,93,125,44,65,110,46,116,97,107,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,40,116,61,114,124,124,116,61,61,61,84,63,49,58,69,117,40,116,41,44,104,114,40,110,44,48,44,48,62,116,63,48,58,116,41,41,58,91,93,125,44,65,110,46,116,97,107,101,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,116,61,114,124,124,116,61,61,61,84,63,49,58,69,117,40,116,41,44,116,61,101,45,116,44,104,114,40,110,44,48,62,116,63,48,58,116,44,101,41,41,58,91,93,125,44,65,110,46,116,97,107,101,82,105,103,104,116,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,106,114,40,110,44,121,101,40,116,44,51,41,44,102,97,108,115,101,44,116,114,117,101,41,58,91,93,125,44,65,110,46,116,97,107,101,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,106,114,40,110,44,121,101,40,116,44,51,41,41,58,91,93,125,44,65,110,46,116,97,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,40,110,41,44,10,110,125,44,65,110,46,116,104,114,111,116,116,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,116,114,117,101,44,117,61,116,114,117,101,59,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,100,117,40,114,41,38,38,40,101,61,34,108,101,97,100,105,110,103,34,105,110,32,114,63,33,33,114,46,108,101,97,100,105,110,103,58,101,44,117,61,34,116,114,97,105,108,105,110,103,34,105,110,32,114,63,33,33,114,46,116,114,97,105,108,105,110,103,58,117,41,44,102,117,40,110,44,116,44,123,108,101,97,100,105,110,103,58,101,44,109,97,120,87,97,105,116,58,116,44,116,114,97,105,108,105,110,103,58,117,125,41,125,44,65,110,46,116,104,114,117,61,81,101,44,65,110,46,116,111,65,114,114,97,121,61,109,117,44,65,110,46,116,111,80,97,105,114,115,61,122,102,44,65,110,46,116,111,80,97,105,114,115,73,110,61,87,102,44,65,110,46,116,111,80,97,116,104,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,102,102,40,110,41,63,99,40,110,44,77,101,41,58,119,117,40,110,41,63,91,110,93,58,85,114,40,106,111,40,73,117,40,110,41,41,41,125,44,65,110,46,116,111,80,108,97,105,110,79,98,106,101,99,116,61,79,117,44,65,110,46,116,114,97,110,115,102,111,114,109,61,102,117,110,99,116,105,111,110,40,110,44,116,44,101,41,123,118,97,114,32,117,61,102,102,40,110,41,44,105,61,117,124,124,97,102,40,110,41,124,124,95,102,40,110,41,59,105,102,40,116,61,121,101,40,116,44,52,41,44,110,117,108,108,61,61,101,41,123,118,97,114,32,111,61,110,38,38,110,46,99,111,110,115,116,114,117,99,116,111,114,59,101,61,105,63,117,63,110,101,119,32,111,58,91,93,58,100,117,40,110,41,38,38,95,117,40,111,41,63,101,111,40,100,105,40,110,41,41,58,123,125,59,10,125,114,101,116,117,114,110,40,105,63,114,58,109,116,41,40,110,44,102,117,110,99,116,105,111,110,40,110,44,114,44,117,41,123,114,101,116,117,114,110,32,116,40,101,44,110,44,114,44,117,41,125,41,44,101,125,44,65,110,46,117,110,97,114,121,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,101,117,40,110,44,49,41,125,44,65,110,46,117,110,105,111,110,61,82,111,44,65,110,46,117,110,105,111,110,66,121,61,122,111,44,65,110,46,117,110,105,111,110,87,105,116,104,61,87,111,44,65,110,46,117,110,105,113,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,98,114,40,110,41,58,91,93,125,44,65,110,46,117,110,105,113,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,98,114,40,110,44,121,101,40,116,44,50,41,41,58,91,93,125,44,65,110,46,117,110,105,113,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,44,110,38,38,110,46,108,101,110,103,116,104,63,98,114,40,110,44,84,44,116,41,58,91,93,125,44,65,110,46,117,110,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,124,124,120,114,40,110,44,116,41,125,44,65,110,46,117,110,122,105,112,61,72,101,44,65,110,46,117,110,122,105,112,87,105,116,104,61,74,101,44,65,110,46,117,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,108,114,40,110,44,116,44,107,114,40,114,41,40,107,116,40,110,44,116,41,41,44,118,111,105,100,32,48,41,125,44,65,110,46,117,112,100,97,116,101,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,10,114,101,116,117,114,110,32,101,61,116,121,112,101,111,102,32,101,61,61,34,102,117,110,99,116,105,111,110,34,63,101,58,84,44,110,117,108,108,33,61,110,38,38,40,110,61,108,114,40,110,44,116,44,107,114,40,114,41,40,107,116,40,110,44,116,41,41,44,101,41,41,44,110,125,44,65,110,46,118,97,108,117,101,115,61,85,117,44,65,110,46,118,97,108,117,101,115,73,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,83,40,110,44,66,117,40,110,41,41,125,44,65,110,46,119,105,116,104,111,117,116,61,66,111,44,65,110,46,119,111,114,100,115,61,77,117,44,65,110,46,119,114,97,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,102,40,107,114,40,116,41,44,110,41,125,44,65,110,46,120,111,114,61,76,111,44,65,110,46,120,111,114,66,121,61,85,111,44,65,110,46,120,111,114,87,105,116,104,61,67,111,44,65,110,46,122,105,112,61,68,111,44,65,110,46,122,105,112,79,98,106,101,99,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,65,114,40,110,124,124,91,93,44,116,124,124,91,93,44,111,116,41,125,44,65,110,46,122,105,112,79,98,106,101,99,116,68,101,101,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,65,114,40,110,124,124,91,93,44,116,124,124,91,93,44,108,114,41,125,44,65,110,46,122,105,112,87,105,116,104,61,77,111,44,65,110,46,101,110,116,114,105,101,115,61,122,102,44,65,110,46,101,110,116,114,105,101,115,73,110,61,87,102,44,65,110,46,101,120,116,101,110,100,61,121,102,44,65,110,46,101,120,116,101,110,100,87,105,116,104,61,98,102,44,78,117,40,65,110,44,65,110,41,44,65,110,46,97,100,100,61,81,102,44,65,110,46,97,116,116,101,109,112,116,61,70,102,44,65,110,46,99,97,109,101,108,67,97,115,101,61,66,102,44,65,110,46,99,97,112,105,116,97,108,105,122,101,61,67,117,44,10,65,110,46,99,101,105,108,61,88,102,44,65,110,46,99,108,97,109,112,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,114,61,61,61,84,38,38,40,114,61,116,44,116,61,84,41,44,114,33,61,61,84,38,38,40,114,61,83,117,40,114,41,44,114,61,114,61,61,61,114,63,114,58,48,41,44,116,33,61,61,84,38,38,40,116,61,83,117,40,116,41,44,116,61,116,61,61,61,116,63,116,58,48,41,44,112,116,40,83,117,40,110,41,44,116,44,114,41,125,44,65,110,46,99,108,111,110,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,95,116,40,110,44,52,41,125,44,65,110,46,99,108,111,110,101,68,101,101,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,95,116,40,110,44,53,41,125,44,65,110,46,99,108,111,110,101,68,101,101,112,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,44,95,116,40,110,44,53,44,116,41,125,44,65,110,46,99,108,111,110,101,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,44,95,116,40,110,44,52,44,116,41,125,44,65,110,46,99,111,110,102,111,114,109,115,84,111,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,124,124,103,116,40,110,44,116,44,87,117,40,116,41,41,125,44,65,110,46,100,101,98,117,114,114,61,68,117,44,65,110,46,100,101,102,97,117,108,116,84,111,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,124,124,110,33,61,61,110,63,116,58,110,125,44,65,110,46,100,105,118,105,100,101,61,110,99,44,65,110,46,101,110,100,115,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,10,110,61,73,117,40,110,41,44,116,61,121,114,40,116,41,59,118,97,114,32,101,61,110,46,108,101,110,103,116,104,44,101,61,114,61,114,61,61,61,84,63,101,58,112,116,40,69,117,40,114,41,44,48,44,101,41,59,114,101,116,117,114,110,32,114,45,61,116,46,108,101,110,103,116,104,44,48,60,61,114,38,38,110,46,115,108,105,99,101,40,114,44,101,41,61,61,116,125,44,65,110,46,101,113,61,108,117,44,65,110,46,101,115,99,97,112,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,72,46,116,101,115,116,40,110,41,63,110,46,114,101,112,108,97,99,101,40,75,44,110,116,41,58,110,125,44,65,110,46,101,115,99,97,112,101,82,101,103,69,120,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,101,110,46,116,101,115,116,40,110,41,63,110,46,114,101,112,108,97,99,101,40,114,110,44,34,92,92,36,38,34,41,58,110,125,44,65,110,46,101,118,101,114,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,102,102,40,110,41,63,117,58,98,116,59,114,101,116,117,114,110,32,114,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,84,41,44,101,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,102,105,110,100,61,70,111,44,65,110,46,102,105,110,100,73,110,100,101,120,61,78,101,44,65,110,46,102,105,110,100,75,101,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,112,40,110,44,121,101,40,116,44,51,41,44,109,116,41,125,44,65,110,46,102,105,110,100,76,97,115,116,61,78,111,44,65,110,46,102,105,110,100,76,97,115,116,73,110,100,101,120,61,80,101,44,65,110,46,102,105,110,100,76,97,115,116,75,101,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,112,40,110,44,121,101,40,116,44,51,41,44,65,116,41,59,10,125,44,65,110,46,102,108,111,111,114,61,116,99,44,65,110,46,102,111,114,69,97,99,104,61,110,117,44,65,110,46,102,111,114,69,97,99,104,82,105,103,104,116,61,116,117,44,65,110,46,102,111,114,73,110,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,111,111,40,110,44,121,101,40,116,44,51,41,44,66,117,41,125,44,65,110,46,102,111,114,73,110,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,102,111,40,110,44,121,101,40,116,44,51,41,44,66,117,41,125,44,65,110,46,102,111,114,79,119,110,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,109,116,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,102,111,114,79,119,110,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,65,116,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,103,101,116,61,82,117,44,65,110,46,103,116,61,101,102,44,65,110,46,103,116,101,61,117,102,44,65,110,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,119,101,40,110,44,116,44,82,116,41,125,44,65,110,46,104,97,115,73,110,61,122,117,44,65,110,46,104,101,97,100,61,113,101,44,65,110,46,105,100,101,110,116,105,116,121,61,36,117,44,65,110,46,105,110,99,108,117,100,101,115,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,110,61,115,117,40,110,41,63,110,58,85,117,40,110,41,44,114,61,114,38,38,33,101,63,69,117,40,114,41,58,48,44,101,61,110,46,108,101,110,103,116,104,44,48,62,114,38,38,40,114,61,85,105,40,101,43,114,44,48,41,41,44,106,117,40,110,41,63,114,60,61,101,38,38,45,49,60,110,46,105,110,100,101,120,79,102,40,116,44,114,41,58,33,33,101,38,38,45,49,60,118,40,110,44,116,44,114,41,59,10,125,44,65,110,46,105,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,114,61,110,117,108,108,61,61,114,63,48,58,69,117,40,114,41,44,48,62,114,38,38,40,114,61,85,105,40,101,43,114,44,48,41,41,44,118,40,110,44,116,44,114,41,41,58,45,49,125,44,65,110,46,105,110,82,97,110,103,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,65,117,40,116,41,44,114,61,61,61,84,63,40,114,61,116,44,116,61,48,41,58,114,61,65,117,40,114,41,44,110,61,83,117,40,110,41,44,110,62,61,67,105,40,116,44,114,41,38,38,110,60,85,105,40,116,44,114,41,125,44,65,110,46,105,110,118,111,107,101,61,107,102,44,65,110,46,105,115,65,114,103,117,109,101,110,116,115,61,111,102,44,65,110,46,105,115,65,114,114,97,121,61,102,102,44,65,110,46,105,115,65,114,114,97,121,66,117,102,102,101,114,61,99,102,44,65,110,46,105,115,65,114,114,97,121,76,105,107,101,61,115,117,44,65,110,46,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,61,104,117,44,65,110,46,105,115,66,111,111,108,101,97,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,114,117,101,61,61,61,110,124,124,102,97,108,115,101,61,61,61,110,124,124,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,61,61,79,116,40,110,41,125,44,65,110,46,105,115,66,117,102,102,101,114,61,97,102,44,65,110,46,105,115,68,97,116,101,61,108,102,44,65,110,46,105,115,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,33,120,117,40,110,41,125,44,65,110,46,105,115,69,109,112,116,121,61,102,117,110,99,116,105,111,110,40,110,41,123,10,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,32,116,114,117,101,59,105,102,40,115,117,40,110,41,38,38,40,102,102,40,110,41,124,124,116,121,112,101,111,102,32,110,61,61,34,115,116,114,105,110,103,34,124,124,116,121,112,101,111,102,32,110,46,115,112,108,105,99,101,61,61,34,102,117,110,99,116,105,111,110,34,124,124,97,102,40,110,41,124,124,95,102,40,110,41,124,124,111,102,40,110,41,41,41,114,101,116,117,114,110,33,110,46,108,101,110,103,116,104,59,118,97,114,32,116,61,118,111,40,110,41,59,105,102,40,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,116,124,124,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,116,41,114,101,116,117,114,110,33,110,46,115,105,122,101,59,105,102,40,122,101,40,110,41,41,114,101,116,117,114,110,33,86,116,40,110,41,46,108,101,110,103,116,104,59,102,111,114,40,118,97,114,32,114,32,105,110,32,110,41,105,102,40,111,105,46,99,97,108,108,40,110,44,114,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,114,101,116,117,114,110,32,116,114,117,101,125,44,65,110,46,105,115,69,113,117,97,108,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,77,116,40,110,44,116,41,125,44,65,110,46,105,115,69,113,117,97,108,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,40,114,61,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,63,114,58,84,41,63,114,40,110,44,116,41,58,84,59,114,101,116,117,114,110,32,101,61,61,61,84,63,77,116,40,110,44,116,44,84,44,114,41,58,33,33,101,125,44,65,110,46,105,115,69,114,114,111,114,61,112,117,44,65,110,46,105,115,70,105,110,105,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,38,38,87,105,40,110,41,125,44,65,110,46,105,115,70,117,110,99,116,105,111,110,61,95,117,44,10,65,110,46,105,115,73,110,116,101,103,101,114,61,118,117,44,65,110,46,105,115,76,101,110,103,116,104,61,103,117,44,65,110,46,105,115,77,97,112,61,115,102,44,65,110,46,105,115,77,97,116,99,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,61,61,61,116,124,124,36,116,40,110,44,116,44,120,101,40,116,41,41,125,44,65,110,46,105,115,77,97,116,99,104,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,114,61,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,63,114,58,84,44,36,116,40,110,44,116,44,120,101,40,116,41,44,114,41,125,44,65,110,46,105,115,78,97,78,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,98,117,40,110,41,38,38,110,33,61,43,110,125,44,65,110,46,105,115,78,97,116,105,118,101,61,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,103,111,40,110,41,41,116,104,114,111,119,32,110,101,119,32,72,117,40,34,85,110,115,117,112,112,111,114,116,101,100,32,99,111,114,101,45,106,115,32,117,115,101,46,32,84,114,121,32,104,116,116,112,115,58,47,47,110,112,109,115,46,105,111,47,115,101,97,114,99,104,63,113,61,112,111,110,121,102,105,108,108,46,34,41,59,114,101,116,117,114,110,32,70,116,40,110,41,125,44,65,110,46,105,115,78,105,108,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,125,44,65,110,46,105,115,78,117,108,108,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,61,110,125,44,65,110,46,105,115,78,117,109,98,101,114,61,98,117,44,65,110,46,105,115,79,98,106,101,99,116,61,100,117,44,65,110,46,105,115,79,98,106,101,99,116,76,105,107,101,61,121,117,44,65,110,46,105,115,80,108,97,105,110,79,98,106,101,99,116,61,120,117,44,65,110,46,105,115,82,101,103,69,120,112,61,104,102,44,10,65,110,46,105,115,83,97,102,101,73,110,116,101,103,101,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,118,117,40,110,41,38,38,45,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,60,61,110,38,38,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,62,61,110,125,44,65,110,46,105,115,83,101,116,61,112,102,44,65,110,46,105,115,83,116,114,105,110,103,61,106,117,44,65,110,46,105,115,83,121,109,98,111,108,61,119,117,44,65,110,46,105,115,84,121,112,101,100,65,114,114,97,121,61,95,102,44,65,110,46,105,115,85,110,100,101,102,105,110,101,100,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,61,61,61,84,125,44,65,110,46,105,115,87,101,97,107,77,97,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,61,61,118,111,40,110,41,125,44,65,110,46,105,115,87,101,97,107,83,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,87,101,97,107,83,101,116,93,34,61,61,79,116,40,110,41,125,44,65,110,46,106,111,105,110,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,34,34,58,66,105,46,99,97,108,108,40,110,44,116,41,125,44,65,110,46,107,101,98,97,98,67,97,115,101,61,76,102,44,65,110,46,108,97,115,116,61,86,101,44,65,110,46,108,97,115,116,73,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,105,102,40,33,101,41,114,101,116,117,114,110,45,49,59,118,97,114,32,117,61,101,59,105,102,40,114,33,61,61,84,38,38,40,117,61,69,117,40,114,41,44,117,61,48,62,117,63,85,105,40,101,43,117,44,48,41,58,67,105,40,117,44,101,45,49,41,41,44,10,116,61,61,61,116,41,123,102,111,114,40,114,61,117,43,49,59,114,45,45,38,38,110,91,114,93,33,61,61,116,59,41,59,110,61,114,125,101,108,115,101,32,110,61,95,40,110,44,100,44,117,44,116,114,117,101,41,59,114,101,116,117,114,110,32,110,125,44,65,110,46,108,111,119,101,114,67,97,115,101,61,85,102,44,65,110,46,108,111,119,101,114,70,105,114,115,116,61,67,102,44,65,110,46,108,116,61,118,102,44,65,110,46,108,116,101,61,103,102,44,65,110,46,109,97,120,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,120,116,40,110,44,36,117,44,73,116,41,58,84,125,44,65,110,46,109,97,120,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,120,116,40,110,44,121,101,40,116,44,50,41,44,73,116,41,58,84,125,44,65,110,46,109,101,97,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,40,110,44,36,117,41,125,44,65,110,46,109,101,97,110,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,121,40,110,44,121,101,40,116,44,50,41,41,125,44,65,110,46,109,105,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,120,116,40,110,44,36,117,44,75,116,41,58,84,125,44,65,110,46,109,105,110,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,120,116,40,110,44,121,101,40,116,44,50,41,44,75,116,41,58,84,125,44,65,110,46,115,116,117,98,65,114,114,97,121,61,113,117,44,65,110,46,115,116,117,98,70,97,108,115,101,61,86,117,44,65,110,46,115,116,117,98,79,98,106,101,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,125,125,44,65,110,46,115,116,117,98,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,10,114,101,116,117,114,110,34,34,125,44,65,110,46,115,116,117,98,84,114,117,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,114,117,101,125,44,65,110,46,109,117,108,116,105,112,108,121,61,114,99,44,65,110,46,110,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,81,116,40,110,44,69,117,40,116,41,41,58,84,125,44,65,110,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,110,46,95,61,61,61,116,104,105,115,38,38,40,36,110,46,95,61,115,105,41,44,116,104,105,115,125,44,65,110,46,110,111,111,112,61,80,117,44,65,110,46,110,111,119,61,71,111,44,65,110,46,112,97,100,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,61,73,117,40,110,41,59,118,97,114,32,101,61,40,116,61,69,117,40,116,41,41,63,68,40,110,41,58,48,59,114,101,116,117,114,110,33,116,124,124,101,62,61,116,63,110,58,40,116,61,40,116,45,101,41,47,50,44,110,101,40,73,105,40,116,41,44,114,41,43,110,43,110,101,40,79,105,40,116,41,44,114,41,41,125,44,65,110,46,112,97,100,69,110,100,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,61,73,117,40,110,41,59,118,97,114,32,101,61,40,116,61,69,117,40,116,41,41,63,68,40,110,41,58,48,59,114,101,116,117,114,110,32,116,38,38,101,60,116,63,110,43,110,101,40,116,45,101,44,114,41,58,110,125,44,65,110,46,112,97,100,83,116,97,114,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,61,73,117,40,110,41,59,118,97,114,32,101,61,40,116,61,69,117,40,116,41,41,63,68,40,110,41,58,48,59,114,101,116,117,114,110,32,116,38,38,101,60,116,63,110,101,40,116,45,101,44,114,41,43,110,58,110,125,44,65,110,46,112,97,114,115,101,73,110,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,10,114,101,116,117,114,110,32,114,124,124,110,117,108,108,61,61,116,63,116,61,48,58,116,38,38,40,116,61,43,116,41,44,77,105,40,73,117,40,110,41,46,114,101,112,108,97,99,101,40,111,110,44,34,34,41,44,116,124,124,48,41,125,44,65,110,46,114,97,110,100,111,109,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,105,102,40,114,38,38,116,121,112,101,111,102,32,114,33,61,34,98,111,111,108,101,97,110,34,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,114,61,84,41,44,114,61,61,61,84,38,38,40,116,121,112,101,111,102,32,116,61,61,34,98,111,111,108,101,97,110,34,63,40,114,61,116,44,116,61,84,41,58,116,121,112,101,111,102,32,110,61,61,34,98,111,111,108,101,97,110,34,38,38,40,114,61,110,44,110,61,84,41,41,44,110,61,61,61,84,38,38,116,61,61,61,84,63,40,110,61,48,44,116,61,49,41,58,40,110,61,65,117,40,110,41,44,116,61,61,61,84,63,40,116,61,110,44,110,61,48,41,58,116,61,65,117,40,116,41,41,44,110,62,116,41,123,118,97,114,32,101,61,110,59,110,61,116,44,116,61,101,125,114,101,116,117,114,110,32,114,124,124,110,37,49,124,124,116,37,49,63,40,114,61,84,105,40,41,44,67,105,40,110,43,114,42,40,116,45,110,43,67,110,40,34,49,101,45,34,43,40,40,114,43,34,34,41,46,108,101,110,103,116,104,45,49,41,41,41,44,116,41,41,58,105,114,40,110,44,116,41,125,44,65,110,46,114,101,100,117,99,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,102,102,40,110,41,63,108,58,106,44,117,61,51,62,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,40,110,44,121,101,40,116,44,52,41,44,114,44,117,44,117,111,41,125,44,65,110,46,114,101,100,117,99,101,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,102,102,40,110,41,63,115,58,106,44,117,61,51,62,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,10,114,101,116,117,114,110,32,101,40,110,44,121,101,40,116,44,52,41,44,114,44,117,44,105,111,41,125,44,65,110,46,114,101,112,101,97,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,40,114,63,79,101,40,110,44,116,44,114,41,58,116,61,61,61,84,41,63,49,58,69,117,40,116,41,44,111,114,40,73,117,40,110,41,44,116,41,125,44,65,110,46,114,101,112,108,97,99,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,44,116,61,73,117,40,110,91,48,93,41,59,114,101,116,117,114,110,32,51,62,110,46,108,101,110,103,116,104,63,116,58,116,46,114,101,112,108,97,99,101,40,110,91,49,93,44,110,91,50,93,41,125,44,65,110,46,114,101,115,117,108,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,116,61,83,114,40,116,44,110,41,59,118,97,114,32,101,61,45,49,44,117,61,116,46,108,101,110,103,116,104,59,102,111,114,40,117,124,124,40,117,61,49,44,110,61,84,41,59,43,43,101,60,117,59,41,123,118,97,114,32,105,61,110,117,108,108,61,61,110,63,84,58,110,91,77,101,40,116,91,101,93,41,93,59,105,61,61,61,84,38,38,40,101,61,117,44,105,61,114,41,44,110,61,95,117,40,105,41,63,105,46,99,97,108,108,40,110,41,58,105,125,114,101,116,117,114,110,32,110,125,44,65,110,46,114,111,117,110,100,61,101,99,44,65,110,46,114,117,110,73,110,67,111,110,116,101,120,116,61,120,44,65,110,46,115,97,109,112,108,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,81,110,58,99,114,41,40,110,41,125,44,65,110,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,32,48,59,105,102,40,115,117,40,110,41,41,114,101,116,117,114,110,32,106,117,40,110,41,63,68,40,110,41,58,110,46,108,101,110,103,116,104,59,10,118,97,114,32,116,61,118,111,40,110,41,59,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,116,124,124,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,116,63,110,46,115,105,122,101,58,86,116,40,110,41,46,108,101,110,103,116,104,125,44,65,110,46,115,110,97,107,101,67,97,115,101,61,68,102,44,65,110,46,115,111,109,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,102,102,40,110,41,63,104,58,112,114,59,114,101,116,117,114,110,32,114,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,84,41,44,101,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,115,111,114,116,101,100,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,95,114,40,110,44,116,41,125,44,65,110,46,115,111,114,116,101,100,73,110,100,101,120,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,118,114,40,110,44,116,44,121,101,40,114,44,50,41,41,125,44,65,110,46,115,111,114,116,101,100,73,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,105,102,40,114,41,123,118,97,114,32,101,61,95,114,40,110,44,116,41,59,105,102,40,101,60,114,38,38,108,117,40,110,91,101,93,44,116,41,41,114,101,116,117,114,110,32,101,125,114,101,116,117,114,110,45,49,125,44,65,110,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,95,114,40,110,44,116,44,116,114,117,101,41,125,44,65,110,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,118,114,40,110,44,116,44,121,101,40,114,44,50,41,44,116,114,117,101,41,59,10,125,44,65,110,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,41,123,118,97,114,32,114,61,95,114,40,110,44,116,44,116,114,117,101,41,45,49,59,105,102,40,108,117,40,110,91,114,93,44,116,41,41,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,45,49,125,44,65,110,46,115,116,97,114,116,67,97,115,101,61,77,102,44,65,110,46,115,116,97,114,116,115,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,61,73,117,40,110,41,44,114,61,110,117,108,108,61,61,114,63,48,58,112,116,40,69,117,40,114,41,44,48,44,110,46,108,101,110,103,116,104,41,44,116,61,121,114,40,116,41,44,110,46,115,108,105,99,101,40,114,44,114,43,116,46,108,101,110,103,116,104,41,61,61,116,125,44,65,110,46,115,117,98,116,114,97,99,116,61,117,99,44,65,110,46,115,117,109,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,109,40,110,44,36,117,41,58,48,125,44,65,110,46,115,117,109,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,109,40,110,44,121,101,40,116,44,50,41,41,58,48,125,44,65,110,46,116,101,109,112,108,97,116,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,65,110,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,59,114,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,84,41,44,110,61,73,117,40,110,41,44,116,61,98,102,40,123,125,44,116,44,101,44,99,101,41,44,114,61,98,102,40,123,125,44,116,46,105,109,112,111,114,116,115,44,101,46,105,109,112,111,114,116,115,44,99,101,41,59,118,97,114,32,117,44,105,44,111,61,87,117,40,114,41,44,102,61,83,40,114,44,111,41,44,99,61,48,59,10,114,61,116,46,105,110,116,101,114,112,111,108,97,116,101,124,124,106,110,59,118,97,114,32,97,61,34,95,95,112,43,61,39,34,59,114,61,88,117,40,40,116,46,101,115,99,97,112,101,124,124,106,110,41,46,115,111,117,114,99,101,43,34,124,34,43,114,46,115,111,117,114,99,101,43,34,124,34,43,40,114,61,61,61,81,63,112,110,58,106,110,41,46,115,111,117,114,99,101,43,34,124,34,43,40,116,46,101,118,97,108,117,97,116,101,124,124,106,110,41,46,115,111,117,114,99,101,43,34,124,36,34,44,34,103,34,41,59,118,97,114,32,108,61,111,105,46,99,97,108,108,40,116,44,34,115,111,117,114,99,101,85,82,76,34,41,63,34,47,47,35,32,115,111,117,114,99,101,85,82,76,61,34,43,40,116,46,115,111,117,114,99,101,85,82,76,43,34,34,41,46,114,101,112,108,97,99,101,40,47,91,92,114,92,110,93,47,103,44,34,32,34,41,43,34,92,110,34,58,34,34,59,105,102,40,110,46,114,101,112,108,97,99,101,40,114,44,102,117,110,99,116,105,111,110,40,116,44,114,44,101,44,111,44,102,44,108,41,123,114,101,116,117,114,110,32,101,124,124,40,101,61,111,41,44,97,43,61,110,46,115,108,105,99,101,40,99,44,108,41,46,114,101,112,108,97,99,101,40,119,110,44,122,41,44,114,38,38,40,117,61,116,114,117,101,44,97,43,61,34,39,43,95,95,101,40,34,43,114,43,34,41,43,39,34,41,44,102,38,38,40,105,61,116,114,117,101,44,97,43,61,34,39,59,34,43,102,43,34,59,92,110,95,95,112,43,61,39,34,41,44,101,38,38,40,97,43,61,34,39,43,40,40,95,95,116,61,40,34,43,101,43,34,41,41,61,61,110,117,108,108,63,39,39,58,95,95,116,41,43,39,34,41,44,99,61,108,43,116,46,108,101,110,103,116,104,44,116,125,41,44,97,43,61,34,39,59,34,44,40,116,61,111,105,46,99,97,108,108,40,116,44,34,118,97,114,105,97,98,108,101,34,41,38,38,116,46,118,97,114,105,97,98,108,101,41,124,124,40,97,61,34,119,105,116,104,40,111,98,106,41,123,34,43,97,43,34,125,34,41,44,10,97,61,40,105,63,97,46,114,101,112,108,97,99,101,40,80,44,34,34,41,58,97,41,46,114,101,112,108,97,99,101,40,90,44,34,36,49,34,41,46,114,101,112,108,97,99,101,40,113,44,34,36,49,59,34,41,44,97,61,34,102,117,110,99,116,105,111,110,40,34,43,40,116,124,124,34,111,98,106,34,41,43,34,41,123,34,43,40,116,63,34,34,58,34,111,98,106,124,124,40,111,98,106,61,123,125,41,59,34,41,43,34,118,97,114,32,95,95,116,44,95,95,112,61,39,39,34,43,40,117,63,34,44,95,95,101,61,95,46,101,115,99,97,112,101,34,58,34,34,41,43,40,105,63,34,44,95,95,106,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,106,111,105,110,59,102,117,110,99,116,105,111,110,32,112,114,105,110,116,40,41,123,95,95,112,43,61,95,95,106,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,44,39,39,41,125,34,58,34,59,34,41,43,97,43,34,114,101,116,117,114,110,32,95,95,112,125,34,44,116,61,70,102,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,74,117,40,111,44,108,43,34,114,101,116,117,114,110,32,34,43,97,41,46,97,112,112,108,121,40,84,44,102,41,125,41,44,116,46,115,111,117,114,99,101,61,97,44,112,117,40,116,41,41,116,104,114,111,119,32,116,59,114,101,116,117,114,110,32,116,125,44,65,110,46,116,105,109,101,115,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,110,61,69,117,40,110,41,44,49,62,110,124,124,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,60,110,41,114,101,116,117,114,110,91,93,59,118,97,114,32,114,61,52,50,57,52,57,54,55,50,57,53,44,101,61,67,105,40,110,44,52,50,57,52,57,54,55,50,57,53,41,59,102,111,114,40,116,61,121,101,40,116,41,44,110,45,61,52,50,57,52,57,54,55,50,57,53,44,101,61,65,40,101,44,116,41,59,43,43,114,60,110,59,41,116,40,114,41,59,114,101,116,117,114,110,32,101,125,44,65,110,46,116,111,70,105,110,105,116,101,61,65,117,44,10,65,110,46,116,111,73,110,116,101,103,101,114,61,69,117,44,65,110,46,116,111,76,101,110,103,116,104,61,107,117,44,65,110,46,116,111,76,111,119,101,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,73,117,40,110,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,44,65,110,46,116,111,78,117,109,98,101,114,61,83,117,44,65,110,46,116,111,83,97,102,101,73,110,116,101,103,101,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,63,112,116,40,69,117,40,110,41,44,45,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,44,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,41,58,48,61,61,61,110,63,110,58,48,125,44,65,110,46,116,111,83,116,114,105,110,103,61,73,117,44,65,110,46,116,111,85,112,112,101,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,73,117,40,110,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,44,65,110,46,116,114,105,109,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,40,114,124,124,116,61,61,61,84,41,63,110,46,114,101,112,108,97,99,101,40,117,110,44,34,34,41,58,110,38,38,40,116,61,121,114,40,116,41,41,63,40,110,61,77,40,110,41,44,114,61,77,40,116,41,44,116,61,73,40,110,44,114,41,44,114,61,82,40,110,44,114,41,43,49,44,79,114,40,110,44,116,44,114,41,46,106,111,105,110,40,34,34,41,41,58,110,125,44,65,110,46,116,114,105,109,69,110,100,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,40,114,124,124,116,61,61,61,84,41,63,110,46,114,101,112,108,97,99,101,40,102,110,44,34,34,41,58,110,38,38,40,116,61,121,114,40,116,41,41,63,40,110,61,77,40,110,41,44,116,61,82,40,110,44,77,40,116,41,41,43,49,44,10,79,114,40,110,44,48,44,116,41,46,106,111,105,110,40,34,34,41,41,58,110,125,44,65,110,46,116,114,105,109,83,116,97,114,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,40,114,124,124,116,61,61,61,84,41,63,110,46,114,101,112,108,97,99,101,40,111,110,44,34,34,41,58,110,38,38,40,116,61,121,114,40,116,41,41,63,40,110,61,77,40,110,41,44,116,61,73,40,110,44,77,40,116,41,41,44,79,114,40,110,44,116,41,46,106,111,105,110,40,34,34,41,41,58,110,125,44,65,110,46,116,114,117,110,99,97,116,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,51,48,44,101,61,34,46,46,46,34,59,105,102,40,100,117,40,116,41,41,118,97,114,32,117,61,34,115,101,112,97,114,97,116,111,114,34,105,110,32,116,63,116,46,115,101,112,97,114,97,116,111,114,58,117,44,114,61,34,108,101,110,103,116,104,34,105,110,32,116,63,69,117,40,116,46,108,101,110,103,116,104,41,58,114,44,101,61,34,111,109,105,115,115,105,111,110,34,105,110,32,116,63,121,114,40,116,46,111,109,105,115,115,105,111,110,41,58,101,59,110,61,73,117,40,110,41,59,118,97,114,32,105,61,110,46,108,101,110,103,116,104,59,105,102,40,82,110,46,116,101,115,116,40,110,41,41,118,97,114,32,111,61,77,40,110,41,44,105,61,111,46,108,101,110,103,116,104,59,105,102,40,114,62,61,105,41,114,101,116,117,114,110,32,110,59,105,102,40,105,61,114,45,68,40,101,41,44,49,62,105,41,114,101,116,117,114,110,32,101,59,105,102,40,114,61,111,63,79,114,40,111,44,48,44,105,41,46,106,111,105,110,40,34,34,41,58,110,46,115,108,105,99,101,40,48,44,105,41,44,117,61,61,61,84,41,114,101,116,117,114,110,32,114,43,101,59,105,102,40,111,38,38,40,105,43,61,114,46,108,101,110,103,116,104,45,105,41,44,104,102,40,117,41,41,123,105,102,40,110,46,115,108,105,99,101,40,105,41,46,115,101,97,114,99,104,40,117,41,41,123,10,118,97,114,32,102,61,114,59,102,111,114,40,117,46,103,108,111,98,97,108,124,124,40,117,61,88,117,40,117,46,115,111,117,114,99,101,44,73,117,40,95,110,46,101,120,101,99,40,117,41,41,43,34,103,34,41,41,44,117,46,108,97,115,116,73,110,100,101,120,61,48,59,111,61,117,46,101,120,101,99,40,102,41,59,41,118,97,114,32,99,61,111,46,105,110,100,101,120,59,114,61,114,46,115,108,105,99,101,40,48,44,99,61,61,61,84,63,105,58,99,41,125,125,101,108,115,101,32,110,46,105,110,100,101,120,79,102,40,121,114,40,117,41,44,105,41,33,61,105,38,38,40,117,61,114,46,108,97,115,116,73,110,100,101,120,79,102,40,117,41,44,45,49,60,117,38,38,40,114,61,114,46,115,108,105,99,101,40,48,44,117,41,41,41,59,114,101,116,117,114,110,32,114,43,101,125,44,65,110,46,117,110,101,115,99,97,112,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,71,46,116,101,115,116,40,110,41,63,110,46,114,101,112,108,97,99,101,40,86,44,116,116,41,58,110,125,44,65,110,46,117,110,105,113,117,101,73,100,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,43,43,102,105,59,114,101,116,117,114,110,32,73,117,40,110,41,43,116,125,44,65,110,46,117,112,112,101,114,67,97,115,101,61,84,102,44,65,110,46,117,112,112,101,114,70,105,114,115,116,61,36,102,44,65,110,46,101,97,99,104,61,110,117,44,65,110,46,101,97,99,104,82,105,103,104,116,61,116,117,44,65,110,46,102,105,114,115,116,61,113,101,44,78,117,40,65,110,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,123,125,59,114,101,116,117,114,110,32,109,116,40,65,110,44,102,117,110,99,116,105,111,110,40,116,44,114,41,123,111,105,46,99,97,108,108,40,65,110,46,112,114,111,116,111,116,121,112,101,44,114,41,124,124,40,110,91,114,93,61,116,41,125,41,44,110,125,40,41,44,123,99,104,97,105,110,58,102,97,108,115,101,10,125,41,44,65,110,46,86,69,82,83,73,79,78,61,34,52,46,49,55,46,49,53,34,44,114,40,34,98,105,110,100,32,98,105,110,100,75,101,121,32,99,117,114,114,121,32,99,117,114,114,121,82,105,103,104,116,32,112,97,114,116,105,97,108,32,112,97,114,116,105,97,108,82,105,103,104,116,34,46,115,112,108,105,116,40,34,32,34,41,44,102,117,110,99,116,105,111,110,40,110,41,123,65,110,91,110,93,46,112,108,97,99,101,104,111,108,100,101,114,61,65,110,125,41,44,114,40,91,34,100,114,111,112,34,44,34,116,97,107,101,34,93,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,85,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,114,41,123,114,61,114,61,61,61,84,63,49,58,85,105,40,69,117,40,114,41,44,48,41,59,118,97,114,32,101,61,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,38,38,33,116,63,110,101,119,32,85,110,40,116,104,105,115,41,58,116,104,105,115,46,99,108,111,110,101,40,41,59,114,101,116,117,114,110,32,101,46,95,95,102,105,108,116,101,114,101,100,95,95,63,101,46,95,95,116,97,107,101,67,111,117,110,116,95,95,61,67,105,40,114,44,101,46,95,95,116,97,107,101,67,111,117,110,116,95,95,41,58,101,46,95,95,118,105,101,119,115,95,95,46,112,117,115,104,40,123,115,105,122,101,58,67,105,40,114,44,52,50,57,52,57,54,55,50,57,53,41,44,116,121,112,101,58,110,43,40,48,62,101,46,95,95,100,105,114,95,95,63,34,82,105,103,104,116,34,58,34,34,41,125,41,44,101,125,44,85,110,46,112,114,111,116,111,116,121,112,101,91,110,43,34,82,105,103,104,116,34,93,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,118,101,114,115,101,40,41,91,110,93,40,116,41,46,114,101,118,101,114,115,101,40,41,125,125,41,44,114,40,91,34,102,105,108,116,101,114,34,44,34,109,97,112,34,44,34,116,97,107,101,87,104,105,108,101,34,93,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,10,118,97,114,32,114,61,116,43,49,44,101,61,49,61,61,114,124,124,51,61,61,114,59,85,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,99,108,111,110,101,40,41,59,114,101,116,117,114,110,32,116,46,95,95,105,116,101,114,97,116,101,101,115,95,95,46,112,117,115,104,40,123,105,116,101,114,97,116,101,101,58,121,101,40,110,44,51,41,44,116,121,112,101,58,114,125,41,44,116,46,95,95,102,105,108,116,101,114,101,100,95,95,61,116,46,95,95,102,105,108,116,101,114,101,100,95,95,124,124,101,44,116,125,125,41,44,114,40,91,34,104,101,97,100,34,44,34,108,97,115,116,34,93,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,34,116,97,107,101,34,43,40,116,63,34,82,105,103,104,116,34,58,34,34,41,59,85,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,91,114,93,40,49,41,46,118,97,108,117,101,40,41,91,48,93,125,125,41,44,114,40,91,34,105,110,105,116,105,97,108,34,44,34,116,97,105,108,34,93,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,34,100,114,111,112,34,43,40,116,63,34,34,58,34,82,105,103,104,116,34,41,59,85,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,63,110,101,119,32,85,110,40,116,104,105,115,41,58,116,104,105,115,91,114,93,40,49,41,125,125,41,44,85,110,46,112,114,111,116,111,116,121,112,101,46,99,111,109,112,97,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,36,117,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,61,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,110,41,46,104,101,97,100,40,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,76,97,115,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,118,101,114,115,101,40,41,46,102,105,110,100,40,110,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,105,110,118,111,107,101,77,97,112,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,63,110,101,119,32,85,110,40,116,104,105,115,41,58,116,104,105,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,76,116,40,114,44,110,44,116,41,125,41,125,41,44,85,110,46,112,114,111,116,111,116,121,112,101,46,114,101,106,101,99,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,97,117,40,121,101,40,110,41,41,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,110,61,69,117,40,110,41,59,118,97,114,32,114,61,116,104,105,115,59,114,101,116,117,114,110,32,114,46,95,95,102,105,108,116,101,114,101,100,95,95,38,38,40,48,60,110,124,124,48,62,116,41,63,110,101,119,32,85,110,40,114,41,58,40,48,62,110,63,114,61,114,46,116,97,107,101,82,105,103,104,116,40,45,110,41,58,110,38,38,40,114,61,114,46,100,114,111,112,40,110,41,41,44,116,33,61,61,84,38,38,40,116,61,69,117,40,116,41,44,114,61,48,62,116,63,114,46,100,114,111,112,82,105,103,104,116,40,45,116,41,58,114,46,116,97,107,101,40,116,45,110,41,41,44,114,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,116,97,107,101,82,105,103,104,116,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,32,116,104,105,115,46,114,101,118,101,114,115,101,40,41,46,116,97,107,101,87,104,105,108,101,40,110,41,46,114,101,118,101,114,115,101,40,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,116,111,65,114,114,97,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,97,107,101,40,52,50,57,52,57,54,55,50,57,53,41,125,44,109,116,40,85,110,46,112,114,111,116,111,116,121,112,101,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,47,94,40,63,58,102,105,108,116,101,114,124,102,105,110,100,124,109,97,112,124,114,101,106,101,99,116,41,124,87,104,105,108,101,36,47,46,116,101,115,116,40,116,41,44,101,61,47,94,40,63,58,104,101,97,100,124,108,97,115,116,41,36,47,46,116,101,115,116,40,116,41,44,117,61,65,110,91,101,63,34,116,97,107,101,34,43,40,34,108,97,115,116,34,61,61,116,63,34,82,105,103,104,116,34,58,34,34,41,58,116,93,44,105,61,101,124,124,47,94,102,105,110,100,47,46,116,101,115,116,40,116,41,59,117,38,38,40,65,110,46,112,114,111,116,111,116,121,112,101,91,116,93,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,110,41,123,114,101,116,117,114,110,32,110,61,117,46,97,112,112,108,121,40,65,110,44,97,40,91,110,93,44,102,41,41,44,101,38,38,104,63,110,91,48,93,58,110,125,118,97,114,32,111,61,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,44,102,61,101,63,91,49,93,58,97,114,103,117,109,101,110,116,115,44,99,61,111,32,105,110,115,116,97,110,99,101,111,102,32,85,110,44,108,61,102,91,48,93,44,115,61,99,124,124,102,102,40,111,41,59,115,38,38,114,38,38,116,121,112,101,111,102,32,108,61,61,34,102,117,110,99,116,105,111,110,34,38,38,49,33,61,108,46,108,101,110,103,116,104,38,38,40,99,61,115,61,102,97,108,115,101,41,59,118,97,114,32,104,61,116,104,105,115,46,95,95,99,104,97,105,110,95,95,44,112,61,33,33,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,46,108,101,110,103,116,104,44,108,61,105,38,38,33,104,44,99,61,99,38,38,33,112,59,10,114,101,116,117,114,110,33,105,38,38,115,63,40,111,61,99,63,111,58,110,101,119,32,85,110,40,116,104,105,115,41,44,111,61,110,46,97,112,112,108,121,40,111,44,102,41,44,111,46,95,95,97,99,116,105,111,110,115,95,95,46,112,117,115,104,40,123,102,117,110,99,58,81,101,44,97,114,103,115,58,91,116,93,44,116,104,105,115,65,114,103,58,84,125,41,44,110,101,119,32,79,110,40,111,44,104,41,41,58,108,38,38,99,63,110,46,97,112,112,108,121,40,116,104,105,115,44,102,41,58,40,111,61,116,104,105,115,46,116,104,114,117,40,116,41,44,108,63,101,63,111,46,118,97,108,117,101,40,41,91,48,93,58,111,46,118,97,108,117,101,40,41,58,111,41,125,41,125,41,44,114,40,34,112,111,112,32,112,117,115,104,32,115,104,105,102,116,32,115,111,114,116,32,115,112,108,105,99,101,32,117,110,115,104,105,102,116,34,46,115,112,108,105,116,40,34,32,34,41,44,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,114,105,91,110,93,44,114,61,47,94,40,63,58,112,117,115,104,124,115,111,114,116,124,117,110,115,104,105,102,116,41,36,47,46,116,101,115,116,40,110,41,63,34,116,97,112,34,58,34,116,104,114,117,34,44,101,61,47,94,40,63,58,112,111,112,124,115,104,105,102,116,41,36,47,46,116,101,115,116,40,110,41,59,65,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,59,105,102,40,101,38,38,33,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,123,118,97,114,32,117,61,116,104,105,115,46,118,97,108,117,101,40,41,59,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,102,102,40,117,41,63,117,58,91,93,44,110,41,125,114,101,116,117,114,110,32,116,104,105,115,91,114,93,40,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,102,102,40,114,41,63,114,58,91,93,44,110,41,125,41,59,10,125,125,41,44,109,116,40,85,110,46,112,114,111,116,111,116,121,112,101,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,65,110,91,116,93,59,105,102,40,114,41,123,118,97,114,32,101,61,114,46,110,97,109,101,43,34,34,59,111,105,46,99,97,108,108,40,71,105,44,101,41,124,124,40,71,105,91,101,93,61,91,93,41,44,71,105,91,101,93,46,112,117,115,104,40,123,110,97,109,101,58,116,44,102,117,110,99,58,114,125,41,125,125,41,44,71,105,91,74,114,40,84,44,50,41,46,110,97,109,101,93,61,91,123,110,97,109,101,58,34,119,114,97,112,112,101,114,34,44,102,117,110,99,58,84,125,93,44,85,110,46,112,114,111,116,111,116,121,112,101,46,99,108,111,110,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,110,101,119,32,85,110,40,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,41,59,114,101,116,117,114,110,32,110,46,95,95,97,99,116,105,111,110,115,95,95,61,85,114,40,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,44,110,46,95,95,100,105,114,95,95,61,116,104,105,115,46,95,95,100,105,114,95,95,44,110,46,95,95,102,105,108,116,101,114,101,100,95,95,61,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,44,110,46,95,95,105,116,101,114,97,116,101,101,115,95,95,61,85,114,40,116,104,105,115,46,95,95,105,116,101,114,97,116,101,101,115,95,95,41,44,110,46,95,95,116,97,107,101,67,111,117,110,116,95,95,61,116,104,105,115,46,95,95,116,97,107,101,67,111,117,110,116,95,95,44,110,46,95,95,118,105,101,119,115,95,95,61,85,114,40,116,104,105,115,46,95,95,118,105,101,119,115,95,95,41,44,110,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,114,101,118,101,114,115,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,41,123,118,97,114,32,110,61,110,101,119,32,85,110,40,116,104,105,115,41,59,10,110,46,95,95,100,105,114,95,95,61,45,49,44,110,46,95,95,102,105,108,116,101,114,101,100,95,95,61,116,114,117,101,125,101,108,115,101,32,110,61,116,104,105,115,46,99,108,111,110,101,40,41,44,110,46,95,95,100,105,114,95,95,42,61,45,49,59,114,101,116,117,114,110,32,110,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,44,116,61,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,46,118,97,108,117,101,40,41,44,114,61,116,104,105,115,46,95,95,100,105,114,95,95,44,101,61,102,102,40,116,41,44,117,61,48,62,114,44,105,61,101,63,116,46,108,101,110,103,116,104,58,48,59,110,61,105,59,102,111,114,40,118,97,114,32,111,61,116,104,105,115,46,95,95,118,105,101,119,115,95,95,44,102,61,48,44,99,61,45,49,44,97,61,111,46,108,101,110,103,116,104,59,43,43,99,60,97,59,41,123,118,97,114,32,108,61,111,91,99,93,44,115,61,108,46,115,105,122,101,59,115,119,105,116,99,104,40,108,46,116,121,112,101,41,123,99,97,115,101,34,100,114,111,112,34,58,102,43,61,115,59,98,114,101,97,107,59,99,97,115,101,34,100,114,111,112,82,105,103,104,116,34,58,110,45,61,115,59,98,114,101,97,107,59,99,97,115,101,34,116,97,107,101,34,58,110,61,67,105,40,110,44,102,43,115,41,59,98,114,101,97,107,59,99,97,115,101,34,116,97,107,101,82,105,103,104,116,34,58,102,61,85,105,40,102,44,110,45,115,41,125,125,105,102,40,110,61,123,115,116,97,114,116,58,102,44,101,110,100,58,110,125,44,111,61,110,46,115,116,97,114,116,44,102,61,110,46,101,110,100,44,110,61,102,45,111,44,111,61,117,63,102,58,111,45,49,44,102,61,116,104,105,115,46,95,95,105,116,101,114,97,116,101,101,115,95,95,44,99,61,102,46,108,101,110,103,116,104,44,97,61,48,44,108,61,67,105,40,110,44,116,104,105,115,46,95,95,116,97,107,101,67,111,117,110,116,95,95,41,44,33,101,124,124,33,117,38,38,105,61,61,110,38,38,108,61,61,110,41,114,101,116,117,114,110,32,119,114,40,116,44,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,59,10,101,61,91,93,59,110,58,102,111,114,40,59,110,45,45,38,38,97,60,108,59,41,123,102,111,114,40,111,43,61,114,44,117,61,45,49,44,105,61,116,91,111,93,59,43,43,117,60,99,59,41,123,118,97,114,32,104,61,102,91,117,93,44,115,61,104,46,116,121,112,101,44,104,61,40,48,44,104,46,105,116,101,114,97,116,101,101,41,40,105,41,59,105,102,40,50,61,61,115,41,105,61,104,59,101,108,115,101,32,105,102,40,33,104,41,123,105,102,40,49,61,61,115,41,99,111,110,116,105,110,117,101,32,110,59,98,114,101,97,107,32,110,125,125,101,91,97,43,43,93,61,105,125,114,101,116,117,114,110,32,101,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,97,116,61,84,111,44,65,110,46,112,114,111,116,111,116,121,112,101,46,99,104,97,105,110,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,101,40,116,104,105,115,41,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,99,111,109,109,105,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,79,110,40,116,104,105,115,46,118,97,108,117,101,40,41,44,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,110,101,120,116,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,61,61,61,84,38,38,40,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,61,109,117,40,116,104,105,115,46,118,97,108,117,101,40,41,41,41,59,118,97,114,32,110,61,116,104,105,115,46,95,95,105,110,100,101,120,95,95,62,61,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,46,108,101,110,103,116,104,59,114,101,116,117,114,110,123,100,111,110,101,58,110,44,118,97,108,117,101,58,110,63,84,58,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,91,116,104,105,115,46,95,95,105,110,100,101,120,95,95,43,43,93,125,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,112,108,97,110,116,61,102,117,110,99,116,105,111,110,40,110,41,123,10,102,111,114,40,118,97,114,32,116,44,114,61,116,104,105,115,59,114,32,105,110,115,116,97,110,99,101,111,102,32,69,110,59,41,123,118,97,114,32,101,61,70,101,40,114,41,59,101,46,95,95,105,110,100,101,120,95,95,61,48,44,101,46,95,95,118,97,108,117,101,115,95,95,61,84,44,116,63,117,46,95,95,119,114,97,112,112,101,100,95,95,61,101,58,116,61,101,59,118,97,114,32,117,61,101,44,114,61,114,46,95,95,119,114,97,112,112,101,100,95,95,125,114,101,116,117,114,110,32,117,46,95,95,119,114,97,112,112,101,100,95,95,61,110,44,116,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,114,101,118,101,114,115,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,59,114,101,116,117,114,110,32,110,32,105,110,115,116,97,110,99,101,111,102,32,85,110,63,40,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,46,108,101,110,103,116,104,38,38,40,110,61,110,101,119,32,85,110,40,116,104,105,115,41,41,44,110,61,110,46,114,101,118,101,114,115,101,40,41,44,110,46,95,95,97,99,116,105,111,110,115,95,95,46,112,117,115,104,40,123,102,117,110,99,58,81,101,44,97,114,103,115,58,91,71,101,93,44,116,104,105,115,65,114,103,58,84,125,41,44,110,101,119,32,79,110,40,110,44,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,41,58,116,104,105,115,46,116,104,114,117,40,71,101,41,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,116,111,74,83,79,78,61,65,110,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,79,102,61,65,110,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,119,114,40,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,44,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,102,105,114,115,116,61,65,110,46,112,114,111,116,111,116,121,112,101,46,104,101,97,100,44,10,119,105,38,38,40,65,110,46,112,114,111,116,111,116,121,112,101,91,119,105,93,61,88,101,41,44,65,110,125,40,41,59,116,121,112,101,111,102,32,100,101,102,105,110,101,61,61,34,102,117,110,99,116,105,111,110,34,38,38,116,121,112,101,111,102,32,100,101,102,105,110,101,46,97,109,100,61,61,34,111,98,106,101,99,116,34,38,38,100,101,102,105,110,101,46,97,109,100,63,40,36,110,46,95,61,114,116,44,32,100,101,102,105,110,101,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,116,125,41,41,58,78,110,63,40,40,78,110,46,101,120,112,111,114,116,115,61,114,116,41,46,95,61,114,116,44,70,110,46,95,61,114,116,41,58,36,110,46,95,61,114,116,125,41,46,99,97,108,108,40,116,104,105,115,41,59,47,42,32,73,110,115,112,105,114,101,32,84,114,101,101,10,32,42,32,64,118,101,114,115,105,111,110,32,54,46,48,46,49,10,32,42,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,104,101,108,105,111,110,51,47,105,110,115,112,105,114,101,45,116,114,101,101,10,32,42,32,64,99,111,112,121,114,105,103,104,116,32,67,111,112,121,114,105,103,104,116,32,50,48,49,53,32,72,101,108,105,111,110,51,44,32,97,110,100,32,111,116,104,101,114,32,99,111,110,116,114,105,98,117,116,111,114,115,10,32,42,32,64,108,105,99,101,110,115,101,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,10,32,42,32,32,32,32,32,32,32,32,32,32,115,101,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,104,101,108,105,111,110,51,47,105,110,115,112,105,114,101,45,116,114,101,101,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,10,32,42,47,10,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,116,40,114,101,113,117,105,114,101,40,34,108,111,100,97,115,104,34,41,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,108,111,100,97,115,104,34,93,44,116,41,58,40,101,61,101,124,124,115,101,108,102,41,46,73,110,115,112,105,114,101,84,114,101,101,61,116,40,101,46,95,41,125,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,99,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,97,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,102,117,110,99,116,105,111,110,32,105,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,116,46,108,101,110,103,116,104,59,110,43,43,41,123,118,97,114,32,105,61,116,91,110,93,59,105,46,101,110,117,109,101,114,97,98,108,101,61,105,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,105,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,105,38,38,40,105,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,105,46,107,101,121,44,105,41,125,125,102,117,110,99,116,105,111,110,32,101,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,38,38,105,40,101,46,112,114,111,116,111,116,121,112,101,44,116,41,44,110,38,38,105,40,101,44,110,41,44,101,125,102,117,110,99,116,105,111,110,32,116,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,110,117,108,108,33,61,61,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,83,117,112,101,114,32,101,120,112,114,101,115,115,105,111,110,32,109,117,115,116,32,101,105,116,104,101,114,32,98,101,32,110,117,108,108,32,111,114,32,97,32,102,117,110,99,116,105,111,110,34,41,59,101,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,38,38,116,46,112,114,111,116,111,116,121,112,101,44,123,99,111,110,115,116,114,117,99,116,111,114,58,123,118,97,108,117,101,58,101,44,119,114,105,116,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,41,44,116,38,38,110,40,101,44,116,41,125,102,117,110,99,116,105,111,110,32,117,40,101,41,123,114,101,116,117,114,110,40,117,61,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,63,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,101,41,125,41,40,101,41,125,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,114,101,116,117,114,110,40,110,61,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,124,124,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,101,46,95,95,112,114,111,116,111,95,95,61,116,44,101,125,41,40,101,44,116,41,125,102,117,110,99,116,105,111,110,32,108,40,101,41,123,105,102,40,118,111,105,100,32,48,61,61,61,101,41,116,104,114,111,119,32,110,101,119,32,82,101,102,101,114,101,110,99,101,69,114,114,111,114,40,34,116,104,105,115,32,104,97,115,110,39,116,32,98,101,101,110,32,105,110,105,116,105,97,108,105,115,101,100,32,45,32,115,117,112,101,114,40,41,32,104,97,115,110,39,116,32,98,101,101,110,32,99,97,108,108,101,100,34,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,104,40,101,44,116,41,123,114,101,116,117,114,110,33,116,124,124,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,116,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,63,108,40,101,41,58,116,125,102,117,110,99,116,105,111,110,32,114,40,101,44,116,44,110,41,123,114,101,116,117,114,110,40,114,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,82,101,102,108,101,99,116,38,38,82,101,102,108,101,99,116,46,103,101,116,63,82,101,102,108,101,99,116,46,103,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,59,33,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,101,44,116,41,38,38,110,117,108,108,33,61,61,40,101,61,117,40,101,41,41,59,41,59,114,101,116,117,114,110,32,101,125,40,101,44,116,41,59,105,102,40,105,41,123,118,97,114,32,114,61,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,40,105,44,116,41,59,114,101,116,117,114,110,32,114,46,103,101,116,63,114,46,103,101,116,46,99,97,108,108,40,110,41,58,114,46,118,97,108,117,101,125,125,41,40,101,44,116,44,110,124,124,101,41,125,102,117,110,99,116,105,111,110,32,115,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,41,114,101,116,117,114,110,32,101,125,40,101,41,124,124,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,101,41,124,124,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,101,41,41,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,101,41,125,40,101,41,124,124,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,97,116,116,101,109,112,116,32,116,111,32,100,101,115,116,114,117,99,116,117,114,101,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,34,41,125,40,41,125,102,117,110,99,116,105,111,110,32,111,40,116,44,110,44,105,44,101,44,114,41,123,114,101,116,117,114,110,32,101,46,115,116,97,116,101,40,116,41,33,61,61,110,38,38,40,101,46,99,111,110,116,101,120,116,40,41,46,98,97,116,99,104,40,41,44,101,46,95,116,114,101,101,46,99,111,110,102,105,103,46,110,111,100,101,115,46,114,101,115,101,116,83,116,97,116,101,79,110,82,101,115,116,111,114,101,38,38,34,114,101,115,116,111,114,101,100,34,61,61,61,105,38,38,102,117,110,99,116,105,111,110,40,110,41,123,99,46,101,97,99,104,40,110,46,95,116,114,101,101,46,100,101,102,97,117,108,116,83,116,97,116,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,110,46,115,116,97,116,101,40,116,44,101,41,125,41,125,40,101,41,44,110,38,38,34,99,104,101,99,107,101,100,34,61,61,61,116,38,38,101,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,33,49,41,44,101,46,115,116,97,116,101,40,116,44,110,41,44,101,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,34,43,105,44,101,44,33,49,41,44,114,38,38,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,101,46,99,104,105,108,100,114,101,110,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,111,40,116,44,110,44,105,44,101,41,125,41,44,34,104,105,100,100,101,110,34,33,61,61,116,38,38,34,114,101,109,111,118,101,100,34,33,61,61,116,124,124,40,101,46,99,111,110,116,101,120,116,40,41,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,101,46,99,111,110,116,101,120,116,40,41,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,41,44,101,46,109,97,114,107,68,105,114,116,121,40,41,44,101,46,99,111,110,116,101,120,116,40,41,46,101,110,100,40,41,41,44,101,125,118,97,114,32,84,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,103,108,111,98,97,108,84,104,105,115,63,103,108,111,98,97,108,84,104,105,115,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,103,108,111,98,97,108,63,103,108,111,98,97,108,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,115,101,108,102,63,115,101,108,102,58,123,125,59,102,117,110,99,116,105,111,110,32,100,40,101,44,116,41,123,114,101,116,117,114,110,32,101,40,116,61,123,101,120,112,111,114,116,115,58,123,125,125,44,116,46,101,120,112,111,114,116,115,41,44,116,46,101,120,112,111,114,116,115,125,118,97,114,32,102,61,100,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,10,32,32,32,32,47,42,33,10,32,32,32,32,32,32,32,42,32,64,111,118,101,114,118,105,101,119,32,101,115,54,45,112,114,111,109,105,115,101,32,45,32,97,32,116,105,110,121,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,80,114,111,109,105,115,101,115,47,65,43,46,10,32,32,32,32,32,32,32,42,32,64,99,111,112,121,114,105,103,104,116,32,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,52,32,89,101,104,117,100,97,32,75,97,116,122,44,32,84,111,109,32,68,97,108,101,44,32,83,116,101,102,97,110,32,80,101,110,110,101,114,32,97,110,100,32,99,111,110,116,114,105,98,117,116,111,114,115,32,40,67,111,110,118,101,114,115,105,111,110,32,116,111,32,69,83,54,32,65,80,73,32,98,121,32,74,97,107,101,32,65,114,99,104,105,98,97,108,100,41,10,32,32,32,32,32,32,32,42,32,64,108,105,99,101,110,115,101,32,32,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,32,108,105,99,101,110,115,101,10,32,32,32,32,32,32,32,42,32,32,32,32,32,32,32,32,32,32,32,32,83,101,101,32,104,116,116,112,115,58,47,47,114,97,119,46,103,105,116,104,117,98,117,115,101,114,99,111,110,116,101,110,116,46,99,111,109,47,115,116,101,102,97,110,112,101,110,110,101,114,47,101,115,54,45,112,114,111,109,105,115,101,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,10,32,32,32,32,32,32,32,42,32,64,118,101,114,115,105,111,110,32,32,32,118,52,46,50,46,56,43,49,101,54,56,100,99,101,54,10,32,32,32,32,32,32,32,42,47,10,32,32,32,32,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,99,40,101,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,125,118,97,114,32,110,61,65,114,114,97,121,46,105,115,65,114,114,97,121,63,65,114,114,97,121,46,105,115,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,61,61,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,101,41,125,44,105,61,48,44,116,61,118,111,105,100,32,48,44,114,61,118,111,105,100,32,48,44,111,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,100,91,105,93,61,101,44,100,91,105,43,49,93,61,116,44,50,61,61,61,40,105,43,61,50,41,38,38,40,114,63,114,40,102,41,58,118,40,41,41,125,59,118,97,114,32,101,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,118,111,105,100,32,48,44,115,61,101,124,124,123,125,44,97,61,115,46,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,124,124,115,46,87,101,98,75,105,116,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,44,117,61,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,115,101,108,102,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,112,114,111,99,101,115,115,38,38,34,91,111,98,106,101,99,116,32,112,114,111,99,101,115,115,93,34,61,61,61,123,125,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,112,114,111,99,101,115,115,41,44,108,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,105,109,112,111,114,116,83,99,114,105,112,116,115,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,77,101,115,115,97,103,101,67,104,97,110,110,101,108,59,102,117,110,99,116,105,111,110,32,104,40,41,123,118,97,114,32,101,61,115,101,116,84,105,109,101,111,117,116,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,102,44,49,41,125,125,118,97,114,32,100,61,110,101,119,32,65,114,114,97,121,40,49,101,51,41,59,102,117,110,99,116,105,111,110,32,102,40,41,123,102,111,114,40,118,97,114,32,101,61,48,59,101,60,105,59,101,43,61,50,41,123,118,97,114,32,116,61,100,91,101,93,44,110,61,100,91,101,43,49,93,59,116,40,110,41,44,100,91,101,93,61,118,111,105,100,32,48,44,100,91,101,43,49,93,61,118,111,105,100,32,48,125,105,61,48,125,118,97,114,32,118,61,118,111,105,100,32,48,59,102,117,110,99,116,105,111,110,32,121,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,44,105,61,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,103,41,59,118,111,105,100,32,48,61,61,61,105,91,107,93,38,38,106,40,105,41,59,118,97,114,32,114,61,110,46,95,115,116,97,116,101,59,105,102,40,114,41,123,118,97,114,32,115,61,97,114,103,117,109,101,110,116,115,91,114,45,49,93,59,111,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,79,40,114,44,105,44,115,44,110,46,95,114,101,115,117,108,116,41,125,41,125,101,108,115,101,32,67,40,110,44,105,44,101,44,116,41,59,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,112,40,101,41,123,105,102,40,101,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,101,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,116,104,105,115,41,114,101,116,117,114,110,32,101,59,118,97,114,32,116,61,110,101,119,32,116,104,105,115,40,103,41,59,114,101,116,117,114,110,32,68,40,116,44,101,41,44,116,125,118,61,117,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,114,111,99,101,115,115,46,110,101,120,116,84,105,99,107,40,102,41,125,58,97,63,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,48,44,116,61,110,101,119,32,97,40,102,41,44,110,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,34,34,41,59,114,101,116,117,114,110,32,116,46,111,98,115,101,114,118,101,40,110,44,123,99,104,97,114,97,99,116,101,114,68,97,116,97,58,33,48,125,41,44,102,117,110,99,116,105,111,110,40,41,123,110,46,100,97,116,97,61,101,61,43,43,101,37,50,125,125,40,41,58,108,63,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,101,119,32,77,101,115,115,97,103,101,67,104,97,110,110,101,108,59,114,101,116,117,114,110,32,101,46,112,111,114,116,49,46,111,110,109,101,115,115,97,103,101,61,102,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,112,111,114,116,50,46,112,111,115,116,77,101,115,115,97,103,101,40,48,41,125,125,40,41,58,118,111,105,100,32,48,61,61,61,101,63,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,118,97,114,32,101,61,70,117,110,99,116,105,111,110,40,34,114,101,116,117,114,110,32,116,104,105,115,34,41,40,41,46,114,101,113,117,105,114,101,40,34,118,101,114,116,120,34,41,59,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,40,116,61,101,46,114,117,110,79,110,76,111,111,112,124,124,101,46,114,117,110,79,110,67,111,110,116,101,120,116,41,63,104,40,41,58,102,117,110,99,116,105,111,110,40,41,123,116,40,102,41,125,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,32,104,40,41,125,125,40,41,58,104,40,41,59,118,97,114,32,107,61,77,97,116,104,46,114,97,110,100,111,109,40,41,46,116,111,83,116,114,105,110,103,40,51,54,41,46,115,117,98,115,116,114,105,110,103,40,50,41,59,102,117,110,99,116,105,111,110,32,103,40,41,123,125,118,97,114,32,95,61,118,111,105,100,32,48,44,109,61,49,44,98,61,50,59,102,117,110,99,116,105,111,110,32,119,40,101,44,116,44,110,44,105,41,123,116,114,121,123,101,46,99,97,108,108,40,116,44,110,44,105,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,32,101,125,125,102,117,110,99,116,105,111,110,32,120,40,101,44,116,44,110,41,123,116,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,101,46,99,111,110,115,116,114,117,99,116,111,114,38,38,110,61,61,61,121,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,46,114,101,115,111,108,118,101,61,61,61,112,63,102,117,110,99,116,105,111,110,40,116,44,101,41,123,101,46,95,115,116,97,116,101,61,61,61,109,63,76,40,116,44,101,46,95,114,101,115,117,108,116,41,58,101,46,95,115,116,97,116,101,61,61,61,98,63,80,40,116,44,101,46,95,114,101,115,117,108,116,41,58,67,40,101,44,118,111,105,100,32,48,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,68,40,116,44,101,41,125,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,80,40,116,44,101,41,125,41,125,40,101,44,116,41,58,118,111,105,100,32,48,61,61,61,110,63,76,40,101,44,116,41,58,99,40,110,41,63,102,117,110,99,116,105,111,110,40,101,44,105,44,114,41,123,111,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,33,49,44,101,61,119,40,114,44,105,44,102,117,110,99,116,105,111,110,40,101,41,123,110,124,124,40,110,61,33,48,44,105,33,61,61,101,63,68,40,116,44,101,41,58,76,40,116,44,101,41,41,125,44,102,117,110,99,116,105,111,110,40,101,41,123,110,124,124,40,110,61,33,48,44,80,40,116,44,101,41,41,125,44,116,46,95,108,97,98,101,108,41,59,33,110,38,38,101,38,38,40,110,61,33,48,44,80,40,116,44,101,41,41,125,44,101,41,125,40,101,44,116,44,110,41,58,76,40,101,44,116,41,125,102,117,110,99,116,105,111,110,32,68,40,116,44,101,41,123,105,102,40,116,61,61,61,101,41,80,40,116,44,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,89,111,117,32,99,97,110,110,111,116,32,114,101,115,111,108,118,101,32,97,32,112,114,111,109,105,115,101,32,119,105,116,104,32,105,116,115,101,108,102,34,41,41,59,101,108,115,101,32,105,102,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,121,112,101,111,102,32,101,59,114,101,116,117,114,110,32,110,117,108,108,33,61,61,101,38,38,40,34,111,98,106,101,99,116,34,61,61,116,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,41,125,40,101,41,41,123,118,97,114,32,110,61,118,111,105,100,32,48,59,116,114,121,123,110,61,101,46,116,104,101,110,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,32,118,111,105,100,32,80,40,116,44,101,41,125,120,40,116,44,101,44,110,41,125,101,108,115,101,32,76,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,65,40,101,41,123,101,46,95,111,110,101,114,114,111,114,38,38,101,46,95,111,110,101,114,114,111,114,40,101,46,95,114,101,115,117,108,116,41,44,83,40,101,41,125,102,117,110,99,116,105,111,110,32,76,40,101,44,116,41,123,101,46,95,115,116,97,116,101,61,61,61,95,38,38,40,101,46,95,114,101,115,117,108,116,61,116,44,101,46,95,115,116,97,116,101,61,109,44,48,33,61,61,101,46,95,115,117,98,115,99,114,105,98,101,114,115,46,108,101,110,103,116,104,38,38,111,40,83,44,101,41,41,125,102,117,110,99,116,105,111,110,32,80,40,101,44,116,41,123,101,46,95,115,116,97,116,101,61,61,61,95,38,38,40,101,46,95,115,116,97,116,101,61,98,44,101,46,95,114,101,115,117,108,116,61,116,44,111,40,65,44,101,41,41,125,102,117,110,99,116,105,111,110,32,67,40,101,44,116,44,110,44,105,41,123,118,97,114,32,114,61,101,46,95,115,117,98,115,99,114,105,98,101,114,115,44,115,61,114,46,108,101,110,103,116,104,59,101,46,95,111,110,101,114,114,111,114,61,110,117,108,108,44,114,91,115,93,61,116,44,114,91,115,43,109,93,61,110,44,114,91,115,43,98,93,61,105,44,48,61,61,61,115,38,38,101,46,95,115,116,97,116,101,38,38,111,40,83,44,101,41,125,102,117,110,99,116,105,111,110,32,83,40,101,41,123,118,97,114,32,116,61,101,46,95,115,117,98,115,99,114,105,98,101,114,115,44,110,61,101,46,95,115,116,97,116,101,59,105,102,40,48,33,61,61,116,46,108,101,110,103,116,104,41,123,102,111,114,40,118,97,114,32,105,61,118,111,105,100,32,48,44,114,61,118,111,105,100,32,48,44,115,61,101,46,95,114,101,115,117,108,116,44,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,61,51,41,105,61,116,91,111,93,44,114,61,116,91,111,43,110,93,44,105,63,79,40,110,44,105,44,114,44,115,41,58,114,40,115,41,59,101,46,95,115,117,98,115,99,114,105,98,101,114,115,46,108,101,110,103,116,104,61,48,125,125,102,117,110,99,116,105,111,110,32,79,40,101,44,116,44,110,44,105,41,123,118,97,114,32,114,61,99,40,110,41,44,115,61,118,111,105,100,32,48,44,111,61,118,111,105,100,32,48,44,97,61,33,48,59,105,102,40,114,41,123,116,114,121,123,115,61,110,40,105,41,125,99,97,116,99,104,40,101,41,123,97,61,33,49,44,111,61,101,125,105,102,40,116,61,61,61,115,41,114,101,116,117,114,110,32,118,111,105,100,32,80,40,116,44,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,65,32,112,114,111,109,105,115,101,115,32,99,97,108,108,98,97,99,107,32,99,97,110,110,111,116,32,114,101,116,117,114,110,32,116,104,97,116,32,115,97,109,101,32,112,114,111,109,105,115,101,46,34,41,41,125,101,108,115,101,32,115,61,105,59,116,46,95,115,116,97,116,101,33,61,61,95,124,124,40,114,38,38,97,63,68,40,116,44,115,41,58,33,49,61,61,61,97,63,80,40,116,44,111,41,58,101,61,61,61,109,63,76,40,116,44,115,41,58,101,61,61,61,98,38,38,80,40,116,44,115,41,41,125,118,97,114,32,78,61,48,59,102,117,110,99,116,105,111,110,32,106,40,101,41,123,101,91,107,93,61,78,43,43,44,101,46,95,115,116,97,116,101,61,118,111,105,100,32,48,44,101,46,95,114,101,115,117,108,116,61,118,111,105,100,32,48,44,101,46,95,115,117,98,115,99,114,105,98,101,114,115,61,91,93,125,118,97,114,32,69,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,116,104,105,115,46,95,105,110,115,116,97,110,99,101,67,111,110,115,116,114,117,99,116,111,114,61,101,44,116,104,105,115,46,112,114,111,109,105,115,101,61,110,101,119,32,101,40,103,41,44,116,104,105,115,46,112,114,111,109,105,115,101,91,107,93,124,124,106,40,116,104,105,115,46,112,114,111,109,105,115,101,41,44,110,40,116,41,63,40,116,104,105,115,46,108,101,110,103,116,104,61,116,46,108,101,110,103,116,104,44,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,61,116,46,108,101,110,103,116,104,44,116,104,105,115,46,95,114,101,115,117,108,116,61,110,101,119,32,65,114,114,97,121,40,116,104,105,115,46,108,101,110,103,116,104,41,44,48,61,61,61,116,104,105,115,46,108,101,110,103,116,104,63,76,40,116,104,105,115,46,112,114,111,109,105,115,101,44,116,104,105,115,46,95,114,101,115,117,108,116,41,58,40,116,104,105,115,46,108,101,110,103,116,104,61,116,104,105,115,46,108,101,110,103,116,104,124,124,48,44,116,104,105,115,46,95,101,110,117,109,101,114,97,116,101,40,116,41,44,48,61,61,61,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,38,38,76,40,116,104,105,115,46,112,114,111,109,105,115,101,44,116,104,105,115,46,95,114,101,115,117,108,116,41,41,41,58,80,40,116,104,105,115,46,112,114,111,109,105,115,101,44,110,101,119,32,69,114,114,111,114,40,34,65,114,114,97,121,32,77,101,116,104,111,100,115,32,109,117,115,116,32,98,101,32,112,114,111,118,105,100,101,100,32,97,110,32,65,114,114,97,121,34,41,41,125,114,101,116,117,114,110,32,101,46,112,114,111,116,111,116,121,112,101,46,95,101,110,117,109,101,114,97,116,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,59,116,104,105,115,46,95,115,116,97,116,101,61,61,61,95,38,38,116,60,101,46,108,101,110,103,116,104,59,116,43,43,41,116,104,105,115,46,95,101,97,99,104,69,110,116,114,121,40,101,91,116,93,44,116,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,95,101,97,99,104,69,110,116,114,121,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,95,105,110,115,116,97,110,99,101,67,111,110,115,116,114,117,99,116,111,114,44,105,61,110,46,114,101,115,111,108,118,101,59,105,102,40,105,61,61,61,112,41,123,118,97,114,32,114,61,118,111,105,100,32,48,44,115,61,118,111,105,100,32,48,44,111,61,33,49,59,116,114,121,123,114,61,116,46,116,104,101,110,125,99,97,116,99,104,40,101,41,123,111,61,33,48,44,115,61,101,125,105,102,40,114,61,61,61,121,38,38,116,46,95,115,116,97,116,101,33,61,61,95,41,116,104,105,115,46,95,115,101,116,116,108,101,100,65,116,40,116,46,95,115,116,97,116,101,44,101,44,116,46,95,114,101,115,117,108,116,41,59,101,108,115,101,32,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,114,41,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,45,45,44,116,104,105,115,46,95,114,101,115,117,108,116,91,101,93,61,116,59,101,108,115,101,32,105,102,40,110,61,61,61,82,41,123,118,97,114,32,97,61,110,101,119,32,110,40,103,41,59,111,63,80,40,97,44,115,41,58,120,40,97,44,116,44,114,41,44,116,104,105,115,46,95,119,105,108,108,83,101,116,116,108,101,65,116,40,97,44,101,41,125,101,108,115,101,32,116,104,105,115,46,95,119,105,108,108,83,101,116,116,108,101,65,116,40,110,101,119,32,110,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,40,116,41,125,41,44,101,41,125,101,108,115,101,32,116,104,105,115,46,95,119,105,108,108,83,101,116,116,108,101,65,116,40,105,40,116,41,44,101,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,95,115,101,116,116,108,101,100,65,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,105,61,116,104,105,115,46,112,114,111,109,105,115,101,59,105,46,95,115,116,97,116,101,61,61,61,95,38,38,40,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,45,45,44,101,61,61,61,98,63,80,40,105,44,110,41,58,116,104,105,115,46,95,114,101,115,117,108,116,91,116,93,61,110,41,44,48,61,61,61,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,38,38,76,40,105,44,116,104,105,115,46,95,114,101,115,117,108,116,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,95,119,105,108,108,83,101,116,116,108,101,65,116,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,59,67,40,101,44,118,111,105,100,32,48,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,95,115,101,116,116,108,101,100,65,116,40,109,44,116,44,101,41,125,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,95,115,101,116,116,108,101,100,65,116,40,98,44,116,44,101,41,125,41,125,44,101,125,40,41,59,118,97,114,32,82,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,101,41,123,116,104,105,115,91,107,93,61,78,43,43,44,116,104,105,115,46,95,114,101,115,117,108,116,61,116,104,105,115,46,95,115,116,97,116,101,61,118,111,105,100,32,48,44,116,104,105,115,46,95,115,117,98,115,99,114,105,98,101,114,115,61,91,93,44,103,33,61,61,101,38,38,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,101,38,38,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,89,111,117,32,109,117,115,116,32,112,97,115,115,32,97,32,114,101,115,111,108,118,101,114,32,102,117,110,99,116,105,111,110,32,97,115,32,116,104,101,32,102,105,114,115,116,32,97,114,103,117,109,101,110,116,32,116,111,32,116,104,101,32,112,114,111,109,105,115,101,32,99,111,110,115,116,114,117,99,116,111,114,34,41,125,40,41,44,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,116,63,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,114,121,123,101,40,102,117,110,99,116,105,111,110,40,101,41,123,68,40,116,44,101,41,125,44,102,117,110,99,116,105,111,110,40,101,41,123,80,40,116,44,101,41,125,41,125,99,97,116,99,104,40,101,41,123,80,40,116,44,101,41,125,125,40,116,104,105,115,44,101,41,58,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,70,97,105,108,101,100,32,116,111,32,99,111,110,115,116,114,117,99,116,32,39,80,114,111,109,105,115,101,39,58,32,80,108,101,97,115,101,32,117,115,101,32,116,104,101,32,39,110,101,119,39,32,111,112,101,114,97,116,111,114,44,32,116,104,105,115,32,111,98,106,101,99,116,32,99,111,110,115,116,114,117,99,116,111,114,32,99,97,110,110,111,116,32,98,101,32,99,97,108,108,101,100,32,97,115,32,97,32,102,117,110,99,116,105,111,110,46,34,41,125,40,41,41,125,114,101,116,117,114,110,32,116,46,112,114,111,116,111,116,121,112,101,46,99,97,116,99,104,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,104,101,110,40,110,117,108,108,44,101,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,102,105,110,97,108,108,121,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,59,114,101,116,117,114,110,32,99,40,116,41,63,116,104,105,115,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,114,101,115,111,108,118,101,40,116,40,41,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,125,41,125,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,114,101,115,111,108,118,101,40,116,40,41,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,101,125,41,125,41,58,116,104,105,115,46,116,104,101,110,40,116,44,116,41,125,44,116,125,40,41,59,114,101,116,117,114,110,32,82,46,112,114,111,116,111,116,121,112,101,46,116,104,101,110,61,121,44,82,46,97,108,108,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,101,119,32,69,40,116,104,105,115,44,101,41,46,112,114,111,109,105,115,101,125,44,82,46,114,97,99,101,61,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,115,61,116,104,105,115,59,114,101,116,117,114,110,32,110,40,114,41,63,110,101,119,32,115,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,114,46,108,101,110,103,116,104,44,105,61,48,59,105,60,110,59,105,43,43,41,115,46,114,101,115,111,108,118,101,40,114,91,105,93,41,46,116,104,101,110,40,101,44,116,41,125,41,58,110,101,119,32,115,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,40,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,89,111,117,32,109,117,115,116,32,112,97,115,115,32,97,110,32,97,114,114,97,121,32,116,111,32,114,97,99,101,46,34,41,41,125,41,125,44,82,46,114,101,115,111,108,118,101,61,112,44,82,46,114,101,106,101,99,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,110,101,119,32,116,104,105,115,40,103,41,59,114,101,116,117,114,110,32,80,40,116,44,101,41,44,116,125,44,82,46,95,115,101,116,83,99,104,101,100,117,108,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,114,61,101,125,44,82,46,95,115,101,116,65,115,97,112,61,102,117,110,99,116,105,111,110,40,101,41,123,111,61,101,125,44,82,46,95,97,115,97,112,61,111,44,82,46,112,111,108,121,102,105,108,108,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,118,111,105,100,32,48,59,105,102,40,118,111,105,100,32,48,33,61,61,84,41,101,61,84,59,101,108,115,101,32,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,115,101,108,102,41,101,61,115,101,108,102,59,101,108,115,101,32,116,114,121,123,101,61,70,117,110,99,116,105,111,110,40,34,114,101,116,117,114,110,32,116,104,105,115,34,41,40,41,125,99,97,116,99,104,40,101,41,123,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,112,111,108,121,102,105,108,108,32,102,97,105,108,101,100,32,98,101,99,97,117,115,101,32,103,108,111,98,97,108,32,111,98,106,101,99,116,32,105,115,32,117,110,97,118,97,105,108,97,98,108,101,32,105,110,32,116,104,105,115,32,101,110,118,105,114,111,110,109,101,110,116,34,41,125,118,97,114,32,116,61,101,46,80,114,111,109,105,115,101,59,105,102,40,116,41,123,118,97,114,32,110,61,110,117,108,108,59,116,114,121,123,110,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,116,46,114,101,115,111,108,118,101,40,41,41,125,99,97,116,99,104,40,101,41,123,125,105,102,40,34,91,111,98,106,101,99,116,32,80,114,111,109,105,115,101,93,34,61,61,61,110,38,38,33,116,46,99,97,115,116,41,114,101,116,117,114,110,125,101,46,80,114,111,109,105,115,101,61,82,125,44,82,46,80,114,111,109,105,115,101,61,82,125,40,41,125,41,46,80,114,111,109,105,115,101,59,102,117,110,99,116,105,111,110,32,118,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,114,101,116,117,114,110,32,116,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,101,46,112,114,111,116,111,116,121,112,101,44,123,99,111,110,115,116,114,117,99,116,111,114,58,123,118,97,108,117,101,58,101,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,119,114,105,116,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,41,44,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,63,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,44,101,41,58,116,46,95,95,112,114,111,116,111,95,95,61,101,44,116,125,102,117,110,99,116,105,111,110,32,121,40,101,44,110,44,105,44,116,41,123,114,101,116,117,114,110,32,110,61,99,46,99,97,115,116,65,114,114,97,121,40,110,41,44,101,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,101,91,116,63,34,114,101,99,117,114,115,101,68,111,119,110,34,58,34,101,97,99,104,34,93,40,102,117,110,99,116,105,111,110,40,116,41,123,99,46,101,97,99,104,40,110,44,102,117,110,99,116,105,111,110,40,101,41,123,99,46,105,115,70,117,110,99,116,105,111,110,40,116,91,101,93,41,38,38,116,91,101,93,46,97,112,112,108,121,40,116,44,105,41,125,41,125,41,44,101,46,95,116,114,101,101,46,101,110,100,40,41,44,101,125,102,117,110,99,116,105,111,110,32,112,40,116,41,123,118,97,114,32,101,61,116,59,114,101,116,117,114,110,32,99,46,105,115,83,116,114,105,110,103,40,116,41,38,38,40,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,105,115,70,117,110,99,116,105,111,110,40,101,91,116,93,41,63,101,91,116,93,40,41,58,101,91,116,93,125,41,44,101,125,102,117,110,99,116,105,111,110,32,107,40,116,44,101,41,123,105,102,40,101,41,114,101,116,117,114,110,32,116,104,105,115,46,101,120,116,114,97,99,116,40,116,41,59,118,97,114,32,110,61,112,40,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,102,108,97,116,116,101,110,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,40,34,114,101,109,111,118,101,100,34,61,61,61,116,124,124,33,101,46,114,101,109,111,118,101,100,40,41,41,38,38,110,40,101,41,125,41,125,118,97,114,32,103,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,115,40,101,44,116,44,110,41,123,118,97,114,32,105,59,105,102,40,97,40,116,104,105,115,44,115,41,44,105,61,104,40,116,104,105,115,44,117,40,115,41,46,99,97,108,108,40,116,104,105,115,41,41,44,99,46,105,115,70,117,110,99,116,105,111,110,40,99,46,103,101,116,40,101,44,34,105,115,84,114,101,101,34,41,41,38,38,33,101,46,105,115,84,114,101,101,40,101,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,116,114,101,101,32,105,110,115,116,97,110,99,101,46,34,41,59,114,101,116,117,114,110,32,105,46,95,116,114,101,101,61,101,44,105,46,108,101,110,103,116,104,61,48,44,105,46,98,97,116,99,104,105,110,103,61,48,44,105,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,49,44,105,46,99,111,110,102,105,103,61,99,46,100,101,102,97,117,108,116,115,68,101,101,112,40,123,125,44,110,44,123,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,58,33,49,125,41,44,105,46,95,112,97,103,105,110,97,116,105,111,110,61,123,108,105,109,105,116,58,101,46,99,111,110,102,105,103,46,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,44,116,111,116,97,108,58,48,125,44,40,99,46,105,115,65,114,114,97,121,40,116,41,124,124,116,32,105,110,115,116,97,110,99,101,111,102,32,115,41,38,38,99,46,101,97,99,104,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,101,32,105,110,115,116,97,110,99,101,111,102,32,119,63,105,46,112,117,115,104,40,101,46,99,108,111,110,101,40,41,41,58,105,46,97,100,100,78,111,100,101,40,101,41,125,41,44,105,125,114,101,116,117,114,110,32,116,40,115,44,118,40,65,114,114,97,121,41,41,44,101,40,115,44,91,123,107,101,121,58,34,97,100,100,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,111,114,116,38,38,40,116,61,99,46,115,111,114,116,101,100,73,110,100,101,120,66,121,40,116,104,105,115,44,101,44,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,111,114,116,41,41,44,116,104,105,115,46,105,110,115,101,114,116,65,116,40,116,44,101,41,125,125,44,123,107,101,121,58,34,97,112,112,108,121,67,104,97,110,103,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,48,61,61,61,116,104,105,115,46,98,97,116,99,104,105,110,103,38,38,40,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,99,104,97,110,103,101,115,46,97,112,112,108,105,101,100,34,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,41,41,125,125,44,123,107,101,121,58,34,98,97,116,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,98,97,116,99,104,105,110,103,60,48,38,38,40,116,104,105,115,46,98,97,116,99,104,105,110,103,61,48,41,44,116,104,105,115,46,98,97,116,99,104,105,110,103,43,43,125,125,44,123,107,101,121,58,34,97,118,97,105,108,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,97,118,97,105,108,97,98,108,101,34,44,101,41,125,125,44,123,107,101,121,58,34,98,108,117,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,98,108,117,114,34,41,125,125,44,123,107,101,121,58,34,98,108,117,114,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,98,108,117,114,34,41,125,125,44,123,107,101,121,58,34,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,59,33,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,124,124,48,60,116,104,105,115,46,98,97,116,99,104,105,110,103,124,124,33,116,104,105,115,46,99,111,110,102,105,103,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,124,124,40,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,114,101,110,100,101,114,97,98,108,101,40,41,38,38,40,116,61,116,124,124,101,44,110,61,101,41,125,41,44,116,104,105,115,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,38,38,116,104,105,115,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,33,61,61,116,38,38,116,104,105,115,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,46,109,97,114,107,68,105,114,116,121,40,41,44,116,38,38,116,33,61,61,116,104,105,115,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,38,38,116,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,38,38,116,104,105,115,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,33,61,61,110,38,38,116,104,105,115,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,46,109,97,114,107,68,105,114,116,121,40,41,44,110,38,38,110,33,61,61,116,104,105,115,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,38,38,110,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,61,116,44,116,104,105,115,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,61,110,44,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,49,41,125,125,44,123,107,101,121,58,34,99,104,101,99,107,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,99,104,101,99,107,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,99,108,101,97,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,99,108,101,97,110,34,41,125,125,44,123,107,101,121,58,34,99,108,111,110,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,99,111,108,108,97,112,115,101,34,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,99,111,108,108,97,112,115,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,99,111,108,108,97,112,115,101,34,41,125,125,44,123,107,101,121,58,34,99,111,110,99,97,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,59,116,46,95,99,111,110,116,101,120,116,61,116,104,105,115,46,95,99,111,110,116,101,120,116,59,102,117,110,99,116,105,111,110,32,110,40,101,41,123,101,32,105,110,115,116,97,110,99,101,111,102,32,119,38,38,116,46,112,117,115,104,40,101,41,125,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,104,105,115,44,110,41,44,99,46,101,97,99,104,40,101,44,110,41,44,116,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,61,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,44,116,125,125,44,123,107,101,121,58,34,99,111,110,116,101,120,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,99,111,110,116,101,120,116,124,124,116,104,105,115,46,95,116,114,101,101,125,125,44,123,107,101,121,58,34,99,111,112,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,44,110,44,105,41,123,118,97,114,32,114,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,114,46,112,117,115,104,40,101,46,99,111,112,121,40,116,44,110,44,105,41,41,125,41,44,114,125,125,44,123,107,101,121,58,34,100,101,101,112,101,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,104,105,108,100,114,101,110,124,124,116,46,112,117,115,104,40,101,41,125,41,44,116,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,100,101,115,101,108,101,99,116,34,41,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,100,101,115,101,108,101,99,116,34,41,125,125,44,123,107,101,121,58,34,101,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,104,105,115,44,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,101,100,105,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,101,100,105,116,97,98,108,101,34,44,101,41,125,125,44,123,107,101,121,58,34,101,100,105,116,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,101,100,105,116,105,110,103,34,44,101,41,125,125,44,123,107,101,121,58,34,101,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,98,97,116,99,104,105,110,103,45,45,44,48,61,61,61,116,104,105,115,46,98,97,116,99,104,105,110,103,38,38,116,104,105,115,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,101,120,112,97,110,100,34,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,101,120,112,97,110,100,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,48,61,61,45,45,110,38,38,101,40,105,41,125,118,97,114,32,110,61,48,59,105,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,110,43,43,44,101,46,99,104,105,108,100,114,101,110,63,101,46,101,120,112,97,110,100,40,41,46,99,97,116,99,104,40,116,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,101,46,99,104,105,108,100,114,101,110,46,101,120,112,97,110,100,68,101,101,112,40,41,46,99,97,116,99,104,40,116,41,46,116,104,101,110,40,116,41,125,41,58,116,40,41,125,41,125,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,80,97,114,101,110,116,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,101,120,112,97,110,100,80,97,114,101,110,116,115,34,41,125,125,44,123,107,101,121,58,34,101,120,116,114,97,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,102,108,97,116,116,101,110,40,101,41,44,110,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,97,100,100,78,111,100,101,40,101,46,99,111,112,121,72,105,101,114,97,114,99,104,121,40,41,41,125,41,44,110,125,125,44,123,107,101,121,58,34,102,105,108,116,101,114,66,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,112,40,101,41,44,110,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,116,40,101,41,38,38,110,46,112,117,115,104,40,101,41,125,41,44,110,125,125,44,123,107,101,121,58,34,102,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,116,40,101,41,41,114,101,116,117,114,110,32,110,61,101,44,33,49,125,41,44,110,125,125,44,123,107,101,121,58,34,102,105,114,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,44,110,61,116,104,105,115,46,108,101,110,103,116,104,59,116,60,110,59,116,43,43,41,105,102,40,101,40,116,104,105,115,91,116,93,41,41,114,101,116,117,114,110,32,116,104,105,115,91,116,93,125,125,44,123,107,101,121,58,34,102,108,97,116,116,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,44,110,61,112,40,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,110,40,101,41,38,38,116,46,112,117,115,104,40,101,41,125,41,44,116,125,125,44,123,107,101,121,58,34,102,111,99,117,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,102,111,99,117,115,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,102,111,114,69,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,101,41,125,125,44,123,107,101,121,58,34,103,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,91,101,93,125,125,44,123,107,101,121,58,34,104,105,100,100,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,104,105,100,100,101,110,34,44,101,41,125,125,44,123,107,101,121,58,34,104,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,104,105,100,101,34,41,125,125,44,123,107,101,121,58,34,104,105,100,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,104,105,100,101,34,41,125,125,44,123,107,101,121,58,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,101,41,125,125,44,123,107,101,121,58,34,105,110,115,101,114,116,65,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,46,105,100,41,123,118,97,114,32,110,61,116,104,105,115,46,110,111,100,101,40,116,46,105,100,41,59,105,102,40,110,41,114,101,116,117,114,110,32,110,46,114,101,115,116,111,114,101,40,41,46,115,104,111,119,40,41,44,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,46,99,104,105,108,100,114,101,110,41,63,40,99,46,105,115,65,114,114,97,121,76,105,107,101,40,110,46,99,104,105,108,100,114,101,110,41,124,124,40,110,46,99,104,105,108,100,114,101,110,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,44,110,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,110,41,44,99,46,101,97,99,104,40,116,46,99,104,105,108,100,114,101,110,44,102,117,110,99,116,105,111,110,40,101,41,123,110,46,99,104,105,108,100,114,101,110,46,97,100,100,78,111,100,101,40,101,41,125,41,41,58,116,46,99,104,105,108,100,114,101,110,38,38,99,46,105,115,66,111,111,108,101,97,110,40,110,46,99,104,105,108,100,114,101,110,41,38,38,40,110,46,99,104,105,108,100,114,101,110,61,116,46,99,104,105,108,100,114,101,110,41,44,110,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,110,125,118,97,114,32,105,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,115,116,114,117,99,116,111,114,46,105,115,84,114,101,101,78,111,100,101,40,116,41,63,116,58,67,40,116,104,105,115,46,95,116,114,101,101,44,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,115,112,108,105,99,101,40,101,44,48,44,105,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,38,38,40,105,46,105,116,114,101,101,46,112,97,114,101,110,116,61,116,104,105,115,46,95,99,111,110,116,101,120,116,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,46,109,97,114,107,68,105,114,116,121,40,41,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,97,100,100,101,100,34,44,105,41,44,105,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,108,101,110,103,116,104,45,49,33,61,61,101,38,38,116,104,105,115,46,105,110,118,111,107,101,40,34,109,97,114,107,68,105,114,116,121,34,41,44,116,104,105,115,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,105,125,125,44,123,107,101,121,58,34,105,110,118,111,107,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,101,44,116,41,125,125,44,123,107,101,121,58,34,105,110,118,111,107,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,40,33,99,46,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,40,116,41,124,124,50,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,38,38,40,116,61,99,46,116,97,105,108,40,97,114,103,117,109,101,110,116,115,41,41,44,121,40,116,104,105,115,44,101,44,116,44,33,48,41,125,125,44,123,107,101,121,58,34,108,97,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,116,104,105,115,46,108,101,110,103,116,104,45,49,59,48,60,61,116,59,116,45,45,41,105,102,40,101,40,116,104,105,115,91,116,93,41,41,114,101,116,117,114,110,32,116,104,105,115,91,116,93,125,125,44,123,107,101,121,58,34,108,111,97,100,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,108,111,97,100,105,110,103,34,44,101,41,125,125,44,123,107,101,121,58,34,108,111,97,100,77,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,116,104,105,115,59,114,101,116,117,114,110,32,116,104,105,115,46,95,108,111,97,100,105,110,103,63,102,46,114,101,106,101,99,116,40,110,101,119,32,69,114,114,111,114,40,34,80,101,110,100,105,110,103,32,108,111,97,100,77,111,114,101,32,99,97,108,108,32,109,117,115,116,32,99,111,109,112,108,101,116,101,32,98,101,102,111,114,101,32,98,101,105,110,103,32,105,110,118,111,107,101,100,32,97,103,97,105,110,46,34,41,41,58,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,61,61,61,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,63,102,46,114,101,115,111,108,118,101,40,41,58,40,116,104,105,115,46,95,108,111,97,100,105,110,103,61,33,48,44,116,104,105,115,46,98,97,116,99,104,40,41,44,99,46,105,110,118,111,107,101,40,116,104,105,115,46,95,99,111,110,116,101,120,116,44,34,109,97,114,107,68,105,114,116,121,34,41,44,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,43,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,112,97,103,105,110,97,116,101,100,34,44,116,104,105,115,46,95,99,111,110,116,101,120,116,124,124,116,104,105,115,46,95,116,114,101,101,44,116,104,105,115,46,112,97,103,105,110,97,116,105,111,110,44,101,41,44,116,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,63,116,104,105,115,46,95,99,111,110,116,101,120,116,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,111,97,100,67,104,105,108,100,114,101,110,40,41,58,116,104,105,115,46,95,116,114,101,101,46,108,111,97,100,40,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,97,116,97,41,58,40,116,104,105,115,46,95,108,111,97,100,105,110,103,61,33,49,44,102,46,114,101,115,111,108,118,101,40,41,41,44,116,104,105,115,46,101,110,100,40,41,44,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,38,38,116,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,110,46,95,108,111,97,100,105,110,103,61,33,49,44,110,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,41,46,99,97,116,99,104,40,102,117,110,99,116,105,111,110,40,41,123,110,46,95,108,111,97,100,105,110,103,61,33,49,44,110,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,41,44,116,41,125,125,44,123,107,101,121,58,34,109,97,116,99,104,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,109,97,116,99,104,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,105,61,50,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,110,63,110,58,116,104,105,115,44,114,61,116,104,105,115,91,101,93,46,114,101,109,111,118,101,40,41,44,115,61,105,46,105,110,115,101,114,116,65,116,40,116,44,114,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,109,111,118,101,100,34,44,115,44,116,104,105,115,44,101,44,105,44,116,41,44,115,125,125,44,123,107,101,121,58,34,110,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,46,105,100,61,61,61,116,41,114,101,116,117,114,110,32,110,61,101,44,33,49,125,41,44,110,125,125,44,123,107,101,121,58,34,110,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,99,46,105,115,65,114,114,97,121,40,116,41,38,38,40,110,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,44,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,45,49,60,116,46,105,110,100,101,120,79,102,40,101,46,105,100,41,38,38,110,46,112,117,115,104,40,101,41,125,41,41,44,99,46,105,115,65,114,114,97,121,40,116,41,63,110,58,116,104,105,115,125,125,44,123,107,101,121,58,34,112,97,103,105,110,97,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,125,125,44,123,107,101,121,58,34,112,111,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,114,40,117,40,115,46,112,114,111,116,111,116,121,112,101,41,44,34,112,111,112,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,101,125,125,44,123,107,101,121,58,34,112,117,115,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,114,40,117,40,115,46,112,114,111,116,111,116,121,112,101,41,44,34,112,117,115,104,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,44,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,116,125,125,44,123,107,101,121,58,34,114,101,99,117,114,115,101,68,111,119,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,114,101,109,111,118,101,40,116,104,105,115,44,123,105,100,58,101,46,105,100,125,41,44,99,46,105,110,118,111,107,101,40,116,104,105,115,46,95,99,111,110,116,101,120,116,44,34,109,97,114,107,68,105,114,116,121,34,41,44,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,114,101,109,111,118,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,114,101,115,116,111,114,101,34,41,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,114,101,115,116,111,114,101,34,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,115,101,108,101,99,116,34,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,115,101,108,101,99,116,97,98,108,101,34,44,101,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,115,101,108,101,99,116,34,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,115,101,108,101,99,116,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,115,104,105,102,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,114,40,117,40,115,46,112,114,111,116,111,116,121,112,101,41,44,34,115,104,105,102,116,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,44,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,116,125,125,44,123,107,101,121,58,34,115,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,115,104,111,119,34,41,125,125,44,123,107,101,121,58,34,115,104,111,119,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,115,104,111,119,34,41,125,125,44,123,107,101,121,58,34,115,111,102,116,82,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,115,111,102,116,82,101,109,111,118,101,34,41,125,125,44,123,107,101,121,58,34,115,111,114,116,66,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,59,105,102,40,101,61,101,124,124,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,111,114,116,41,123,116,104,105,115,46,98,97,116,99,104,40,41,59,118,97,114,32,110,61,99,46,115,111,114,116,66,121,40,116,104,105,115,44,101,41,59,116,104,105,115,46,108,101,110,103,116,104,61,48,44,99,46,101,97,99,104,40,110,44,102,117,110,99,116,105,111,110,40,101,41,123,116,46,112,117,115,104,40,101,41,125,41,44,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,101,110,100,40,41,125,114,101,116,117,114,110,32,116,104,105,115,125,125,44,123,107,101,121,58,34,115,111,114,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,111,114,116,40,116,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,101,46,99,104,105,108,100,114,101,110,46,115,111,114,116,68,101,101,112,40,116,41,125,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,115,112,108,105,99,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,114,40,117,40,115,46,112,114,111,116,111,116,121,112,101,41,44,34,115,112,108,105,99,101,34,44,116,104,105,115,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,101,125,125,44,123,107,101,121,58,34,115,116,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,115,116,97,116,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,116,97,116,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,115,116,97,116,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,119,97,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,59,118,97,114,32,110,61,101,46,99,111,110,116,101,120,116,40,41,44,105,61,116,46,99,111,110,116,101,120,116,40,41,44,114,61,110,46,105,110,100,101,120,79,102,40,101,41,44,115,61,105,46,105,110,100,101,120,79,102,40,116,41,59,114,101,116,117,114,110,32,110,61,61,61,105,63,40,116,104,105,115,91,114,93,61,116,44,116,104,105,115,91,115,93,61,101,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,109,111,118,101,100,34,44,101,44,110,44,114,44,105,44,115,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,109,111,118,101,100,34,44,116,44,105,44,115,44,110,44,114,41,41,58,40,110,46,109,111,118,101,40,114,44,105,46,105,110,100,101,120,79,102,40,116,41,44,105,41,44,105,46,109,111,118,101,40,105,46,105,110,100,101,120,79,102,40,116,41,44,114,44,110,41,41,44,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,115,119,97,112,112,101,100,34,44,101,44,110,44,114,44,116,44,105,44,115,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,116,114,101,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,125,125,44,123,107,101,121,58,34,116,111,65,114,114,97,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,116,46,112,117,115,104,40,101,46,116,111,79,98,106,101,99,116,40,41,41,125,41,44,116,125,125,44,123,107,101,121,58,34,117,110,115,104,105,102,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,114,40,117,40,115,46,112,114,111,116,111,116,121,112,101,41,44,34,117,110,115,104,105,102,116,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,44,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,116,125,125,44,123,107,101,121,58,34,118,105,115,105,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,118,105,115,105,98,108,101,34,44,101,41,125,125,93,41,44,115,125,40,41,59,102,117,110,99,116,105,111,110,32,95,40,101,44,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,103,63,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,61,95,40,101,44,116,41,125,41,58,101,32,105,110,115,116,97,110,99,101,111,102,32,119,38,38,33,49,33,61,61,40,110,61,116,40,101,41,41,38,38,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,110,61,95,40,101,46,99,104,105,108,100,114,101,110,44,116,41,41,44,110,125,102,117,110,99,116,105,111,110,32,109,40,110,41,123,114,101,116,117,114,110,32,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,99,46,105,115,79,98,106,101,99,116,40,110,41,41,114,101,116,117,114,110,32,116,40,110,101,119,32,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,80,114,111,109,105,115,101,34,41,41,59,99,46,105,115,70,117,110,99,116,105,111,110,40,110,46,116,104,101,110,41,38,38,110,46,116,104,101,110,40,101,41,44,99,46,105,115,70,117,110,99,116,105,111,110,40,110,46,101,114,114,111,114,41,63,110,46,101,114,114,111,114,40,116,41,58,99,46,105,115,70,117,110,99,116,105,111,110,40,110,46,99,97,116,99,104,41,38,38,110,46,99,97,116,99,104,40,116,41,125,41,125,102,117,110,99,116,105,111,110,32,98,40,101,44,116,44,110,41,123,118,97,114,32,105,61,101,46,105,116,114,101,101,46,115,116,97,116,101,91,116,93,59,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,110,38,38,105,33,61,61,110,38,38,40,101,46,105,116,114,101,101,46,115,116,97,116,101,91,116,93,61,110,44,34,114,101,110,100,101,114,101,100,34,33,61,61,116,38,38,101,46,109,97,114,107,68,105,114,116,121,40,41,44,101,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,115,116,97,116,101,46,99,104,97,110,103,101,100,34,44,101,44,116,44,105,44,110,41,41,44,105,125,102,111,114,40,118,97,114,32,119,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,114,40,101,44,116,44,110,41,123,118,97,114,32,105,61,116,104,105,115,59,97,40,116,104,105,115,44,114,41,44,116,104,105,115,46,95,116,114,101,101,61,101,44,116,32,105,110,115,116,97,110,99,101,111,102,32,114,38,38,40,40,110,61,99,46,99,97,115,116,65,114,114,97,121,40,110,41,41,46,112,117,115,104,40,34,95,116,114,101,101,34,41,44,99,46,101,97,99,104,40,116,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,99,46,105,110,99,108,117,100,101,115,40,110,44,116,41,124,124,40,99,46,105,115,79,98,106,101,99,116,40,101,41,63,105,91,116,93,61,101,32,105,110,115,116,97,110,99,101,111,102,32,103,63,101,46,99,108,111,110,101,40,41,58,34,105,116,114,101,101,34,61,61,61,116,63,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,105,61,123,125,59,114,101,116,117,114,110,40,110,61,99,46,99,97,115,116,65,114,114,97,121,40,110,41,41,46,112,117,115,104,40,34,114,101,102,34,41,44,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,99,46,105,110,99,108,117,100,101,115,40,110,44,116,41,124,124,40,105,91,116,93,61,99,46,99,108,111,110,101,68,101,101,112,40,101,41,41,125,41,44,105,125,40,101,41,58,99,46,99,108,111,110,101,68,101,101,112,40,101,41,58,105,91,116,93,61,101,41,125,41,41,125,114,101,116,117,114,110,32,101,40,114,44,91,123,107,101,121,58,34,97,100,100,67,104,105,108,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,99,46,105,115,65,114,114,97,121,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,38,38,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,124,124,40,116,104,105,115,46,99,104,105,108,100,114,101,110,61,110,101,119,32,103,40,116,104,105,115,46,95,116,114,101,101,41,44,116,104,105,115,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,116,104,105,115,41,44,116,104,105,115,46,99,104,105,108,100,114,101,110,46,97,100,100,78,111,100,101,40,101,41,125,125,44,123,107,101,121,58,34,97,100,100,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,44,110,61,110,101,119,32,103,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,33,99,46,105,115,65,114,114,97,121,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,38,38,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,124,124,40,116,104,105,115,46,99,104,105,108,100,114,101,110,61,110,101,119,32,103,40,116,104,105,115,46,95,116,114,101,101,41,44,116,104,105,115,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,116,104,105,115,41,44,116,104,105,115,46,99,104,105,108,100,114,101,110,46,98,97,116,99,104,40,41,44,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,110,46,112,117,115,104,40,116,46,97,100,100,67,104,105,108,100,40,101,41,41,125,41,44,116,104,105,115,46,99,104,105,108,100,114,101,110,46,101,110,100,40,41,44,110,125,125,44,123,107,101,121,58,34,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,105,115,68,121,110,97,109,105,99,38,38,40,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,124,124,33,48,61,61,61,116,104,105,115,46,99,104,105,108,100,114,101,110,41,125,125,44,123,107,101,121,58,34,97,115,115,105,103,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,97,115,115,105,103,110,46,97,112,112,108,121,40,99,44,91,116,104,105,115,93,46,99,111,110,99,97,116,40,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,41,44,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,97,118,97,105,108,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,104,105,100,100,101,110,40,41,38,38,33,116,104,105,115,46,114,101,109,111,118,101,100,40,41,125,125,44,123,107,101,121,58,34,98,108,117,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,44,33,49,41,44,111,40,34,102,111,99,117,115,101,100,34,44,33,49,44,34,98,108,117,114,114,101,100,34,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,99,104,101,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,111,40,34,99,104,101,99,107,101,100,34,44,33,48,44,34,99,104,101,99,107,101,100,34,44,116,104,105,115,44,33,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,99,104,101,99,107,98,111,120,46,97,117,116,111,67,104,101,99,107,67,104,105,108,100,114,101,110,41,44,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,99,104,101,99,107,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,99,104,101,99,107,101,100,34,41,125,125,44,123,107,101,121,58,34,99,108,101,97,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,46,104,97,115,80,97,114,101,110,116,40,41,41,123,118,97,114,32,116,61,101,46,103,101,116,80,97,114,101,110,116,40,41,59,116,46,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,40,41,124,124,116,46,104,105,100,101,40,41,125,125,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,99,108,111,110,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,101,119,32,114,40,116,104,105,115,46,95,116,114,101,101,44,116,104,105,115,44,101,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,34,99,111,108,108,97,112,115,101,100,34,44,33,48,44,34,99,111,108,108,97,112,115,101,100,34,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,99,111,108,108,97,112,115,101,100,34,41,125,125,44,123,107,101,121,58,34,99,111,110,116,101,120,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,63,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,99,104,105,108,100,114,101,110,58,116,104,105,115,46,95,116,114,101,101,46,109,111,100,101,108,125,125,44,123,107,101,121,58,34,99,111,112,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,33,101,124,124,33,99,46,105,115,70,117,110,99,116,105,111,110,40,101,46,97,100,100,78,111,100,101,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,68,101,115,116,105,110,97,116,105,111,110,32,109,117,115,116,32,98,101,32,97,110,32,73,110,115,112,105,114,101,32,84,114,101,101,32,105,110,115,116,97,110,99,101,46,34,41,59,118,97,114,32,105,61,116,104,105,115,59,114,101,116,117,114,110,32,116,38,38,40,105,61,105,46,99,111,112,121,72,105,101,114,97,114,99,104,121,40,33,49,44,110,41,41,44,101,46,97,100,100,78,111,100,101,40,99,46,99,108,111,110,101,68,101,101,112,40,105,46,116,111,79,98,106,101,99,116,40,33,49,44,110,41,41,41,125,125,44,123,107,101,121,58,34,99,111,112,121,72,105,101,114,97,114,99,104,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,105,61,91,93,44,101,61,116,104,105,115,46,103,101,116,80,97,114,101,110,116,115,40,41,59,105,102,40,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,105,46,112,117,115,104,40,101,46,116,111,79,98,106,101,99,116,40,116,44,110,41,41,125,41,44,101,61,105,46,114,101,118,101,114,115,101,40,41,44,33,116,41,123,118,97,114,32,114,61,116,104,105,115,46,116,111,79,98,106,101,99,116,40,33,48,44,110,41,59,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,114,46,99,104,105,108,100,114,101,110,61,116,104,105,115,46,99,104,105,108,100,114,101,110,46,102,105,108,116,101,114,66,121,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,101,46,115,116,97,116,101,40,34,104,105,100,100,101,110,34,41,125,41,46,116,111,65,114,114,97,121,40,41,44,114,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,114,41,44,105,46,112,117,115,104,40,114,41,125,118,97,114,32,115,61,105,91,48,93,44,111,61,105,46,108,101,110,103,116,104,44,97,61,115,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,105,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,91,93,59,116,43,49,60,111,38,38,40,110,46,112,117,115,104,40,105,91,116,43,49,93,41,44,97,46,99,104,105,108,100,114,101,110,61,110,44,97,61,97,46,99,104,105,108,100,114,101,110,91,48,93,41,125,41,44,67,40,116,104,105,115,46,95,116,114,101,101,44,115,41,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,108,101,99,116,101,100,40,41,38,38,40,33,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,124,124,49,60,116,104,105,115,46,95,116,114,101,101,46,115,101,108,101,99,116,101,100,40,41,46,108,101,110,103,116,104,41,38,38,40,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,98,97,116,99,104,40,41,44,111,40,34,115,101,108,101,99,116,101,100,34,44,33,49,44,34,100,101,115,101,108,101,99,116,101,100,34,44,116,104,105,115,44,33,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,101,110,100,40,41,41,59,114,101,116,117,114,110,32,116,104,105,115,125,125,44,123,107,101,121,58,34,101,100,105,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,97,98,108,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,38,38,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,97,98,108,101,34,41,125,125,44,123,107,101,121,58,34,101,100,105,116,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,40,110,46,104,97,115,67,104,105,108,100,114,101,110,40,41,124,124,110,46,95,116,114,101,101,46,105,115,68,121,110,97,109,105,99,38,38,33,48,61,61,61,110,46,99,104,105,108,100,114,101,110,41,38,38,40,110,46,99,111,108,108,97,112,115,101,100,40,41,124,124,110,46,104,105,100,100,101,110,40,41,41,63,40,110,46,115,116,97,116,101,40,34,99,111,108,108,97,112,115,101,100,34,44,33,49,41,44,110,46,115,116,97,116,101,40,34,104,105,100,100,101,110,34,44,33,49,41,44,110,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,101,120,112,97,110,100,101,100,34,44,110,41,44,110,46,95,116,114,101,101,46,105,115,68,121,110,97,109,105,99,38,38,33,48,61,61,61,110,46,99,104,105,108,100,114,101,110,63,110,46,108,111,97,100,67,104,105,108,100,114,101,110,40,41,46,116,104,101,110,40,101,41,46,99,97,116,99,104,40,116,41,58,40,110,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,101,40,110,41,41,41,58,101,40,110,41,125,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,99,111,108,108,97,112,115,101,100,40,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,80,97,114,101,110,116,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,101,120,112,97,110,100,40,41,125,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,102,111,99,117,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,111,99,117,115,101,100,40,41,124,124,40,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,116,104,105,115,46,95,116,114,101,101,46,98,108,117,114,68,101,101,112,40,41,44,116,104,105,115,46,115,116,97,116,101,40,34,102,111,99,117,115,101,100,34,44,33,48,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,102,111,99,117,115,101,100,34,44,116,104,105,115,41,44,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,102,111,99,117,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,102,111,99,117,115,101,100,34,41,125,125,44,123,107,101,121,58,34,103,101,116,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,63,116,104,105,115,46,99,104,105,108,100,114,101,110,58,110,101,119,32,103,40,116,104,105,115,46,95,116,114,101,101,41,125,125,44,123,107,101,121,58,34,103,101,116,80,97,114,101,110,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,116,114,101,101,46,112,97,114,101,110,116,125,125,44,123,107,101,121,58,34,103,101,116,80,97,114,101,110,116,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,101,119,32,103,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,112,117,115,104,40,101,41,125,41,44,116,125,125,44,123,107,101,121,58,34,103,101,116,84,101,120,116,117,97,108,72,105,101,114,97,114,99,104,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,117,110,115,104,105,102,116,40,101,46,116,101,120,116,41,125,41,44,116,125,125,44,123,107,101,121,58,34,104,97,115,65,110,99,101,115,116,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,33,49,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,40,110,61,101,46,105,100,61,61,61,116,46,105,100,41,125,41,44,110,125,125,44,123,107,101,121,58,34,104,97,115,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,38,38,48,60,116,104,105,115,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,125,125,44,123,107,101,121,58,34,104,97,115,76,111,97,100,101,100,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,125,125,44,123,107,101,121,58,34,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,63,66,111,111,108,101,97,110,40,116,104,105,115,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,41,58,116,104,105,115,46,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,40,41,125,125,44,123,107,101,121,58,34,104,97,115,80,97,114,101,110,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,66,111,111,108,101,97,110,40,116,104,105,115,46,105,116,114,101,101,46,112,97,114,101,110,116,41,125,125,44,123,107,101,121,58,34,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,33,49,59,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,101,61,48,60,116,104,105,115,46,99,104,105,108,100,114,101,110,46,102,105,108,116,101,114,66,121,40,34,97,118,97,105,108,97,98,108,101,34,41,46,108,101,110,103,116,104,41,44,101,125,125,44,123,107,101,121,58,34,104,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,111,40,34,104,105,100,100,101,110,34,44,33,48,44,34,104,105,100,100,101,110,34,44,116,104,105,115,41,59,114,101,116,117,114,110,32,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,101,46,99,104,105,108,100,114,101,110,46,104,105,100,101,40,41,44,101,125,125,44,123,107,101,121,58,34,104,105,100,100,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,104,105,100,100,101,110,34,41,125,125,44,123,107,101,121,58,34,105,110,100,101,120,80,97,116,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,112,117,115,104,40,99,46,105,110,100,101,120,79,102,40,101,46,99,111,110,116,101,120,116,40,41,44,101,41,41,125,41,44,116,46,114,101,118,101,114,115,101,40,41,46,106,111,105,110,40,34,46,34,41,125,125,44,123,107,101,121,58,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,41,125,125,44,123,107,101,121,58,34,105,115,70,105,114,115,116,82,101,110,100,101,114,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,61,61,61,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,125,125,44,123,107,101,121,58,34,105,115,76,97,115,116,82,101,110,100,101,114,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,61,61,61,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,125,125,44,123,107,101,121,58,34,105,115,79,110,108,121,82,101,110,100,101,114,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,115,70,105,114,115,116,82,101,110,100,101,114,97,98,108,101,40,41,38,38,116,104,105,115,46,105,115,76,97,115,116,82,101,110,100,101,114,97,98,108,101,40,41,125,125,44,123,107,101,121,58,34,108,97,115,116,68,101,101,112,101,115,116,86,105,115,105,98,108,101,67,104,105,108,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,59,105,102,40,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,33,116,104,105,115,46,99,111,108,108,97,112,115,101,100,40,41,41,123,118,97,114,32,116,61,40,101,61,99,46,102,105,110,100,76,97,115,116,40,116,104,105,115,46,99,104,105,108,100,114,101,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,118,105,115,105,98,108,101,40,41,125,41,41,46,108,97,115,116,68,101,101,112,101,115,116,86,105,115,105,98,108,101,67,104,105,108,100,40,41,59,116,38,38,40,101,61,116,41,125,114,101,116,117,114,110,32,101,125,125,44,123,107,101,121,58,34,108,111,97,100,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,105,44,114,41,123,105,102,40,33,111,46,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,40,41,41,114,101,116,117,114,110,32,114,40,110,101,119,32,69,114,114,111,114,40,34,78,111,100,101,32,100,111,101,115,32,110,111,116,32,104,97,118,101,32,111,114,32,115,117,112,112,111,114,116,32,100,121,110,97,109,105,99,32,99,104,105,108,100,114,101,110,46,34,41,41,59,111,46,115,116,97,116,101,40,34,108,111,97,100,105,110,103,34,44,33,48,41,44,111,46,109,97,114,107,68,105,114,116,121,40,41,44,111,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,59,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,105,102,40,33,99,46,105,115,65,114,114,97,121,76,105,107,101,40,101,41,41,114,101,116,117,114,110,32,114,40,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,76,111,97,100,101,114,32,114,101,113,117,105,114,101,115,32,97,110,32,97,114,114,97,121,45,108,105,107,101,32,96,110,111,100,101,115,96,32,112,97,114,97,109,101,116,101,114,46,34,41,41,59,111,46,99,111,110,116,101,120,116,40,41,46,98,97,116,99,104,40,41,44,111,46,115,116,97,116,101,40,34,108,111,97,100,105,110,103,34,44,33,49,41,59,118,97,114,32,110,61,83,40,111,46,95,116,114,101,101,44,101,44,111,41,59,99,46,105,115,65,114,114,97,121,76,105,107,101,40,111,46,99,104,105,108,100,114,101,110,41,63,111,46,99,104,105,108,100,114,101,110,61,111,46,99,104,105,108,100,114,101,110,46,99,111,110,99,97,116,40,110,41,58,111,46,99,104,105,108,100,114,101,110,61,110,44,99,46,112,97,114,115,101,73,110,116,40,116,41,62,101,46,108,101,110,103,116,104,38,38,40,111,46,99,104,105,108,100,114,101,110,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,61,99,46,112,97,114,115,101,73,110,116,40,116,41,41,44,34,99,104,101,99,107,98,111,120,34,61,61,61,111,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,111,100,101,38,38,111,46,115,101,108,101,99,116,101,100,40,41,38,38,111,46,99,104,105,108,100,114,101,110,46,115,101,108,101,99,116,40,41,44,111,46,109,97,114,107,68,105,114,116,121,40,41,44,111,46,99,111,110,116,101,120,116,40,41,46,101,110,100,40,41,44,105,40,111,46,99,104,105,108,100,114,101,110,41,44,111,46,95,116,114,101,101,46,101,109,105,116,40,34,99,104,105,108,100,114,101,110,46,108,111,97,100,101,100,34,44,111,41,125,102,117,110,99,116,105,111,110,32,116,40,101,41,123,111,46,115,116,97,116,101,40,34,108,111,97,100,105,110,103,34,44,33,49,41,44,111,46,99,104,105,108,100,114,101,110,61,110,101,119,32,103,40,111,46,95,116,114,101,101,41,44,40,111,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,111,41,46,109,97,114,107,68,105,114,116,121,40,41,44,111,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,114,40,101,41,44,111,46,95,116,114,101,101,46,101,109,105,116,40,34,116,114,101,101,46,108,111,97,100,101,114,114,111,114,34,44,101,41,125,118,97,114,32,110,61,111,46,95,116,114,101,101,46,99,111,110,115,116,114,117,99,116,111,114,46,105,115,84,114,101,101,78,111,100,101,115,40,111,46,99,104,105,108,100,114,101,110,41,63,111,46,99,104,105,108,100,114,101,110,46,112,97,103,105,110,97,116,105,111,110,40,41,58,110,117,108,108,44,115,61,111,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,97,116,97,40,111,44,101,44,116,44,110,41,59,99,46,105,115,79,98,106,101,99,116,40,115,41,38,38,109,40,115,41,46,116,104,101,110,40,101,41,46,99,97,116,99,104,40,116,41,125,41,125,125,44,123,107,101,121,58,34,108,111,97,100,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,108,111,97,100,105,110,103,34,41,125,125,44,123,107,101,121,58,34,108,111,97,100,77,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,104,105,108,100,114,101,110,38,38,33,48,33,61,61,116,104,105,115,46,99,104,105,108,100,114,101,110,63,116,104,105,115,46,99,104,105,108,100,114,101,110,46,108,111,97,100,77,111,114,101,40,41,58,102,46,114,101,106,101,99,116,40,110,101,119,32,69,114,114,111,114,40,34,67,104,105,108,100,114,101,110,32,104,97,118,101,32,110,111,116,32,121,101,116,32,98,101,101,110,32,108,111,97,100,101,100,46,34,41,41,125,125,44,123,107,101,121,58,34,109,97,114,107,68,105,114,116,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,116,114,101,101,46,100,105,114,116,121,124,124,40,116,104,105,115,46,105,116,114,101,101,46,100,105,114,116,121,61,33,48,44,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,109,97,114,107,68,105,114,116,121,40,41,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,109,97,116,99,104,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,109,97,116,99,104,101,100,34,41,125,125,44,123,107,101,121,58,34,110,101,120,116,86,105,115,105,98,108,101,65,110,99,101,115,116,114,97,108,83,105,98,108,105,110,103,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,59,105,102,40,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,41,123,118,97,114,32,116,61,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,59,101,61,40,101,61,116,46,110,101,120,116,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,40,41,41,124,124,116,46,110,101,120,116,86,105,115,105,98,108,101,65,110,99,101,115,116,114,97,108,83,105,98,108,105,110,103,78,111,100,101,40,41,125,114,101,116,117,114,110,32,101,125,125,44,123,107,101,121,58,34,110,101,120,116,86,105,115,105,98,108,101,67,104,105,108,100,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,59,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,101,61,99,46,102,105,110,100,40,116,104,105,115,46,99,104,105,108,100,114,101,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,118,105,115,105,98,108,101,40,41,125,41,41,44,101,125,125,44,123,107,101,121,58,34,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,110,101,120,116,86,105,115,105,98,108,101,67,104,105,108,100,78,111,100,101,40,41,124,124,116,104,105,115,46,110,101,120,116,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,40,41,124,124,116,104,105,115,46,110,101,120,116,86,105,115,105,98,108,101,65,110,99,101,115,116,114,97,108,83,105,98,108,105,110,103,78,111,100,101,40,41,125,125,44,123,107,101,121,58,34,110,101,120,116,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,63,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,99,104,105,108,100,114,101,110,58,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,115,40,41,44,116,61,99,46,102,105,110,100,73,110,100,101,120,40,101,44,123,105,100,58,116,104,105,115,46,105,100,125,41,59,114,101,116,117,114,110,32,99,46,102,105,110,100,40,99,46,115,108,105,99,101,40,101,44,116,43,49,41,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,118,105,115,105,98,108,101,40,41,125,41,125,125,44,123,107,101,121,58,34,112,97,103,105,110,97,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,103,101,116,40,116,104,105,115,44,34,99,104,105,108,100,114,101,110,46,95,112,97,103,105,110,97,116,105,111,110,34,41,125,125,44,123,107,101,121,58,34,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,59,114,101,116,117,114,110,40,101,61,116,104,105,115,46,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,40,41,41,38,38,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,33,101,46,99,111,108,108,97,112,115,101,100,40,41,38,38,40,101,61,101,46,108,97,115,116,68,101,101,112,101,115,116,86,105,115,105,98,108,101,67,104,105,108,100,40,41,41,44,33,101,38,38,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,40,101,61,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,41,44,101,125,125,44,123,107,101,121,58,34,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,63,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,99,104,105,108,100,114,101,110,58,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,115,40,41,44,116,61,99,46,102,105,110,100,73,110,100,101,120,40,101,44,123,105,100,58,116,104,105,115,46,105,100,125,41,59,114,101,116,117,114,110,32,99,46,102,105,110,100,76,97,115,116,40,99,46,115,108,105,99,101,40,101,44,48,44,116,41,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,118,105,115,105,98,108,101,40,41,125,41,125,125,44,123,107,101,121,58,34,114,101,99,117,114,115,101,68,111,119,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,99,117,114,115,101,85,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,49,33,61,61,101,40,116,104,105,115,41,38,38,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,99,117,114,115,101,85,112,40,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,105,110,100,101,116,101,114,109,105,110,97,116,101,40,41,59,105,102,40,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,33,49,41,44,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,123,118,97,114,32,116,61,116,104,105,115,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,44,110,61,48,44,105,61,48,59,116,104,105,115,46,99,104,105,108,100,114,101,110,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,104,101,99,107,101,100,40,41,38,38,105,43,43,44,101,46,105,110,100,101,116,101,114,109,105,110,97,116,101,40,41,38,38,110,43,43,125,41,44,105,61,61,61,116,63,111,40,34,99,104,101,99,107,101,100,34,44,33,48,44,34,99,104,101,99,107,101,100,34,44,116,104,105,115,41,58,111,40,34,99,104,101,99,107,101,100,34,44,33,49,44,34,117,110,99,104,101,99,107,101,100,34,44,116,104,105,115,41,44,116,104,105,115,46,99,104,101,99,107,101,100,40,41,124,124,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,48,60,110,124,124,48,60,116,38,38,48,60,105,38,38,105,60,116,41,125,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,44,101,33,61,61,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,41,38,38,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,108,111,97,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,110,46,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,40,41,41,114,101,116,117,114,110,32,116,40,110,101,119,32,69,114,114,111,114,40,34,78,111,100,101,32,111,114,32,116,114,101,101,32,100,111,101,115,32,110,111,116,32,115,117,112,112,111,114,116,32,100,121,110,97,109,105,99,32,99,104,105,108,100,114,101,110,46,34,41,41,59,110,46,99,104,105,108,100,114,101,110,61,33,48,44,110,46,99,111,108,108,97,112,115,101,40,41,44,110,46,108,111,97,100,67,104,105,108,100,114,101,110,40,41,46,116,104,101,110,40,101,41,46,99,97,116,99,104,40,116,41,125,41,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,48,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,101,38,38,101,44,110,61,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,59,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,114,101,109,111,118,101,40,116,104,105,115,41,44,110,38,38,40,110,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,44,110,46,109,97,114,107,68,105,114,116,121,40,41,41,44,40,110,63,110,46,112,97,103,105,110,97,116,105,111,110,40,41,58,116,104,105,115,46,95,116,114,101,101,46,112,97,103,105,110,97,116,105,111,110,40,41,41,46,116,111,116,97,108,45,45,59,118,97,114,32,105,61,116,104,105,115,46,116,111,79,98,106,101,99,116,40,33,49,44,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,114,101,109,111,118,101,100,34,44,105,44,110,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,105,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,114,101,109,111,118,101,100,34,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,104,105,100,100,101,110,40,41,38,38,33,116,104,105,115,46,114,101,109,111,118,101,100,40,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,114,101,110,100,101,114,101,100,34,41,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,34,114,101,109,111,118,101,100,34,44,33,49,44,34,114,101,115,116,111,114,101,100,34,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,116,104,105,115,46,115,101,108,101,99,116,101,100,40,41,38,38,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,40,41,41,123,105,102,40,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,116,104,105,115,46,95,116,114,101,101,46,99,97,110,65,117,116,111,68,101,115,101,108,101,99,116,40,41,41,123,118,97,114,32,116,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,59,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,61,33,49,44,116,104,105,115,46,95,116,114,101,101,46,100,101,115,101,108,101,99,116,68,101,101,112,40,41,44,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,61,116,125,111,40,34,115,101,108,101,99,116,101,100,34,44,33,48,44,34,115,101,108,101,99,116,101,100,34,44,116,104,105,115,44,33,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,41,44,40,116,104,105,115,46,95,116,114,101,101,46,95,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,61,116,104,105,115,41,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,125,114,101,116,117,114,110,32,116,104,105,115,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,108,108,111,119,40,116,104,105,115,41,59,114,101,116,117,114,110,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,101,63,101,58,116,104,105,115,46,115,116,97,116,101,40,34,115,101,108,101,99,116,97,98,108,101,34,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,115,101,108,101,99,116,101,100,34,41,125,125,44,123,107,101,121,58,34,115,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,91,101,93,61,116,44,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,115,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,34,104,105,100,100,101,110,34,44,33,49,44,34,115,104,111,119,110,34,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,115,111,102,116,82,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,34,114,101,109,111,118,101,100,34,44,33,48,44,34,115,111,102,116,114,101,109,111,118,101,100,34,44,116,104,105,115,44,34,115,111,102,116,82,101,109,111,118,101,34,41,125,125,44,123,107,101,121,58,34,115,116,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,99,46,105,115,83,116,114,105,110,103,40,101,41,41,114,101,116,117,114,110,32,98,40,116,104,105,115,44,101,44,116,41,59,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,98,97,116,99,104,40,41,59,118,97,114,32,105,61,123,125,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,91,116,93,61,98,40,110,44,116,44,101,41,125,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,101,110,100,40,41,44,105,125,125,44,123,107,101,121,58,34,115,116,97,116,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,44,105,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,98,97,116,99,104,40,41,44,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,105,46,112,117,115,104,40,110,46,115,116,97,116,101,40,101,44,116,41,41,125,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,101,110,100,40,41,44,105,125,125,44,123,107,101,121,58,34,115,119,97,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,115,119,97,112,40,116,104,105,115,44,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,67,104,101,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,104,101,99,107,101,100,40,41,63,116,104,105,115,46,117,110,99,104,101,99,107,40,41,58,116,104,105,115,46,99,104,101,99,107,40,41,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,67,111,108,108,97,112,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,108,97,112,115,101,100,40,41,63,116,104,105,115,46,101,120,112,97,110,100,40,41,58,116,104,105,115,46,99,111,108,108,97,112,115,101,40,41,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,69,100,105,116,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,44,33,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,41,41,44,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,83,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,101,100,40,41,63,116,104,105,115,46,100,101,115,101,108,101,99,116,40,41,58,116,104,105,115,46,115,101,108,101,99,116,40,41,125,125,44,123,107,101,121,58,34,116,111,79,98,106,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,44,105,61,48,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,101,38,38,101,44,114,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,116,38,38,116,44,115,61,123,125,44,111,61,99,46,112,117,108,108,40,79,98,106,101,99,116,46,107,101,121,115,40,116,104,105,115,41,44,34,95,116,114,101,101,34,44,34,99,104,105,108,100,114,101,110,34,44,34,105,116,114,101,101,34,41,59,99,46,101,97,99,104,40,111,44,102,117,110,99,116,105,111,110,40,101,41,123,115,91,101,93,61,110,91,101,93,125,41,59,118,97,114,32,97,61,115,46,105,116,114,101,101,61,123,125,59,114,101,116,117,114,110,32,97,46,97,61,116,104,105,115,46,105,116,114,101,101,46,97,44,97,46,105,99,111,110,61,116,104,105,115,46,105,116,114,101,101,46,105,99,111,110,44,97,46,108,105,61,116,104,105,115,46,105,116,114,101,101,46,108,105,44,114,38,38,40,97,46,115,116,97,116,101,61,116,104,105,115,46,105,116,114,101,101,46,115,116,97,116,101,41,44,33,105,38,38,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,99,46,105,115,70,117,110,99,116,105,111,110,40,116,104,105,115,46,99,104,105,108,100,114,101,110,46,116,111,65,114,114,97,121,41,38,38,40,115,46,99,104,105,108,100,114,101,110,61,116,104,105,115,46,99,104,105,108,100,114,101,110,46,116,111,65,114,114,97,121,40,41,41,44,115,125,125,44,123,107,101,121,58,34,116,111,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,101,120,116,125,125,44,123,107,101,121,58,34,116,114,101,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,116,114,101,101,40,41,125,125,44,123,107,101,121,58,34,117,110,99,104,101,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,111,40,34,99,104,101,99,107,101,100,34,44,33,49,44,34,117,110,99,104,101,99,107,101,100,34,44,116,104,105,115,44,33,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,99,104,101,99,107,98,111,120,46,97,117,116,111,67,104,101,99,107,67,104,105,108,100,114,101,110,41,44,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,33,49,41,44,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,118,105,115,105,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,40,116,104,105,115,46,104,105,100,100,101,110,40,41,124,124,116,104,105,115,46,114,101,109,111,118,101,100,40,41,124,124,116,104,105,115,46,95,116,114,101,101,46,117,115,101,115,78,97,116,105,118,101,68,79,77,38,38,33,116,104,105,115,46,114,101,110,100,101,114,101,100,40,41,41,38,38,40,33,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,124,124,33,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,99,111,108,108,97,112,115,101,100,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,118,105,115,105,98,108,101,40,41,41,125,125,93,41,44,114,125,40,41,44,120,61,100,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,99,114,121,112,116,111,38,38,99,114,121,112,116,111,46,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,38,38,99,114,121,112,116,111,46,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,46,98,105,110,100,40,99,114,121,112,116,111,41,124,124,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,115,67,114,121,112,116,111,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,46,109,115,67,114,121,112,116,111,46,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,38,38,109,115,67,114,121,112,116,111,46,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,46,98,105,110,100,40,109,115,67,114,121,112,116,111,41,59,105,102,40,116,41,123,118,97,114,32,110,61,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,49,54,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,110,41,44,110,125,125,101,108,115,101,123,118,97,114,32,105,61,110,101,119,32,65,114,114,97,121,40,49,54,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,44,116,61,48,59,116,60,49,54,59,116,43,43,41,48,61,61,40,51,38,116,41,38,38,40,101,61,52,50,57,52,57,54,55,50,57,54,42,77,97,116,104,46,114,97,110,100,111,109,40,41,41,44,105,91,116,93,61,101,62,62,62,40,40,51,38,116,41,60,60,51,41,38,50,53,53,59,114,101,116,117,114,110,32,105,125,125,125,41,44,68,61,91,93,44,65,61,48,59,65,60,50,53,54,59,43,43,65,41,68,91,65,93,61,40,65,43,50,53,54,41,46,116,111,83,116,114,105,110,103,40,49,54,41,46,115,117,98,115,116,114,40,49,41,59,118,97,114,32,76,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,124,124,48,44,105,61,68,59,114,101,116,117,114,110,91,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,34,45,34,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,34,45,34,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,34,45,34,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,34,45,34,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,93,46,106,111,105,110,40,34,34,41,125,59,118,97,114,32,80,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,105,61,116,38,38,110,124,124,48,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,40,116,61,34,98,105,110,97,114,121,34,61,61,61,101,63,110,101,119,32,65,114,114,97,121,40,49,54,41,58,110,117,108,108,44,101,61,110,117,108,108,41,59,118,97,114,32,114,61,40,101,61,101,124,124,123,125,41,46,114,97,110,100,111,109,124,124,40,101,46,114,110,103,124,124,120,41,40,41,59,105,102,40,114,91,54,93,61,49,53,38,114,91,54,93,124,54,52,44,114,91,56,93,61,54,51,38,114,91,56,93,124,49,50,56,44,116,41,102,111,114,40,118,97,114,32,115,61,48,59,115,60,49,54,59,43,43,115,41,116,91,105,43,115,93,61,114,91,115,93,59,114,101,116,117,114,110,32,116,124,124,76,40,114,41,125,59,102,117,110,99,116,105,111,110,32,67,40,116,44,110,44,101,41,123,110,46,105,100,61,110,46,105,100,124,124,80,40,41,44,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,110,46,105,100,38,38,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,110,46,105,100,38,38,40,110,46,105,100,61,110,46,105,100,46,116,111,83,116,114,105,110,103,40,41,41,59,118,97,114,32,105,61,110,46,105,116,114,101,101,61,110,46,105,116,114,101,101,124,124,123,125,59,105,46,105,99,111,110,61,105,46,105,99,111,110,124,124,33,49,44,105,46,100,105,114,116,121,61,33,49,59,118,97,114,32,114,61,105,46,108,105,61,105,46,108,105,124,124,123,125,59,114,46,97,116,116,114,105,98,117,116,101,115,61,114,46,97,116,116,114,105,98,117,116,101,115,124,124,123,125,59,118,97,114,32,115,61,105,46,97,61,105,46,97,124,124,123,125,59,115,46,97,116,116,114,105,98,117,116,101,115,61,115,46,97,116,116,114,105,98,117,116,101,115,124,124,123,125,59,118,97,114,32,111,61,105,46,115,116,97,116,101,61,105,46,115,116,97,116,101,124,124,123,125,59,114,101,116,117,114,110,32,111,46,99,111,108,108,97,112,115,101,100,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,99,111,108,108,97,112,115,101,100,63,111,46,99,111,108,108,97,112,115,101,100,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,99,111,108,108,97,112,115,101,100,44,111,46,115,101,108,101,99,116,97,98,108,101,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,115,101,108,101,99,116,97,98,108,101,63,111,46,115,101,108,101,99,116,97,98,108,101,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,115,101,108,101,99,116,97,98,108,101,44,111,46,100,114,97,103,103,97,98,108,101,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,100,114,97,103,103,97,98,108,101,63,111,46,100,114,97,103,103,97,98,108,101,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,100,114,97,103,103,97,98,108,101,44,111,91,34,100,114,111,112,45,116,97,114,103,101,116,34,93,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,91,34,100,114,111,112,45,116,97,114,103,101,116,34,93,63,111,91,34,100,114,111,112,45,116,97,114,103,101,116,34,93,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,91,34,100,114,111,112,45,116,97,114,103,101,116,34,93,44,111,46,99,104,101,99,107,101,100,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,99,104,101,99,107,101,100,38,38,111,46,99,104,101,99,107,101,100,44,111,46,101,100,105,116,97,98,108,101,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,101,100,105,116,97,98,108,101,63,111,46,101,100,105,116,97,98,108,101,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,101,100,105,116,97,98,108,101,44,111,46,101,100,105,116,105,110,103,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,101,100,105,116,105,110,103,63,111,46,101,100,105,116,105,110,103,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,101,100,105,116,105,110,103,44,111,46,102,111,99,117,115,101,100,61,111,46,102,111,99,117,115,101,100,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,102,111,99,117,115,101,100,44,111,46,104,105,100,100,101,110,61,111,46,104,105,100,100,101,110,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,104,105,100,100,101,110,44,111,46,105,110,100,101,116,101,114,109,105,110,97,116,101,61,111,46,105,110,100,101,116,101,114,109,105,110,97,116,101,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,105,110,100,101,116,101,114,109,105,110,97,116,101,44,111,46,108,111,97,100,105,110,103,61,111,46,108,111,97,100,105,110,103,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,108,111,97,100,105,110,103,44,111,46,114,101,109,111,118,101,100,61,111,46,114,101,109,111,118,101,100,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,114,101,109,111,118,101,100,44,111,46,114,101,110,100,101,114,101,100,61,111,46,114,101,110,100,101,114,101,100,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,114,101,110,100,101,114,101,100,44,111,46,115,101,108,101,99,116,101,100,61,111,46,115,101,108,101,99,116,101,100,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,115,101,108,101,99,116,101,100,44,110,46,105,116,114,101,101,46,112,97,114,101,110,116,61,101,44,110,61,99,46,97,115,115,105,103,110,40,110,101,119,32,119,40,116,41,44,110,41,44,99,46,105,115,65,114,114,97,121,76,105,107,101,40,110,46,99,104,105,108,100,114,101,110,41,38,38,40,110,46,99,104,105,108,100,114,101,110,61,83,40,116,44,110,46,99,104,105,108,100,114,101,110,44,110,41,41,44,116,46,97,108,108,111,119,115,76,111,97,100,69,118,101,110,116,115,38,38,99,46,101,97,99,104,40,116,46,99,111,110,102,105,103,46,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,111,91,101,93,38,38,116,46,101,109,105,116,40,34,110,111,100,101,46,34,43,101,44,110,44,33,48,41,125,41,44,110,125,102,117,110,99,116,105,111,110,32,83,40,116,44,101,44,110,41,123,118,97,114,32,105,61,110,101,119,32,103,40,116,44,110,117,108,108,44,123,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,58,33,48,125,41,59,114,101,116,117,114,110,32,105,46,98,97,116,99,104,40,41,44,116,46,99,111,110,102,105,103,46,115,111,114,116,38,38,40,101,61,99,46,115,111,114,116,66,121,40,101,44,116,46,99,111,110,102,105,103,46,115,111,114,116,41,41,44,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,105,46,112,117,115,104,40,67,40,116,44,101,44,110,41,41,125,41,44,105,46,95,99,111,110,116,101,120,116,61,110,44,105,46,101,110,100,40,41,44,105,125,118,97,114,32,79,61,100,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,117,110,99,116,105,111,110,32,117,40,41,123,116,104,105,115,46,95,101,118,101,110,116,115,61,123,125,44,116,104,105,115,46,95,99,111,110,102,38,38,110,46,99,97,108,108,40,116,104,105,115,44,116,104,105,115,46,95,99,111,110,102,41,125,102,117,110,99,116,105,111,110,32,110,40,101,41,123,101,63,40,40,116,104,105,115,46,95,99,111,110,102,61,101,41,46,100,101,108,105,109,105,116,101,114,38,38,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,61,101,46,100,101,108,105,109,105,116,101,114,41,44,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,61,101,46,109,97,120,76,105,115,116,101,110,101,114,115,33,61,61,108,63,101,46,109,97,120,76,105,115,116,101,110,101,114,115,58,114,44,101,46,119,105,108,100,99,97,114,100,38,38,40,116,104,105,115,46,119,105,108,100,99,97,114,100,61,101,46,119,105,108,100,99,97,114,100,41,44,101,46,110,101,119,76,105,115,116,101,110,101,114,38,38,40,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,61,101,46,110,101,119,76,105,115,116,101,110,101,114,41,44,101,46,114,101,109,111,118,101,76,105,115,116,101,110,101,114,38,38,40,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,61,101,46,114,101,109,111,118,101,76,105,115,116,101,110,101,114,41,44,101,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,38,38,40,116,104,105,115,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,61,101,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,41,44,116,104,105,115,46,119,105,108,100,99,97,114,100,38,38,40,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,61,123,125,41,41,58,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,61,114,125,102,117,110,99,116,105,111,110,32,111,40,101,44,116,41,123,118,97,114,32,110,61,34,40,110,111,100,101,41,32,119,97,114,110,105,110,103,58,32,112,111,115,115,105,98,108,101,32,69,118,101,110,116,69,109,105,116,116,101,114,32,109,101,109,111,114,121,32,108,101,97,107,32,100,101,116,101,99,116,101,100,46,32,34,43,101,43,34,32,108,105,115,116,101,110,101,114,115,32,97,100,100,101,100,46,32,85,115,101,32,101,109,105,116,116,101,114,46,115,101,116,77,97,120,76,105,115,116,101,110,101,114,115,40,41,32,116,111,32,105,110,99,114,101,97,115,101,32,108,105,109,105,116,46,34,59,105,102,40,116,104,105,115,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,38,38,40,110,43,61,34,32,69,118,101,110,116,32,110,97,109,101,58,32,34,43,116,43,34,46,34,41,44,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,112,114,111,99,101,115,115,38,38,112,114,111,99,101,115,115,46,101,109,105,116,87,97,114,110,105,110,103,41,123,118,97,114,32,105,61,110,101,119,32,69,114,114,111,114,40,110,41,59,105,46,110,97,109,101,61,34,77,97,120,76,105,115,116,101,110,101,114,115,69,120,99,101,101,100,101,100,87,97,114,110,105,110,103,34,44,105,46,101,109,105,116,116,101,114,61,116,104,105,115,44,105,46,99,111,117,110,116,61,101,44,112,114,111,99,101,115,115,46,101,109,105,116,87,97,114,110,105,110,103,40,105,41,125,101,108,115,101,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,110,41,44,99,111,110,115,111,108,101,46,116,114,97,99,101,38,38,99,111,110,115,111,108,101,46,116,114,97,99,101,40,41,125,102,117,110,99,116,105,111,110,32,105,40,101,41,123,116,104,105,115,46,95,101,118,101,110,116,115,61,123,125,44,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,61,33,49,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,61,33,49,44,116,104,105,115,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,61,33,49,44,110,46,99,97,108,108,40,116,104,105,115,44,101,41,125,102,117,110,99,116,105,111,110,32,121,40,101,44,116,44,110,44,105,41,123,105,102,40,33,110,41,114,101,116,117,114,110,91,93,59,118,97,114,32,114,44,115,44,111,44,97,44,99,44,117,44,108,44,104,61,91,93,44,100,61,116,46,108,101,110,103,116,104,44,102,61,116,91,105,93,44,118,61,116,91,105,43,49,93,59,105,102,40,105,61,61,61,100,38,38,110,46,95,108,105,115,116,101,110,101,114,115,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,46,95,108,105,115,116,101,110,101,114,115,41,114,101,116,117,114,110,32,101,38,38,101,46,112,117,115,104,40,110,46,95,108,105,115,116,101,110,101,114,115,41,44,91,110,93,59,102,111,114,40,114,61,48,44,115,61,110,46,95,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,59,114,60,115,59,114,43,43,41,101,38,38,101,46,112,117,115,104,40,110,46,95,108,105,115,116,101,110,101,114,115,91,114,93,41,59,114,101,116,117,114,110,91,110,93,125,105,102,40,34,42,34,61,61,61,102,124,124,34,42,42,34,61,61,61,102,124,124,110,91,102,93,41,123,105,102,40,34,42,34,61,61,61,102,41,123,102,111,114,40,111,32,105,110,32,110,41,34,95,108,105,115,116,101,110,101,114,115,34,33,61,61,111,38,38,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,111,41,38,38,40,104,61,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,111,93,44,105,43,49,41,41,41,59,114,101,116,117,114,110,32,104,125,105,102,40,34,42,42,34,61,61,61,102,41,123,102,111,114,40,111,32,105,110,40,108,61,105,43,49,61,61,61,100,124,124,105,43,50,61,61,61,100,38,38,34,42,34,61,61,61,118,41,38,38,110,46,95,108,105,115,116,101,110,101,114,115,38,38,40,104,61,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,44,100,41,41,41,44,110,41,34,95,108,105,115,116,101,110,101,114,115,34,33,61,61,111,38,38,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,111,41,38,38,40,104,61,34,42,34,61,61,61,111,124,124,34,42,42,34,61,61,61,111,63,40,110,91,111,93,46,95,108,105,115,116,101,110,101,114,115,38,38,33,108,38,38,40,104,61,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,111,93,44,100,41,41,41,44,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,111,93,44,105,41,41,41,58,111,61,61,61,118,63,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,111,93,44,105,43,50,41,41,58,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,111,93,44,105,41,41,41,59,114,101,116,117,114,110,32,104,125,104,61,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,102,93,44,105,43,49,41,41,125,105,102,40,40,97,61,110,91,34,42,34,93,41,38,38,121,40,101,44,116,44,97,44,105,43,49,41,44,99,61,110,91,34,42,42,34,93,41,105,102,40,105,60,100,41,102,111,114,40,111,32,105,110,32,99,46,95,108,105,115,116,101,110,101,114,115,38,38,121,40,101,44,116,44,99,44,100,41,44,99,41,34,95,108,105,115,116,101,110,101,114,115,34,33,61,61,111,38,38,99,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,111,41,38,38,40,111,61,61,61,118,63,121,40,101,44,116,44,99,91,111,93,44,105,43,50,41,58,111,61,61,61,102,63,121,40,101,44,116,44,99,91,111,93,44,105,43,49,41,58,40,40,117,61,123,125,41,91,111,93,61,99,91,111,93,44,121,40,101,44,116,44,123,34,42,42,34,58,117,125,44,105,43,49,41,41,41,59,101,108,115,101,32,99,46,95,108,105,115,116,101,110,101,114,115,63,121,40,101,44,116,44,99,44,100,41,58,99,91,34,42,34,93,38,38,99,91,34,42,34,93,46,95,108,105,115,116,101,110,101,114,115,38,38,121,40,101,44,116,44,99,91,34,42,34,93,44,100,41,59,114,101,116,117,114,110,32,104,125,118,97,114,32,108,44,104,44,114,59,104,61,65,114,114,97,121,46,105,115,65,114,114,97,121,63,65,114,114,97,121,46,105,115,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,61,61,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,101,41,125,44,114,61,49,48,44,40,105,46,69,118,101,110,116,69,109,105,116,116,101,114,50,61,105,41,46,112,114,111,116,111,116,121,112,101,46,100,101,108,105,109,105,116,101,114,61,34,46,34,44,105,46,112,114,111,116,111,116,121,112,101,46,115,101,116,77,97,120,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,101,41,123,101,33,61,61,108,38,38,40,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,61,101,44,116,104,105,115,46,95,99,111,110,102,124,124,40,116,104,105,115,46,95,99,111,110,102,61,123,125,41,44,116,104,105,115,46,95,99,111,110,102,46,109,97,120,76,105,115,116,101,110,101,114,115,61,101,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,101,118,101,110,116,61,34,34,44,105,46,112,114,111,116,111,116,121,112,101,46,111,110,99,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,99,101,40,101,44,116,44,33,49,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,79,110,99,101,76,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,99,101,40,101,44,116,44,33,48,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,95,111,110,99,101,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,109,97,110,121,40,101,44,49,44,116,44,110,41,44,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,109,97,110,121,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,109,97,110,121,40,101,44,116,44,110,44,33,49,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,77,97,110,121,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,109,97,110,121,40,101,44,116,44,110,44,33,48,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,95,109,97,110,121,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,105,41,123,118,97,114,32,114,61,116,104,105,115,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,109,97,110,121,32,111,110,108,121,32,97,99,99,101,112,116,115,32,105,110,115,116,97,110,99,101,115,32,111,102,32,70,117,110,99,116,105,111,110,34,41,59,102,117,110,99,116,105,111,110,32,115,40,41,123,114,101,116,117,114,110,32,48,61,61,45,45,116,38,38,114,46,111,102,102,40,101,44,115,41,44,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,114,101,116,117,114,110,32,115,46,95,111,114,105,103,105,110,61,110,44,116,104,105,115,46,95,111,110,40,101,44,115,44,105,41,44,114,125,44,105,46,112,114,111,116,111,116,121,112,101,46,101,109,105,116,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,101,118,101,110,116,115,124,124,117,46,99,97,108,108,40,116,104,105,115,41,59,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,91,48,93,59,105,102,40,34,110,101,119,76,105,115,116,101,110,101,114,34,61,61,61,101,38,38,33,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,38,38,33,116,104,105,115,46,95,101,118,101,110,116,115,46,110,101,119,76,105,115,116,101,110,101,114,41,114,101,116,117,114,110,33,49,59,118,97,114,32,116,44,110,44,105,44,114,44,115,44,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,105,102,40,116,104,105,115,46,95,97,108,108,38,38,116,104,105,115,46,95,97,108,108,46,108,101,110,103,116,104,41,123,105,102,40,115,61,116,104,105,115,46,95,97,108,108,46,115,108,105,99,101,40,41,44,51,60,111,41,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,111,41,44,114,61,48,59,114,60,111,59,114,43,43,41,116,91,114,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,102,111,114,40,105,61,48,44,110,61,115,46,108,101,110,103,116,104,59,105,60,110,59,105,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,111,41,123,99,97,115,101,32,49,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,44,97,114,103,117,109,101,110,116,115,91,49,93,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,115,91,105,93,46,97,112,112,108,121,40,116,104,105,115,44,116,41,125,125,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,123,115,61,91,93,59,118,97,114,32,97,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,59,121,46,99,97,108,108,40,116,104,105,115,44,115,44,97,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,125,101,108,115,101,123,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,40,115,61,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,41,41,123,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,111,41,123,99,97,115,101,32,49,58,115,46,99,97,108,108,40,116,104,105,115,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,115,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,115,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,111,45,49,41,44,114,61,49,59,114,60,111,59,114,43,43,41,116,91,114,45,49,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,115,46,97,112,112,108,121,40,116,104,105,115,44,116,41,125,114,101,116,117,114,110,33,48,125,115,61,115,38,38,115,46,115,108,105,99,101,40,41,125,105,102,40,115,38,38,115,46,108,101,110,103,116,104,41,123,105,102,40,51,60,111,41,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,111,45,49,41,44,114,61,49,59,114,60,111,59,114,43,43,41,116,91,114,45,49,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,102,111,114,40,105,61,48,44,110,61,115,46,108,101,110,103,116,104,59,105,60,110,59,105,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,111,41,123,99,97,115,101,32,49,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,115,91,105,93,46,97,112,112,108,121,40,116,104,105,115,44,116,41,125,114,101,116,117,114,110,33,48,125,105,102,40,33,116,104,105,115,46,95,97,108,108,38,38,34,101,114,114,111,114,34,61,61,61,101,41,116,104,114,111,119,32,97,114,103,117,109,101,110,116,115,91,49,93,105,110,115,116,97,110,99,101,111,102,32,69,114,114,111,114,63,97,114,103,117,109,101,110,116,115,91,49,93,58,110,101,119,32,69,114,114,111,114,40,34,85,110,99,97,117,103,104,116,44,32,117,110,115,112,101,99,105,102,105,101,100,32,39,101,114,114,111,114,39,32,101,118,101,110,116,46,34,41,59,114,101,116,117,114,110,33,33,116,104,105,115,46,95,97,108,108,125,44,105,46,112,114,111,116,111,116,121,112,101,46,101,109,105,116,65,115,121,110,99,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,101,118,101,110,116,115,124,124,117,46,99,97,108,108,40,116,104,105,115,41,59,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,91,48,93,59,105,102,40,34,110,101,119,76,105,115,116,101,110,101,114,34,61,61,61,101,38,38,33,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,38,38,33,116,104,105,115,46,95,101,118,101,110,116,115,46,110,101,119,76,105,115,116,101,110,101,114,41,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,91,33,49,93,41,59,118,97,114,32,116,44,110,44,105,44,114,44,115,44,111,61,91,93,44,97,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,105,102,40,116,104,105,115,46,95,97,108,108,41,123,105,102,40,51,60,97,41,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,97,41,44,114,61,49,59,114,60,97,59,114,43,43,41,116,91,114,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,102,111,114,40,105,61,48,44,110,61,116,104,105,115,46,95,97,108,108,46,108,101,110,103,116,104,59,105,60,110,59,105,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,97,41,123,99,97,115,101,32,49,58,111,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,41,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,111,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,44,97,114,103,117,109,101,110,116,115,91,49,93,41,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,111,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,111,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,105,93,46,97,112,112,108,121,40,116,104,105,115,44,116,41,41,125,125,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,123,115,61,91,93,59,118,97,114,32,99,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,59,121,46,99,97,108,108,40,116,104,105,115,44,115,44,99,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,125,101,108,115,101,32,115,61,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,59,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,115,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,97,41,123,99,97,115,101,32,49,58,111,46,112,117,115,104,40,115,46,99,97,108,108,40,116,104,105,115,41,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,111,46,112,117,115,104,40,115,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,41,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,111,46,112,117,115,104,40,115,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,97,45,49,41,44,114,61,49,59,114,60,97,59,114,43,43,41,116,91,114,45,49,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,111,46,112,117,115,104,40,115,46,97,112,112,108,121,40,116,104,105,115,44,116,41,41,125,101,108,115,101,32,105,102,40,115,38,38,115,46,108,101,110,103,116,104,41,123,105,102,40,115,61,115,46,115,108,105,99,101,40,41,44,51,60,97,41,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,97,45,49,41,44,114,61,49,59,114,60,97,59,114,43,43,41,116,91,114,45,49,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,102,111,114,40,105,61,48,44,110,61,115,46,108,101,110,103,116,104,59,105,60,110,59,105,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,97,41,123,99,97,115,101,32,49,58,111,46,112,117,115,104,40,115,91,105,93,46,99,97,108,108,40,116,104,105,115,41,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,111,46,112,117,115,104,40,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,41,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,111,46,112,117,115,104,40,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,111,46,112,117,115,104,40,115,91,105,93,46,97,112,112,108,121,40,116,104,105,115,44,116,41,41,125,125,101,108,115,101,32,105,102,40,33,116,104,105,115,46,95,97,108,108,38,38,34,101,114,114,111,114,34,61,61,61,101,41,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,91,49,93,105,110,115,116,97,110,99,101,111,102,32,69,114,114,111,114,63,80,114,111,109,105,115,101,46,114,101,106,101,99,116,40,97,114,103,117,109,101,110,116,115,91,49,93,41,58,80,114,111,109,105,115,101,46,114,101,106,101,99,116,40,34,85,110,99,97,117,103,104,116,44,32,117,110,115,112,101,99,105,102,105,101,100,32,39,101,114,114,111,114,39,32,101,118,101,110,116,46,34,41,59,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,97,108,108,40,111,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,111,110,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,40,101,44,116,44,33,49,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,76,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,40,101,44,116,44,33,48,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,111,110,65,110,121,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,65,110,121,40,101,44,33,49,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,65,110,121,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,65,110,121,40,101,44,33,48,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,97,100,100,76,105,115,116,101,110,101,114,61,105,46,112,114,111,116,111,116,121,112,101,46,111,110,44,105,46,112,114,111,116,111,116,121,112,101,46,95,111,110,65,110,121,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,111,110,65,110,121,32,111,110,108,121,32,97,99,99,101,112,116,115,32,105,110,115,116,97,110,99,101,115,32,111,102,32,70,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,97,108,108,124,124,40,116,104,105,115,46,95,97,108,108,61,91,93,41,44,116,63,116,104,105,115,46,95,97,108,108,46,117,110,115,104,105,102,116,40,101,41,58,116,104,105,115,46,95,97,108,108,46,112,117,115,104,40,101,41,44,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,95,111,110,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,65,110,121,40,101,44,116,41,44,116,104,105,115,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,111,110,32,111,110,108,121,32,97,99,99,101,112,116,115,32,105,110,115,116,97,110,99,101,115,32,111,102,32,70,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,101,118,101,110,116,115,124,124,117,46,99,97,108,108,40,116,104,105,115,41,44,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,38,38,116,104,105,115,46,101,109,105,116,40,34,110,101,119,76,105,115,116,101,110,101,114,34,44,101,44,116,41,44,116,104,105,115,46,119,105,108,100,99,97,114,100,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,44,105,61,40,101,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,41,46,108,101,110,103,116,104,59,110,43,49,60,105,59,110,43,43,41,105,102,40,34,42,42,34,61,61,61,101,91,110,93,38,38,34,42,42,34,61,61,61,101,91,110,43,49,93,41,114,101,116,117,114,110,59,102,111,114,40,118,97,114,32,114,61,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,115,61,101,46,115,104,105,102,116,40,41,59,115,33,61,61,108,59,41,123,105,102,40,114,91,115,93,124,124,40,114,91,115,93,61,123,125,41,44,114,61,114,91,115,93,44,48,61,61,61,101,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,114,46,95,108,105,115,116,101,110,101,114,115,63,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,114,46,95,108,105,115,116,101,110,101,114,115,38,38,40,114,46,95,108,105,115,116,101,110,101,114,115,61,91,114,46,95,108,105,115,116,101,110,101,114,115,93,41,44,114,46,95,108,105,115,116,101,110,101,114,115,46,112,117,115,104,40,116,41,44,33,114,46,95,108,105,115,116,101,110,101,114,115,46,119,97,114,110,101,100,38,38,48,60,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,38,38,114,46,95,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,62,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,38,38,40,114,46,95,108,105,115,116,101,110,101,114,115,46,119,97,114,110,101,100,61,33,48,44,111,46,99,97,108,108,40,116,104,105,115,44,114,46,95,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,44,115,41,41,41,58,114,46,95,108,105,115,116,101,110,101,114,115,61,116,44,33,48,59,115,61,101,46,115,104,105,102,116,40,41,125,114,101,116,117,114,110,33,48,125,46,99,97,108,108,40,116,104,105,115,44,101,44,116,41,58,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,63,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,38,38,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,91,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,93,41,44,110,63,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,117,110,115,104,105,102,116,40,116,41,58,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,112,117,115,104,40,116,41,44,33,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,119,97,114,110,101,100,38,38,48,60,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,38,38,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,108,101,110,103,116,104,62,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,38,38,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,119,97,114,110,101,100,61,33,48,44,111,46,99,97,108,108,40,116,104,105,115,44,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,108,101,110,103,116,104,44,101,41,41,41,58,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,116,44,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,111,102,102,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,32,111,110,108,121,32,116,97,107,101,115,32,105,110,115,116,97,110,99,101,115,32,111,102,32,70,117,110,99,116,105,111,110,34,41,59,118,97,114,32,110,44,105,61,91,93,59,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,123,118,97,114,32,114,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,59,105,61,121,46,99,97,108,108,40,116,104,105,115,44,110,117,108,108,44,114,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,125,101,108,115,101,123,105,102,40,33,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,41,114,101,116,117,114,110,32,116,104,105,115,59,110,61,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,44,105,46,112,117,115,104,40,123,95,108,105,115,116,101,110,101,114,115,58,110,125,41,125,102,111,114,40,118,97,114,32,115,61,48,59,115,60,105,46,108,101,110,103,116,104,59,115,43,43,41,123,118,97,114,32,111,61,105,91,115,93,59,105,102,40,110,61,111,46,95,108,105,115,116,101,110,101,114,115,44,104,40,110,41,41,123,102,111,114,40,118,97,114,32,97,61,45,49,44,99,61,48,44,117,61,110,46,108,101,110,103,116,104,59,99,60,117,59,99,43,43,41,105,102,40,110,91,99,93,61,61,61,116,124,124,110,91,99,93,46,108,105,115,116,101,110,101,114,38,38,110,91,99,93,46,108,105,115,116,101,110,101,114,61,61,61,116,124,124,110,91,99,93,46,95,111,114,105,103,105,110,38,38,110,91,99,93,46,95,111,114,105,103,105,110,61,61,61,116,41,123,97,61,99,59,98,114,101,97,107,125,105,102,40,97,60,48,41,99,111,110,116,105,110,117,101,59,114,101,116,117,114,110,32,116,104,105,115,46,119,105,108,100,99,97,114,100,63,111,46,95,108,105,115,116,101,110,101,114,115,46,115,112,108,105,99,101,40,97,44,49,41,58,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,115,112,108,105,99,101,40,97,44,49,41,44,48,61,61,61,110,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,119,105,108,100,99,97,114,100,63,100,101,108,101,116,101,32,111,46,95,108,105,115,116,101,110,101,114,115,58,100,101,108,101,116,101,32,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,41,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,38,38,116,104,105,115,46,101,109,105,116,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,34,44,101,44,116,41,44,116,104,105,115,125,40,110,61,61,61,116,124,124,110,46,108,105,115,116,101,110,101,114,38,38,110,46,108,105,115,116,101,110,101,114,61,61,61,116,124,124,110,46,95,111,114,105,103,105,110,38,38,110,46,95,111,114,105,103,105,110,61,61,61,116,41,38,38,40,116,104,105,115,46,119,105,108,100,99,97,114,100,63,100,101,108,101,116,101,32,111,46,95,108,105,115,116,101,110,101,114,115,58,100,101,108,101,116,101,32,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,38,38,116,104,105,115,46,101,109,105,116,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,34,44,101,44,116,41,41,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,101,40,116,41,123,105,102,40,116,33,61,61,108,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,102,111,114,40,118,97,114,32,105,32,105,110,32,110,41,123,118,97,114,32,114,61,110,91,105,93,44,115,61,116,91,114,93,59,115,32,105,110,115,116,97,110,99,101,111,102,32,70,117,110,99,116,105,111,110,124,124,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,115,124,124,110,117,108,108,61,61,61,115,124,124,40,48,60,79,98,106,101,99,116,46,107,101,121,115,40,115,41,46,108,101,110,103,116,104,38,38,101,40,116,91,114,93,41,44,48,61,61,61,79,98,106,101,99,116,46,107,101,121,115,40,115,41,46,108,101,110,103,116,104,38,38,100,101,108,101,116,101,32,116,91,114,93,41,125,125,125,40,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,41,44,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,111,102,102,65,110,121,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,48,44,105,61,48,59,105,102,40,101,38,38,116,104,105,115,46,95,97,108,108,38,38,48,60,116,104,105,115,46,95,97,108,108,46,108,101,110,103,116,104,41,123,102,111,114,40,110,61,48,44,105,61,40,116,61,116,104,105,115,46,95,97,108,108,41,46,108,101,110,103,116,104,59,110,60,105,59,110,43,43,41,105,102,40,101,61,61,61,116,91,110,93,41,114,101,116,117,114,110,32,116,46,115,112,108,105,99,101,40,110,44,49,41,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,38,38,116,104,105,115,46,101,109,105,116,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,65,110,121,34,44,101,41,44,116,104,105,115,125,101,108,115,101,123,105,102,40,116,61,116,104,105,115,46,95,97,108,108,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,41,102,111,114,40,110,61,48,44,105,61,116,46,108,101,110,103,116,104,59,110,60,105,59,110,43,43,41,116,104,105,115,46,101,109,105,116,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,65,110,121,34,44,116,91,110,93,41,59,116,104,105,115,46,95,97,108,108,61,91,93,125,114,101,116,117,114,110,32,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,114,101,109,111,118,101,76,105,115,116,101,110,101,114,61,105,46,112,114,111,116,111,116,121,112,101,46,111,102,102,44,105,46,112,114,111,116,111,116,121,112,101,46,114,101,109,111,118,101,65,108,108,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,61,61,61,108,41,114,101,116,117,114,110,32,116,104,105,115,46,95,101,118,101,110,116,115,38,38,117,46,99,97,108,108,40,116,104,105,115,41,44,116,104,105,115,59,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,102,111,114,40,118,97,114,32,116,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,44,110,61,121,46,99,97,108,108,40,116,104,105,115,44,110,117,108,108,44,116,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,44,105,61,48,59,105,60,110,46,108,101,110,103,116,104,59,105,43,43,41,110,91,105,93,46,95,108,105,115,116,101,110,101,114,115,61,110,117,108,108,59,101,108,115,101,32,116,104,105,115,46,95,101,118,101,110,116,115,38,38,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,110,117,108,108,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,108,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,123,118,97,114,32,116,61,91,93,44,110,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,59,114,101,116,117,114,110,32,121,46,99,97,108,108,40,116,104,105,115,44,116,44,110,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,44,116,125,114,101,116,117,114,110,32,116,104,105,115,46,95,101,118,101,110,116,115,124,124,117,46,99,97,108,108,40,116,104,105,115,41,44,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,124,124,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,91,93,41,44,104,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,41,124,124,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,91,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,93,41,44,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,125,44,105,46,112,114,111,116,111,116,121,112,101,46,101,118,101,110,116,78,97,109,101,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,79,98,106,101,99,116,46,107,101,121,115,40,116,104,105,115,46,95,101,118,101,110,116,115,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,108,105,115,116,101,110,101,114,67,111,117,110,116,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,108,105,115,116,101,110,101,114,115,40,101,41,46,108,101,110,103,116,104,125,44,105,46,112,114,111,116,111,116,121,112,101,46,108,105,115,116,101,110,101,114,115,65,110,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,97,108,108,63,116,104,105,115,46,95,97,108,108,58,91,93,125,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,108,38,38,108,46,97,109,100,63,108,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,125,41,58,101,46,101,120,112,111,114,116,115,61,105,125,41,46,69,118,101,110,116,69,109,105,116,116,101,114,50,59,102,117,110,99,116,105,111,110,32,78,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,101,46,109,111,100,101,108,91,116,93,46,97,112,112,108,121,40,101,46,109,111,100,101,108,44,110,41,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,111,40,101,41,123,118,97,114,32,114,59,97,40,116,104,105,115,44,111,41,44,40,114,61,104,40,116,104,105,115,44,117,40,111,41,46,99,97,108,108,40,116,104,105,115,41,41,41,46,95,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,44,114,46,95,109,117,116,101,100,61,33,49,44,114,46,97,108,108,111,119,115,76,111,97,100,69,118,101,110,116,115,61,33,49,44,114,46,105,100,61,80,40,41,44,114,46,105,110,105,116,105,97,108,105,122,101,100,61,33,49,44,114,46,105,115,68,121,110,97,109,105,99,61,33,49,44,114,46,111,112,116,115,61,101,44,114,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,61,33,49,44,114,46,99,111,110,102,105,103,61,99,46,100,101,102,97,117,108,116,115,68,101,101,112,40,123,125,44,101,44,123,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,58,91,93,44,99,104,101,99,107,98,111,120,58,123,97,117,116,111,67,104,101,99,107,67,104,105,108,100,114,101,110,58,33,48,125,44,99,111,110,116,101,120,116,77,101,110,117,58,33,49,44,100,97,116,97,58,33,49,44,101,100,105,116,97,98,108,101,58,33,49,44,101,100,105,116,105,110,103,58,123,97,100,100,58,33,49,44,101,100,105,116,58,33,49,44,114,101,109,111,118,101,58,33,49,125,44,110,111,100,101,115,58,123,114,101,115,101,116,83,116,97,116,101,79,110,82,101,115,116,111,114,101,58,33,48,125,44,112,97,103,105,110,97,116,105,111,110,58,123,108,105,109,105,116,58,45,49,125,44,115,101,97,114,99,104,58,123,109,97,116,99,104,101,114,58,33,49,44,109,97,116,99,104,80,114,111,99,101,115,115,111,114,58,33,49,125,44,115,101,108,101,99,116,105,111,110,58,123,97,108,108,111,119,58,99,46,110,111,111,112,44,97,117,116,111,68,101,115,101,108,101,99,116,58,33,48,44,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,58,33,49,44,100,105,115,97,98,108,101,68,105,114,101,99,116,68,101,115,101,108,101,99,116,105,111,110,58,33,49,44,109,111,100,101,58,34,100,101,102,97,117,108,116,34,44,109,117,108,116,105,112,108,101,58,33,49,44,114,101,113,117,105,114,101,58,33,49,125,44,115,104,111,119,67,104,101,99,107,98,111,120,101,115,58,33,49,44,115,111,114,116,58,33,49,125,41,44,34,99,104,101,99,107,98,111,120,34,61,61,61,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,111,100,101,38,38,40,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,61,33,48,44,114,46,111,110,40,34,110,111,100,101,46,99,104,101,99,107,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,101,108,101,99,116,101,100,40,41,124,124,101,46,115,101,108,101,99,116,40,33,48,41,125,41,44,114,46,111,110,40,34,110,111,100,101,46,115,101,108,101,99,116,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,104,101,99,107,101,100,40,41,124,124,101,46,99,104,101,99,107,40,33,48,41,125,41,44,114,46,111,110,40,34,110,111,100,101,46,117,110,99,104,101,99,107,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,101,108,101,99,116,101,100,40,41,38,38,101,46,100,101,115,101,108,101,99,116,40,33,48,41,125,41,44,114,46,111,110,40,34,110,111,100,101,46,100,101,115,101,108,101,99,116,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,104,101,99,107,101,100,40,41,38,38,101,46,117,110,99,104,101,99,107,40,33,48,41,125,41,41,44,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,38,38,40,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,117,108,116,105,112,108,101,61,33,48,44,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,68,101,115,101,108,101,99,116,61,33,49,41,44,101,46,101,100,105,116,97,98,108,101,38,38,33,101,46,101,100,105,116,105,110,103,38,38,40,114,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,97,100,100,61,33,48,44,114,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,61,33,48,44,114,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,114,101,109,111,118,101,61,33,48,41,44,99,46,105,115,70,117,110,99,116,105,111,110,40,101,46,115,101,97,114,99,104,41,38,38,40,114,46,99,111,110,102,105,103,46,115,101,97,114,99,104,61,123,109,97,116,99,104,101,114,58,101,46,115,101,97,114,99,104,44,109,97,116,99,104,80,114,111,99,101,115,115,111,114,58,33,49,125,41,44,114,46,100,101,102,97,117,108,116,83,116,97,116,101,61,123,99,111,108,108,97,112,115,101,100,58,33,48,44,101,100,105,116,97,98,108,101,58,99,46,103,101,116,40,108,40,114,41,44,34,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,34,41,44,101,100,105,116,105,110,103,58,33,49,44,100,114,97,103,103,97,98,108,101,58,33,48,44,34,100,114,111,112,45,116,97,114,103,101,116,34,58,33,48,44,102,111,99,117,115,101,100,58,33,49,44,104,105,100,100,101,110,58,33,49,44,105,110,100,101,116,101,114,109,105,110,97,116,101,58,33,49,44,108,111,97,100,105,110,103,58,33,49,44,109,97,116,99,104,101,100,58,33,49,44,114,101,109,111,118,101,100,58,33,49,44,114,101,110,100,101,114,101,100,58,33,49,44,115,101,108,101,99,116,97,98,108,101,58,33,48,44,115,101,108,101,99,116,101,100,58,33,49,125,44,114,46,97,108,108,111,119,115,76,111,97,100,69,118,101,110,116,115,61,99,46,105,115,65,114,114,97,121,40,114,46,99,111,110,102,105,103,46,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,41,38,38,48,60,114,46,99,111,110,102,105,103,46,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,46,108,101,110,103,116,104,44,114,46,105,115,68,121,110,97,109,105,99,61,99,46,105,115,70,117,110,99,116,105,111,110,40,114,46,99,111,110,102,105,103,46,100,97,116,97,41,59,118,97,114,32,115,61,114,46,101,109,105,116,59,114,101,116,117,114,110,32,114,46,101,109,105,116,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,116,61,110,101,119,32,65,114,114,97,121,40,101,41,44,110,61,48,59,110,60,101,59,110,43,43,41,116,91,110,93,61,97,114,103,117,109,101,110,116,115,91,110,93,59,105,102,40,33,114,46,105,115,69,118,101,110,116,77,117,116,101,100,40,116,91,48,93,41,41,123,105,102,40,99,46,105,115,70,117,110,99,116,105,111,110,40,99,46,103,101,116,40,116,44,34,91,48,93,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,34,41,41,41,123,118,97,114,32,105,61,116,91,48,93,59,105,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,61,33,49,44,105,46,112,114,101,118,101,110,116,84,114,101,101,68,101,102,97,117,108,116,61,102,117,110,99,116,105,111,110,40,41,123,105,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,61,33,48,125,125,115,46,97,112,112,108,121,40,108,40,114,41,44,116,41,125,125,44,114,46,109,111,100,101,108,61,110,101,119,32,103,40,108,40,114,41,41,44,114,46,99,111,110,102,105,103,46,100,97,116,97,38,38,114,46,108,111,97,100,40,114,46,99,111,110,102,105,103,46,100,97,116,97,41,44,114,46,105,110,105,116,105,97,108,105,122,101,100,61,33,48,44,114,125,114,101,116,117,114,110,32,116,40,111,44,79,41,44,101,40,111,44,91,123,107,101,121,58,34,97,100,100,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,97,100,100,78,111,100,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,97,100,100,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,59,116,104,105,115,46,98,97,116,99,104,40,41,59,118,97,114,32,110,61,110,101,119,32,103,40,116,104,105,115,41,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,112,117,115,104,40,116,46,97,100,100,78,111,100,101,40,101,41,41,125,41,44,116,104,105,115,46,101,110,100,40,41,44,110,125,125,44,123,107,101,121,58,34,97,112,112,108,121,67,104,97,110,103,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,100,101,108,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,125,44,123,107,101,121,58,34,97,118,97,105,108,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,97,118,97,105,108,97,98,108,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,98,97,116,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,100,101,108,46,98,97,116,99,104,40,41,125,125,44,123,107,101,121,58,34,98,108,117,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,98,108,117,114,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,98,108,117,114,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,98,108,117,114,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,98,111,117,110,100,105,110,103,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,99,46,116,114,97,110,115,102,111,114,109,40,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,101,91,116,46,105,110,100,101,120,80,97,116,104,40,41,46,114,101,112,108,97,99,101,40,47,92,46,47,103,44,34,34,41,93,61,116,125,44,123,125,41,44,116,61,115,40,99,46,115,111,114,116,66,121,40,79,98,106,101,99,116,46,107,101,121,115,40,101,41,41,41,44,110,61,116,91,48,93,44,105,61,116,46,115,108,105,99,101,40,49,41,59,114,101,116,117,114,110,91,99,46,103,101,116,40,101,44,110,41,44,99,46,103,101,116,40,101,44,105,41,93,125,125,44,123,107,101,121,58,34,99,97,110,65,117,116,111,68,101,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,68,101,115,101,108,101,99,116,38,38,33,116,104,105,115,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,125,125,44,123,107,101,121,58,34,99,104,101,99,107,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,104,101,99,107,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,108,101,97,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,108,101,97,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,108,101,97,114,83,101,97,114,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,98,97,116,99,104,40,41,44,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,104,111,119,40,41,46,99,111,108,108,97,112,115,101,40,41,46,115,116,97,116,101,40,34,109,97,116,99,104,101,100,34,44,33,49,41,125,41,44,116,104,105,115,46,101,110,100,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,99,108,111,110,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,108,111,110,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,111,108,108,97,112,115,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,111,108,108,97,112,115,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,111,108,108,97,112,115,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,110,99,97,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,111,110,99,97,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,112,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,111,112,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,114,101,97,116,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,111,46,105,115,84,114,101,101,78,111,100,101,40,101,41,63,101,58,67,40,116,104,105,115,44,101,41,125,125,44,123,107,101,121,58,34,100,101,101,112,101,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,100,101,101,112,101,115,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,100,101,115,101,108,101,99,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,100,101,115,101,108,101,99,116,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,100,105,115,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,117,108,116,105,112,108,101,38,38,40,116,104,105,115,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,61,33,48,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,101,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,97,99,104,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,100,105,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,100,105,116,97,98,108,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,100,105,116,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,100,105,116,105,110,103,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,110,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,61,33,49,44,116,104,105,115,125,125,44,123,107,101,121,58,34,101,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,100,101,108,46,101,110,100,40,41,125,125,44,123,107,101,121,58,34,101,118,101,114,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,118,101,114,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,120,112,97,110,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,120,112,97,110,100,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,120,112,97,110,100,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,120,116,114,97,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,120,116,114,97,99,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,105,108,116,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,105,108,116,101,114,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,105,108,116,101,114,66,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,105,108,116,101,114,66,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,105,110,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,105,114,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,105,114,115,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,108,97,116,116,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,108,97,116,116,101,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,111,99,117,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,111,99,117,115,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,111,114,69,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,97,99,104,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,103,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,103,101,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,104,105,100,100,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,104,105,100,100,101,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,104,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,104,105,100,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,104,105,100,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,104,105,100,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,100,101,120,79,102,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,105,110,100,101,120,79,102,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,115,101,114,116,65,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,105,110,115,101,114,116,65,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,118,111,107,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,105,110,118,111,107,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,118,111,107,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,105,110,118,111,107,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,115,69,118,101,110,116,77,117,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,105,115,66,111,111,108,101,97,110,40,116,104,105,115,46,109,117,116,101,100,40,41,41,63,116,104,105,115,46,109,117,116,101,100,40,41,58,99,46,105,110,99,108,117,100,101,115,40,116,104,105,115,46,109,117,116,101,100,40,41,44,101,41,125,125,44,123,107,101,121,58,34,105,115,84,114,101,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,111,125,125,44,123,107,101,121,58,34,106,111,105,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,106,111,105,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,108,97,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,108,97,115,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,125,125,44,123,107,101,121,58,34,108,111,97,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,111,61,116,104,105,115,44,101,61,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,114,44,115,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,105,102,40,33,99,46,105,115,65,114,114,97,121,76,105,107,101,40,101,41,41,114,101,116,117,114,110,32,115,40,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,76,111,97,100,101,114,32,114,101,113,117,105,114,101,115,32,97,110,32,97,114,114,97,121,45,108,105,107,101,32,96,110,111,100,101,115,96,32,112,97,114,97,109,101,116,101,114,46,34,41,41,59,33,111,46,105,110,105,116,105,97,108,105,122,101,100,38,38,99,46,105,115,65,114,114,97,121,76,105,107,101,40,101,41,63,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,111,46,101,109,105,116,40,34,100,97,116,97,46,108,111,97,100,101,100,34,44,101,41,125,41,58,111,46,101,109,105,116,40,34,100,97,116,97,46,108,111,97,100,101,100,34,44,101,41,59,118,97,114,32,110,61,83,40,111,44,101,41,59,102,117,110,99,116,105,111,110,32,105,40,41,123,111,46,101,109,105,116,40,34,109,111,100,101,108,46,108,111,97,100,101,100,34,44,111,46,109,111,100,101,108,41,44,114,40,111,46,109,111,100,101,108,41,44,111,46,109,111,100,101,108,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,111,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,63,111,46,109,111,100,101,108,61,111,46,109,111,100,101,108,46,99,111,110,99,97,116,40,110,41,58,111,46,109,111,100,101,108,61,110,44,111,46,109,111,100,101,108,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,61,101,46,108,101,110,103,116,104,44,99,46,112,97,114,115,101,73,110,116,40,116,41,62,101,46,108,101,110,103,116,104,38,38,40,111,46,109,111,100,101,108,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,61,99,46,112,97,114,115,101,73,110,116,40,116,41,41,44,116,124,124,111,46,109,111,100,101,108,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,101,46,99,104,105,108,100,114,101,110,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,61,101,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,41,125,41,44,111,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,38,38,33,111,46,115,101,108,101,99,116,101,100,40,41,46,108,101,110,103,116,104,38,38,111,46,115,101,108,101,99,116,70,105,114,115,116,65,118,97,105,108,97,98,108,101,78,111,100,101,40,41,44,33,111,46,105,110,105,116,105,97,108,105,122,101,100,38,38,99,46,105,115,65,114,114,97,121,40,101,41,63,115,101,116,84,105,109,101,111,117,116,40,105,41,58,105,40,41,125,105,102,40,99,46,105,115,65,114,114,97,121,76,105,107,101,40,110,41,41,101,40,110,41,59,101,108,115,101,32,105,102,40,99,46,105,115,70,117,110,99,116,105,111,110,40,110,41,41,123,118,97,114,32,116,61,110,40,110,117,108,108,44,101,44,115,44,111,46,112,97,103,105,110,97,116,105,111,110,40,41,41,59,116,38,38,40,110,61,116,41,125,99,46,105,115,79,98,106,101,99,116,40,110,41,63,109,40,110,41,46,116,104,101,110,40,101,41,46,99,97,116,99,104,40,115,41,58,115,40,110,101,119,32,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,100,97,116,97,32,108,111,97,100,101,114,46,34,41,41,125,41,59,114,101,116,117,114,110,32,101,46,99,97,116,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,111,46,101,109,105,116,40,34,100,97,116,97,46,108,111,97,100,101,114,114,111,114,34,44,101,41,125,41,44,116,104,105,115,46,95,108,111,97,100,101,114,61,123,112,114,111,109,105,115,101,58,101,125,44,101,125,125,44,123,107,101,121,58,34,108,111,97,100,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,108,111,97,100,105,110,103,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,108,111,97,100,77,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,108,111,97,100,77,111,114,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,109,97,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,109,97,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,109,97,116,99,104,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,109,97,116,99,104,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,109,111,118,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,109,117,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,105,115,83,116,114,105,110,103,40,101,41,124,124,99,46,105,115,65,114,114,97,121,40,101,41,63,116,104,105,115,46,95,109,117,116,101,100,61,99,46,99,97,115,116,65,114,114,97,121,40,101,41,58,116,104,105,115,46,95,109,117,116,101,100,61,33,48,44,116,104,105,115,125,125,44,123,107,101,121,58,34,109,117,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,109,117,116,101,100,125,125,44,123,107,101,121,58,34,110,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,110,111,100,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,110,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,110,111,100,101,115,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,112,97,103,105,110,97,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,112,97,103,105,110,97,116,105,111,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,112,111,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,112,111,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,112,117,115,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,112,117,115,104,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,99,117,114,115,101,68,111,119,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,99,117,114,115,101,68,111,119,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,100,117,99,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,100,117,99,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,100,117,99,101,82,105,103,104,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,100,117,99,101,82,105,103,104,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,108,111,97,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,115,101,116,40,41,44,116,104,105,115,46,108,111,97,100,40,116,104,105,115,46,111,112,116,115,46,100,97,116,97,124,124,116,104,105,115,46,99,111,110,102,105,103,46,100,97,116,97,41,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,109,111,118,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,65,108,108,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,115,101,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,109,111,118,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,115,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,100,101,108,61,110,101,119,32,103,40,116,104,105,115,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,115,116,111,114,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,115,116,111,114,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,118,101,114,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,118,101,114,115,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,97,114,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,61,116,104,105,115,44,101,61,116,104,105,115,46,99,111,110,102,105,103,46,115,101,97,114,99,104,44,105,61,101,46,109,97,116,99,104,101,114,44,115,61,101,46,109,97,116,99,104,80,114,111,99,101,115,115,111,114,59,114,101,116,117,114,110,33,110,124,124,99,46,105,115,83,116,114,105,110,103,40,110,41,38,38,99,46,105,115,69,109,112,116,121,40,110,41,63,102,46,114,101,115,111,108,118,101,40,116,104,105,115,46,99,108,101,97,114,83,101,97,114,99,104,40,41,41,58,40,116,104,105,115,46,98,97,116,99,104,40,41,44,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,97,116,101,40,34,104,105,100,100,101,110,34,44,33,48,41,44,101,46,115,116,97,116,101,40,34,109,97,116,99,104,101,100,34,44,33,49,41,125,41,44,116,104,105,115,46,101,110,100,40,41,44,105,61,99,46,105,115,70,117,110,99,116,105,111,110,40,105,41,63,105,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,105,61,110,101,119,32,103,40,114,41,59,99,46,105,115,83,116,114,105,110,103,40,116,41,38,38,40,116,61,110,101,119,32,82,101,103,69,120,112,40,116,44,34,105,34,41,41,44,110,61,99,46,105,115,82,101,103,69,120,112,40,116,41,63,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,116,101,115,116,40,101,46,116,101,120,116,41,125,58,116,44,114,46,109,111,100,101,108,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,114,101,109,111,118,101,100,40,41,124,124,110,40,101,41,38,38,105,46,112,117,115,104,40,101,41,125,41,44,101,40,105,41,125,44,115,61,99,46,105,115,70,117,110,99,116,105,111,110,40,115,41,63,115,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,104,111,119,40,41,46,115,116,97,116,101,40,34,109,97,116,99,104,101,100,34,44,33,48,41,44,101,46,101,120,112,97,110,100,80,97,114,101,110,116,115,40,41,46,99,111,108,108,97,112,115,101,40,41,44,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,101,46,99,104,105,108,100,114,101,110,46,115,104,111,119,68,101,101,112,40,41,125,41,125,44,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,40,110,44,102,117,110,99,116,105,111,110,40,101,41,123,111,46,105,115,84,114,101,101,78,111,100,101,115,40,101,41,124,124,40,101,61,114,46,110,111,100,101,115,40,99,46,109,97,112,40,101,44,34,105,100,34,41,41,41,44,114,46,98,97,116,99,104,40,41,44,115,40,101,41,44,114,46,101,110,100,40,41,44,116,40,101,41,125,44,101,41,125,41,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,101,108,101,99,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,101,108,101,99,116,97,98,108,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,66,101,116,119,101,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,104,105,115,46,98,97,116,99,104,40,41,59,102,111,114,40,118,97,114,32,110,61,101,46,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,40,41,59,110,46,105,100,33,61,61,116,46,105,100,59,41,110,46,115,101,108,101,99,116,40,41,44,110,61,110,46,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,40,41,59,114,101,116,117,114,110,32,116,104,105,115,46,101,110,100,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,101,108,101,99,116,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,101,108,101,99,116,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,70,105,114,115,116,65,118,97,105,108,97,98,108,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,109,111,100,101,108,46,102,105,108,116,101,114,66,121,40,34,97,118,97,105,108,97,98,108,101,34,41,46,103,101,116,40,48,41,59,114,101,116,117,114,110,32,101,38,38,101,46,115,101,108,101,99,116,40,41,44,101,125,125,44,123,107,101,121,58,34,115,104,105,102,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,104,105,102,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,104,111,119,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,104,111,119,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,104,111,119,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,108,105,99,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,108,105,99,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,102,116,82,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,111,102,116,82,101,109,111,118,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,109,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,111,109,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,114,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,111,114,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,114,116,66,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,111,114,116,66,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,114,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,111,114,116,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,112,108,105,99,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,108,105,99,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,116,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,116,97,116,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,116,97,116,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,116,97,116,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,119,97,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,119,97,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,116,111,65,114,114,97,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,116,111,65,114,114,97,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,116,111,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,116,111,83,116,114,105,110,103,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,117,110,109,117,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,105,115,83,116,114,105,110,103,40,101,41,124,124,99,46,105,115,65,114,114,97,121,40,101,41,63,40,116,104,105,115,46,95,109,117,116,101,100,61,99,46,100,105,102,102,101,114,101,110,99,101,40,116,104,105,115,46,95,109,117,116,101,100,44,99,46,99,97,115,116,65,114,114,97,121,40,101,41,41,44,116,104,105,115,46,95,109,117,116,101,100,46,108,101,110,103,116,104,124,124,40,116,104,105,115,46,95,109,117,116,101,100,61,33,49,41,41,58,116,104,105,115,46,95,109,117,116,101,100,61,33,49,44,116,104,105,115,125,125,44,123,107,101,121,58,34,117,110,115,104,105,102,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,117,110,115,104,105,102,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,118,105,115,105,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,118,105,115,105,98,108,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,93,44,91,123,107,101,121,58,34,105,115,84,114,101,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,119,125,125,44,123,107,101,121,58,34,105,115,84,114,101,101,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,103,125,125,93,41,44,111,125,40,41,125,41,59,10,47,42,32,73,110,115,112,105,114,101,32,84,114,101,101,32,68,79,77,10,32,42,32,64,118,101,114,115,105,111,110,32,52,46,48,46,54,10,32,42,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,104,101,108,105,111,110,51,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,10,32,42,32,64,99,111,112,121,114,105,103,104,116,32,67,111,112,121,114,105,103,104,116,32,50,48,49,53,32,72,101,108,105,111,110,51,44,32,97,110,100,32,111,116,104,101,114,32,99,111,110,116,114,105,98,117,116,111,114,115,10,32,42,32,64,108,105,99,101,110,115,101,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,10,32,42,32,32,32,32,32,32,32,32,32,32,115,101,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,104,101,108,105,111,110,51,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,10,32,42,47,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,116,40,114,101,113,117,105,114,101,40,34,108,111,100,97,115,104,34,41,44,114,101,113,117,105,114,101,40,34,105,110,115,112,105,114,101,45,116,114,101,101,34,41,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,108,111,100,97,115,104,34,44,34,105,110,115,112,105,114,101,45,116,114,101,101,34,93,44,116,41,58,101,46,73,110,115,112,105,114,101,84,114,101,101,68,79,77,61,116,40,101,46,95,44,101,46,73,110,115,112,105,114,101,84,114,101,101,41,125,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,108,44,105,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,105,61,105,38,38,105,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,100,101,102,97,117,108,116,34,41,63,105,46,100,101,102,97,117,108,116,58,105,59,118,97,114,32,109,61,34,36,78,79,95,79,80,34,44,97,61,34,97,32,114,117,110,116,105,109,101,32,101,114,114,111,114,32,111,99,99,117,114,101,100,33,32,85,115,101,32,73,110,102,101,114,110,111,32,105,110,32,100,101,118,101,108,111,112,109,101,110,116,32,101,110,118,105,114,111,110,109,101,110,116,32,116,111,32,102,105,110,100,32,116,104,101,32,101,114,114,111,114,46,34,44,101,61,33,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,124,124,33,119,105,110,100,111,119,46,100,111,99,117,109,101,110,116,41,44,117,61,65,114,114,97,121,46,105,115,65,114,114,97,121,59,102,117,110,99,116,105,111,110,32,112,40,101,41,123,118,97,114,32,116,61,116,121,112,101,111,102,32,101,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,61,116,124,124,34,110,117,109,98,101,114,34,61,61,61,116,125,102,117,110,99,116,105,111,110,32,68,40,101,41,123,114,101,116,117,114,110,32,103,40,101,41,124,124,121,40,101,41,125,102,117,110,99,116,105,111,110,32,102,40,101,41,123,114,101,116,117,114,110,32,121,40,101,41,124,124,33,49,61,61,61,101,124,124,33,48,61,61,61,101,124,124,103,40,101,41,125,102,117,110,99,116,105,111,110,32,95,40,101,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,125,102,117,110,99,116,105,111,110,32,104,40,101,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,125,102,117,110,99,116,105,111,110,32,118,40,101,41,123,114,101,116,117,114,110,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,101,125,102,117,110,99,116,105,111,110,32,121,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,61,101,125,102,117,110,99,116,105,111,110,32,103,40,101,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,101,125,102,117,110,99,116,105,111,110,32,98,40,101,44,116,41,123,118,97,114,32,110,61,123,125,59,105,102,40,101,41,102,111,114,40,118,97,114,32,111,32,105,110,32,101,41,110,91,111,93,61,101,91,111,93,59,105,102,40,116,41,102,111,114,40,118,97,114,32,114,32,105,110,32,116,41,110,91,114,93,61,116,91,114,93,59,114,101,116,117,114,110,32,110,125,118,97,114,32,107,61,34,36,34,59,102,117,110,99,116,105,111,110,32,67,40,101,44,116,44,110,44,111,44,114,44,105,44,97,44,115,41,123,114,101,116,117,114,110,123,99,104,105,108,100,70,108,97,103,115,58,101,44,99,104,105,108,100,114,101,110,58,116,44,99,108,97,115,115,78,97,109,101,58,110,44,100,111,109,58,110,117,108,108,44,102,108,97,103,115,58,111,44,107,101,121,58,118,111,105,100,32,48,61,61,61,114,63,110,117,108,108,58,114,44,112,97,114,101,110,116,86,78,111,100,101,58,110,117,108,108,44,112,114,111,112,115,58,118,111,105,100,32,48,61,61,61,105,63,110,117,108,108,58,105,44,114,101,102,58,118,111,105,100,32,48,61,61,61,97,63,110,117,108,108,58,97,44,116,121,112,101,58,115,125,125,102,117,110,99,116,105,111,110,32,115,40,101,44,116,44,110,44,111,44,114,44,105,44,97,44,115,41,123,118,97,114,32,108,61,118,111,105,100,32,48,61,61,61,114,63,49,58,114,44,100,61,67,40,108,44,111,44,110,44,101,44,97,44,105,44,115,44,116,41,59,114,101,116,117,114,110,32,48,61,61,61,108,38,38,83,40,100,44,100,46,99,104,105,108,100,114,101,110,41,44,100,125,102,117,110,99,116,105,111,110,32,100,40,101,44,116,44,110,44,111,44,114,41,123,48,60,40,50,38,101,41,38,38,40,101,61,116,46,112,114,111,116,111,116,121,112,101,38,38,95,40,116,46,112,114,111,116,111,116,121,112,101,46,114,101,110,100,101,114,41,63,52,58,56,41,59,118,97,114,32,105,61,116,46,100,101,102,97,117,108,116,80,114,111,112,115,59,105,102,40,33,68,40,105,41,41,102,111,114,40,118,97,114,32,97,32,105,110,32,110,124,124,40,110,61,123,125,41,44,105,41,103,40,110,91,97,93,41,38,38,40,110,91,97,93,61,105,91,97,93,41,59,105,102,40,48,60,40,56,38,101,41,41,123,118,97,114,32,115,61,116,46,100,101,102,97,117,108,116,72,111,111,107,115,59,105,102,40,33,68,40,115,41,41,105,102,40,114,41,102,111,114,40,118,97,114,32,108,32,105,110,32,115,41,103,40,114,91,108,93,41,38,38,40,114,91,108,93,61,115,91,108,93,41,59,101,108,115,101,32,114,61,115,125,118,97,114,32,100,61,67,40,49,44,110,117,108,108,44,110,117,108,108,44,101,44,111,44,110,44,114,44,116,41,44,99,61,80,46,99,114,101,97,116,101,86,78,111,100,101,59,114,101,116,117,114,110,32,95,40,99,41,38,38,99,40,100,41,44,100,125,102,117,110,99,116,105,111,110,32,36,40,101,44,116,41,123,114,101,116,117,114,110,32,67,40,49,44,68,40,101,41,63,34,34,58,101,44,110,117,108,108,44,49,54,44,116,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,125,102,117,110,99,116,105,111,110,32,99,40,101,41,123,118,97,114,32,116,61,101,46,112,114,111,112,115,59,105,102,40,116,41,123,118,97,114,32,110,61,101,46,102,108,97,103,115,59,52,56,49,38,110,38,38,40,118,111,105,100,32,48,33,61,61,116,46,99,104,105,108,100,114,101,110,38,38,68,40,101,46,99,104,105,108,100,114,101,110,41,38,38,83,40,101,44,116,46,99,104,105,108,100,114,101,110,41,44,118,111,105,100,32,48,33,61,61,116,46,99,108,97,115,115,78,97,109,101,38,38,40,101,46,99,108,97,115,115,78,97,109,101,61,116,46,99,108,97,115,115,78,97,109,101,124,124,110,117,108,108,44,116,46,99,108,97,115,115,78,97,109,101,61,118,111,105,100,32,48,41,41,44,118,111,105,100,32,48,33,61,61,116,46,107,101,121,38,38,40,101,46,107,101,121,61,116,46,107,101,121,44,116,46,107,101,121,61,118,111,105,100,32,48,41,44,118,111,105,100,32,48,33,61,61,116,46,114,101,102,38,38,40,101,46,114,101,102,61,56,38,110,63,98,40,101,46,114,101,102,44,116,46,114,101,102,41,58,116,46,114,101,102,44,116,46,114,101,102,61,118,111,105,100,32,48,41,125,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,119,40,101,41,123,118,97,114,32,116,44,110,61,101,46,102,108,97,103,115,59,105,102,40,49,52,38,110,41,123,118,97,114,32,111,44,114,61,101,46,112,114,111,112,115,59,105,102,40,33,121,40,114,41,41,102,111,114,40,118,97,114,32,105,32,105,110,32,111,61,123,125,44,114,41,111,91,105,93,61,114,91,105,93,59,116,61,100,40,110,44,101,46,116,121,112,101,44,111,44,101,46,107,101,121,44,101,46,114,101,102,41,125,101,108,115,101,32,52,56,49,38,110,63,116,61,115,40,110,44,101,46,116,121,112,101,44,101,46,99,108,97,115,115,78,97,109,101,44,101,46,99,104,105,108,100,114,101,110,44,101,46,99,104,105,108,100,70,108,97,103,115,44,101,46,112,114,111,112,115,44,101,46,107,101,121,44,101,46,114,101,102,41,58,49,54,38,110,63,116,61,36,40,101,46,99,104,105,108,100,114,101,110,44,101,46,107,101,121,41,58,49,48,50,52,38,110,38,38,40,116,61,101,41,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,120,40,41,123,114,101,116,117,114,110,32,36,40,34,34,44,110,117,108,108,41,125,102,117,110,99,116,105,111,110,32,78,40,101,44,116,44,110,44,111,41,123,102,111,114,40,118,97,114,32,114,61,101,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,123,118,97,114,32,105,61,101,91,110,93,59,105,102,40,33,102,40,105,41,41,123,118,97,114,32,97,61,111,43,107,43,110,59,105,102,40,117,40,105,41,41,78,40,105,44,116,44,48,44,97,41,59,101,108,115,101,123,105,102,40,112,40,105,41,41,105,61,36,40,105,44,97,41,59,101,108,115,101,123,118,97,114,32,115,61,105,46,107,101,121,44,108,61,104,40,115,41,38,38,115,91,48,93,61,61,61,107,59,121,40,105,46,100,111,109,41,38,38,33,108,124,124,40,105,61,119,40,105,41,41,44,121,40,115,41,124,124,108,63,105,46,107,101,121,61,97,58,105,46,107,101,121,61,111,43,115,125,116,46,112,117,115,104,40,105,41,125,125,125,125,102,117,110,99,116,105,111,110,32,83,40,101,44,116,41,123,118,97,114,32,110,44,111,61,49,59,105,102,40,102,40,116,41,41,110,61,116,59,101,108,115,101,32,105,102,40,104,40,116,41,41,111,61,50,44,110,61,36,40,116,41,59,101,108,115,101,32,105,102,40,118,40,116,41,41,111,61,50,44,110,61,36,40,116,43,34,34,41,59,101,108,115,101,32,105,102,40,117,40,116,41,41,123,118,97,114,32,114,61,116,46,108,101,110,103,116,104,59,105,102,40,48,61,61,61,114,41,110,61,110,117,108,108,44,111,61,49,59,101,108,115,101,123,40,79,98,106,101,99,116,46,105,115,70,114,111,122,101,110,40,116,41,124,124,33,48,61,61,61,116,46,36,41,38,38,40,116,61,116,46,115,108,105,99,101,40,41,41,44,111,61,56,59,102,111,114,40,118,97,114,32,105,61,48,59,105,60,114,59,105,43,43,41,123,118,97,114,32,97,61,116,91,105,93,59,105,102,40,102,40,97,41,124,124,117,40,97,41,41,123,78,40,116,44,110,61,110,124,124,116,46,115,108,105,99,101,40,48,44,105,41,44,105,44,34,34,41,59,98,114,101,97,107,125,105,102,40,112,40,97,41,41,40,110,61,110,124,124,116,46,115,108,105,99,101,40,48,44,105,41,41,46,112,117,115,104,40,36,40,97,44,107,43,105,41,41,59,101,108,115,101,123,118,97,114,32,115,61,97,46,107,101,121,44,108,61,121,40,97,46,100,111,109,41,44,100,61,121,40,115,41,44,99,61,33,100,38,38,115,91,48,93,61,61,61,107,59,33,108,124,124,100,124,124,99,63,40,110,61,110,124,124,116,46,115,108,105,99,101,40,48,44,105,41,44,108,38,38,33,99,124,124,40,97,61,119,40,97,41,41,44,40,100,124,124,99,41,38,38,40,97,46,107,101,121,61,107,43,105,41,44,110,46,112,117,115,104,40,97,41,41,58,110,38,38,110,46,112,117,115,104,40,97,41,125,125,40,110,61,110,124,124,116,41,46,36,61,33,48,125,125,101,108,115,101,32,121,40,40,110,61,116,41,46,100,111,109,41,124,124,40,110,61,119,40,116,41,41,44,111,61,50,59,114,101,116,117,114,110,32,101,46,99,104,105,108,100,114,101,110,61,110,44,101,46,99,104,105,108,100,70,108,97,103,115,61,111,44,101,125,118,97,114,32,80,61,123,97,102,116,101,114,82,101,110,100,101,114,58,110,117,108,108,44,98,101,102,111,114,101,82,101,110,100,101,114,58,110,117,108,108,44,99,114,101,97,116,101,86,78,111,100,101,58,110,117,108,108,44,114,101,110,100,101,114,67,111,109,112,108,101,116,101,58,110,117,108,108,125,44,116,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,49,57,57,57,47,120,108,105,110,107,34,44,110,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,88,77,76,47,49,57,57,56,47,110,97,109,101,115,112,97,99,101,34,44,79,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,44,84,61,123,34,120,108,105,110,107,58,97,99,116,117,97,116,101,34,58,116,44,34,120,108,105,110,107,58,97,114,99,114,111,108,101,34,58,116,44,34,120,108,105,110,107,58,104,114,101,102,34,58,116,44,34,120,108,105,110,107,58,114,111,108,101,34,58,116,44,34,120,108,105,110,107,58,115,104,111,119,34,58,116,44,34,120,108,105,110,107,58,116,105,116,108,101,34,58,116,44,34,120,108,105,110,107,58,116,121,112,101,34,58,116,44,34,120,109,108,58,98,97,115,101,34,58,110,44,34,120,109,108,58,108,97,110,103,34,58,110,44,34,120,109,108,58,115,112,97,99,101,34,58,110,125,44,76,61,123,125,44,85,61,91,93,59,102,117,110,99,116,105,111,110,32,77,40,101,44,116,41,123,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,41,125,102,117,110,99,116,105,111,110,32,69,40,101,44,116,44,110,41,123,68,40,110,41,63,77,40,101,44,116,41,58,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,70,40,101,44,116,44,110,41,123,101,46,114,101,112,108,97,99,101,67,104,105,108,100,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,73,40,101,41,123,102,111,114,40,118,97,114,32,116,59,118,111,105,100,32,48,33,61,61,40,116,61,101,46,115,104,105,102,116,40,41,41,59,41,116,40,41,125,118,97,114,32,65,61,123,125,44,86,61,123,125,59,102,117,110,99,116,105,111,110,32,82,40,101,44,116,44,110,41,123,118,97,114,32,114,44,111,44,105,61,65,91,101,93,44,97,61,110,46,36,69,86,59,116,63,40,105,124,124,40,86,91,101,93,61,40,114,61,101,44,111,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,116,121,112,101,44,110,61,34,99,108,105,99,107,34,61,61,61,116,124,124,34,100,98,108,99,108,105,99,107,34,61,61,61,116,59,105,102,40,110,38,38,48,33,61,61,101,46,98,117,116,116,111,110,41,114,101,116,117,114,110,32,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,33,49,59,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,61,66,59,118,97,114,32,111,61,123,100,111,109,58,100,111,99,117,109,101,110,116,125,59,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,34,99,117,114,114,101,110,116,84,97,114,103,101,116,34,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,46,100,111,109,125,125,41,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,61,116,59,102,111,114,40,59,33,121,40,105,41,59,41,123,105,102,40,110,38,38,105,46,100,105,115,97,98,108,101,100,41,114,101,116,117,114,110,59,118,97,114,32,97,61,105,46,36,69,86,59,105,102,40,97,41,123,118,97,114,32,115,61,97,91,111,93,59,105,102,40,115,38,38,40,114,46,100,111,109,61,105,44,115,46,101,118,101,110,116,63,115,46,101,118,101,110,116,40,115,46,100,97,116,97,44,101,41,58,115,40,101,41,44,101,46,99,97,110,99,101,108,66,117,98,98,108,101,41,41,114,101,116,117,114,110,125,105,61,105,46,112,97,114,101,110,116,78,111,100,101,125,125,40,101,44,101,46,116,97,114,103,101,116,44,110,44,114,44,111,41,125,44,100,111,99,117,109,101,110,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,106,40,114,41,44,111,41,44,111,41,44,65,91,101,93,61,48,41,44,97,124,124,40,97,61,110,46,36,69,86,61,123,125,41,44,97,91,101,93,124,124,65,91,101,93,43,43,44,97,91,101,93,61,116,41,58,97,38,38,97,91,101,93,38,38,40,65,91,101,93,45,45,44,49,61,61,61,105,38,38,40,100,111,99,117,109,101,110,116,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,106,40,101,41,44,86,91,101,93,41,44,86,91,101,93,61,110,117,108,108,41,44,97,91,101,93,61,116,41,125,102,117,110,99,116,105,111,110,32,106,40,101,41,123,114,101,116,117,114,110,32,101,46,115,117,98,115,116,114,40,50,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,102,117,110,99,116,105,111,110,32,66,40,41,123,116,104,105,115,46,99,97,110,99,101,108,66,117,98,98,108,101,61,33,48,44,116,104,105,115,46,105,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,124,124,116,104,105,115,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,87,40,101,44,116,41,123,118,97,114,32,110,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,34,41,59,114,101,116,117,114,110,32,110,46,105,110,110,101,114,72,84,77,76,61,116,44,110,46,105,110,110,101,114,72,84,77,76,61,61,61,101,46,105,110,110,101,114,72,84,77,76,125,102,117,110,99,116,105,111,110,32,72,40,101,44,116,44,110,41,123,105,102,40,101,91,116,93,41,123,118,97,114,32,111,61,101,91,116,93,59,111,46,101,118,101,110,116,63,111,46,101,118,101,110,116,40,111,46,100,97,116,97,44,110,41,58,111,40,110,41,125,101,108,115,101,123,118,97,114,32,114,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,101,91,114,93,38,38,101,91,114,93,40,110,41,125,125,102,117,110,99,116,105,111,110,32,111,40,115,44,108,41,123,118,97,114,32,101,61,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,118,97,114,32,116,61,116,104,105,115,46,36,86,59,105,102,40,116,41,123,118,97,114,32,110,61,116,46,112,114,111,112,115,124,124,76,44,111,61,116,46,100,111,109,59,105,102,40,104,40,115,41,41,72,40,110,44,115,44,101,41,59,101,108,115,101,32,102,111,114,40,118,97,114,32,114,61,48,59,114,60,115,46,108,101,110,103,116,104,59,114,43,43,41,72,40,110,44,115,91,114,93,44,101,41,59,105,102,40,95,40,108,41,41,123,118,97,114,32,105,61,116,104,105,115,46,36,86,44,97,61,105,46,112,114,111,112,115,124,124,76,59,108,40,97,44,111,44,33,49,44,105,41,125,125,125,59,114,101,116,117,114,110,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,34,119,114,97,112,112,101,100,34,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,49,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,118,97,108,117,101,58,33,48,44,119,114,105,116,97,98,108,101,58,33,49,125,41,44,101,125,102,117,110,99,116,105,111,110,32,113,40,101,41,123,114,101,116,117,114,110,34,99,104,101,99,107,98,111,120,34,61,61,61,101,124,124,34,114,97,100,105,111,34,61,61,61,101,125,118,97,114,32,75,61,111,40,34,111,110,73,110,112,117,116,34,44,122,41,44,88,61,111,40,91,34,111,110,67,108,105,99,107,34,44,34,111,110,67,104,97,110,103,101,34,93,44,122,41,59,102,117,110,99,116,105,111,110,32,81,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,122,40,101,44,116,41,123,118,97,114,32,110,61,101,46,116,121,112,101,44,111,61,101,46,118,97,108,117,101,44,114,61,101,46,99,104,101,99,107,101,100,44,105,61,101,46,109,117,108,116,105,112,108,101,44,97,61,101,46,100,101,102,97,117,108,116,86,97,108,117,101,44,115,61,33,68,40,111,41,59,110,38,38,110,33,61,61,116,46,116,121,112,101,38,38,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,110,41,44,68,40,105,41,124,124,105,61,61,61,116,46,109,117,108,116,105,112,108,101,124,124,40,116,46,109,117,108,116,105,112,108,101,61,105,41,44,68,40,97,41,124,124,115,124,124,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,97,43,34,34,41,44,113,40,110,41,63,40,115,38,38,40,116,46,118,97,108,117,101,61,111,41,44,68,40,114,41,124,124,40,116,46,99,104,101,99,107,101,100,61,114,41,41,58,115,38,38,116,46,118,97,108,117,101,33,61,61,111,63,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,111,44,116,46,118,97,108,117,101,61,111,41,58,68,40,114,41,124,124,40,116,46,99,104,101,99,107,101,100,61,114,41,125,102,117,110,99,116,105,111,110,32,71,40,101,44,116,41,123,105,102,40,34,111,112,116,103,114,111,117,112,34,61,61,61,101,46,116,121,112,101,41,123,118,97,114,32,110,61,101,46,99,104,105,108,100,114,101,110,44,111,61,101,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,49,50,38,111,41,102,111,114,40,118,97,114,32,114,61,48,44,105,61,110,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,89,40,110,91,114,93,44,116,41,59,101,108,115,101,32,50,61,61,61,111,38,38,89,40,110,44,116,41,125,101,108,115,101,32,89,40,101,44,116,41,125,102,117,110,99,116,105,111,110,32,89,40,101,44,116,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,124,124,76,44,111,61,101,46,100,111,109,59,111,46,118,97,108,117,101,61,110,46,118,97,108,117,101,44,117,40,116,41,38,38,45,49,33,61,61,116,46,105,110,100,101,120,79,102,40,110,46,118,97,108,117,101,41,124,124,110,46,118,97,108,117,101,61,61,61,116,63,111,46,115,101,108,101,99,116,101,100,61,33,48,58,68,40,116,41,38,38,68,40,110,46,115,101,108,101,99,116,101,100,41,124,124,40,111,46,115,101,108,101,99,116,101,100,61,110,46,115,101,108,101,99,116,101,100,124,124,33,49,41,125,81,46,119,114,97,112,112,101,100,61,33,48,59,118,97,114,32,74,61,111,40,34,111,110,67,104,97,110,103,101,34,44,90,41,59,102,117,110,99,116,105,111,110,32,90,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,66,111,111,108,101,97,110,40,101,46,109,117,108,116,105,112,108,101,41,59,68,40,101,46,109,117,108,116,105,112,108,101,41,124,124,114,61,61,61,116,46,109,117,108,116,105,112,108,101,124,124,40,116,46,109,117,108,116,105,112,108,101,61,114,41,59,118,97,114,32,105,61,111,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,48,61,61,40,49,38,105,41,41,123,118,97,114,32,97,61,111,46,99,104,105,108,100,114,101,110,44,115,61,101,46,118,97,108,117,101,59,105,102,40,110,38,38,68,40,115,41,38,38,40,115,61,101,46,100,101,102,97,117,108,116,86,97,108,117,101,41,44,49,50,38,105,41,102,111,114,40,118,97,114,32,108,61,48,44,100,61,97,46,108,101,110,103,116,104,59,108,60,100,59,108,43,43,41,71,40,97,91,108,93,44,115,41,59,101,108,115,101,32,50,61,61,61,105,38,38,71,40,97,44,115,41,125,125,118,97,114,32,101,101,61,111,40,34,111,110,73,110,112,117,116,34,44,110,101,41,44,116,101,61,111,40,34,111,110,67,104,97,110,103,101,34,41,59,102,117,110,99,116,105,111,110,32,110,101,40,101,44,116,44,110,41,123,118,97,114,32,111,61,101,46,118,97,108,117,101,44,114,61,116,46,118,97,108,117,101,59,105,102,40,68,40,111,41,41,123,105,102,40,110,41,123,118,97,114,32,105,61,101,46,100,101,102,97,117,108,116,86,97,108,117,101,59,68,40,105,41,124,124,105,61,61,61,114,124,124,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,105,44,116,46,118,97,108,117,101,61,105,41,125,125,101,108,115,101,32,114,33,61,61,111,38,38,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,111,44,116,46,118,97,108,117,101,61,111,41,125,102,117,110,99,116,105,111,110,32,111,101,40,101,44,116,44,110,44,111,44,114,44,105,41,123,54,52,38,101,63,122,40,111,44,110,41,58,50,53,54,38,101,63,90,40,111,44,110,44,114,44,116,41,58,49,50,56,38,101,38,38,110,101,40,111,44,110,44,114,41,44,105,38,38,40,110,46,36,86,61,116,41,125,102,117,110,99,116,105,111,110,32,114,101,40,101,44,116,44,110,41,123,118,97,114,32,111,44,114,44,105,59,54,52,38,101,63,40,105,61,116,44,113,40,110,46,116,121,112,101,41,63,40,105,46,111,110,99,104,97,110,103,101,61,88,44,105,46,111,110,99,108,105,99,107,61,81,41,58,105,46,111,110,105,110,112,117,116,61,75,41,58,50,53,54,38,101,63,116,46,111,110,99,104,97,110,103,101,61,74,58,49,50,56,38,101,38,38,40,114,61,110,44,40,111,61,116,41,46,111,110,105,110,112,117,116,61,101,101,44,114,46,111,110,67,104,97,110,103,101,38,38,40,111,46,111,110,99,104,97,110,103,101,61,116,101,41,41,125,102,117,110,99,116,105,111,110,32,105,101,40,101,41,123,114,101,116,117,114,110,32,101,46,116,121,112,101,38,38,113,40,101,46,116,121,112,101,41,63,33,68,40,101,46,99,104,101,99,107,101,100,41,58,33,68,40,101,46,118,97,108,117,101,41,125,102,117,110,99,116,105,111,110,32,97,101,40,101,44,116,41,123,118,97,114,32,110,44,111,59,115,101,40,101,41,44,116,38,38,101,46,100,111,109,38,38,40,110,61,116,44,111,61,101,46,100,111,109,44,110,46,114,101,109,111,118,101,67,104,105,108,100,40,111,41,44,101,46,100,111,109,61,110,117,108,108,41,125,102,117,110,99,116,105,111,110,32,115,101,40,101,41,123,118,97,114,32,116,61,101,46,102,108,97,103,115,59,105,102,40,52,56,49,38,116,41,123,118,97,114,32,110,61,101,46,114,101,102,44,111,61,101,46,112,114,111,112,115,59,95,40,110,41,38,38,110,40,110,117,108,108,41,59,118,97,114,32,114,61,101,46,99,104,105,108,100,114,101,110,44,105,61,101,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,49,50,38,105,63,108,101,40,114,41,58,50,61,61,61,105,38,38,115,101,40,114,41,44,33,121,40,111,41,41,102,111,114,40,118,97,114,32,97,32,105,110,32,111,41,115,119,105,116,99,104,40,97,41,123,99,97,115,101,34,111,110,67,108,105,99,107,34,58,99,97,115,101,34,111,110,68,98,108,67,108,105,99,107,34,58,99,97,115,101,34,111,110,70,111,99,117,115,73,110,34,58,99,97,115,101,34,111,110,70,111,99,117,115,79,117,116,34,58,99,97,115,101,34,111,110,75,101,121,68,111,119,110,34,58,99,97,115,101,34,111,110,75,101,121,80,114,101,115,115,34,58,99,97,115,101,34,111,110,75,101,121,85,112,34,58,99,97,115,101,34,111,110,77,111,117,115,101,68,111,119,110,34,58,99,97,115,101,34,111,110,77,111,117,115,101,77,111,118,101,34,58,99,97,115,101,34,111,110,77,111,117,115,101,85,112,34,58,99,97,115,101,34,111,110,83,117,98,109,105,116,34,58,99,97,115,101,34,111,110,84,111,117,99,104,69,110,100,34,58,99,97,115,101,34,111,110,84,111,117,99,104,77,111,118,101,34,58,99,97,115,101,34,111,110,84,111,117,99,104,83,116,97,114,116,34,58,82,40,97,44,110,117,108,108,44,101,46,100,111,109,41,125,125,101,108,115,101,123,118,97,114,32,115,61,101,46,99,104,105,108,100,114,101,110,59,105,102,40,115,41,105,102,40,49,52,38,116,41,123,118,97,114,32,108,61,101,46,114,101,102,59,52,38,116,63,40,95,40,115,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,41,38,38,115,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,40,41,44,95,40,108,41,38,38,108,40,110,117,108,108,41,44,115,46,36,85,78,61,33,48,44,115,46,36,76,73,38,38,115,101,40,115,46,36,76,73,41,41,58,40,33,68,40,108,41,38,38,95,40,108,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,41,38,38,108,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,40,101,46,100,111,109,44,101,46,112,114,111,112,115,124,124,76,41,44,115,101,40,115,41,41,125,101,108,115,101,32,49,48,50,52,38,116,38,38,97,101,40,115,44,101,46,116,121,112,101,41,125,125,102,117,110,99,116,105,111,110,32,108,101,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,44,110,61,101,46,108,101,110,103,116,104,59,116,60,110,59,116,43,43,41,115,101,40,101,91,116,93,41,125,102,117,110,99,116,105,111,110,32,100,101,40,101,44,116,41,123,108,101,40,116,41,44,101,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,125,102,117,110,99,116,105,111,110,32,99,101,40,101,44,116,41,123,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,97,110,105,109,97,116,105,111,110,73,116,101,114,97,116,105,111,110,67,111,117,110,116,34,58,99,97,115,101,34,98,111,114,100,101,114,73,109,97,103,101,79,117,116,115,101,116,34,58,99,97,115,101,34,98,111,114,100,101,114,73,109,97,103,101,83,108,105,99,101,34,58,99,97,115,101,34,98,111,114,100,101,114,73,109,97,103,101,87,105,100,116,104,34,58,99,97,115,101,34,98,111,120,70,108,101,120,34,58,99,97,115,101,34,98,111,120,70,108,101,120,71,114,111,117,112,34,58,99,97,115,101,34,98,111,120,79,114,100,105,110,97,108,71,114,111,117,112,34,58,99,97,115,101,34,99,111,108,117,109,110,67,111,117,110,116,34,58,99,97,115,101,34,102,105,108,108,79,112,97,99,105,116,121,34,58,99,97,115,101,34,102,108,101,120,34,58,99,97,115,101,34,102,108,101,120,71,114,111,119,34,58,99,97,115,101,34,102,108,101,120,78,101,103,97,116,105,118,101,34,58,99,97,115,101,34,102,108,101,120,79,114,100,101,114,34,58,99,97,115,101,34,102,108,101,120,80,111,115,105,116,105,118,101,34,58,99,97,115,101,34,102,108,101,120,83,104,114,105,110,107,34,58,99,97,115,101,34,102,108,111,111,100,79,112,97,99,105,116,121,34,58,99,97,115,101,34,102,111,110,116,87,101,105,103,104,116,34,58,99,97,115,101,34,103,114,105,100,67,111,108,117,109,110,34,58,99,97,115,101,34,103,114,105,100,82,111,119,34,58,99,97,115,101,34,108,105,110,101,67,108,97,109,112,34,58,99,97,115,101,34,108,105,110,101,72,101,105,103,104,116,34,58,99,97,115,101,34,111,112,97,99,105,116,121,34,58,99,97,115,101,34,111,114,100,101,114,34,58,99,97,115,101,34,111,114,112,104,97,110,115,34,58,99,97,115,101,34,115,116,111,112,79,112,97,99,105,116,121,34,58,99,97,115,101,34,115,116,114,111,107,101,68,97,115,104,97,114,114,97,121,34,58,99,97,115,101,34,115,116,114,111,107,101,68,97,115,104,111,102,102,115,101,116,34,58,99,97,115,101,34,115,116,114,111,107,101,77,105,116,101,114,108,105,109,105,116,34,58,99,97,115,101,34,115,116,114,111,107,101,79,112,97,99,105,116,121,34,58,99,97,115,101,34,115,116,114,111,107,101,87,105,100,116,104,34,58,99,97,115,101,34,116,97,98,83,105,122,101,34,58,99,97,115,101,34,119,105,100,111,119,115,34,58,99,97,115,101,34,122,73,110,100,101,120,34,58,99,97,115,101,34,122,111,111,109,34,58,114,101,116,117,114,110,32,116,59,100,101,102,97,117,108,116,58,114,101,116,117,114,110,32,116,43,34,112,120,34,125,125,102,117,110,99,116,105,111,110,32,117,101,40,101,44,116,44,110,44,111,44,114,44,105,44,97,41,123,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,111,110,67,108,105,99,107,34,58,99,97,115,101,34,111,110,68,98,108,67,108,105,99,107,34,58,99,97,115,101,34,111,110,70,111,99,117,115,73,110,34,58,99,97,115,101,34,111,110,70,111,99,117,115,79,117,116,34,58,99,97,115,101,34,111,110,75,101,121,68,111,119,110,34,58,99,97,115,101,34,111,110,75,101,121,80,114,101,115,115,34,58,99,97,115,101,34,111,110,75,101,121,85,112,34,58,99,97,115,101,34,111,110,77,111,117,115,101,68,111,119,110,34,58,99,97,115,101,34,111,110,77,111,117,115,101,77,111,118,101,34,58,99,97,115,101,34,111,110,77,111,117,115,101,85,112,34,58,99,97,115,101,34,111,110,83,117,98,109,105,116,34,58,99,97,115,101,34,111,110,84,111,117,99,104,69,110,100,34,58,99,97,115,101,34,111,110,84,111,117,99,104,77,111,118,101,34,58,99,97,115,101,34,111,110,84,111,117,99,104,83,116,97,114,116,34,58,82,40,101,44,110,44,111,41,59,98,114,101,97,107,59,99,97,115,101,34,99,104,105,108,100,114,101,110,34,58,99,97,115,101,34,99,104,105,108,100,114,101,110,84,121,112,101,34,58,99,97,115,101,34,99,108,97,115,115,78,97,109,101,34,58,99,97,115,101,34,100,101,102,97,117,108,116,86,97,108,117,101,34,58,99,97,115,101,34,107,101,121,34,58,99,97,115,101,34,109,117,108,116,105,112,108,101,34,58,99,97,115,101,34,114,101,102,34,58,98,114,101,97,107,59,99,97,115,101,34,97,117,116,111,70,111,99,117,115,34,58,111,46,97,117,116,111,102,111,99,117,115,61,33,33,110,59,98,114,101,97,107,59,99,97,115,101,34,97,108,108,111,119,102,117,108,108,115,99,114,101,101,110,34,58,99,97,115,101,34,97,117,116,111,112,108,97,121,34,58,99,97,115,101,34,99,97,112,116,117,114,101,34,58,99,97,115,101,34,99,104,101,99,107,101,100,34,58,99,97,115,101,34,99,111,110,116,114,111,108,115,34,58,99,97,115,101,34,100,101,102,97,117,108,116,34,58,99,97,115,101,34,100,105,115,97,98,108,101,100,34,58,99,97,115,101,34,104,105,100,100,101,110,34,58,99,97,115,101,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,58,99,97,115,101,34,108,111,111,112,34,58,99,97,115,101,34,109,117,116,101,100,34,58,99,97,115,101,34,110,111,118,97,108,105,100,97,116,101,34,58,99,97,115,101,34,111,112,101,110,34,58,99,97,115,101,34,114,101,97,100,79,110,108,121,34,58,99,97,115,101,34,114,101,113,117,105,114,101,100,34,58,99,97,115,101,34,114,101,118,101,114,115,101,100,34,58,99,97,115,101,34,115,99,111,112,101,100,34,58,99,97,115,101,34,115,101,97,109,108,101,115,115,34,58,99,97,115,101,34,115,101,108,101,99,116,101,100,34,58,111,91,101,93,61,33,33,110,59,98,114,101,97,107,59,99,97,115,101,34,100,101,102,97,117,108,116,67,104,101,99,107,101,100,34,58,99,97,115,101,34,118,97,108,117,101,34,58,99,97,115,101,34,118,111,108,117,109,101,34,58,105,102,40,105,38,38,34,118,97,108,117,101,34,61,61,61,101,41,114,101,116,117,114,110,59,118,97,114,32,115,61,68,40,110,41,63,34,34,58,110,59,111,91,101,93,33,61,61,115,38,38,40,111,91,101,93,61,115,41,59,98,114,101,97,107,59,99,97,115,101,34,100,97,110,103,101,114,111,117,115,108,121,83,101,116,73,110,110,101,114,72,84,77,76,34,58,118,97,114,32,108,61,116,38,38,116,46,95,95,104,116,109,108,124,124,34,34,44,100,61,110,38,38,110,46,95,95,104,116,109,108,124,124,34,34,59,108,33,61,61,100,38,38,40,68,40,100,41,124,124,87,40,111,44,100,41,124,124,40,121,40,97,41,124,124,40,49,50,38,97,46,99,104,105,108,100,70,108,97,103,115,63,108,101,40,97,46,99,104,105,108,100,114,101,110,41,58,50,61,61,61,97,46,99,104,105,108,100,70,108,97,103,115,38,38,115,101,40,97,46,99,104,105,108,100,114,101,110,41,44,97,46,99,104,105,108,100,114,101,110,61,110,117,108,108,44,97,46,99,104,105,108,100,70,108,97,103,115,61,49,41,44,111,46,105,110,110,101,114,72,84,77,76,61,100,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,34,111,34,61,61,61,101,91,48,93,38,38,34,110,34,61,61,61,101,91,49,93,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,44,105,44,97,61,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,105,102,40,95,40,110,41,124,124,68,40,110,41,41,123,118,97,114,32,115,61,111,91,97,93,59,115,38,38,115,46,119,114,97,112,112,101,100,124,124,40,111,91,97,93,61,110,41,125,101,108,115,101,123,118,97,114,32,108,61,110,46,101,118,101,110,116,59,108,38,38,95,40,108,41,38,38,40,111,91,97,93,61,40,114,61,108,44,105,61,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,40,105,46,100,97,116,97,44,101,41,125,41,41,125,125,40,101,44,48,44,110,44,111,41,58,68,40,110,41,63,111,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,101,41,58,34,115,116,121,108,101,34,61,61,61,101,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,111,44,114,44,105,61,110,46,115,116,121,108,101,59,105,102,40,104,40,116,41,41,105,46,99,115,115,84,101,120,116,61,116,59,101,108,115,101,32,105,102,40,68,40,101,41,124,124,104,40,101,41,41,102,111,114,40,111,32,105,110,32,116,41,114,61,116,91,111,93,44,105,91,111,93,61,118,40,114,41,63,99,101,40,111,44,114,41,58,114,59,101,108,115,101,123,102,111,114,40,111,32,105,110,32,116,41,40,114,61,116,91,111,93,41,33,61,61,101,91,111,93,38,38,40,105,91,111,93,61,118,40,114,41,63,99,101,40,111,44,114,41,58,114,41,59,102,111,114,40,111,32,105,110,32,101,41,68,40,116,91,111,93,41,38,38,40,105,91,111,93,61,34,34,41,125,125,40,116,44,110,44,111,41,58,114,38,38,84,91,101,93,63,111,46,115,101,116,65,116,116,114,105,98,117,116,101,78,83,40,84,91,101,93,44,101,44,110,41,58,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,101,44,110,41,125,125,102,117,110,99,116,105,111,110,32,112,101,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,61,33,49,44,97,61,48,60,40,52,52,56,38,116,41,59,102,111,114,40,118,97,114,32,115,32,105,110,32,97,38,38,40,105,61,105,101,40,110,41,41,38,38,114,101,40,116,44,111,44,110,41,44,110,41,117,101,40,115,44,110,117,108,108,44,110,91,115,93,44,111,44,114,44,105,44,110,117,108,108,41,59,97,38,38,111,101,40,116,44,101,44,111,44,110,44,33,48,44,105,41,125,102,117,110,99,116,105,111,110,32,102,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,110,101,119,32,116,40,110,44,111,41,59,105,102,40,40,101,46,99,104,105,108,100,114,101,110,61,114,41,46,36,86,61,101,44,114,46,36,66,83,61,33,49,44,114,46,99,111,110,116,101,120,116,61,111,44,114,46,112,114,111,112,115,61,61,61,76,38,38,40,114,46,112,114,111,112,115,61,110,41,44,114,46,36,85,78,61,33,49,44,95,40,114,46,99,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,41,41,123,105,102,40,114,46,36,66,82,61,33,48,44,114,46,99,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,40,41,44,114,46,36,80,83,83,41,123,118,97,114,32,105,61,114,46,115,116,97,116,101,44,97,61,114,46,36,80,83,59,105,102,40,121,40,105,41,41,114,46,115,116,97,116,101,61,97,59,101,108,115,101,32,102,111,114,40,118,97,114,32,115,32,105,110,32,97,41,105,91,115,93,61,97,91,115,93,59,114,46,36,80,83,83,61,33,49,44,114,46,36,80,83,61,110,117,108,108,125,114,46,36,66,82,61,33,49,125,95,40,80,46,98,101,102,111,114,101,82,101,110,100,101,114,41,38,38,80,46,98,101,102,111,114,101,82,101,110,100,101,114,40,114,41,59,118,97,114,32,108,44,100,61,104,101,40,114,46,114,101,110,100,101,114,40,110,44,114,46,115,116,97,116,101,44,111,41,44,101,41,59,114,101,116,117,114,110,32,95,40,114,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,41,38,38,40,108,61,114,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,40,41,41,44,68,40,108,41,63,114,46,36,67,88,61,111,58,114,46,36,67,88,61,98,40,111,44,108,41,44,95,40,80,46,97,102,116,101,114,82,101,110,100,101,114,41,38,38,80,46,97,102,116,101,114,82,101,110,100,101,114,40,114,41,44,114,46,36,76,73,61,100,44,114,125,102,117,110,99,116,105,111,110,32,104,101,40,101,44,116,41,123,114,101,116,117,114,110,32,102,40,101,41,63,101,61,120,40,41,58,112,40,101,41,63,101,61,36,40,101,44,110,117,108,108,41,58,40,101,46,100,111,109,38,38,40,101,61,119,40,101,41,41,44,49,52,38,101,46,102,108,97,103,115,38,38,40,101,46,112,97,114,101,110,116,86,78,111,100,101,61,116,41,41,44,101,125,102,117,110,99,116,105,111,110,32,118,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,101,46,102,108,97,103,115,59,114,101,116,117,114,110,32,52,56,49,38,114,63,109,101,40,101,44,116,44,110,44,111,41,58,49,52,38,114,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,44,97,61,101,46,116,121,112,101,44,115,61,101,46,112,114,111,112,115,124,124,76,44,108,61,101,46,114,101,102,59,105,102,40,114,41,123,118,97,114,32,100,61,102,101,40,101,44,97,44,115,44,110,41,59,101,46,100,111,109,61,105,61,118,101,40,100,46,36,76,73,44,110,117,108,108,44,100,46,36,67,88,44,111,41,44,98,101,40,101,44,108,44,100,41,44,100,46,36,85,80,68,61,33,49,125,101,108,115,101,123,118,97,114,32,99,61,104,101,40,97,40,115,44,110,41,44,101,41,59,101,46,99,104,105,108,100,114,101,110,61,99,44,101,46,100,111,109,61,105,61,118,101,40,99,44,110,117,108,108,44,110,44,111,41,44,107,101,40,115,44,108,44,105,41,125,121,40,116,41,124,124,77,40,116,44,105,41,59,114,101,116,117,114,110,32,105,125,40,101,44,116,44,110,44,111,44,48,60,40,52,38,114,41,41,58,53,49,50,38,114,124,124,49,54,38,114,63,103,101,40,101,44,116,41,58,49,48,50,52,38,114,63,40,118,101,40,101,46,99,104,105,108,100,114,101,110,44,101,46,116,121,112,101,44,110,44,33,49,41,44,101,46,100,111,109,61,103,101,40,120,40,41,44,116,41,41,58,118,111,105,100,32,48,125,102,117,110,99,116,105,111,110,32,103,101,40,101,44,116,41,123,118,97,114,32,110,61,101,46,100,111,109,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,101,46,99,104,105,108,100,114,101,110,41,59,114,101,116,117,114,110,32,121,40,116,41,124,124,77,40,116,44,110,41,44,110,125,102,117,110,99,116,105,111,110,32,109,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,101,46,102,108,97,103,115,44,105,61,101,46,99,104,105,108,100,114,101,110,44,97,61,101,46,112,114,111,112,115,44,115,61,101,46,99,108,97,115,115,78,97,109,101,44,108,61,101,46,114,101,102,44,100,61,101,46,99,104,105,108,100,70,108,97,103,115,59,111,61,111,124,124,48,60,40,51,50,38,114,41,59,118,97,114,32,99,44,117,61,40,99,61,101,46,116,121,112,101,44,33,48,61,61,61,111,63,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,78,83,40,79,44,99,41,58,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,99,41,41,59,105,102,40,101,46,100,111,109,61,117,44,68,40,115,41,124,124,34,34,61,61,61,115,124,124,40,111,63,117,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,115,41,58,117,46,99,108,97,115,115,78,97,109,101,61,115,41,44,121,40,116,41,124,124,77,40,116,44,117,41,44,48,61,61,40,49,38,100,41,41,123,118,97,114,32,112,61,33,48,61,61,61,111,38,38,34,102,111,114,101,105,103,110,79,98,106,101,99,116,34,33,61,61,101,46,116,121,112,101,59,50,61,61,61,100,63,118,101,40,105,44,117,44,110,44,112,41,58,49,50,38,100,38,38,121,101,40,105,44,117,44,110,44,112,41,125,114,101,116,117,114,110,32,121,40,97,41,124,124,112,101,40,101,44,114,44,97,44,117,44,111,41,44,95,40,108,41,38,38,67,101,40,117,44,108,41,44,117,125,102,117,110,99,116,105,111,110,32,121,101,40,101,44,116,44,110,44,111,41,123,102,111,114,40,118,97,114,32,114,61,48,44,105,61,101,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,123,118,97,114,32,97,61,101,91,114,93,59,121,40,97,46,100,111,109,41,124,124,40,101,91,114,93,61,97,61,119,40,97,41,41,44,118,101,40,97,44,116,44,110,44,111,41,125,125,102,117,110,99,116,105,111,110,32,98,101,40,101,44,116,44,110,41,123,118,97,114,32,111,59,95,40,116,41,38,38,116,40,110,41,44,95,40,110,46,99,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,41,38,38,85,46,112,117,115,104,40,40,111,61,110,44,102,117,110,99,116,105,111,110,40,41,123,111,46,99,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,40,41,125,41,41,125,102,117,110,99,116,105,111,110,32,107,101,40,101,44,116,44,110,41,123,118,97,114,32,111,44,114,44,105,59,68,40,116,41,124,124,40,95,40,116,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,41,38,38,116,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,40,101,41,44,95,40,116,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,41,38,38,85,46,112,117,115,104,40,40,111,61,116,44,114,61,110,44,105,61,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,40,114,44,105,41,125,41,41,41,125,102,117,110,99,116,105,111,110,32,67,101,40,101,44,116,41,123,85,46,112,117,115,104,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,101,41,125,41,125,102,117,110,99,116,105,111,110,32,36,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,44,105,44,97,61,101,46,99,104,105,108,100,114,101,110,44,115,61,101,46,112,114,111,112,115,44,108,61,101,46,99,108,97,115,115,78,97,109,101,44,100,61,101,46,102,108,97,103,115,44,99,61,101,46,114,101,102,59,105,102,40,111,61,111,124,124,48,60,40,51,50,38,100,41,44,49,33,61,61,116,46,110,111,100,101,84,121,112,101,124,124,116,46,116,97,103,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,33,61,61,101,46,116,121,112,101,41,123,118,97,114,32,117,61,109,101,40,101,44,110,117,108,108,44,110,44,111,41,59,101,46,100,111,109,61,117,44,70,40,116,46,112,97,114,101,110,116,78,111,100,101,44,117,44,116,41,125,101,108,115,101,123,118,97,114,32,112,61,40,101,46,100,111,109,61,116,41,46,102,105,114,115,116,67,104,105,108,100,44,102,61,101,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,48,61,61,40,49,38,102,41,41,123,102,111,114,40,118,97,114,32,104,61,110,117,108,108,59,112,59,41,104,61,112,46,110,101,120,116,83,105,98,108,105,110,103,44,56,61,61,61,112,46,110,111,100,101,84,121,112,101,38,38,40,34,33,34,61,61,61,112,46,100,97,116,97,63,116,46,114,101,112,108,97,99,101,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,34,34,41,44,112,41,58,116,46,114,101,109,111,118,101,67,104,105,108,100,40,112,41,41,44,112,61,104,59,105,102,40,112,61,116,46,102,105,114,115,116,67,104,105,108,100,44,50,61,61,61,102,41,121,40,112,41,63,118,101,40,97,44,116,44,110,44,111,41,58,40,104,61,112,46,110,101,120,116,83,105,98,108,105,110,103,44,68,101,40,97,44,112,44,110,44,111,41,44,112,61,104,41,59,101,108,115,101,32,105,102,40,49,50,38,102,41,102,111,114,40,118,97,114,32,118,61,48,44,103,61,97,46,108,101,110,103,116,104,59,118,60,103,59,118,43,43,41,123,118,97,114,32,109,61,97,91,118,93,59,121,40,112,41,63,118,101,40,109,44,116,44,110,44,111,41,58,40,104,61,112,46,110,101,120,116,83,105,98,108,105,110,103,44,68,101,40,109,44,112,44,110,44,111,41,44,112,61,104,41,125,102,111,114,40,59,112,59,41,104,61,112,46,110,101,120,116,83,105,98,108,105,110,103,44,116,46,114,101,109,111,118,101,67,104,105,108,100,40,112,41,44,112,61,104,125,101,108,115,101,32,121,40,116,46,102,105,114,115,116,67,104,105,108,100,41,124,124,40,114,61,116,44,105,61,115,44,66,111,111,108,101,97,110,40,105,38,38,105,46,100,97,110,103,101,114,111,117,115,108,121,83,101,116,73,110,110,101,114,72,84,77,76,38,38,105,46,100,97,110,103,101,114,111,117,115,108,121,83,101,116,73,110,110,101,114,72,84,77,76,46,95,95,104,116,109,108,38,38,87,40,114,44,105,46,100,97,110,103,101,114,111,117,115,108,121,83,101,116,73,110,110,101,114,72,84,77,76,46,95,95,104,116,109,108,41,41,41,124,124,40,116,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,44,52,52,56,38,100,38,38,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,34,34,41,41,59,121,40,115,41,124,124,112,101,40,101,44,100,44,115,44,116,44,111,41,44,68,40,108,41,63,34,34,33,61,61,116,46,99,108,97,115,115,78,97,109,101,38,38,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,41,58,111,63,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,108,41,58,116,46,99,108,97,115,115,78,97,109,101,61,108,44,95,40,99,41,38,38,67,101,40,116,44,99,41,125,125,102,117,110,99,116,105,111,110,32,68,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,101,46,102,108,97,103,115,59,49,52,38,114,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,61,101,46,116,121,112,101,44,97,61,101,46,114,101,102,44,115,61,101,46,112,114,111,112,115,124,124,76,59,105,102,40,114,41,123,118,97,114,32,108,61,102,101,40,101,44,105,44,115,44,110,41,44,100,61,108,46,36,76,73,59,68,101,40,100,44,116,44,108,46,36,67,88,44,111,41,44,101,46,100,111,109,61,100,46,100,111,109,44,98,101,40,48,44,97,44,108,41,44,108,46,36,85,80,68,61,33,49,125,101,108,115,101,123,118,97,114,32,99,61,104,101,40,105,40,115,44,110,41,44,101,41,59,68,101,40,99,44,116,44,110,44,111,41,44,101,46,99,104,105,108,100,114,101,110,61,99,44,101,46,100,111,109,61,99,46,100,111,109,44,107,101,40,115,44,97,44,116,41,125,125,40,101,44,116,44,110,44,111,44,48,60,40,52,38,114,41,41,58,52,56,49,38,114,63,36,101,40,101,44,116,44,110,44,111,41,58,49,54,38,114,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,51,33,61,61,116,46,110,111,100,101,84,121,112,101,41,123,118,97,114,32,110,61,103,101,40,101,44,110,117,108,108,41,59,101,46,100,111,109,61,110,44,70,40,116,46,112,97,114,101,110,116,78,111,100,101,44,110,44,116,41,125,101,108,115,101,123,118,97,114,32,111,61,101,46,99,104,105,108,100,114,101,110,59,116,46,110,111,100,101,86,97,108,117,101,33,61,61,111,38,38,40,116,46,110,111,100,101,86,97,108,117,101,61,111,41,44,101,46,100,111,109,61,116,125,125,40,101,44,116,41,58,53,49,50,38,114,63,101,46,100,111,109,61,116,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,114,111,119,32,101,124,124,40,101,61,97,41,44,110,101,119,32,69,114,114,111,114,40,34,73,110,102,101,114,110,111,32,69,114,114,111,114,58,32,34,43,101,41,125,40,41,125,102,117,110,99,116,105,111,110,32,95,101,40,101,44,116,44,110,44,111,44,114,41,123,115,101,40,101,41,44,70,40,110,44,118,101,40,116,44,110,117,108,108,44,111,44,114,41,44,101,46,100,111,109,41,125,102,117,110,99,116,105,111,110,32,120,101,40,101,44,116,44,110,44,111,44,114,41,123,105,102,40,101,33,61,61,116,41,123,118,97,114,32,105,61,48,124,116,46,102,108,97,103,115,59,101,46,102,108,97,103,115,33,61,61,105,124,124,50,48,52,56,38,105,63,95,101,40,101,44,116,44,110,44,111,44,114,41,58,52,56,49,38,105,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,61,116,46,116,121,112,101,59,105,102,40,101,46,116,121,112,101,33,61,61,105,41,95,101,40,101,44,116,44,110,44,111,44,114,41,59,101,108,115,101,123,118,97,114,32,97,44,115,61,101,46,100,111,109,44,108,61,116,46,102,108,97,103,115,44,100,61,101,46,112,114,111,112,115,44,99,61,116,46,112,114,111,112,115,44,117,61,33,49,44,112,61,33,49,59,105,102,40,116,46,100,111,109,61,115,44,114,61,114,124,124,48,60,40,51,50,38,108,41,44,100,33,61,61,99,41,123,118,97,114,32,102,61,100,124,124,76,59,105,102,40,40,97,61,99,124,124,76,41,33,61,61,76,41,102,111,114,40,118,97,114,32,104,32,105,110,40,117,61,48,60,40,52,52,56,38,108,41,41,38,38,40,112,61,105,101,40,97,41,41,44,97,41,123,118,97,114,32,118,61,102,91,104,93,44,103,61,97,91,104,93,59,118,33,61,61,103,38,38,117,101,40,104,44,118,44,103,44,115,44,114,44,112,44,101,41,125,105,102,40,102,33,61,61,76,41,102,111,114,40,118,97,114,32,109,32,105,110,32,102,41,97,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,109,41,124,124,68,40,102,91,109,93,41,124,124,117,101,40,109,44,102,91,109,93,44,110,117,108,108,44,115,44,114,44,112,44,101,41,125,118,97,114,32,121,61,101,46,99,104,105,108,100,114,101,110,44,98,61,116,46,99,104,105,108,100,114,101,110,44,107,61,116,46,114,101,102,44,67,61,101,46,99,108,97,115,115,78,97,109,101,44,36,61,116,46,99,108,97,115,115,78,97,109,101,59,121,33,61,61,98,38,38,119,101,40,101,46,99,104,105,108,100,70,108,97,103,115,44,116,46,99,104,105,108,100,70,108,97,103,115,44,121,44,98,44,115,44,111,44,114,38,38,34,102,111,114,101,105,103,110,79,98,106,101,99,116,34,33,61,61,105,41,44,117,38,38,111,101,40,108,44,116,44,115,44,97,44,33,49,44,112,41,44,67,33,61,61,36,38,38,40,68,40,36,41,63,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,41,58,114,63,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,36,41,58,115,46,99,108,97,115,115,78,97,109,101,61,36,41,44,95,40,107,41,38,38,101,46,114,101,102,33,61,61,107,38,38,67,101,40,115,44,107,41,125,125,40,101,44,116,44,110,44,111,44,114,41,58,49,52,38,105,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,44,105,41,123,118,97,114,32,97,61,116,46,116,121,112,101,44,115,61,101,46,107,101,121,44,108,61,116,46,107,101,121,59,105,102,40,101,46,116,121,112,101,33,61,61,97,124,124,115,33,61,61,108,41,95,101,40,101,44,116,44,110,44,111,44,114,41,59,101,108,115,101,123,118,97,114,32,100,61,116,46,112,114,111,112,115,124,124,76,59,105,102,40,105,41,123,118,97,114,32,99,61,101,46,99,104,105,108,100,114,101,110,59,99,46,36,85,80,68,61,33,48,44,99,46,36,86,61,116,44,78,101,40,99,44,99,46,115,116,97,116,101,44,116,44,100,44,110,44,111,44,114,44,33,49,44,33,49,41,44,99,46,36,85,80,68,61,33,49,125,101,108,115,101,123,118,97,114,32,117,61,33,48,44,112,61,101,46,112,114,111,112,115,44,102,61,116,46,114,101,102,44,104,61,33,68,40,102,41,44,118,61,101,46,99,104,105,108,100,114,101,110,59,105,102,40,116,46,100,111,109,61,101,46,100,111,109,44,116,46,99,104,105,108,100,114,101,110,61,118,44,104,38,38,95,40,102,46,111,110,67,111,109,112,111,110,101,110,116,83,104,111,117,108,100,85,112,100,97,116,101,41,38,38,40,117,61,102,46,111,110,67,111,109,112,111,110,101,110,116,83,104,111,117,108,100,85,112,100,97,116,101,40,112,44,100,41,41,44,33,49,33,61,61,117,41,123,104,38,38,95,40,102,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,41,38,38,102,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,40,112,44,100,41,59,118,97,114,32,103,61,97,40,100,44,111,41,59,103,33,61,61,109,38,38,40,103,61,104,101,40,103,44,116,41,44,120,101,40,118,44,103,44,110,44,111,44,114,41,44,116,46,99,104,105,108,100,114,101,110,61,103,44,116,46,100,111,109,61,103,46,100,111,109,44,104,38,38,95,40,102,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,41,38,38,102,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,40,112,44,100,41,41,125,101,108,115,101,32,49,52,38,118,46,102,108,97,103,115,38,38,40,118,46,112,97,114,101,110,116,86,78,111,100,101,61,116,41,125,125,125,40,101,44,116,44,110,44,111,44,114,44,48,60,40,52,38,105,41,41,58,49,54,38,105,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,111,44,114,61,116,46,99,104,105,108,100,114,101,110,59,121,40,110,46,102,105,114,115,116,67,104,105,108,100,41,63,40,110,46,116,101,120,116,67,111,110,116,101,110,116,61,114,44,111,61,110,46,102,105,114,115,116,67,104,105,108,100,41,58,40,111,61,101,46,100,111,109,44,114,33,61,61,101,46,99,104,105,108,100,114,101,110,38,38,40,111,46,110,111,100,101,86,97,108,117,101,61,114,41,41,59,116,46,100,111,109,61,111,125,40,101,44,116,44,110,41,58,53,49,50,38,105,63,116,46,100,111,109,61,101,46,100,111,109,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,111,61,101,46,116,121,112,101,44,114,61,116,46,116,121,112,101,44,105,61,116,46,99,104,105,108,100,114,101,110,59,105,102,40,119,101,40,101,46,99,104,105,108,100,70,108,97,103,115,44,116,46,99,104,105,108,100,70,108,97,103,115,44,101,46,99,104,105,108,100,114,101,110,44,105,44,111,44,110,44,33,49,41,44,116,46,100,111,109,61,101,46,100,111,109,44,111,33,61,61,114,38,38,33,102,40,105,41,41,123,118,97,114,32,97,61,105,46,100,111,109,59,111,46,114,101,109,111,118,101,67,104,105,108,100,40,97,41,44,114,46,97,112,112,101,110,100,67,104,105,108,100,40,97,41,125,125,40,101,44,116,44,111,41,125,125,102,117,110,99,116,105,111,110,32,119,101,40,101,44,116,44,110,44,111,44,114,44,105,44,97,41,123,115,119,105,116,99,104,40,101,41,123,99,97,115,101,32,50,58,115,119,105,116,99,104,40,116,41,123,99,97,115,101,32,50,58,120,101,40,110,44,111,44,114,44,105,44,97,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,97,101,40,110,44,114,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,97,101,40,110,44,114,41,44,121,101,40,111,44,114,44,105,44,97,41,125,98,114,101,97,107,59,99,97,115,101,32,49,58,115,119,105,116,99,104,40,116,41,123,99,97,115,101,32,50,58,118,101,40,111,44,114,44,105,44,97,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,98,114,101,97,107,59,100,101,102,97,117,108,116,58,121,101,40,111,44,114,44,105,44,97,41,125,98,114,101,97,107,59,100,101,102,97,117,108,116,58,105,102,40,49,50,38,116,41,123,118,97,114,32,115,61,110,46,108,101,110,103,116,104,44,108,61,111,46,108,101,110,103,116,104,59,48,61,61,61,115,63,48,60,108,38,38,121,101,40,111,44,114,44,105,44,97,41,58,48,61,61,61,108,63,100,101,40,114,44,110,41,58,56,61,61,61,116,38,38,56,61,61,61,101,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,44,105,44,97,41,123,118,97,114,32,115,44,108,44,100,61,105,45,49,44,99,61,97,45,49,44,117,61,48,44,112,61,101,91,117,93,44,102,61,116,91,117,93,59,101,58,123,102,111,114,40,59,112,46,107,101,121,61,61,61,102,46,107,101,121,59,41,123,105,102,40,102,46,100,111,109,38,38,40,116,91,117,93,61,102,61,119,40,102,41,41,44,120,101,40,112,44,102,44,110,44,111,44,114,41,44,101,91,117,93,61,102,44,100,60,43,43,117,124,124,99,60,117,41,98,114,101,97,107,32,101,59,112,61,101,91,117,93,44,102,61,116,91,117,93,125,102,111,114,40,112,61,101,91,100,93,44,102,61,116,91,99,93,59,112,46,107,101,121,61,61,61,102,46,107,101,121,59,41,123,105,102,40,102,46,100,111,109,38,38,40,116,91,99,93,61,102,61,119,40,102,41,41,44,120,101,40,112,44,102,44,110,44,111,44,114,41,44,101,91,100,93,61,102,44,99,45,45,44,45,45,100,60,117,124,124,99,60,117,41,98,114,101,97,107,32,101,59,112,61,101,91,100,93,44,102,61,116,91,99,93,125,125,105,102,40,100,60,117,41,123,105,102,40,117,60,61,99,41,102,111,114,40,118,97,114,32,104,61,40,108,61,99,43,49,41,60,97,63,116,91,108,93,46,100,111,109,58,110,117,108,108,59,117,60,61,99,59,41,40,102,61,116,91,117,93,41,46,100,111,109,38,38,40,116,91,117,93,61,102,61,119,40,102,41,41,44,117,43,43,44,69,40,110,44,118,101,40,102,44,110,117,108,108,44,111,44,114,41,44,104,41,125,101,108,115,101,32,105,102,40,99,60,117,41,102,111,114,40,59,117,60,61,100,59,41,97,101,40,101,91,117,43,43,93,44,110,41,59,101,108,115,101,123,118,97,114,32,118,61,117,44,103,61,117,44,109,61,100,45,117,43,49,44,121,61,99,45,117,43,49,44,98,61,91,93,59,102,111,114,40,115,61,48,59,115,60,121,59,115,43,43,41,98,46,112,117,115,104,40,48,41,59,118,97,114,32,107,61,109,61,61,61,105,44,67,61,33,49,44,36,61,48,44,68,61,48,59,105,102,40,97,60,52,124,124,40,109,124,121,41,60,51,50,41,102,111,114,40,115,61,118,59,115,60,61,100,59,115,43,43,41,105,102,40,112,61,101,91,115,93,44,68,60,121,41,123,102,111,114,40,117,61,103,59,117,60,61,99,59,117,43,43,41,105,102,40,102,61,116,91,117,93,44,112,46,107,101,121,61,61,61,102,46,107,101,121,41,123,105,102,40,98,91,117,45,103,93,61,115,43,49,44,107,41,102,111,114,40,107,61,33,49,59,118,60,115,59,41,97,101,40,101,91,118,43,43,93,44,110,41,59,117,60,36,63,67,61,33,48,58,36,61,117,44,102,46,100,111,109,38,38,40,116,91,117,93,61,102,61,119,40,102,41,41,44,120,101,40,112,44,102,44,110,44,111,44,114,41,44,68,43,43,59,98,114,101,97,107,125,33,107,38,38,99,60,117,38,38,97,101,40,112,44,110,41,125,101,108,115,101,32,107,124,124,97,101,40,112,44,110,41,59,101,108,115,101,123,118,97,114,32,95,61,123,125,59,102,111,114,40,115,61,103,59,115,60,61,99,59,115,43,43,41,95,91,116,91,115,93,46,107,101,121,93,61,115,59,102,111,114,40,115,61,118,59,115,60,61,100,59,115,43,43,41,105,102,40,112,61,101,91,115,93,44,68,60,121,41,105,102,40,118,111,105,100,32,48,33,61,61,40,117,61,95,91,112,46,107,101,121,93,41,41,123,105,102,40,107,41,102,111,114,40,107,61,33,49,59,118,60,115,59,41,97,101,40,101,91,118,43,43,93,44,110,41,59,102,61,116,91,117,93,44,98,91,117,45,103,93,61,115,43,49,44,117,60,36,63,67,61,33,48,58,36,61,117,44,102,46,100,111,109,38,38,40,116,91,117,93,61,102,61,119,40,102,41,41,44,120,101,40,112,44,102,44,110,44,111,44,114,41,44,68,43,43,125,101,108,115,101,32,107,124,124,97,101,40,112,44,110,41,59,101,108,115,101,32,107,124,124,97,101,40,112,44,110,41,125,105,102,40,107,41,100,101,40,110,44,101,41,44,121,101,40,116,44,110,44,111,44,114,41,59,101,108,115,101,32,105,102,40,67,41,123,118,97,114,32,120,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,111,44,114,44,105,44,97,61,101,46,115,108,105,99,101,40,41,44,115,61,91,48,93,44,108,61,101,46,108,101,110,103,116,104,59,102,111,114,40,116,61,48,59,116,60,108,59,116,43,43,41,123,118,97,114,32,100,61,101,91,116,93,59,105,102,40,48,33,61,61,100,41,123,105,102,40,110,61,115,91,115,46,108,101,110,103,116,104,45,49,93,44,101,91,110,93,60,100,41,123,97,91,116,93,61,110,44,115,46,112,117,115,104,40,116,41,59,99,111,110,116,105,110,117,101,125,102,111,114,40,111,61,48,44,114,61,115,46,108,101,110,103,116,104,45,49,59,111,60,114,59,41,101,91,115,91,105,61,40,111,43,114,41,47,50,124,48,93,93,60,100,63,111,61,105,43,49,58,114,61,105,59,100,60,101,91,115,91,111,93,93,38,38,40,48,60,111,38,38,40,97,91,116,93,61,115,91,111,45,49,93,41,44,115,91,111,93,61,116,41,125,125,111,61,115,46,108,101,110,103,116,104,44,114,61,115,91,111,45,49,93,59,102,111,114,40,59,48,60,111,45,45,59,41,115,91,111,93,61,114,44,114,61,97,91,114,93,59,114,101,116,117,114,110,32,115,125,40,98,41,59,102,111,114,40,117,61,120,46,108,101,110,103,116,104,45,49,44,115,61,121,45,49,59,48,60,61,115,59,115,45,45,41,48,61,61,61,98,91,115,93,63,40,40,102,61,116,91,36,61,115,43,103,93,41,46,100,111,109,38,38,40,116,91,36,93,61,102,61,119,40,102,41,41,44,108,61,36,43,49,44,69,40,110,44,118,101,40,102,44,110,117,108,108,44,111,44,114,41,44,108,60,97,63,116,91,108,93,46,100,111,109,58,110,117,108,108,41,41,58,117,60,48,124,124,115,33,61,61,120,91,117,93,63,40,102,61,116,91,36,61,115,43,103,93,44,108,61,36,43,49,44,69,40,110,44,102,46,100,111,109,44,108,60,97,63,116,91,108,93,46,100,111,109,58,110,117,108,108,41,41,58,117,45,45,125,101,108,115,101,32,105,102,40,68,33,61,61,121,41,102,111,114,40,115,61,121,45,49,59,48,60,61,115,59,115,45,45,41,48,61,61,61,98,91,115,93,38,38,40,40,102,61,116,91,36,61,115,43,103,93,41,46,100,111,109,38,38,40,116,91,36,93,61,102,61,119,40,102,41,41,44,108,61,36,43,49,44,69,40,110,44,118,101,40,102,44,110,117,108,108,44,111,44,114,41,44,108,60,97,63,116,91,108,93,46,100,111,109,58,110,117,108,108,41,41,125,125,40,110,44,111,44,114,44,105,44,97,44,115,44,108,41,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,44,105,44,97,41,123,102,111,114,40,118,97,114,32,115,44,108,44,100,61,97,60,105,63,97,58,105,44,99,61,48,59,99,60,100,59,99,43,43,41,115,61,116,91,99,93,44,108,61,101,91,99,93,44,115,46,100,111,109,38,38,40,115,61,116,91,99,93,61,119,40,115,41,41,44,120,101,40,108,44,115,44,110,44,111,44,114,41,44,101,91,99,93,61,115,59,105,102,40,105,60,97,41,102,111,114,40,99,61,100,59,99,60,97,59,99,43,43,41,40,115,61,116,91,99,93,41,46,100,111,109,38,38,40,115,61,116,91,99,93,61,119,40,115,41,41,44,118,101,40,115,44,110,44,111,44,114,41,59,101,108,115,101,32,105,102,40,97,60,105,41,102,111,114,40,99,61,100,59,99,60,105,59,99,43,43,41,97,101,40,101,91,99,93,44,110,41,125,40,110,44,111,44,114,44,105,44,97,44,115,44,108,41,125,101,108,115,101,32,49,61,61,61,116,63,100,101,40,114,44,110,41,58,40,100,101,40,114,44,110,41,44,118,101,40,111,44,114,44,105,44,97,41,41,125,125,102,117,110,99,116,105,111,110,32,78,101,40,101,44,116,44,110,44,111,44,114,44,105,44,97,44,115,44,108,41,123,118,97,114,32,100,44,99,61,101,46,115,116,97,116,101,44,117,61,101,46,112,114,111,112,115,59,105,102,40,33,40,110,46,99,104,105,108,100,114,101,110,61,101,41,46,36,85,78,41,123,105,102,40,117,33,61,61,111,124,124,111,61,61,61,76,41,123,105,102,40,33,108,38,38,95,40,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,82,101,99,101,105,118,101,80,114,111,112,115,41,41,123,105,102,40,101,46,36,66,82,61,33,48,44,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,82,101,99,101,105,118,101,80,114,111,112,115,40,111,44,105,41,44,101,46,36,85,78,41,114,101,116,117,114,110,59,101,46,36,66,82,61,33,49,125,101,46,36,80,83,83,38,38,40,116,61,98,40,116,44,101,46,36,80,83,41,44,101,46,36,80,83,83,61,33,49,44,101,46,36,80,83,61,110,117,108,108,41,125,118,97,114,32,112,61,66,111,111,108,101,97,110,40,101,46,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,41,59,105,102,40,115,124,124,33,112,124,124,112,38,38,101,46,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,40,111,44,116,44,105,41,41,123,95,40,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,41,38,38,40,101,46,36,66,83,61,33,48,44,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,40,111,44,116,44,105,41,44,101,46,36,66,83,61,33,49,41,44,101,46,112,114,111,112,115,61,111,44,101,46,115,116,97,116,101,61,116,44,101,46,99,111,110,116,101,120,116,61,105,44,95,40,80,46,98,101,102,111,114,101,82,101,110,100,101,114,41,38,38,80,46,98,101,102,111,114,101,82,101,110,100,101,114,40,101,41,44,100,61,101,46,114,101,110,100,101,114,40,111,44,116,44,105,41,44,95,40,80,46,97,102,116,101,114,82,101,110,100,101,114,41,38,38,80,46,97,102,116,101,114,82,101,110,100,101,114,40,101,41,59,118,97,114,32,102,44,104,61,100,33,61,61,109,59,105,102,40,95,40,101,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,41,38,38,40,102,61,101,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,40,41,41,44,102,61,68,40,102,41,63,105,58,98,40,105,44,102,41,44,101,46,36,67,88,61,102,44,104,41,120,101,40,101,46,36,76,73,44,101,46,36,76,73,61,104,101,40,100,44,110,41,44,114,44,102,44,97,41,44,95,40,101,46,99,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,41,38,38,101,46,99,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,40,117,44,99,41,125,101,108,115,101,32,101,46,112,114,111,112,115,61,111,44,101,46,115,116,97,116,101,61,116,44,101,46,99,111,110,116,101,120,116,61,105,59,110,46,100,111,109,61,101,46,36,76,73,46,100,111,109,125,125,101,38,38,100,111,99,117,109,101,110,116,46,98,111,100,121,59,102,117,110,99,116,105,111,110,32,114,40,101,44,116,44,110,41,123,105,102,40,101,33,61,61,109,41,123,118,97,114,32,111,61,116,46,36,86,59,114,101,116,117,114,110,32,68,40,111,41,63,102,40,101,41,124,124,40,101,46,100,111,109,38,38,40,101,61,119,40,101,41,41,44,121,40,116,46,102,105,114,115,116,67,104,105,108,100,41,63,40,118,101,40,101,44,116,44,76,44,33,49,41,44,116,46,36,86,61,101,41,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,111,61,116,46,102,105,114,115,116,67,104,105,108,100,59,105,102,40,33,121,40,111,41,41,102,111,114,40,102,40,101,41,124,124,68,101,40,101,44,111,44,76,44,33,49,41,44,111,61,116,46,102,105,114,115,116,67,104,105,108,100,59,111,61,111,46,110,101,120,116,83,105,98,108,105,110,103,59,41,116,46,114,101,109,111,118,101,67,104,105,108,100,40,111,41,59,48,60,85,46,108,101,110,103,116,104,38,38,73,40,85,41,44,116,46,36,86,61,101,44,95,40,110,41,38,38,110,40,41,125,40,101,44,116,41,44,111,61,101,41,58,68,40,101,41,63,40,97,101,40,111,44,116,41,44,116,46,36,86,61,110,117,108,108,41,58,40,101,46,100,111,109,38,38,40,101,61,119,40,101,41,41,44,120,101,40,111,44,101,44,116,44,76,44,33,49,41,44,111,61,116,46,36,86,61,101,41,44,48,60,85,46,108,101,110,103,116,104,38,38,73,40,85,41,44,95,40,110,41,38,38,110,40,41,44,95,40,80,46,114,101,110,100,101,114,67,111,109,112,108,101,116,101,41,38,38,80,46,114,101,110,100,101,114,67,111,109,112,108,101,116,101,40,111,41,44,111,38,38,49,52,38,111,46,102,108,97,103,115,63,111,46,99,104,105,108,100,114,101,110,58,118,111,105,100,32,48,125,125,118,97,114,32,83,101,61,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,80,114,111,109,105,115,101,63,110,117,108,108,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,44,80,101,61,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,63,115,101,116,84,105,109,101,111,117,116,58,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,46,98,105,110,100,40,119,105,110,100,111,119,41,59,102,117,110,99,116,105,111,110,32,79,101,40,101,44,116,44,110,44,111,41,123,95,40,116,41,38,38,40,116,61,116,40,101,46,115,116,97,116,101,44,101,46,112,114,111,112,115,44,101,46,99,111,110,116,101,120,116,41,41,59,118,97,114,32,114,44,105,44,97,44,115,61,101,46,36,80,83,59,105,102,40,68,40,115,41,41,101,46,36,80,83,61,116,59,101,108,115,101,32,102,111,114,40,118,97,114,32,108,32,105,110,32,116,41,115,91,108,93,61,116,91,108,93,59,105,102,40,101,46,36,80,83,83,124,124,101,46,36,66,82,41,101,46,36,80,83,83,61,33,48,44,101,46,36,66,82,38,38,95,40,110,41,38,38,85,46,112,117,115,104,40,110,46,98,105,110,100,40,101,41,41,59,101,108,115,101,32,105,102,40,101,46,36,85,80,68,41,123,118,97,114,32,100,61,101,46,36,81,85,59,121,40,100,41,38,38,40,100,61,101,46,36,81,85,61,91,93,44,105,61,101,44,97,61,100,44,114,61,102,117,110,99,116,105,111,110,40,41,123,105,46,36,81,85,61,110,117,108,108,44,105,46,36,85,80,68,61,33,48,44,84,101,40,105,44,33,49,44,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,48,44,116,61,97,46,108,101,110,103,116,104,59,101,60,116,59,101,43,43,41,97,91,101,93,46,99,97,108,108,40,105,41,125,41,44,105,46,36,85,80,68,61,33,49,125,44,83,101,63,83,101,46,116,104,101,110,40,114,41,58,80,101,40,114,41,41,44,95,40,110,41,38,38,100,46,112,117,115,104,40,110,41,125,101,108,115,101,32,101,46,36,80,83,83,61,33,48,44,101,46,36,85,80,68,61,33,48,44,84,101,40,101,44,111,44,110,41,44,101,46,36,85,80,68,61,33,49,125,102,117,110,99,116,105,111,110,32,84,101,40,101,44,116,44,110,41,123,105,102,40,33,101,46,36,85,78,41,123,105,102,40,116,124,124,33,101,46,36,66,82,41,123,101,46,36,80,83,83,61,33,49,59,118,97,114,32,111,61,101,46,36,80,83,44,114,61,98,40,101,46,115,116,97,116,101,44,111,41,44,105,61,101,46,112,114,111,112,115,44,97,61,101,46,99,111,110,116,101,120,116,59,101,46,36,80,83,61,110,117,108,108,59,118,97,114,32,115,61,101,46,36,86,44,108,61,101,46,36,76,73,59,105,102,40,78,101,40,101,44,114,44,115,44,105,44,108,46,100,111,109,38,38,108,46,100,111,109,46,112,97,114,101,110,116,78,111,100,101,44,97,44,48,60,40,51,50,38,115,46,102,108,97,103,115,41,44,116,44,33,48,41,44,101,46,36,85,78,41,114,101,116,117,114,110,59,105,102,40,48,61,61,40,49,48,50,52,38,101,46,36,76,73,46,102,108,97,103,115,41,41,102,111,114,40,118,97,114,32,100,61,101,46,36,76,73,46,100,111,109,59,33,121,40,115,61,115,46,112,97,114,101,110,116,86,78,111,100,101,41,59,41,48,60,40,49,52,38,115,46,102,108,97,103,115,41,38,38,40,115,46,100,111,109,61,100,41,59,48,60,85,46,108,101,110,103,116,104,38,38,73,40,85,41,125,101,108,115,101,32,101,46,115,116,97,116,101,61,101,46,36,80,83,44,101,46,36,80,83,61,110,117,108,108,59,95,40,110,41,38,38,110,46,99,97,108,108,40,101,41,125,125,118,97,114,32,76,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,104,105,115,46,115,116,97,116,101,61,110,117,108,108,44,116,104,105,115,46,36,66,82,61,33,49,44,116,104,105,115,46,36,66,83,61,33,48,44,116,104,105,115,46,36,80,83,83,61,33,49,44,116,104,105,115,46,36,80,83,61,110,117,108,108,44,116,104,105,115,46,36,76,73,61,110,117,108,108,44,116,104,105,115,46,36,86,61,110,117,108,108,44,116,104,105,115,46,36,85,78,61,33,49,44,116,104,105,115,46,36,67,88,61,110,117,108,108,44,116,104,105,115,46,36,85,80,68,61,33,48,44,116,104,105,115,46,36,81,85,61,110,117,108,108,44,116,104,105,115,46,112,114,111,112,115,61,101,124,124,76,44,116,104,105,115,46,99,111,110,116,101,120,116,61,116,124,124,76,125,59,76,101,46,112,114,111,116,111,116,121,112,101,46,102,111,114,99,101,85,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,36,85,78,124,124,79,101,40,116,104,105,115,44,123,125,44,101,44,33,48,41,125,44,76,101,46,112,114,111,116,111,116,121,112,101,46,115,101,116,83,116,97,116,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,104,105,115,46,36,85,78,124,124,116,104,105,115,46,36,66,83,124,124,79,101,40,116,104,105,115,44,101,44,116,44,33,49,41,125,44,76,101,46,112,114,111,116,111,116,121,112,101,46,114,101,110,100,101,114,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,125,59,118,97,114,32,85,101,61,49,50,44,77,101,61,51,55,44,69,101,61,51,56,44,70,101,61,51,57,44,73,101,61,52,48,59,118,97,114,32,65,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,44,86,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,111,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,116,46,108,101,110,103,116,104,59,110,43,43,41,123,118,97,114,32,111,61,116,91,110,93,59,111,46,101,110,117,109,101,114,97,98,108,101,61,111,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,111,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,111,38,38,40,111,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,111,46,107,101,121,44,111,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,38,38,111,40,101,46,112,114,111,116,111,116,121,112,101,44,116,41,44,110,38,38,111,40,101,44,110,41,44,101,125,125,40,41,44,82,101,61,79,98,106,101,99,116,46,97,115,115,105,103,110,124,124,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,49,59,116,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,116,43,43,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,91,116,93,59,102,111,114,40,118,97,114,32,111,32,105,110,32,110,41,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,110,44,111,41,38,38,40,101,91,111,93,61,110,91,111,93,41,125,114,101,116,117,114,110,32,101,125,44,106,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,110,117,108,108,33,61,61,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,83,117,112,101,114,32,101,120,112,114,101,115,115,105,111,110,32,109,117,115,116,32,101,105,116,104,101,114,32,98,101,32,110,117,108,108,32,111,114,32,97,32,102,117,110,99,116,105,111,110,44,32,110,111,116,32,34,43,116,121,112,101,111,102,32,116,41,59,101,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,38,38,116,46,112,114,111,116,111,116,121,112,101,44,123,99,111,110,115,116,114,117,99,116,111,114,58,123,118,97,108,117,101,58,101,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,119,114,105,116,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,41,44,116,38,38,40,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,63,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,101,44,116,41,58,101,46,95,95,112,114,111,116,111,95,95,61,116,41,125,44,66,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,101,41,116,104,114,111,119,32,110,101,119,32,82,101,102,101,114,101,110,99,101,69,114,114,111,114,40,34,116,104,105,115,32,104,97,115,110,39,116,32,98,101,101,110,32,105,110,105,116,105,97,108,105,115,101,100,32,45,32,115,117,112,101,114,40,41,32,104,97,115,110,39,116,32,98,101,101,110,32,99,97,108,108,101,100,34,41,59,114,101,116,117,114,110,33,116,124,124,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,116,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,63,101,58,116,125,44,87,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,99,108,105,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,44,110,61,102,117,110,99,116,105,111,110,40,41,123,116,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,67,104,101,99,107,40,41,125,59,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,99,108,105,99,107,34,44,101,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,110,41,44,101,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,110,40,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,54,52,44,34,105,110,112,117,116,34,44,110,117,108,108,44,110,117,108,108,44,49,44,123,99,104,101,99,107,101,100,58,116,104,105,115,46,112,114,111,112,115,46,99,104,101,99,107,101,100,44,105,110,100,101,116,101,114,109,105,110,97,116,101,58,116,104,105,115,46,112,114,111,112,115,46,105,110,100,101,116,101,114,109,105,110,97,116,101,44,111,110,67,108,105,99,107,58,116,104,105,115,46,99,108,105,99,107,46,98,105,110,100,40,116,104,105,115,41,44,116,121,112,101,58,34,99,104,101,99,107,98,111,120,34,125,41,125,125,93,41,44,116,125,40,41,44,72,101,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,34,108,105,34,44,110,61,101,46,105,116,114,101,101,91,116,93,46,97,116,116,114,105,98,117,116,101,115,44,111,61,91,93,44,114,61,110,46,99,108,97,115,115,124,124,110,46,99,108,97,115,115,78,97,109,101,59,114,101,116,117,114,110,32,108,46,105,115,70,117,110,99,116,105,111,110,40,114,41,38,38,40,114,61,114,40,101,41,41,44,108,46,105,115,69,109,112,116,121,40,114,41,124,124,40,108,46,105,115,83,116,114,105,110,103,40,114,41,63,111,61,111,46,99,111,110,99,97,116,40,114,46,115,112,108,105,116,40,47,91,92,115,92,46,93,43,47,41,41,58,108,46,105,115,65,114,114,97,121,40,114,41,38,38,40,111,61,111,46,99,111,110,99,97,116,40,114,41,41,41,44,111,125,44,113,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,49,125,125,44,123,107,101,121,58,34,97,100,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,97,100,100,67,104,105,108,100,40,123,116,101,120,116,58,34,78,101,119,32,78,111,100,101,34,44,105,116,114,101,101,58,123,115,116,97,116,101,58,123,101,100,105,116,105,110,103,58,33,48,44,102,111,99,117,115,101,100,58,33,48,125,125,125,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,101,120,112,97,110,100,40,41,125,125,44,123,107,101,121,58,34,101,100,105,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,69,100,105,116,105,110,103,40,41,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,114,101,109,111,118,101,40,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,38,38,101,46,112,117,115,104,40,115,40,49,44,34,97,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,112,101,110,99,105,108,34,44,110,117,108,108,44,49,44,123,111,110,99,108,105,99,107,58,116,104,105,115,46,101,100,105,116,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,69,100,105,116,32,116,104,105,115,32,110,111,100,101,34,125,41,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,97,100,100,38,38,101,46,112,117,115,104,40,115,40,49,44,34,97,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,112,108,117,115,34,44,110,117,108,108,44,49,44,123,111,110,99,108,105,99,107,58,116,104,105,115,46,97,100,100,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,65,100,100,32,97,32,99,104,105,108,100,32,110,111,100,101,34,125,41,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,114,101,109,111,118,101,38,38,101,46,112,117,115,104,40,115,40,49,44,34,97,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,109,105,110,117,115,34,44,110,117,108,108,44,49,44,123,111,110,99,108,105,99,107,58,116,104,105,115,46,114,101,109,111,118,101,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,82,101,109,111,118,101,32,116,104,105,115,32,110,111,100,101,34,125,41,41,44,115,40,49,44,34,115,112,97,110,34,44,34,98,116,110,45,103,114,111,117,112,34,44,101,44,48,41,125,125,93,41,44,116,125,40,41,44,75,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,49,44,34,111,108,34,44,110,117,108,108,44,115,40,49,44,34,108,105,34,44,34,108,101,97,102,34,44,115,40,49,44,34,115,112,97,110,34,44,34,116,105,116,108,101,32,105,99,111,110,32,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,32,101,109,112,116,121,34,44,116,104,105,115,46,112,114,111,112,115,46,116,101,120,116,44,48,41,44,50,41,44,50,41,125,125,93,41,44,116,125,40,41,59,102,117,110,99,116,105,111,110,32,88,101,40,116,44,110,41,123,118,97,114,32,111,61,110,46,100,105,114,116,121,124,124,33,49,59,114,101,116,117,114,110,32,111,124,124,108,46,101,97,99,104,40,79,98,106,101,99,116,46,107,101,121,115,40,110,41,44,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,34,100,105,114,116,121,34,33,61,61,101,38,38,110,91,101,93,33,61,61,116,91,101,93,41,114,101,116,117,114,110,33,40,111,61,33,48,41,125,41,44,111,125,118,97,114,32,81,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,110,40,101,41,123,65,101,40,116,104,105,115,44,110,41,59,118,97,114,32,116,61,66,101,40,116,104,105,115,44,40,110,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,110,41,41,46,99,97,108,108,40,116,104,105,115,44,101,41,41,59,114,101,116,117,114,110,32,116,46,115,116,97,116,101,61,116,46,103,101,116,83,116,97,116,101,70,114,111,109,78,111,100,101,115,40,101,46,110,111,100,101,41,44,116,125,114,101,116,117,114,110,32,106,101,40,110,44,76,101,41,44,86,101,40,110,44,91,123,107,101,121,58,34,103,101,116,83,116,97,116,101,70,114,111,109,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,123,116,101,120,116,58,101,46,116,101,120,116,125,125,125,44,123,107,101,121,58,34,99,111,109,112,111,110,101,110,116,87,105,108,108,82,101,99,101,105,118,101,80,114,111,112,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,116,83,116,97,116,101,40,116,104,105,115,46,103,101,116,83,116,97,116,101,70,114,111,109,78,111,100,101,115,40,101,46,110,111,100,101,41,41,125,125,44,123,107,101,121,58,34,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,88,101,40,116,104,105,115,46,115,116,97,116,101,44,116,41,125,125,44,123,107,101,121,58,34,99,108,105,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,44,110,61,102,117,110,99,116,105,111,110,40,41,123,116,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,67,104,101,99,107,40,41,125,59,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,99,108,105,99,107,34,44,101,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,110,41,44,101,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,110,40,41,125,125,44,123,107,101,121,58,34,107,101,121,112,114,101,115,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,46,119,104,105,99,104,61,61,61,85,101,41,114,101,116,117,114,110,32,116,104,105,115,46,115,97,118,101,40,41,125,125,44,123,107,101,121,58,34,105,110,112,117,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,116,83,116,97,116,101,40,123,116,101,120,116,58,101,46,116,97,114,103,101,116,46,118,97,108,117,101,125,41,125,125,44,123,107,101,121,58,34,99,97,110,99,101,108,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,38,38,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,69,100,105,116,105,110,103,40,41,125,125,44,123,107,101,121,58,34,115,97,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,38,38,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,118,97,114,32,116,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,116,101,120,116,44,110,61,116,104,105,115,46,114,101,102,46,118,97,108,117,101,59,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,101,116,40,34,116,101,120,116,34,44,110,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,44,33,49,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,33,61,61,110,38,38,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,101,100,105,116,101,100,34,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,116,44,110,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,114,101,116,117,114,110,32,115,40,49,44,34,102,111,114,109,34,44,110,117,108,108,44,91,115,40,54,52,44,34,105,110,112,117,116,34,44,110,117,108,108,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,125,44,111,110,73,110,112,117,116,58,116,104,105,115,46,105,110,112,117,116,46,98,105,110,100,40,116,104,105,115,41,44,111,110,75,101,121,80,114,101,115,115,58,116,104,105,115,46,107,101,121,112,114,101,115,115,46,98,105,110,100,40,116,104,105,115,41,44,118,97,108,117,101,58,116,104,105,115,46,115,116,97,116,101,46,116,101,120,116,125,44,110,117,108,108,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,114,101,102,61,101,125,41,44,115,40,49,44,34,115,112,97,110,34,44,34,98,116,110,45,103,114,111,117,112,34,44,91,115,40,49,44,34,98,117,116,116,111,110,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,99,104,101,99,107,34,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,115,97,118,101,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,83,97,118,101,34,44,116,121,112,101,58,34,98,117,116,116,111,110,34,125,41,44,115,40,49,44,34,98,117,116,116,111,110,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,99,114,111,115,115,34,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,99,97,110,99,101,108,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,67,97,110,99,101,108,34,44,116,121,112,101,58,34,98,117,116,116,111,110,34,125,41,93,44,52,41,93,44,52,44,123,111,110,115,117,98,109,105,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,125,125,41,125,125,93,41,44,110,125,40,41,44,122,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,98,108,117,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,98,108,117,114,40,41,125,125,44,123,107,101,121,58,34,99,108,105,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,44,101,61,116,104,105,115,46,112,114,111,112,115,44,111,61,101,46,110,111,100,101,44,114,61,101,46,100,111,109,44,105,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,33,110,46,112,114,111,112,115,46,101,100,105,116,105,110,103,41,123,105,102,40,40,116,46,109,101,116,97,75,101,121,124,124,116,46,99,116,114,108,75,101,121,124,124,116,46,115,104,105,102,116,75,101,121,41,38,38,114,46,95,116,114,101,101,46,100,105,115,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,40,41,44,116,46,115,104,105,102,116,75,101,121,41,123,114,46,99,108,101,97,114,83,101,108,101,99,116,105,111,110,40,41,59,118,97,114,32,101,61,114,46,95,116,114,101,101,46,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,40,41,59,101,38,38,114,46,95,116,114,101,101,46,115,101,108,101,99,116,66,101,116,119,101,101,110,46,97,112,112,108,121,40,114,46,95,116,114,101,101,44,114,46,95,116,114,101,101,46,98,111,117,110,100,105,110,103,78,111,100,101,115,40,101,44,111,41,41,125,111,46,115,101,108,101,99,116,101,100,40,41,63,114,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,100,105,115,97,98,108,101,68,105,114,101,99,116,68,101,115,101,108,101,99,116,105,111,110,124,124,111,46,100,101,115,101,108,101,99,116,40,41,58,111,46,115,101,108,101,99,116,40,41,44,114,46,95,116,114,101,101,46,101,110,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,40,41,125,125,59,114,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,99,108,105,99,107,34,44,116,44,111,44,105,41,44,116,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,105,40,41,125,125,44,123,107,101,121,58,34,99,111,110,116,101,120,116,77,101,110,117,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,112,114,111,112,115,44,110,61,116,46,110,111,100,101,59,116,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,99,111,110,116,101,120,116,109,101,110,117,34,44,101,44,110,41,125,125,44,123,107,101,121,58,34,100,98,108,99,108,105,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,112,114,111,112,115,44,110,61,116,46,110,111,100,101,44,111,61,116,46,100,111,109,44,114,61,102,117,110,99,116,105,111,110,40,41,123,111,46,99,108,101,97,114,83,101,108,101,99,116,105,111,110,40,41,44,110,46,116,111,103,103,108,101,67,111,108,108,97,112,115,101,40,41,125,59,111,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,98,108,99,108,105,99,107,34,44,101,44,110,44,114,41,44,101,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,114,40,41,125,125,44,123,107,101,121,58,34,102,111,99,117,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,102,111,99,117,115,40,101,41,125,125,44,123,107,101,121,58,34,109,111,117,115,101,100,111,119,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,105,115,68,114,97,103,68,114,111,112,69,110,97,98,108,101,100,38,38,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,105,115,77,111,117,115,101,72,101,108,100,61,33,48,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,116,61,108,46,99,108,111,110,101,40,101,46,105,116,114,101,101,46,97,46,97,116,116,114,105,98,117,116,101,115,41,124,124,123,125,59,116,46,116,97,98,105,110,100,101,120,61,49,44,116,46,117,110,115,101,108,101,99,116,97,98,108,101,61,34,111,110,34,59,118,97,114,32,110,61,72,101,40,101,44,34,97,34,41,46,99,111,110,99,97,116,40,91,34,116,105,116,108,101,34,44,34,105,99,111,110,34,93,41,59,105,102,40,33,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,115,104,111,119,67,104,101,99,107,98,111,120,101,115,41,123,118,97,114,32,111,61,116,104,105,115,46,112,114,111,112,115,46,101,120,112,97,110,100,101,100,63,34,105,99,111,110,45,102,111,108,100,101,114,45,111,112,101,110,34,58,34,105,99,111,110,45,102,111,108,100,101,114,34,59,110,46,112,117,115,104,40,101,46,105,116,114,101,101,46,105,99,111,110,124,124,40,116,104,105,115,46,112,114,111,112,115,46,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,63,111,58,34,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,34,41,41,125,116,46,99,108,97,115,115,61,116,46,99,108,97,115,115,78,97,109,101,61,110,46,106,111,105,110,40,34,32,34,41,59,118,97,114,32,114,61,101,46,116,101,120,116,59,114,101,116,117,114,110,32,101,46,101,100,105,116,105,110,103,40,41,38,38,40,114,61,100,40,50,44,81,101,44,123,100,111,109,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,110,111,100,101,58,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,125,41,41,44,99,40,115,40,49,44,34,97,34,44,110,117,108,108,44,114,44,48,44,82,101,40,123,34,100,97,116,97,45,117,105,100,34,58,101,46,105,100,44,111,110,66,108,117,114,58,116,104,105,115,46,98,108,117,114,46,98,105,110,100,40,116,104,105,115,41,44,111,110,67,108,105,99,107,58,116,104,105,115,46,99,108,105,99,107,46,98,105,110,100,40,116,104,105,115,41,44,111,110,67,111,110,116,101,120,116,77,101,110,117,58,116,104,105,115,46,99,111,110,116,101,120,116,77,101,110,117,46,98,105,110,100,40,116,104,105,115,41,44,111,110,68,98,108,67,108,105,99,107,58,116,104,105,115,46,100,98,108,99,108,105,99,107,46,98,105,110,100,40,116,104,105,115,41,44,111,110,70,111,99,117,115,58,116,104,105,115,46,102,111,99,117,115,46,98,105,110,100,40,116,104,105,115,41,44,111,110,77,111,117,115,101,68,111,119,110,58,116,104,105,115,46,109,111,117,115,101,100,111,119,110,46,98,105,110,100,40,116,104,105,115,41,125,44,116,41,41,41,125,125,93,41,44,116,125,40,41,44,71,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,99,108,97,115,115,78,97,109,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,116,111,103,103,108,101,32,105,99,111,110,32,34,43,40,116,104,105,115,46,112,114,111,112,115,46,99,111,108,108,97,112,115,101,100,63,34,105,99,111,110,45,101,120,112,97,110,100,34,58,34,105,99,111,110,45,99,111,108,108,97,112,115,101,34,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,49,44,34,97,34,44,116,104,105,115,46,99,108,97,115,115,78,97,109,101,40,41,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,67,111,108,108,97,112,115,101,46,98,105,110,100,40,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,41,125,41,125,125,93,41,44,116,125,40,41,44,89,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,110,40,101,41,123,65,101,40,116,104,105,115,44,110,41,59,118,97,114,32,116,61,66,101,40,116,104,105,115,44,40,110,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,110,41,41,46,99,97,108,108,40,116,104,105,115,44,101,41,41,59,114,101,116,117,114,110,32,116,46,115,116,97,116,101,61,116,46,115,116,97,116,101,70,114,111,109,78,111,100,101,40,101,46,110,111,100,101,41,44,116,125,114,101,116,117,114,110,32,106,101,40,110,44,76,101,41,44,86,101,40,110,44,91,123,107,101,121,58,34,115,116,97,116,101,70,114,111,109,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,123,100,105,114,116,121,58,101,46,105,116,114,101,101,46,100,105,114,116,121,125,125,125,44,123,107,101,121,58,34,99,111,109,112,111,110,101,110,116,87,105,108,108,82,101,99,101,105,118,101,80,114,111,112,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,116,83,116,97,116,101,40,116,104,105,115,46,115,116,97,116,101,70,114,111,109,78,111,100,101,40,101,46,110,111,100,101,41,41,125,125,44,123,107,101,121,58,34,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,46,100,105,114,116,121,125,125,44,123,107,101,121,58,34,103,101,116,65,116,116,114,105,98,117,116,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,116,61,108,46,99,108,111,110,101,40,101,46,105,116,114,101,101,46,108,105,46,97,116,116,114,105,98,117,116,101,115,41,124,124,123,125,59,114,101,116,117,114,110,32,116,46,99,108,97,115,115,61,116,46,99,108,97,115,115,78,97,109,101,61,116,104,105,115,46,103,101,116,67,108,97,115,115,78,97,109,101,115,40,41,44,116,91,34,100,97,116,97,45,117,105,100,34,93,61,101,46,105,100,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,101,110,97,98,108,101,100,38,38,40,116,46,100,114,97,103,103,97,98,108,101,61,101,46,115,116,97,116,101,40,34,100,114,97,103,103,97,98,108,101,34,41,44,116,46,111,110,68,114,97,103,69,110,100,61,116,104,105,115,46,111,110,68,114,97,103,69,110,100,46,98,105,110,100,40,116,104,105,115,41,44,116,46,111,110,68,114,97,103,69,110,116,101,114,61,116,104,105,115,46,111,110,68,114,97,103,69,110,116,101,114,46,98,105,110,100,40,116,104,105,115,41,44,116,46,111,110,68,114,97,103,76,101,97,118,101,61,116,104,105,115,46,111,110,68,114,97,103,76,101,97,118,101,46,98,105,110,100,40,116,104,105,115,41,44,116,46,111,110,68,114,97,103,83,116,97,114,116,61,116,104,105,115,46,111,110,68,114,97,103,83,116,97,114,116,46,98,105,110,100,40,116,104,105,115,41,44,101,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,41,63,40,116,46,111,110,68,114,97,103,79,118,101,114,61,116,104,105,115,46,111,110,68,114,97,103,79,118,101,114,46,98,105,110,100,40,116,104,105,115,41,44,116,46,111,110,68,114,111,112,61,116,104,105,115,46,111,110,68,114,111,112,46,98,105,110,100,40,116,104,105,115,41,41,58,40,116,46,111,110,68,114,97,103,79,118,101,114,61,110,117,108,108,44,116,46,111,110,68,114,111,112,61,110,117,108,108,41,41,44,116,125,125,44,123,107,101,121,58,34,103,101,116,67,108,97,115,115,78,97,109,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,116,61,101,46,105,116,114,101,101,46,115,116,97,116,101,44,110,61,72,101,40,101,41,59,114,101,116,117,114,110,32,108,46,101,97,99,104,40,79,98,106,101,99,116,46,107,101,121,115,40,116,41,44,102,117,110,99,116,105,111,110,40,101,41,123,116,91,101,93,38,38,110,46,112,117,115,104,40,101,41,125,41,44,33,101,46,104,105,100,100,101,110,40,41,38,38,101,46,114,101,109,111,118,101,100,40,41,38,38,110,46,112,117,115,104,40,34,104,105,100,100,101,110,34,41,44,101,46,101,120,112,97,110,100,101,100,40,41,38,38,110,46,112,117,115,104,40,34,101,120,112,97,110,100,101,100,34,41,44,110,46,112,117,115,104,40,101,46,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,40,41,63,34,102,111,108,100,101,114,34,58,34,108,101,97,102,34,41,44,110,46,106,111,105,110,40,34,32,34,41,125,125,44,123,107,101,121,58,34,103,101,116,84,97,114,103,101,116,68,105,114,101,99,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,101,46,99,108,105,101,110,116,89,44,111,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,44,114,61,111,46,116,111,112,43,111,46,104,101,105,103,104,116,47,51,44,105,61,111,46,98,111,116,116,111,109,45,111,46,104,101,105,103,104,116,47,51,44,97,61,48,59,114,101,116,117,114,110,32,110,60,61,114,63,97,61,45,49,58,105,60,61,110,38,38,40,97,61,49,41,44,97,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,83,116,97,114,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,101,102,102,101,99,116,65,108,108,111,119,101,100,61,34,109,111,118,101,34,44,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,100,114,111,112,69,102,102,101,99,116,61,34,109,111,118,101,34,59,118,97,114,32,110,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,97,99,116,105,118,101,68,114,97,103,78,111,100,101,61,110,44,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,115,101,116,68,97,116,97,40,34,116,114,101,101,73,100,34,44,110,46,116,114,101,101,40,41,46,105,100,41,44,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,115,101,116,68,97,116,97,40,34,110,111,100,101,73,100,34,44,110,46,105,100,41,44,110,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,33,49,41,44,110,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,110,46,99,104,105,108,100,114,101,110,46,115,116,97,116,101,68,101,101,112,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,33,49,41,44,34,100,114,97,103,115,116,97,114,116,34,61,61,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,118,97,108,105,100,97,116,101,79,110,41,123,118,97,114,32,111,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,118,97,108,105,100,97,116,101,44,114,61,108,46,105,115,70,117,110,99,116,105,111,110,40,111,41,59,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,102,117,110,99,116,105,111,110,32,116,40,101,44,110,41,123,105,46,105,115,84,114,101,101,78,111,100,101,115,40,101,41,63,108,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,116,40,101,44,110,41,125,41,58,105,46,105,115,84,114,101,101,78,111,100,101,40,101,41,38,38,33,49,33,61,61,110,40,101,41,38,38,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,116,40,101,46,99,104,105,108,100,114,101,110,44,110,41,125,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,109,111,100,101,108,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,105,100,33,61,61,110,46,105,100,59,114,101,116,117,114,110,32,116,38,38,40,116,61,33,101,46,104,97,115,65,110,99,101,115,116,111,114,40,110,41,41,44,116,38,38,114,38,38,40,116,61,111,40,110,44,101,41,41,44,101,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,116,41,44,116,125,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,110,100,40,41,125,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,115,116,97,114,116,34,44,101,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,69,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,101,110,100,34,44,101,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,69,110,116,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,114,101,99,117,114,115,101,85,112,40,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,33,48,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,101,110,116,101,114,34,44,101,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,76,101,97,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,108,101,97,118,101,34,44,101,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,79,118,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,118,97,114,32,116,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,97,99,116,105,118,101,68,114,97,103,78,111,100,101,44,110,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,111,61,116,104,105,115,46,103,101,116,84,97,114,103,101,116,68,105,114,101,99,116,105,111,110,40,101,44,110,46,105,116,114,101,101,46,114,101,102,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,97,34,41,41,59,105,102,40,34,100,114,97,103,111,118,101,114,34,61,61,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,118,97,108,105,100,97,116,101,79,110,41,123,118,97,114,32,114,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,118,97,108,105,100,97,116,101,44,105,61,108,46,105,115,70,117,110,99,116,105,111,110,40,114,41,44,97,61,116,46,105,100,33,61,61,110,46,105,100,59,105,102,40,97,38,38,40,97,61,33,110,46,104,97,115,65,110,99,101,115,116,111,114,40,116,41,41,44,97,38,38,105,38,38,40,97,61,114,40,116,44,110,44,111,41,41,44,110,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,97,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,33,97,41,114,101,116,117,114,110,125,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,110,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,33,48,41,44,110,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,97,98,111,118,101,34,44,45,49,61,61,61,111,41,44,110,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,98,101,108,111,119,34,44,49,61,61,61,111,41,44,110,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,34,44,48,61,61,61,111,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,110,100,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,111,118,101,114,34,44,101,44,111,41,125,125,44,123,107,101,121,58,34,111,110,68,114,111,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,41,59,118,97,114,32,116,61,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,34,116,114,101,101,73,100,34,41,44,110,61,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,34,110,111,100,101,73,100,34,41,44,111,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,97,99,116,105,118,101,68,114,97,103,78,111,100,101,61,110,117,108,108,59,118,97,114,32,114,61,116,104,105,115,46,103,101,116,84,97,114,103,101,116,68,105,114,101,99,116,105,111,110,40,101,44,101,46,116,97,114,103,101,116,41,44,105,61,118,111,105,100,32,48,59,116,61,61,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,105,100,63,105,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,58,116,38,38,40,105,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,39,91,100,97,116,97,45,117,105,100,61,34,39,43,116,43,39,34,93,39,41,46,105,110,115,112,105,114,101,84,114,101,101,41,59,118,97,114,32,97,61,118,111,105,100,32,48,44,115,61,118,111,105,100,32,48,59,105,102,40,105,41,123,118,97,114,32,108,61,105,46,110,111,100,101,40,110,41,59,108,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,33,48,41,59,118,97,114,32,100,61,108,46,114,101,109,111,118,101,40,33,48,41,44,99,61,111,46,99,111,110,116,101,120,116,40,41,46,105,110,100,101,120,79,102,40,111,41,59,48,61,61,61,114,63,40,97,61,111,46,97,100,100,67,104,105,108,100,40,100,41,44,115,61,111,46,99,104,105,108,100,114,101,110,46,105,110,100,101,120,79,102,40,97,41,44,111,46,101,120,112,97,110,100,40,41,41,58,40,115,61,49,61,61,61,114,63,43,43,99,58,99,44,97,61,111,46,99,111,110,116,101,120,116,40,41,46,105,110,115,101,114,116,65,116,40,115,44,100,41,41,125,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,111,112,34,44,101,44,97,44,111,44,115,41,125,125,44,123,107,101,121,58,34,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,40,101,124,124,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,41,46,115,116,97,116,101,115,40,91,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,97,98,111,118,101,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,98,101,108,111,119,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,34,93,44,33,49,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,67,104,101,99,107,98,111,120,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,115,104,111,119,67,104,101,99,107,98,111,120,101,115,41,114,101,116,117,114,110,32,100,40,50,44,87,101,44,123,99,104,101,99,107,101,100,58,101,46,99,104,101,99,107,101,100,40,41,44,100,111,109,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,105,110,100,101,116,101,114,109,105,110,97,116,101,58,101,46,105,110,100,101,116,101,114,109,105,110,97,116,101,40,41,44,110,111,100,101,58,101,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,44,116,61,101,46,110,111,100,101,44,110,61,101,46,100,111,109,59,105,102,40,116,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,123,118,97,114,32,111,61,116,46,99,104,105,108,100,114,101,110,44,114,61,110,46,108,111,97,100,105,110,103,44,105,61,111,46,112,97,103,105,110,97,116,105,111,110,40,41,59,114,101,116,117,114,110,32,100,40,50,44,74,101,44,123,99,111,110,116,101,120,116,58,116,44,100,111,109,58,110,44,108,105,109,105,116,58,105,46,108,105,109,105,116,44,108,111,97,100,105,110,103,58,114,44,110,111,100,101,115,58,111,44,116,111,116,97,108,58,105,46,116,111,116,97,108,125,41,125,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,105,115,68,121,110,97,109,105,99,38,38,116,46,99,104,105,108,100,114,101,110,41,114,101,116,117,114,110,32,116,46,104,97,115,76,111,97,100,101,100,67,104,105,108,100,114,101,110,40,41,63,100,40,50,44,75,101,44,123,116,101,120,116,58,34,78,111,32,82,101,115,117,108,116,115,34,125,41,58,100,40,50,44,75,101,44,123,116,101,120,116,58,34,76,111,97,100,105,110,103,46,46,46,34,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,69,100,105,116,84,111,111,108,98,97,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,38,38,33,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,101,100,105,116,105,110,103,40,41,41,114,101,116,117,114,110,32,100,40,50,44,113,101,44,123,100,111,109,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,110,111,100,101,58,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,84,111,103,103,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,105,115,68,121,110,97,109,105,99,63,66,111,111,108,101,97,110,40,101,46,99,104,105,108,100,114,101,110,41,58,101,46,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,40,41,41,114,101,116,117,114,110,32,100,40,50,44,71,101,44,123,99,111,108,108,97,112,115,101,100,58,101,46,99,111,108,108,97,112,115,101,100,40,41,44,110,111,100,101,58,101,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,110,61,99,40,115,40,49,44,34,108,105,34,44,110,117,108,108,44,91,116,104,105,115,46,114,101,110,100,101,114,69,100,105,116,84,111,111,108,98,97,114,40,41,44,115,40,49,44,34,100,105,118,34,44,34,116,105,116,108,101,45,119,114,97,112,34,44,91,116,104,105,115,46,114,101,110,100,101,114,84,111,103,103,108,101,40,41,44,116,104,105,115,46,114,101,110,100,101,114,67,104,101,99,107,98,111,120,40,41,44,100,40,50,44,122,101,44,123,100,111,109,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,101,100,105,116,105,110,103,58,101,46,101,100,105,116,105,110,103,40,41,44,101,120,112,97,110,100,101,100,58,101,46,101,120,112,97,110,100,101,100,40,41,44,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,58,101,46,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,40,41,44,110,111,100,101,58,101,44,116,101,120,116,58,101,46,116,101,120,116,125,41,93,44,48,41,44,115,40,49,44,34,100,105,118,34,44,34,119,104,111,108,101,114,111,119,34,41,44,116,104,105,115,46,114,101,110,100,101,114,67,104,105,108,100,114,101,110,40,41,93,44,48,44,82,101,40,123,125,44,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,115,40,41,41,44,110,117,108,108,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,110,111,100,101,61,116,46,112,114,111,112,115,46,110,111,100,101,46,105,116,114,101,101,46,114,101,102,61,101,125,41,41,59,114,101,116,117,114,110,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,116,97,116,101,40,34,114,101,110,100,101,114,101,100,34,44,33,48,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,105,116,114,101,101,46,100,105,114,116,121,61,33,49,44,110,125,125,93,41,44,110,125,40,41,44,74,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,108,46,102,105,110,100,40,101,46,110,111,100,101,115,44,34,105,116,114,101,101,46,100,105,114,116,121,34,41,124,124,88,101,40,116,104,105,115,46,112,114,111,112,115,44,101,41,125,125,44,123,107,101,121,58,34,105,115,68,101,102,101,114,114,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,82,101,110,100,101,114,105,110,103,124,124,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,125,125,44,123,107,101,121,58,34,108,111,97,100,77,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,112,114,111,112,115,46,99,111,110,116,101,120,116,63,116,104,105,115,46,112,114,111,112,115,46,99,111,110,116,101,120,116,46,108,111,97,100,77,111,114,101,40,101,41,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,108,111,97,100,77,111,114,101,40,101,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,76,111,97,100,77,111,114,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,49,44,34,108,105,34,44,34,108,101,97,102,32,100,101,116,97,99,104,101,100,34,44,115,40,49,44,34,97,34,44,34,116,105,116,108,101,32,105,99,111,110,32,105,99,111,110,45,109,111,114,101,32,108,111,97,100,45,109,111,114,101,34,44,36,40,34,76,111,97,100,32,77,111,114,101,34,41,44,50,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,108,111,97,100,77,111,114,101,46,98,105,110,100,40,116,104,105,115,41,125,41,44,50,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,76,111,97,100,105,110,103,84,101,120,116,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,49,44,34,108,105,34,44,34,108,101,97,102,34,44,115,40,49,44,34,115,112,97,110,34,44,34,116,105,116,108,101,32,105,99,111,110,32,105,99,111,110,45,109,111,114,101,34,44,36,40,34,76,111,97,100,105,110,103,46,46,46,34,41,44,50,41,44,50,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,115,44,110,61,101,46,112,97,103,105,110,97,116,105,111,110,40,41,59,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,82,101,110,100,101,114,105,110,103,41,123,118,97,114,32,111,61,48,59,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,33,40,101,46,104,105,100,100,101,110,40,41,124,124,101,46,114,101,109,111,118,101,100,40,41,41,59,114,101,116,117,114,110,32,116,38,38,111,43,43,44,111,60,61,110,46,108,105,109,105,116,38,38,116,125,41,125,118,97,114,32,114,61,108,46,109,97,112,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,100,40,50,44,89,101,44,123,100,111,109,58,116,46,112,114,111,112,115,46,100,111,109,44,110,111,100,101,58,101,125,44,101,46,105,100,41,125,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,115,68,101,102,101,114,114,101,100,40,41,38,38,110,46,108,105,109,105,116,60,110,46,116,111,116,97,108,38,38,40,116,104,105,115,46,112,114,111,112,115,46,108,111,97,100,105,110,103,63,114,46,112,117,115,104,40,116,104,105,115,46,114,101,110,100,101,114,76,111,97,100,105,110,103,84,101,120,116,78,111,100,101,40,41,41,58,114,46,112,117,115,104,40,116,104,105,115,46,114,101,110,100,101,114,76,111,97,100,77,111,114,101,78,111,100,101,40,41,41,41,44,115,40,49,44,34,111,108,34,44,110,117,108,108,44,91,114,44,116,104,105,115,46,112,114,111,112,115,46,99,104,105,108,100,114,101,110,93,44,48,41,125,125,93,41,44,116,125,40,41,44,90,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,97,100,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,102,111,99,117,115,101,100,40,41,46,98,108,117,114,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,97,100,100,78,111,100,101,40,123,116,101,120,116,58,34,78,101,119,32,78,111,100,101,34,44,105,116,114,101,101,58,123,115,116,97,116,101,58,123,101,100,105,116,105,110,103,58,33,48,44,102,111,99,117,115,101,100,58,33,48,125,125,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,65,100,100,76,105,110,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,97,100,100,41,114,101,116,117,114,110,32,115,40,49,44,34,108,105,34,44,110,117,108,108,44,115,40,49,44,34,97,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,112,108,117,115,34,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,97,100,100,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,65,100,100,32,97,32,110,101,119,32,114,111,111,116,32,110,111,100,101,34,125,41,44,50,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,44,116,61,101,46,100,111,109,44,110,61,101,46,110,111,100,101,115,44,111,61,116,46,108,111,97,100,105,110,103,44,114,61,110,46,112,97,103,105,110,97,116,105,111,110,40,41,59,114,101,116,117,114,110,32,100,40,50,44,74,101,44,123,100,111,109,58,116,44,108,105,109,105,116,58,114,46,108,105,109,105,116,44,108,111,97,100,105,110,103,58,111,44,110,111,100,101,115,58,110,44,116,111,116,97,108,58,114,46,116,111,116,97,108,44,99,104,105,108,100,114,101,110,58,116,104,105,115,46,114,101,110,100,101,114,65,100,100,76,105,110,107,40,41,125,41,125,125,93,41,44,116,125,40,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,115,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,65,101,40,116,104,105,115,44,115,41,44,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,105,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,84,114,101,101,32,97,114,103,117,109,101,110,116,32,105,115,32,110,111,116,32,97,110,32,73,110,115,112,105,114,101,84,114,101,101,32,105,110,115,116,97,110,99,101,46,34,41,59,105,102,40,116,104,105,115,46,95,116,114,101,101,61,101,44,116,104,105,115,46,98,97,116,99,104,105,110,103,61,48,44,116,104,105,115,46,100,114,111,112,84,97,114,103,101,116,115,61,91,93,44,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,44,33,116,46,116,97,114,103,101,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,96,116,97,114,103,101,116,96,32,112,114,111,112,101,114,116,121,32,45,32,109,117,115,116,32,98,101,32,97,32,115,101,108,101,99,116,111,114,44,32,72,84,77,76,69,108,101,109,101,110,116,44,32,111,114,32,106,81,117,101,114,121,32,101,108,101,109,101,110,116,46,34,41,59,118,97,114,32,111,61,123,101,110,97,98,108,101,100,58,33,40,101,46,117,115,101,115,78,97,116,105,118,101,68,79,77,61,33,48,41,44,118,97,108,105,100,97,116,101,79,110,58,34,100,114,97,103,115,116,97,114,116,34,44,118,97,108,105,100,97,116,101,58,110,117,108,108,125,59,116,104,105,115,46,99,111,110,102,105,103,61,108,46,100,101,102,97,117,108,116,115,68,101,101,112,40,123,125,44,116,44,123,97,117,116,111,76,111,97,100,77,111,114,101,58,33,48,44,100,101,102,101,114,114,101,100,82,101,110,100,101,114,105,110,103,58,33,49,44,100,114,97,103,65,110,100,68,114,111,112,58,111,44,110,111,100,101,72,101,105,103,104,116,58,50,53,44,115,104,111,119,67,104,101,99,107,98,111,120,101,115,58,33,49,44,116,97,98,105,110,100,101,120,58,45,49,44,116,97,114,103,101,116,58,33,49,125,41,44,33,48,61,61,61,116,46,100,114,97,103,65,110,100,68,114,111,112,38,38,40,116,104,105,115,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,61,111,44,116,104,105,115,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,101,110,97,98,108,101,100,61,33,48,41,44,34,99,104,101,99,107,98,111,120,34,33,61,61,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,111,100,101,124,124,108,46,105,115,66,111,111,108,101,97,110,40,108,46,103,101,116,40,116,44,34,115,104,111,119,67,104,101,99,107,98,111,120,101,115,34,41,41,124,124,40,116,104,105,115,46,99,111,110,102,105,103,46,115,104,111,119,67,104,101,99,107,98,111,120,101,115,61,33,48,41,44,116,104,105,115,46,105,115,68,121,110,97,109,105,99,61,108,46,105,115,70,117,110,99,116,105,111,110,40,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,97,116,97,41,44,116,104,105,115,46,97,116,116,97,99,104,40,116,104,105,115,46,99,111,110,102,105,103,46,116,97,114,103,101,116,41,59,118,97,114,32,114,61,33,48,59,101,46,111,110,40,34,99,104,97,110,103,101,115,46,97,112,112,108,105,101,100,34,44,102,117,110,99,116,105,111,110,40,41,123,110,46,114,101,110,100,101,114,78,111,100,101,115,40,41,44,114,38,38,40,110,46,115,99,114,111,108,108,83,101,108,101,99,116,101,100,73,110,116,111,86,105,101,119,40,41,44,114,61,33,49,41,125,41,44,116,104,105,115,46,114,101,110,100,101,114,78,111,100,101,115,40,41,125,114,101,116,117,114,110,32,86,101,40,115,44,91,123,107,101,121,58,34,97,116,116,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,116,104,105,115,46,36,116,97,114,103,101,116,61,116,104,105,115,46,103,101,116,69,108,101,109,101,110,116,40,101,41,44,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,61,116,104,105,115,46,103,101,116,83,99,114,111,108,108,97,98,108,101,65,110,99,101,115,116,111,114,40,116,104,105,115,46,36,116,97,114,103,101,116,41,44,33,116,104,105,115,46,36,116,97,114,103,101,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,78,111,32,118,97,108,105,100,32,101,108,101,109,101,110,116,32,116,111,32,97,116,116,97,99,104,32,116,111,46,34,41,59,116,104,105,115,46,36,116,97,114,103,101,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,117,105,100,34,44,116,104,105,115,46,95,116,114,101,101,46,105,100,41,59,118,97,114,32,110,61,116,104,105,115,46,36,116,97,114,103,101,116,46,99,108,97,115,115,78,97,109,101,46,115,112,108,105,116,40,34,32,34,41,59,105,102,40,110,46,112,117,115,104,40,34,105,110,115,112,105,114,101,45,116,114,101,101,34,41,44,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,97,98,108,101,38,38,40,110,46,112,117,115,104,40,34,101,100,105,116,97,98,108,101,34,41,44,108,46,101,97,99,104,40,108,46,112,105,99,107,66,121,40,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,44,108,46,105,100,101,110,116,105,116,121,41,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,110,46,112,117,115,104,40,34,101,100,105,116,97,98,108,101,45,34,43,116,41,125,41,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,99,108,97,115,115,78,97,109,101,61,110,46,106,111,105,110,40,34,32,34,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,97,98,105,110,100,101,120,34,44,116,104,105,115,46,99,111,110,102,105,103,46,116,97,98,105,110,100,101,120,124,124,48,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,107,101,121,100,111,119,110,34,44,116,104,105,115,46,107,101,121,98,111,97,114,100,76,105,115,116,101,110,101,114,46,98,105,110,100,40,116,104,105,115,41,41,44,116,104,105,115,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,101,110,97,98,108,101,100,38,38,40,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,100,114,97,103,101,110,116,101,114,34,44,116,104,105,115,46,111,110,68,114,97,103,69,110,116,101,114,46,98,105,110,100,40,116,104,105,115,41,44,33,49,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,100,114,97,103,108,101,97,118,101,34,44,116,104,105,115,46,111,110,68,114,97,103,76,101,97,118,101,46,98,105,110,100,40,116,104,105,115,41,44,33,49,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,100,114,97,103,111,118,101,114,34,44,116,104,105,115,46,111,110,68,114,97,103,79,118,101,114,46,98,105,110,100,40,116,104,105,115,41,44,33,49,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,100,114,111,112,34,44,116,104,105,115,46,111,110,68,114,111,112,46,98,105,110,100,40,116,104,105,115,41,44,33,49,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,100,114,97,103,45,97,110,100,45,100,114,111,112,34,41,41,44,116,104,105,115,46,95,116,114,101,101,46,111,110,40,34,110,111,100,101,46,102,111,99,117,115,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,105,116,114,101,101,46,114,101,102,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,116,105,116,108,101,34,41,59,116,33,61,61,100,111,99,117,109,101,110,116,46,97,99,116,105,118,101,69,108,101,109,101,110,116,38,38,116,46,102,111,99,117,115,40,41,125,41,44,116,104,105,115,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,82,101,110,100,101,114,105,110,103,124,124,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,41,123,118,97,114,32,116,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,59,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,61,48,60,116,63,116,58,108,46,99,101,105,108,40,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,46,99,108,105,101,110,116,72,101,105,103,104,116,47,116,104,105,115,46,99,111,110,102,105,103,46,110,111,100,101,72,101,105,103,104,116,41,44,116,104,105,115,46,99,111,110,102,105,103,46,97,117,116,111,76,111,97,100,77,111,114,101,38,38,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,115,99,114,111,108,108,34,44,108,46,116,104,114,111,116,116,108,101,40,116,104,105,115,46,115,99,114,111,108,108,76,105,115,116,101,110,101,114,46,98,105,110,100,40,116,104,105,115,41,44,50,48,41,41,125,116,104,105,115,46,36,116,97,114,103,101,116,46,105,110,115,112,105,114,101,84,114,101,101,61,116,104,105,115,46,95,116,114,101,101,125,125,44,123,107,101,121,58,34,99,108,101,97,114,83,101,108,101,99,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,100,111,99,117,109,101,110,116,46,115,101,108,101,99,116,105,111,110,38,38,100,111,99,117,109,101,110,116,46,115,101,108,101,99,116,105,111,110,46,101,109,112,116,121,63,100,111,99,117,109,101,110,116,46,115,101,108,101,99,116,105,111,110,46,101,109,112,116,121,40,41,58,119,105,110,100,111,119,46,103,101,116,83,101,108,101,99,116,105,111,110,38,38,119,105,110,100,111,119,46,103,101,116,83,101,108,101,99,116,105,111,110,40,41,46,114,101,109,111,118,101,65,108,108,82,97,110,103,101,115,40,41,125,125,44,123,107,101,121,58,34,103,101,116,69,108,101,109,101,110,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,118,111,105,100,32,48,59,105,102,40,101,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,69,108,101,109,101,110,116,41,116,61,101,59,101,108,115,101,32,105,102,40,108,46,105,115,79,98,106,101,99,116,40,101,41,38,38,108,46,105,115,79,98,106,101,99,116,40,101,91,48,93,41,41,116,61,101,91,48,93,59,101,108,115,101,32,105,102,40,108,46,105,115,83,116,114,105,110,103,40,101,41,41,123,118,97,114,32,110,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,101,41,59,110,38,38,40,116,61,110,41,125,114,101,116,117,114,110,32,116,125,125,44,123,107,101,121,58,34,103,101,116,83,99,114,111,108,108,97,98,108,101,65,110,99,101,115,116,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,32,105,110,115,116,97,110,99,101,111,102,32,69,108,101,109,101,110,116,38,38,40,34,97,117,116,111,34,33,61,61,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,101,41,46,111,118,101,114,102,108,111,119,38,38,101,46,112,97,114,101,110,116,78,111,100,101,38,38,40,101,61,116,104,105,115,46,103,101,116,83,99,114,111,108,108,97,98,108,101,65,110,99,101,115,116,111,114,40,101,46,112,97,114,101,110,116,78,111,100,101,41,41,41,59,114,101,116,117,114,110,32,101,125,125,44,123,107,101,121,58,34,107,101,121,98,111,97,114,100,76,105,115,116,101,110,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,33,40,91,73,101,44,85,101,44,77,101,44,70,101,44,69,101,93,46,105,110,100,101,120,79,102,40,101,46,119,104,105,99,104,41,60,48,41,41,123,118,97,114,32,116,61,116,104,105,115,46,95,116,114,101,101,46,102,111,99,117,115,101,100,40,41,59,105,102,40,116,46,108,101,110,103,116,104,41,115,119,105,116,99,104,40,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,119,104,105,99,104,41,123,99,97,115,101,32,73,101,58,116,104,105,115,46,109,111,118,101,70,111,99,117,115,68,111,119,110,70,114,111,109,40,116,91,48,93,41,59,98,114,101,97,107,59,99,97,115,101,32,85,101,58,116,91,48,93,46,116,111,103,103,108,101,83,101,108,101,99,116,40,41,59,98,114,101,97,107,59,99,97,115,101,32,77,101,58,116,91,48,93,46,99,111,108,108,97,112,115,101,40,41,59,98,114,101,97,107,59,99,97,115,101,32,70,101,58,116,91,48,93,46,101,120,112,97,110,100,40,41,59,98,114,101,97,107,59,99,97,115,101,32,69,101,58,116,104,105,115,46,109,111,118,101,70,111,99,117,115,85,112,70,114,111,109,40,116,91,48,93,41,125,125,125,125,44,123,107,101,121,58,34,109,111,118,101,70,111,99,117,115,68,111,119,110,70,114,111,109,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,40,41,59,116,38,38,116,46,102,111,99,117,115,40,41,125,125,44,123,107,101,121,58,34,109,111,118,101,70,111,99,117,115,85,112,70,114,111,109,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,78,111,100,101,40,41,59,116,38,38,116,46,102,111,99,117,115,40,41,125,125,44,123,107,101,121,58,34,110,111,100,101,70,114,111,109,84,105,116,108,101,68,79,77,69,108,101,109,101,110,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,97,114,101,110,116,78,111,100,101,46,112,97,114,101,110,116,78,111,100,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,117,105,100,34,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,40,116,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,69,110,116,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,116,97,114,103,101,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,34,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,76,101,97,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,101,46,116,97,114,103,101,116,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,79,118,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,125,125,44,123,107,101,121,58,34,111,110,68,114,111,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,101,46,116,97,114,103,101,116,41,59,118,97,114,32,116,61,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,34,116,114,101,101,73,100,34,41,44,110,61,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,34,110,111,100,101,73,100,34,41,44,111,61,115,46,103,101,116,84,114,101,101,66,121,73,100,40,116,41,46,110,111,100,101,40,110,41,59,111,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,33,48,41,59,118,97,114,32,114,61,111,46,114,101,109,111,118,101,40,33,48,41,44,105,61,116,104,105,115,46,95,116,114,101,101,46,97,100,100,78,111,100,101,40,114,41,44,97,61,116,104,105,115,46,95,116,114,101,101,46,105,110,100,101,120,79,102,40,105,41,59,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,111,112,34,44,101,44,105,44,110,117,108,108,44,97,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,40,100,40,50,44,90,101,44,123,100,111,109,58,116,104,105,115,44,110,111,100,101,115,58,101,124,124,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,115,40,41,125,41,44,116,104,105,115,46,36,116,97,114,103,101,116,41,125,125,44,123,107,101,121,58,34,115,99,114,111,108,108,76,105,115,116,101,110,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,105,61,116,104,105,115,59,105,102,40,33,116,104,105,115,46,114,101,110,100,101,114,105,110,103,38,38,33,116,104,105,115,46,108,111,97,100,105,110,103,41,123,118,97,114,32,97,61,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,44,101,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,46,108,111,97,100,45,109,111,114,101,34,41,59,108,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,105,102,40,33,40,97,46,114,105,103,104,116,60,116,46,108,101,102,116,124,124,97,46,108,101,102,116,62,116,46,114,105,103,104,116,124,124,97,46,98,111,116,116,111,109,60,116,46,116,111,112,124,124,97,46,116,111,112,62,116,46,98,111,116,116,111,109,41,41,123,118,97,114,32,110,61,118,111,105,100,32,48,44,111,61,101,46,112,97,114,101,110,116,78,111,100,101,46,112,97,114,101,110,116,78,111,100,101,46,112,97,114,101,110,116,78,111,100,101,59,34,76,73,34,61,61,61,111,46,116,97,103,78,97,109,101,38,38,40,110,61,105,46,95,116,114,101,101,46,110,111,100,101,40,111,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,117,105,100,34,41,41,41,44,105,46,95,116,114,101,101,46,108,111,97,100,77,111,114,101,40,110,44,114,41,125,125,41,125,125,125,44,123,107,101,121,58,34,115,99,114,111,108,108,83,101,108,101,99,116,101,100,73,110,116,111,86,105,101,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,116,97,114,103,101,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,115,101,108,101,99,116,101,100,34,41,59,101,38,38,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,38,38,40,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,46,115,99,114,111,108,108,84,111,112,61,101,46,111,102,102,115,101,116,84,111,112,41,125,125,44,123,107,101,121,58,34,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,38,38,101,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,34,41,125,125,93,44,91,123,107,101,121,58,34,103,101,116,84,114,101,101,66,121,73,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,39,91,100,97,116,97,45,117,105,100,61,34,39,43,101,43,39,34,93,39,41,59,105,102,40,116,41,114,101,116,117,114,110,32,116,46,105,110,115,112,105,114,101,84,114,101,101,125,125,93,41,44,115,125,40,41,125,41,59,59,10,10,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,79,98,106,101,99,116,46,99,114,101,97,116,101,38,38,40,79,98,106,101,99,116,46,99,114,101,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,111,40,41,123,125,114,101,116,117,114,110,32,111,46,112,114,111,116,111,116,121,112,101,61,116,44,110,101,119,32,111,125,41,44,102,117,110,99,116,105,111,110,40,116,44,111,44,105,44,115,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,110,61,123,95,112,111,115,105,116,105,111,110,67,108,97,115,115,101,115,58,91,34,98,111,116,116,111,109,45,108,101,102,116,34,44,34,98,111,116,116,111,109,45,114,105,103,104,116,34,44,34,116,111,112,45,114,105,103,104,116,34,44,34,116,111,112,45,108,101,102,116,34,44,34,98,111,116,116,111,109,45,99,101,110,116,101,114,34,44,34,116,111,112,45,99,101,110,116,101,114,34,44,34,109,105,100,45,99,101,110,116,101,114,34,93,44,95,100,101,102,97,117,108,116,73,99,111,110,115,58,91,34,115,117,99,99,101,115,115,34,44,34,101,114,114,111,114,34,44,34,105,110,102,111,34,44,34,119,97,114,110,105,110,103,34,93,44,105,110,105,116,58,102,117,110,99,116,105,111,110,40,111,44,105,41,123,116,104,105,115,46,112,114,101,112,97,114,101,79,112,116,105,111,110,115,40,111,44,116,46,116,111,97,115,116,46,111,112,116,105,111,110,115,41,44,116,104,105,115,46,112,114,111,99,101,115,115,40,41,125,44,112,114,101,112,97,114,101,79,112,116,105,111,110,115,58,102,117,110,99,116,105,111,110,40,111,44,105,41,123,118,97,114,32,115,61,123,125,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,111,124,124,111,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,63,115,46,116,101,120,116,61,111,58,115,61,111,44,116,104,105,115,46,111,112,116,105,111,110,115,61,116,46,101,120,116,101,110,100,40,123,125,44,105,44,115,41,125,44,112,114,111,99,101,115,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,117,112,40,41,44,116,104,105,115,46,97,100,100,84,111,68,111,109,40,41,44,116,104,105,115,46,112,111,115,105,116,105,111,110,40,41,44,116,104,105,115,46,98,105,110,100,84,111,97,115,116,40,41,44,116,104,105,115,46,97,110,105,109,97,116,101,40,41,125,44,115,101,116,117,112,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,34,34,59,105,102,40,116,104,105,115,46,95,116,111,97,115,116,69,108,61,116,104,105,115,46,95,116,111,97,115,116,69,108,124,124,116,40,34,60,100,105,118,62,60,47,100,105,118,62,34,44,123,99,108,97,115,115,58,34,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,125,41,44,111,43,61,39,60,115,112,97,110,32,99,108,97,115,115,61,34,106,113,45,116,111,97,115,116,45,108,111,97,100,101,114,34,62,60,47,115,112,97,110,62,39,44,116,104,105,115,46,111,112,116,105,111,110,115,46,97,108,108,111,119,84,111,97,115,116,67,108,111,115,101,38,38,40,111,43,61,39,60,115,112,97,110,32,99,108,97,115,115,61,34,99,108,111,115,101,45,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,62,38,116,105,109,101,115,59,60,47,115,112,97,110,62,39,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,41,123,116,104,105,115,46,111,112,116,105,111,110,115,46,104,101,97,100,105,110,103,38,38,40,111,43,61,39,60,104,50,32,99,108,97,115,115,61,34,106,113,45,116,111,97,115,116,45,104,101,97,100,105,110,103,34,62,39,43,116,104,105,115,46,111,112,116,105,111,110,115,46,104,101,97,100,105,110,103,43,34,60,47,104,50,62,34,41,44,111,43,61,39,60,117,108,32,99,108,97,115,115,61,34,106,113,45,116,111,97,115,116,45,117,108,34,62,39,59,102,111,114,40,118,97,114,32,105,61,48,59,105,60,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,46,108,101,110,103,116,104,59,105,43,43,41,111,43,61,39,60,108,105,32,99,108,97,115,115,61,34,106,113,45,116,111,97,115,116,45,108,105,34,32,105,100,61,34,106,113,45,116,111,97,115,116,45,105,116,101,109,45,39,43,105,43,39,34,62,39,43,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,91,105,93,43,34,60,47,108,105,62,34,59,111,43,61,34,60,47,117,108,62,34,125,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,104,101,97,100,105,110,103,38,38,40,111,43,61,39,60,104,50,32,99,108,97,115,115,61,34,106,113,45,116,111,97,115,116,45,104,101,97,100,105,110,103,34,62,39,43,116,104,105,115,46,111,112,116,105,111,110,115,46,104,101,97,100,105,110,103,43,34,60,47,104,50,62,34,41,44,111,43,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,59,116,104,105,115,46,95,116,111,97,115,116,69,108,46,104,116,109,108,40,111,41,44,33,49,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,98,103,67,111,108,111,114,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,99,115,115,40,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,34,44,116,104,105,115,46,111,112,116,105,111,110,115,46,98,103,67,111,108,111,114,41,44,33,49,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,67,111,108,111,114,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,99,115,115,40,34,99,111,108,111,114,34,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,67,111,108,111,114,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,65,108,105,103,110,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,99,115,115,40,34,116,101,120,116,45,97,108,105,103,110,34,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,65,108,105,103,110,41,44,33,49,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,105,99,111,110,38,38,40,116,104,105,115,46,95,116,111,97,115,116,69,108,46,97,100,100,67,108,97,115,115,40,34,106,113,45,104,97,115,45,105,99,111,110,34,41,44,45,49,33,61,61,116,46,105,110,65,114,114,97,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,105,99,111,110,44,116,104,105,115,46,95,100,101,102,97,117,108,116,73,99,111,110,115,41,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,97,100,100,67,108,97,115,115,40,34,106,113,45,105,99,111,110,45,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,105,99,111,110,41,41,44,33,49,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,97,115,115,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,97,100,100,67,108,97,115,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,97,115,115,41,125,44,112,111,115,105,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,38,38,45,49,33,61,61,116,46,105,110,65,114,114,97,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,44,116,104,105,115,46,95,112,111,115,105,116,105,111,110,67,108,97,115,115,101,115,41,63,34,98,111,116,116,111,109,45,99,101,110,116,101,114,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,63,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,99,115,115,40,123,108,101,102,116,58,116,40,111,41,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,45,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,44,98,111,116,116,111,109,58,50,48,125,41,58,34,116,111,112,45,99,101,110,116,101,114,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,63,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,99,115,115,40,123,108,101,102,116,58,116,40,111,41,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,45,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,44,116,111,112,58,50,48,125,41,58,34,109,105,100,45,99,101,110,116,101,114,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,63,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,99,115,115,40,123,108,101,102,116,58,116,40,111,41,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,45,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,44,116,111,112,58,116,40,111,41,46,111,117,116,101,114,72,101,105,103,104,116,40,41,47,50,45,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,111,117,116,101,114,72,101,105,103,104,116,40,41,47,50,125,41,58,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,97,100,100,67,108,97,115,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,41,58,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,63,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,99,115,115,40,123,116,111,112,58,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,116,111,112,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,116,111,112,58,34,97,117,116,111,34,44,98,111,116,116,111,109,58,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,98,111,116,116,111,109,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,98,111,116,116,111,109,58,34,97,117,116,111,34,44,108,101,102,116,58,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,108,101,102,116,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,108,101,102,116,58,34,97,117,116,111,34,44,114,105,103,104,116,58,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,114,105,103,104,116,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,114,105,103,104,116,58,34,97,117,116,111,34,125,41,58,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,97,100,100,67,108,97,115,115,40,34,98,111,116,116,111,109,45,108,101,102,116,34,41,125,44,98,105,110,100,84,111,97,115,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,97,102,116,101,114,83,104,111,119,110,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,112,114,111,99,101,115,115,76,111,97,100,101,114,40,41,125,41,44,116,104,105,115,46,95,116,111,97,115,116,69,108,46,102,105,110,100,40,34,46,99,108,111,115,101,45,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,41,46,111,110,40,34,99,108,105,99,107,34,44,102,117,110,99,116,105,111,110,40,111,41,123,111,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,34,102,97,100,101,34,61,61,61,116,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,63,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,102,97,100,101,79,117,116,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,58,34,115,108,105,100,101,34,61,61,61,116,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,63,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,115,108,105,100,101,85,112,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,58,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,104,105,100,101,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,98,101,102,111,114,101,83,104,111,119,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,98,101,102,111,114,101,83,104,111,119,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,111,112,116,105,111,110,115,46,98,101,102,111,114,101,83,104,111,119,40,116,46,95,116,111,97,115,116,69,108,41,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,97,102,116,101,114,83,104,111,119,110,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,97,102,116,101,114,83,104,111,119,110,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,111,112,116,105,111,110,115,46,97,102,116,101,114,83,104,111,119,110,40,116,46,95,116,111,97,115,116,69,108,41,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,98,101,102,111,114,101,72,105,100,101,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,98,101,102,111,114,101,72,105,100,101,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,111,112,116,105,111,110,115,46,98,101,102,111,114,101,72,105,100,101,40,116,46,95,116,111,97,115,116,69,108,41,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,97,102,116,101,114,72,105,100,100,101,110,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,97,102,116,101,114,72,105,100,100,101,110,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,111,112,116,105,111,110,115,46,97,102,116,101,114,72,105,100,100,101,110,40,116,46,95,116,111,97,115,116,69,108,41,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,108,105,99,107,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,99,108,105,99,107,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,111,112,116,105,111,110,115,46,111,110,67,108,105,99,107,40,116,46,95,116,111,97,115,116,69,108,41,125,41,125,44,97,100,100,84,111,68,111,109,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,116,40,34,46,106,113,45,116,111,97,115,116,45,119,114,97,112,34,41,59,105,102,40,48,61,61,61,111,46,108,101,110,103,116,104,63,40,111,61,116,40,34,60,100,105,118,62,60,47,100,105,118,62,34,44,123,99,108,97,115,115,58,34,106,113,45,116,111,97,115,116,45,119,114,97,112,34,44,114,111,108,101,58,34,97,108,101,114,116,34,44,34,97,114,105,97,45,108,105,118,101,34,58,34,112,111,108,105,116,101,34,125,41,44,116,40,34,98,111,100,121,34,41,46,97,112,112,101,110,100,40,111,41,41,58,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,97,99,107,38,38,33,105,115,78,97,78,40,112,97,114,115,101,73,110,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,97,99,107,44,49,48,41,41,124,124,111,46,101,109,112,116,121,40,41,44,111,46,102,105,110,100,40,34,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,58,104,105,100,100,101,110,34,41,46,114,101,109,111,118,101,40,41,44,111,46,97,112,112,101,110,100,40,116,104,105,115,46,95,116,111,97,115,116,69,108,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,97,99,107,38,38,33,105,115,78,97,78,40,112,97,114,115,101,73,110,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,97,99,107,41,44,49,48,41,41,123,118,97,114,32,105,61,111,46,102,105,110,100,40,34,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,41,46,108,101,110,103,116,104,45,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,97,99,107,59,105,62,48,38,38,116,40,34,46,106,113,45,116,111,97,115,116,45,119,114,97,112,34,41,46,102,105,110,100,40,34,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,41,46,115,108,105,99,101,40,48,44,105,41,46,114,101,109,111,118,101,40,41,125,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,61,111,125,44,99,97,110,65,117,116,111,72,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,49,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,65,102,116,101,114,38,38,33,105,115,78,97,78,40,112,97,114,115,101,73,110,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,65,102,116,101,114,44,49,48,41,41,125,44,112,114,111,99,101,115,115,76,111,97,100,101,114,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,99,97,110,65,117,116,111,72,105,100,101,40,41,124,124,33,49,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,108,111,97,100,101,114,41,114,101,116,117,114,110,33,49,59,118,97,114,32,116,61,116,104,105,115,46,95,116,111,97,115,116,69,108,46,102,105,110,100,40,34,46,106,113,45,116,111,97,115,116,45,108,111,97,100,101,114,34,41,44,111,61,40,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,65,102,116,101,114,45,52,48,48,41,47,49,101,51,43,34,115,34,44,105,61,116,104,105,115,46,111,112,116,105,111,110,115,46,108,111,97,100,101,114,66,103,44,115,61,116,46,97,116,116,114,40,34,115,116,121,108,101,34,41,124,124,34,34,59,115,61,115,46,115,117,98,115,116,114,105,110,103,40,48,44,115,46,105,110,100,101,120,79,102,40,34,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,34,41,41,44,115,43,61,34,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,32,119,105,100,116,104,32,34,43,111,43,34,32,101,97,115,101,45,105,110,59,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,45,111,45,116,114,97,110,115,105,116,105,111,110,58,32,119,105,100,116,104,32,34,43,111,43,34,32,101,97,115,101,45,105,110,59,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,114,97,110,115,105,116,105,111,110,58,32,119,105,100,116,104,32,34,43,111,43,34,32,101,97,115,101,45,105,110,59,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,34,43,105,43,34,59,34,44,116,46,97,116,116,114,40,34,115,116,121,108,101,34,44,115,41,46,97,100,100,67,108,97,115,115,40,34,106,113,45,116,111,97,115,116,45,108,111,97,100,101,100,34,41,125,44,97,110,105,109,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,116,61,116,104,105,115,59,105,102,40,116,104,105,115,46,95,116,111,97,115,116,69,108,46,104,105,100,101,40,41,44,116,104,105,115,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,83,104,111,119,34,41,44,34,102,97,100,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,116,104,105,115,46,95,116,111,97,115,116,69,108,46,102,97,100,101,73,110,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,83,104,111,119,110,34,41,125,41,58,34,115,108,105,100,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,116,104,105,115,46,95,116,111,97,115,116,69,108,46,115,108,105,100,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,83,104,111,119,110,34,41,125,41,58,116,104,105,115,46,95,116,111,97,115,116,69,108,46,115,104,111,119,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,83,104,111,119,110,34,41,125,41,44,116,104,105,115,46,99,97,110,65,117,116,111,72,105,100,101,40,41,41,123,118,97,114,32,116,61,116,104,105,115,59,111,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,34,102,97,100,101,34,61,61,61,116,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,102,97,100,101,79,117,116,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,58,34,115,108,105,100,101,34,61,61,61,116,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,115,108,105,100,101,85,112,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,58,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,104,105,100,101,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,125,44,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,65,102,116,101,114,41,125,125,44,114,101,115,101,116,58,102,117,110,99,116,105,111,110,40,111,41,123,34,97,108,108,34,61,61,61,111,63,116,40,34,46,106,113,45,116,111,97,115,116,45,119,114,97,112,34,41,46,114,101,109,111,118,101,40,41,58,116,104,105,115,46,95,116,111,97,115,116,69,108,46,114,101,109,111,118,101,40,41,125,44,117,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,112,114,101,112,97,114,101,79,112,116,105,111,110,115,40,116,44,116,104,105,115,46,111,112,116,105,111,110,115,41,44,116,104,105,115,46,115,101,116,117,112,40,41,44,116,104,105,115,46,98,105,110,100,84,111,97,115,116,40,41,125,44,99,108,111,115,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,116,111,97,115,116,69,108,46,102,105,110,100,40,34,46,99,108,111,115,101,45,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,41,46,99,108,105,99,107,40,41,125,125,59,116,46,116,111,97,115,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,111,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,41,59,114,101,116,117,114,110,32,111,46,105,110,105,116,40,116,44,116,104,105,115,41,44,123,114,101,115,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,111,46,114,101,115,101,116,40,116,41,125,44,117,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,111,46,117,112,100,97,116,101,40,116,41,125,44,99,108,111,115,101,58,102,117,110,99,116,105,111,110,40,41,123,111,46,99,108,111,115,101,40,41,125,125,125,44,116,46,116,111,97,115,116,46,111,112,116,105,111,110,115,61,123,116,101,120,116,58,34,34,44,104,101,97,100,105,110,103,58,34,34,44,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,58,34,102,97,100,101,34,44,97,108,108,111,119,84,111,97,115,116,67,108,111,115,101,58,33,48,44,104,105,100,101,65,102,116,101,114,58,51,101,51,44,108,111,97,100,101,114,58,33,48,44,108,111,97,100,101,114,66,103,58,34,35,57,69,67,54,48,48,34,44,115,116,97,99,107,58,53,44,112,111,115,105,116,105,111,110,58,34,98,111,116,116,111,109,45,108,101,102,116,34,44,98,103,67,111,108,111,114,58,33,49,44,116,101,120,116,67,111,108,111,114,58,33,49,44,116,101,120,116,65,108,105,103,110,58,34,108,101,102,116,34,44,105,99,111,110,58,33,49,44,98,101,102,111,114,101,83,104,111,119,58,102,117,110,99,116,105,111,110,40,41,123,125,44,97,102,116,101,114,83,104,111,119,110,58,102,117,110,99,116,105,111,110,40,41,123,125,44,98,101,102,111,114,101,72,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,125,44,97,102,116,101,114,72,105,100,100,101,110,58,102,117,110,99,116,105,111,110,40,41,123,125,44,111,110,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,41,123,125,125,125,40,106,81,117,101,114,121,44,119,105,110,100,111,119,44,100,111,99,117,109,101,110,116,41,59,10,33,102,117,110,99,116,105,111,110,32,116,40,101,44,110,44,114,41,123,102,117,110,99,116,105,111,110,32,111,40,115,44,117,41,123,105,102,40,33,110,91,115,93,41,123,105,102,40,33,101,91,115,93,41,123,118,97,114,32,108,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,114,101,113,117,105,114,101,38,38,114,101,113,117,105,114,101,59,105,102,40,33,117,38,38,108,41,114,101,116,117,114,110,32,108,40,115,44,33,48,41,59,105,102,40,105,41,114,101,116,117,114,110,32,105,40,115,44,33,48,41,59,118,97,114,32,97,61,110,101,119,32,69,114,114,111,114,40,34,67,97,110,110,111,116,32,102,105,110,100,32,109,111,100,117,108,101,32,39,34,43,115,43,34,39,34,41,59,116,104,114,111,119,32,97,46,99,111,100,101,61,34,77,79,68,85,76,69,95,78,79,84,95,70,79,85,78,68,34,44,97,125,118,97,114,32,112,61,110,91,115,93,61,123,101,120,112,111,114,116,115,58,123,125,125,59,101,91,115,93,91,48,93,46,99,97,108,108,40,112,46,101,120,112,111,114,116,115,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,101,91,115,93,91,49,93,91,116,93,59,114,101,116,117,114,110,32,111,40,110,63,110,58,116,41,125,44,112,44,112,46,101,120,112,111,114,116,115,44,116,44,101,44,110,44,114,41,125,114,101,116,117,114,110,32,110,91,115,93,46,101,120,112,111,114,116,115,125,102,111,114,40,118,97,114,32,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,114,101,113,117,105,114,101,38,38,114,101,113,117,105,114,101,44,115,61,48,59,115,60,114,46,108,101,110,103,116,104,59,115,43,43,41,111,40,114,91,115,93,41,59,114,101,116,117,114,110,32,111,125,40,123,49,58,91,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,44,111,61,116,104,105,115,38,38,116,104,105,115,46,95,95,101,120,116,101,110,100,115,124,124,102,117,110,99,116,105,111,110,40,116,44,101,41,123,102,117,110,99,116,105,111,110,32,110,40,41,123,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,61,116,125,102,111,114,40,118,97,114,32,114,32,105,110,32,101,41,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,114,41,38,38,40,116,91,114,93,61,101,91,114,93,41,59,116,46,112,114,111,116,111,116,121,112,101,61,110,117,108,108,61,61,61,101,63,79,98,106,101,99,116,46,99,114,101,97,116,101,40,101,41,58,40,110,46,112,114,111,116,111,116,121,112,101,61,101,46,112,114,111,116,111,116,121,112,101,44,110,101,119,32,110,41,125,59,33,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,110,40,116,44,101,44,110,41,123,105,102,40,119,105,110,100,111,119,46,67,117,115,116,111,109,69,118,101,110,116,41,118,97,114,32,114,61,110,101,119,32,67,117,115,116,111,109,69,118,101,110,116,40,101,44,123,100,101,116,97,105,108,58,110,125,41,59,101,108,115,101,123,118,97,114,32,114,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,118,101,110,116,40,34,67,117,115,116,111,109,69,118,101,110,116,34,41,59,114,46,105,110,105,116,67,117,115,116,111,109,69,118,101,110,116,40,101,44,33,48,44,33,48,44,110,41,125,114,101,116,117,114,110,32,116,46,100,105,115,112,97,116,99,104,69,118,101,110,116,40,114,41,125,118,97,114,32,114,61,123,114,117,108,101,114,67,108,97,115,115,78,97,109,101,58,34,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,34,44,99,111,108,117,109,110,67,108,97,115,115,78,97,109,101,58,34,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,34,125,44,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,116,41,123,116,104,105,115,46,101,108,101,109,101,110,116,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,44,116,104,105,115,46,101,108,101,109,101,110,116,46,99,108,97,115,115,78,97,109,101,61,116,125,114,101,116,117,114,110,32,116,46,112,114,111,116,111,116,121,112,101,46,100,101,115,116,114,111,121,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,104,105,115,46,101,108,101,109,101,110,116,41,125,44,116,125,40,41,44,115,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,114,101,116,117,114,110,32,111,40,101,44,116,41,44,101,46,112,114,111,116,111,116,121,112,101,46,103,101,116,87,105,100,116,104,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,34,92,110,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,92,110,32,32,32,32,32,32,32,32,118,105,115,105,98,105,108,105,116,121,58,32,104,105,100,100,101,110,32,33,105,109,112,111,114,116,97,110,116,59,92,110,32,32,32,32,32,32,32,32,116,111,112,58,32,45,49,48,48,48,112,120,32,33,105,109,112,111,114,116,97,110,116,59,92,110,32,32,32,32,32,32,34,41,59,118,97,114,32,116,61,116,104,105,115,46,101,108,101,109,101,110,116,46,111,102,102,115,101,116,87,105,100,116,104,59,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,41,44,116,125,44,101,125,40,105,41,44,117,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,114,101,116,117,114,110,32,111,40,101,44,116,41,44,101,125,40,105,41,44,108,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,116,44,101,41,123,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,114,41,44,116,104,105,115,46,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,111,112,116,105,111,110,115,61,101,44,116,104,105,115,46,98,117,105,108,100,40,41,44,116,104,105,115,46,98,117,105,108,100,82,101,115,112,111,110,115,105,118,101,40,41,125,114,101,116,117,114,110,32,116,46,112,114,111,116,111,116,121,112,101,46,97,112,112,101,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,114,101,116,117,114,110,32,118,111,105,100,32,116,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,97,112,112,101,110,100,40,116,41,125,41,59,118,97,114,32,114,61,116,104,105,115,46,102,105,110,100,77,105,110,72,101,105,103,104,116,67,111,108,117,109,110,40,41,59,116,104,105,115,46,101,108,101,109,101,110,116,115,61,101,40,116,104,105,115,46,101,108,101,109,101,110,116,115,41,46,99,111,110,99,97,116,40,91,116,93,41,44,116,104,105,115,46,97,112,112,108,121,80,111,115,105,116,105,111,110,40,34,97,112,112,101,110,100,34,44,114,44,116,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,114,101,116,117,114,110,32,118,111,105,100,32,116,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,112,114,101,112,101,110,100,40,116,41,125,41,59,118,97,114,32,114,61,116,104,105,115,46,102,105,110,100,77,105,110,72,101,105,103,104,116,67,111,108,117,109,110,40,41,59,116,104,105,115,46,101,108,101,109,101,110,116,115,61,91,116,93,46,99,111,110,99,97,116,40,101,40,116,104,105,115,46,101,108,101,109,101,110,116,115,41,41,44,116,104,105,115,46,97,112,112,108,121,80,111,115,105,116,105,111,110,40,34,112,114,101,112,101,110,100,34,44,114,44,116,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,111,110,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,98,114,105,99,107,108,97,121,101,114,46,34,43,116,44,101,41,44,116,104,105,115,125,44,116,46,112,114,111,116,111,116,121,112,101,46,114,101,100,114,97,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,108,117,109,110,67,111,117,110,116,59,116,104,105,115,46,99,104,101,99,107,67,111,108,117,109,110,67,111,117,110,116,40,33,49,41,44,116,104,105,115,46,114,101,111,114,100,101,114,69,108,101,109,101,110,116,115,40,116,41,44,110,40,116,104,105,115,46,101,108,101,109,101,110,116,44,34,98,114,105,99,107,108,97,121,101,114,46,114,101,100,114,97,119,34,44,123,99,111,108,117,109,110,67,111,117,110,116,58,116,125,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,100,101,115,116,114,111,121,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,116,104,105,115,46,114,117,108,101,114,46,100,101,115,116,114,111,121,40,41,44,101,40,116,104,105,115,46,101,108,101,109,101,110,116,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,101,108,101,109,101,110,116,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,125,41,44,101,40,116,104,105,115,46,103,101,116,67,111,108,117,109,110,115,40,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,41,125,41,44,110,40,116,104,105,115,46,101,108,101,109,101,110,116,44,34,98,114,105,99,107,108,97,121,101,114,46,100,101,115,116,114,111,121,34,44,123,125,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,98,117,105,108,100,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,117,108,101,114,61,110,101,119,32,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,114,117,108,101,114,67,108,97,115,115,78,97,109,101,41,44,116,104,105,115,46,101,108,101,109,101,110,116,115,61,116,104,105,115,46,103,101,116,69,108,101,109,101,110,116,115,73,110,79,114,100,101,114,40,41,44,116,104,105,115,46,101,108,101,109,101,110,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,104,105,115,46,114,117,108,101,114,46,101,108,101,109,101,110,116,44,116,104,105,115,46,101,108,101,109,101,110,116,46,102,105,114,115,116,67,104,105,108,100,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,98,117,105,108,100,82,101,115,112,111,110,115,105,118,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,114,101,115,105,122,101,34,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,99,104,101,99,107,67,111,108,117,109,110,67,111,117,110,116,40,41,125,41,44,116,104,105,115,46,99,104,101,99,107,67,111,108,117,109,110,67,111,117,110,116,40,41,44,116,104,105,115,46,111,110,40,34,98,114,101,97,107,112,111,105,110,116,34,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,114,101,111,114,100,101,114,69,108,101,109,101,110,116,115,40,101,46,100,101,116,97,105,108,46,99,111,108,117,109,110,67,111,117,110,116,41,125,41,44,116,104,105,115,46,99,111,108,117,109,110,67,111,117,110,116,62,61,49,38,38,116,104,105,115,46,114,101,111,114,100,101,114,69,108,101,109,101,110,116,115,40,116,104,105,115,46,99,111,108,117,109,110,67,111,117,110,116,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,103,101,116,67,111,108,117,109,110,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,58,115,99,111,112,101,32,62,32,46,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,67,108,97,115,115,78,97,109,101,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,77,105,110,72,101,105,103,104,116,67,111,108,117,109,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,101,40,116,104,105,115,46,103,101,116,67,111,108,117,109,110,115,40,41,41,44,110,61,116,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,111,102,102,115,101,116,72,101,105,103,104,116,125,41,44,114,61,77,97,116,104,46,109,105,110,46,97,112,112,108,121,40,110,117,108,108,44,110,41,59,114,101,116,117,114,110,32,116,91,110,46,105,110,100,101,120,79,102,40,114,41,93,125,44,116,46,112,114,111,116,111,116,121,112,101,46,103,101,116,69,108,101,109,101,110,116,115,73,110,79,114,100,101,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,58,115,99,111,112,101,32,62,32,42,58,110,111,116,40,46,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,67,108,97,115,115,78,97,109,101,43,34,41,58,110,111,116,40,46,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,114,117,108,101,114,67,108,97,115,115,78,97,109,101,43,34,41,34,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,99,104,101,99,107,67,111,108,117,109,110,67,111,117,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,33,48,41,59,118,97,114,32,101,61,116,104,105,115,46,103,101,116,67,111,108,117,109,110,67,111,117,110,116,40,41,59,116,104,105,115,46,99,111,108,117,109,110,67,111,117,110,116,33,61,61,101,38,38,40,116,38,38,110,40,116,104,105,115,46,101,108,101,109,101,110,116,44,34,98,114,105,99,107,108,97,121,101,114,46,98,114,101,97,107,112,111,105,110,116,34,44,123,99,111,108,117,109,110,67,111,117,110,116,58,101,125,41,44,116,104,105,115,46,99,111,108,117,109,110,67,111,117,110,116,61,101,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,114,101,111,114,100,101,114,69,108,101,109,101,110,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,59,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,49,41,44,40,116,61,61,49,47,48,124,124,49,62,116,41,38,38,40,116,61,49,41,59,102,111,114,40,118,97,114,32,114,61,101,40,116,104,105,115,46,101,108,101,109,101,110,116,115,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,112,97,114,101,110,116,78,111,100,101,63,116,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,41,58,116,59,114,101,116,117,114,110,32,101,125,41,44,111,61,116,104,105,115,46,103,101,116,67,111,108,117,109,110,115,40,41,44,105,61,48,59,105,60,111,46,108,101,110,103,116,104,59,105,43,43,41,111,91,105,93,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,111,91,105,93,41,59,102,111,114,40,118,97,114,32,105,61,48,59,116,62,105,59,105,43,43,41,123,118,97,114,32,115,61,110,101,119,32,117,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,67,108,97,115,115,78,97,109,101,41,46,101,108,101,109,101,110,116,59,116,104,105,115,46,101,108,101,109,101,110,116,46,97,112,112,101,110,100,67,104,105,108,100,40,115,41,125,114,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,110,46,102,105,110,100,77,105,110,72,101,105,103,104,116,67,111,108,117,109,110,40,41,59,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,41,125,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,103,101,116,67,111,108,117,109,110,67,111,117,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,101,108,101,109,101,110,116,46,111,102,102,115,101,116,87,105,100,116,104,44,101,61,116,104,105,115,46,114,117,108,101,114,46,103,101,116,87,105,100,116,104,40,41,59,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,47,101,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,97,112,112,108,121,80,111,115,105,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,44,101,44,114,41,123,118,97,114,32,111,61,116,104,105,115,44,105,61,102,117,110,99,116,105,111,110,40,105,41,123,118,97,114,32,115,61,105,43,116,46,99,104,97,114,65,116,40,48,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,116,46,115,117,98,115,116,114,40,49,41,59,110,40,111,46,101,108,101,109,101,110,116,44,34,98,114,105,99,107,108,97,121,101,114,46,34,43,115,44,123,105,116,101,109,58,114,44,99,111,108,117,109,110,58,101,125,41,125,59,115,119,105,116,99,104,40,105,40,34,98,101,102,111,114,101,34,41,44,116,41,123,99,97,115,101,34,97,112,112,101,110,100,34,58,101,46,97,112,112,101,110,100,67,104,105,108,100,40,114,41,59,98,114,101,97,107,59,99,97,115,101,34,112,114,101,112,101,110,100,34,58,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,114,44,101,46,102,105,114,115,116,67,104,105,108,100,41,125,105,40,34,97,102,116,101,114,34,41,125,44,116,125,40,41,59,116,46,67,111,110,116,97,105,110,101,114,61,108,125,40,114,124,124,40,114,61,123,125,41,41,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,40,41,125,41,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,38,38,116,61,61,61,119,105,110,100,111,119,63,116,46,66,114,105,99,107,108,97,121,101,114,61,110,40,41,58,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,101,46,101,120,112,111,114,116,115,38,38,40,101,46,101,120,112,111,114,116,115,61,110,40,41,41,125,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,116,104,105,115,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,46,67,111,110,116,97,105,110,101,114,125,41,125,44,123,125,93,125,44,123,125,44,91,49,93,41,59,47,47,32,104,116,116,112,115,58,47,47,100,51,106,115,46,111,114,103,32,118,53,46,49,54,46,48,32,67,111,112,121,114,105,103,104,116,32,50,48,50,48,32,77,105,107,101,32,66,111,115,116,111,99,107,10,33,102,117,110,99,116,105,111,110,40,116,44,110,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,63,110,40,101,120,112,111,114,116,115,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,101,120,112,111,114,116,115,34,93,44,110,41,58,110,40,40,116,61,116,124,124,115,101,108,102,41,46,100,51,61,116,46,100,51,124,124,123,125,41,125,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,116,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,60,110,63,45,49,58,116,62,110,63,49,58,116,62,61,110,63,48,58,78,97,78,125,102,117,110,99,116,105,111,110,32,101,40,116,41,123,118,97,114,32,101,59,114,101,116,117,114,110,32,49,61,61,61,116,46,108,101,110,103,116,104,38,38,40,101,61,116,44,116,61,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,101,116,117,114,110,32,110,40,101,40,116,41,44,114,41,125,41,44,123,108,101,102,116,58,102,117,110,99,116,105,111,110,40,110,44,101,44,114,44,105,41,123,102,111,114,40,110,117,108,108,61,61,114,38,38,40,114,61,48,41,44,110,117,108,108,61,61,105,38,38,40,105,61,110,46,108,101,110,103,116,104,41,59,114,60,105,59,41,123,118,97,114,32,111,61,114,43,105,62,62,62,49,59,116,40,110,91,111,93,44,101,41,60,48,63,114,61,111,43,49,58,105,61,111,125,114,101,116,117,114,110,32,114,125,44,114,105,103,104,116,58,102,117,110,99,116,105,111,110,40,110,44,101,44,114,44,105,41,123,102,111,114,40,110,117,108,108,61,61,114,38,38,40,114,61,48,41,44,110,117,108,108,61,61,105,38,38,40,105,61,110,46,108,101,110,103,116,104,41,59,114,60,105,59,41,123,118,97,114,32,111,61,114,43,105,62,62,62,49,59,116,40,110,91,111,93,44,101,41,62,48,63,105,61,111,58,114,61,111,43,49,125,114,101,116,117,114,110,32,114,125,125,125,118,97,114,32,114,61,101,40,110,41,44,105,61,114,46,114,105,103,104,116,44,111,61,114,46,108,101,102,116,59,102,117,110,99,116,105,111,110,32,97,40,116,44,110,41,123,114,101,116,117,114,110,91,116,44,110,93,125,102,117,110,99,116,105,111,110,32,117,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,61,116,63,78,97,78,58,43,116,125,102,117,110,99,116,105,111,110,32,99,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,61,116,46,108,101,110,103,116,104,44,111,61,48,44,97,61,45,49,44,99,61,48,44,102,61,48,59,105,102,40,110,117,108,108,61,61,110,41,102,111,114,40,59,43,43,97,60,105,59,41,105,115,78,97,78,40,101,61,117,40,116,91,97,93,41,41,124,124,40,102,43,61,40,114,61,101,45,99,41,42,40,101,45,40,99,43,61,114,47,43,43,111,41,41,41,59,101,108,115,101,32,102,111,114,40,59,43,43,97,60,105,59,41,105,115,78,97,78,40,101,61,117,40,110,40,116,91,97,93,44,97,44,116,41,41,41,124,124,40,102,43,61,40,114,61,101,45,99,41,42,40,101,45,40,99,43,61,114,47,43,43,111,41,41,41,59,105,102,40,111,62,49,41,114,101,116,117,114,110,32,102,47,40,111,45,49,41,125,102,117,110,99,116,105,111,110,32,102,40,116,44,110,41,123,118,97,114,32,101,61,99,40,116,44,110,41,59,114,101,116,117,114,110,32,101,63,77,97,116,104,46,115,113,114,116,40,101,41,58,101,125,102,117,110,99,116,105,111,110,32,115,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,44,111,61,116,46,108,101,110,103,116,104,44,97,61,45,49,59,105,102,40,110,117,108,108,61,61,110,41,123,102,111,114,40,59,43,43,97,60,111,59,41,105,102,40,110,117,108,108,33,61,40,101,61,116,91,97,93,41,38,38,101,62,61,101,41,102,111,114,40,114,61,105,61,101,59,43,43,97,60,111,59,41,110,117,108,108,33,61,40,101,61,116,91,97,93,41,38,38,40,114,62,101,38,38,40,114,61,101,41,44,105,60,101,38,38,40,105,61,101,41,41,125,101,108,115,101,32,102,111,114,40,59,43,43,97,60,111,59,41,105,102,40,110,117,108,108,33,61,40,101,61,110,40,116,91,97,93,44,97,44,116,41,41,38,38,101,62,61,101,41,102,111,114,40,114,61,105,61,101,59,43,43,97,60,111,59,41,110,117,108,108,33,61,40,101,61,110,40,116,91,97,93,44,97,44,116,41,41,38,38,40,114,62,101,38,38,40,114,61,101,41,44,105,60,101,38,38,40,105,61,101,41,41,59,114,101,116,117,114,110,91,114,44,105,93,125,118,97,114,32,108,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,44,104,61,108,46,115,108,105,99,101,44,100,61,108,46,109,97,112,59,102,117,110,99,116,105,111,110,32,112,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,118,40,116,41,123,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,103,40,116,44,110,44,101,41,123,116,61,43,116,44,110,61,43,110,44,101,61,40,105,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,60,50,63,40,110,61,116,44,116,61,48,44,49,41,58,105,60,51,63,49,58,43,101,59,102,111,114,40,118,97,114,32,114,61,45,49,44,105,61,48,124,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,99,101,105,108,40,40,110,45,116,41,47,101,41,41,44,111,61,110,101,119,32,65,114,114,97,121,40,105,41,59,43,43,114,60,105,59,41,111,91,114,93,61,116,43,114,42,101,59,114,101,116,117,114,110,32,111,125,118,97,114,32,121,61,77,97,116,104,46,115,113,114,116,40,53,48,41,44,95,61,77,97,116,104,46,115,113,114,116,40,49,48,41,44,98,61,77,97,116,104,46,115,113,114,116,40,50,41,59,102,117,110,99,116,105,111,110,32,109,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,44,97,44,117,61,45,49,59,105,102,40,101,61,43,101,44,40,116,61,43,116,41,61,61,61,40,110,61,43,110,41,38,38,101,62,48,41,114,101,116,117,114,110,91,116,93,59,105,102,40,40,114,61,110,60,116,41,38,38,40,105,61,116,44,116,61,110,44,110,61,105,41,44,48,61,61,61,40,97,61,120,40,116,44,110,44,101,41,41,124,124,33,105,115,70,105,110,105,116,101,40,97,41,41,114,101,116,117,114,110,91,93,59,105,102,40,97,62,48,41,102,111,114,40,116,61,77,97,116,104,46,99,101,105,108,40,116,47,97,41,44,110,61,77,97,116,104,46,102,108,111,111,114,40,110,47,97,41,44,111,61,110,101,119,32,65,114,114,97,121,40,105,61,77,97,116,104,46,99,101,105,108,40,110,45,116,43,49,41,41,59,43,43,117,60,105,59,41,111,91,117,93,61,40,116,43,117,41,42,97,59,101,108,115,101,32,102,111,114,40,116,61,77,97,116,104,46,102,108,111,111,114,40,116,42,97,41,44,110,61,77,97,116,104,46,99,101,105,108,40,110,42,97,41,44,111,61,110,101,119,32,65,114,114,97,121,40,105,61,77,97,116,104,46,99,101,105,108,40,116,45,110,43,49,41,41,59,43,43,117,60,105,59,41,111,91,117,93,61,40,116,45,117,41,47,97,59,114,101,116,117,114,110,32,114,38,38,111,46,114,101,118,101,114,115,101,40,41,44,111,125,102,117,110,99,116,105,111,110,32,120,40,116,44,110,44,101,41,123,118,97,114,32,114,61,40,110,45,116,41,47,77,97,116,104,46,109,97,120,40,48,44,101,41,44,105,61,77,97,116,104,46,102,108,111,111,114,40,77,97,116,104,46,108,111,103,40,114,41,47,77,97,116,104,46,76,78,49,48,41,44,111,61,114,47,77,97,116,104,46,112,111,119,40,49,48,44,105,41,59,114,101,116,117,114,110,32,105,62,61,48,63,40,111,62,61,121,63,49,48,58,111,62,61,95,63,53,58,111,62,61,98,63,50,58,49,41,42,77,97,116,104,46,112,111,119,40,49,48,44,105,41,58,45,77,97,116,104,46,112,111,119,40,49,48,44,45,105,41,47,40,111,62,61,121,63,49,48,58,111,62,61,95,63,53,58,111,62,61,98,63,50,58,49,41,125,102,117,110,99,116,105,111,110,32,119,40,116,44,110,44,101,41,123,118,97,114,32,114,61,77,97,116,104,46,97,98,115,40,110,45,116,41,47,77,97,116,104,46,109,97,120,40,48,44,101,41,44,105,61,77,97,116,104,46,112,111,119,40,49,48,44,77,97,116,104,46,102,108,111,111,114,40,77,97,116,104,46,108,111,103,40,114,41,47,77,97,116,104,46,76,78,49,48,41,41,44,111,61,114,47,105,59,114,101,116,117,114,110,32,111,62,61,121,63,105,42,61,49,48,58,111,62,61,95,63,105,42,61,53,58,111,62,61,98,38,38,40,105,42,61,50,41,44,110,60,116,63,45,105,58,105,125,102,117,110,99,116,105,111,110,32,77,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,99,101,105,108,40,77,97,116,104,46,108,111,103,40,116,46,108,101,110,103,116,104,41,47,77,97,116,104,46,76,78,50,41,43,49,125,102,117,110,99,116,105,111,110,32,78,40,116,44,110,44,101,41,123,105,102,40,110,117,108,108,61,61,101,38,38,40,101,61,117,41,44,114,61,116,46,108,101,110,103,116,104,41,123,105,102,40,40,110,61,43,110,41,60,61,48,124,124,114,60,50,41,114,101,116,117,114,110,43,101,40,116,91,48,93,44,48,44,116,41,59,105,102,40,110,62,61,49,41,114,101,116,117,114,110,43,101,40,116,91,114,45,49,93,44,114,45,49,44,116,41,59,118,97,114,32,114,44,105,61,40,114,45,49,41,42,110,44,111,61,77,97,116,104,46,102,108,111,111,114,40,105,41,44,97,61,43,101,40,116,91,111,93,44,111,44,116,41,59,114,101,116,117,114,110,32,97,43,40,43,101,40,116,91,111,43,49,93,44,111,43,49,44,116,41,45,97,41,42,40,105,45,111,41,125,125,102,117,110,99,116,105,111,110,32,84,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,61,116,46,108,101,110,103,116,104,44,111,61,45,49,59,105,102,40,110,117,108,108,61,61,110,41,123,102,111,114,40,59,43,43,111,60,105,59,41,105,102,40,110,117,108,108,33,61,40,101,61,116,91,111,93,41,38,38,101,62,61,101,41,102,111,114,40,114,61,101,59,43,43,111,60,105,59,41,110,117,108,108,33,61,40,101,61,116,91,111,93,41,38,38,101,62,114,38,38,40,114,61,101,41,125,101,108,115,101,32,102,111,114,40,59,43,43,111,60,105,59,41,105,102,40,110,117,108,108,33,61,40,101,61,110,40,116,91,111,93,44,111,44,116,41,41,38,38,101,62,61,101,41,102,111,114,40,114,61,101,59,43,43,111,60,105,59,41,110,117,108,108,33,61,40,101,61,110,40,116,91,111,93,44,111,44,116,41,41,38,38,101,62,114,38,38,40,114,61,101,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,65,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,44,105,61,116,46,108,101,110,103,116,104,44,111,61,45,49,44,97,61,48,59,43,43,111,60,105,59,41,97,43,61,116,91,111,93,46,108,101,110,103,116,104,59,102,111,114,40,101,61,110,101,119,32,65,114,114,97,121,40,97,41,59,45,45,105,62,61,48,59,41,102,111,114,40,110,61,40,114,61,116,91,105,93,41,46,108,101,110,103,116,104,59,45,45,110,62,61,48,59,41,101,91,45,45,97,93,61,114,91,110,93,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,83,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,61,116,46,108,101,110,103,116,104,44,111,61,45,49,59,105,102,40,110,117,108,108,61,61,110,41,123,102,111,114,40,59,43,43,111,60,105,59,41,105,102,40,110,117,108,108,33,61,40,101,61,116,91,111,93,41,38,38,101,62,61,101,41,102,111,114,40,114,61,101,59,43,43,111,60,105,59,41,110,117,108,108,33,61,40,101,61,116,91,111,93,41,38,38,114,62,101,38,38,40,114,61,101,41,125,101,108,115,101,32,102,111,114,40,59,43,43,111,60,105,59,41,105,102,40,110,117,108,108,33,61,40,101,61,110,40,116,91,111,93,44,111,44,116,41,41,38,38,101,62,61,101,41,102,111,114,40,114,61,101,59,43,43,111,60,105,59,41,110,117,108,108,33,61,40,101,61,110,40,116,91,111,93,44,111,44,116,41,41,38,38,114,62,101,38,38,40,114,61,101,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,107,40,116,41,123,105,102,40,33,40,105,61,116,46,108,101,110,103,116,104,41,41,114,101,116,117,114,110,91,93,59,102,111,114,40,118,97,114,32,110,61,45,49,44,101,61,83,40,116,44,69,41,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,59,43,43,110,60,101,59,41,102,111,114,40,118,97,114,32,105,44,111,61,45,49,44,97,61,114,91,110,93,61,110,101,119,32,65,114,114,97,121,40,105,41,59,43,43,111,60,105,59,41,97,91,111,93,61,116,91,111,93,91,110,93,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,69,40,116,41,123,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,125,118,97,114,32,67,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,59,102,117,110,99,116,105,111,110,32,80,40,116,41,123,114,101,116,117,114,110,32,116,125,118,97,114,32,122,61,49,44,82,61,50,44,68,61,51,44,113,61,52,44,76,61,49,101,45,54,59,102,117,110,99,116,105,111,110,32,85,40,116,41,123,114,101,116,117,114,110,34,116,114,97,110,115,108,97,116,101,40,34,43,40,116,43,46,53,41,43,34,44,48,41,34,125,102,117,110,99,116,105,111,110,32,79,40,116,41,123,114,101,116,117,114,110,34,116,114,97,110,115,108,97,116,101,40,48,44,34,43,40,116,43,46,53,41,43,34,41,34,125,102,117,110,99,116,105,111,110,32,66,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,95,95,97,120,105,115,125,102,117,110,99,116,105,111,110,32,70,40,116,44,110,41,123,118,97,114,32,101,61,91,93,44,114,61,110,117,108,108,44,105,61,110,117,108,108,44,111,61,54,44,97,61,54,44,117,61,51,44,99,61,116,61,61,61,122,124,124,116,61,61,61,113,63,45,49,58,49,44,102,61,116,61,61,61,113,124,124,116,61,61,61,82,63,34,120,34,58,34,121,34,44,115,61,116,61,61,61,122,124,124,116,61,61,61,68,63,85,58,79,59,102,117,110,99,116,105,111,110,32,108,40,108,41,123,118,97,114,32,104,61,110,117,108,108,61,61,114,63,110,46,116,105,99,107,115,63,110,46,116,105,99,107,115,46,97,112,112,108,121,40,110,44,101,41,58,110,46,100,111,109,97,105,110,40,41,58,114,44,100,61,110,117,108,108,61,61,105,63,110,46,116,105,99,107,70,111,114,109,97,116,63,110,46,116,105,99,107,70,111,114,109,97,116,46,97,112,112,108,121,40,110,44,101,41,58,80,58,105,44,112,61,77,97,116,104,46,109,97,120,40,111,44,48,41,43,117,44,118,61,110,46,114,97,110,103,101,40,41,44,103,61,43,118,91,48,93,43,46,53,44,121,61,43,118,91,118,46,108,101,110,103,116,104,45,49,93,43,46,53,44,95,61,40,110,46,98,97,110,100,119,105,100,116,104,63,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,77,97,116,104,46,109,97,120,40,48,44,116,46,98,97,110,100,119,105,100,116,104,40,41,45,49,41,47,50,59,114,101,116,117,114,110,32,116,46,114,111,117,110,100,40,41,38,38,40,110,61,77,97,116,104,46,114,111,117,110,100,40,110,41,41,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,43,116,40,101,41,43,110,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,43,116,40,110,41,125,125,41,40,110,46,99,111,112,121,40,41,41,44,98,61,108,46,115,101,108,101,99,116,105,111,110,63,108,46,115,101,108,101,99,116,105,111,110,40,41,58,108,44,109,61,98,46,115,101,108,101,99,116,65,108,108,40,34,46,100,111,109,97,105,110,34,41,46,100,97,116,97,40,91,110,117,108,108,93,41,44,120,61,98,46,115,101,108,101,99,116,65,108,108,40,34,46,116,105,99,107,34,41,46,100,97,116,97,40,104,44,110,41,46,111,114,100,101,114,40,41,44,119,61,120,46,101,120,105,116,40,41,44,77,61,120,46,101,110,116,101,114,40,41,46,97,112,112,101,110,100,40,34,103,34,41,46,97,116,116,114,40,34,99,108,97,115,115,34,44,34,116,105,99,107,34,41,44,78,61,120,46,115,101,108,101,99,116,40,34,108,105,110,101,34,41,44,84,61,120,46,115,101,108,101,99,116,40,34,116,101,120,116,34,41,59,109,61,109,46,109,101,114,103,101,40,109,46,101,110,116,101,114,40,41,46,105,110,115,101,114,116,40,34,112,97,116,104,34,44,34,46,116,105,99,107,34,41,46,97,116,116,114,40,34,99,108,97,115,115,34,44,34,100,111,109,97,105,110,34,41,46,97,116,116,114,40,34,115,116,114,111,107,101,34,44,34,99,117,114,114,101,110,116,67,111,108,111,114,34,41,41,44,120,61,120,46,109,101,114,103,101,40,77,41,44,78,61,78,46,109,101,114,103,101,40,77,46,97,112,112,101,110,100,40,34,108,105,110,101,34,41,46,97,116,116,114,40,34,115,116,114,111,107,101,34,44,34,99,117,114,114,101,110,116,67,111,108,111,114,34,41,46,97,116,116,114,40,102,43,34,50,34,44,99,42,111,41,41,44,84,61,84,46,109,101,114,103,101,40,77,46,97,112,112,101,110,100,40,34,116,101,120,116,34,41,46,97,116,116,114,40,34,102,105,108,108,34,44,34,99,117,114,114,101,110,116,67,111,108,111,114,34,41,46,97,116,116,114,40,102,44,99,42,112,41,46,97,116,116,114,40,34,100,121,34,44,116,61,61,61,122,63,34,48,101,109,34,58,116,61,61,61,68,63,34,48,46,55,49,101,109,34,58,34,48,46,51,50,101,109,34,41,41,44,108,33,61,61,98,38,38,40,109,61,109,46,116,114,97,110,115,105,116,105,111,110,40,108,41,44,120,61,120,46,116,114,97,110,115,105,116,105,111,110,40,108,41,44,78,61,78,46,116,114,97,110,115,105,116,105,111,110,40,108,41,44,84,61,84,46,116,114,97,110,115,105,116,105,111,110,40,108,41,44,119,61,119,46,116,114,97,110,115,105,116,105,111,110,40,108,41,46,97,116,116,114,40,34,111,112,97,99,105,116,121,34,44,76,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,115,70,105,110,105,116,101,40,116,61,95,40,116,41,41,63,115,40,116,41,58,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,114,97,110,115,102,111,114,109,34,41,125,41,44,77,46,97,116,116,114,40,34,111,112,97,99,105,116,121,34,44,76,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,95,95,97,120,105,115,59,114,101,116,117,114,110,32,115,40,110,38,38,105,115,70,105,110,105,116,101,40,110,61,110,40,116,41,41,63,110,58,95,40,116,41,41,125,41,41,44,119,46,114,101,109,111,118,101,40,41,44,109,46,97,116,116,114,40,34,100,34,44,116,61,61,61,113,124,124,116,61,61,82,63,97,63,34,77,34,43,99,42,97,43,34,44,34,43,103,43,34,72,48,46,53,86,34,43,121,43,34,72,34,43,99,42,97,58,34,77,48,46,53,44,34,43,103,43,34,86,34,43,121,58,97,63,34,77,34,43,103,43,34,44,34,43,99,42,97,43,34,86,48,46,53,72,34,43,121,43,34,86,34,43,99,42,97,58,34,77,34,43,103,43,34,44,48,46,53,72,34,43,121,41,44,120,46,97,116,116,114,40,34,111,112,97,99,105,116,121,34,44,49,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,115,40,95,40,116,41,41,125,41,44,78,46,97,116,116,114,40,102,43,34,50,34,44,99,42,111,41,44,84,46,97,116,116,114,40,102,44,99,42,112,41,46,116,101,120,116,40,100,41,44,98,46,102,105,108,116,101,114,40,66,41,46,97,116,116,114,40,34,102,105,108,108,34,44,34,110,111,110,101,34,41,46,97,116,116,114,40,34,102,111,110,116,45,115,105,122,101,34,44,49,48,41,46,97,116,116,114,40,34,102,111,110,116,45,102,97,109,105,108,121,34,44,34,115,97,110,115,45,115,101,114,105,102,34,41,46,97,116,116,114,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,116,61,61,61,82,63,34,115,116,97,114,116,34,58,116,61,61,61,113,63,34,101,110,100,34,58,34,109,105,100,100,108,101,34,41,44,98,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,97,120,105,115,61,95,125,41,125,114,101,116,117,114,110,32,108,46,115,99,97,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,116,44,108,41,58,110,125,44,108,46,116,105,99,107,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,61,67,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,108,125,44,108,46,116,105,99,107,65,114,103,117,109,101,110,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,110,117,108,108,61,61,116,63,91,93,58,67,46,99,97,108,108,40,116,41,44,108,41,58,101,46,115,108,105,99,101,40,41,125,44,108,46,116,105,99,107,86,97,108,117,101,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,110,117,108,108,61,61,116,63,110,117,108,108,58,67,46,99,97,108,108,40,116,41,44,108,41,58,114,38,38,114,46,115,108,105,99,101,40,41,125,44,108,46,116,105,99,107,70,111,114,109,97,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,116,44,108,41,58,105,125,44,108,46,116,105,99,107,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,97,61,43,116,44,108,41,58,111,125,44,108,46,116,105,99,107,83,105,122,101,73,110,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,43,116,44,108,41,58,111,125,44,108,46,116,105,99,107,83,105,122,101,79,117,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,43,116,44,108,41,58,97,125,44,108,46,116,105,99,107,80,97,100,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,43,116,44,108,41,58,117,125,44,108,125,118,97,114,32,89,61,123,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,125,125,59,102,117,110,99,116,105,111,110,32,73,40,41,123,102,111,114,40,118,97,114,32,116,44,110,61,48,44,101,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,114,61,123,125,59,110,60,101,59,43,43,110,41,123,105,102,40,33,40,116,61,97,114,103,117,109,101,110,116,115,91,110,93,43,34,34,41,124,124,116,32,105,110,32,114,124,124,47,91,92,115,46,93,47,46,116,101,115,116,40,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,108,108,101,103,97,108,32,116,121,112,101,58,32,34,43,116,41,59,114,91,116,93,61,91,93,125,114,101,116,117,114,110,32,110,101,119,32,72,40,114,41,125,102,117,110,99,116,105,111,110,32,72,40,116,41,123,116,104,105,115,46,95,61,116,125,102,117,110,99,116,105,111,110,32,106,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,94,124,92,115,43,47,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,34,34,44,114,61,116,46,105,110,100,101,120,79,102,40,34,46,34,41,59,105,102,40,114,62,61,48,38,38,40,101,61,116,46,115,108,105,99,101,40,114,43,49,41,44,116,61,116,46,115,108,105,99,101,40,48,44,114,41,41,44,116,38,38,33,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,117,110,107,110,111,119,110,32,116,121,112,101,58,32,34,43,116,41,59,114,101,116,117,114,110,123,116,121,112,101,58,116,44,110,97,109,101,58,101,125,125,41,125,102,117,110,99,116,105,111,110,32,88,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,44,114,61,48,44,105,61,116,46,108,101,110,103,116,104,59,114,60,105,59,43,43,114,41,105,102,40,40,101,61,116,91,114,93,41,46,110,97,109,101,61,61,61,110,41,114,101,116,117,114,110,32,101,46,118,97,108,117,101,125,102,117,110,99,116,105,111,110,32,86,40,116,44,110,44,101,41,123,102,111,114,40,118,97,114,32,114,61,48,44,105,61,116,46,108,101,110,103,116,104,59,114,60,105,59,43,43,114,41,105,102,40,116,91,114,93,46,110,97,109,101,61,61,61,110,41,123,116,91,114,93,61,89,44,116,61,116,46,115,108,105,99,101,40,48,44,114,41,46,99,111,110,99,97,116,40,116,46,115,108,105,99,101,40,114,43,49,41,41,59,98,114,101,97,107,125,114,101,116,117,114,110,32,110,117,108,108,33,61,101,38,38,116,46,112,117,115,104,40,123,110,97,109,101,58,110,44,118,97,108,117,101,58,101,125,41,44,116,125,72,46,112,114,111,116,111,116,121,112,101,61,73,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,72,44,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,61,116,104,105,115,46,95,44,105,61,106,40,116,43,34,34,44,114,41,44,111,61,45,49,44,97,61,105,46,108,101,110,103,116,104,59,105,102,40,33,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,41,123,105,102,40,110,117,108,108,33,61,110,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,110,118,97,108,105,100,32,99,97,108,108,98,97,99,107,58,32,34,43,110,41,59,102,111,114,40,59,43,43,111,60,97,59,41,105,102,40,101,61,40,116,61,105,91,111,93,41,46,116,121,112,101,41,114,91,101,93,61,86,40,114,91,101,93,44,116,46,110,97,109,101,44,110,41,59,101,108,115,101,32,105,102,40,110,117,108,108,61,61,110,41,102,111,114,40,101,32,105,110,32,114,41,114,91,101,93,61,86,40,114,91,101,93,44,116,46,110,97,109,101,44,110,117,108,108,41,59,114,101,116,117,114,110,32,116,104,105,115,125,102,111,114,40,59,43,43,111,60,97,59,41,105,102,40,40,101,61,40,116,61,105,91,111,93,41,46,116,121,112,101,41,38,38,40,101,61,88,40,114,91,101,93,44,116,46,110,97,109,101,41,41,41,114,101,116,117,114,110,32,101,125,44,99,111,112,121,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,125,44,110,61,116,104,105,115,46,95,59,102,111,114,40,118,97,114,32,101,32,105,110,32,110,41,116,91,101,93,61,110,91,101,93,46,115,108,105,99,101,40,41,59,114,101,116,117,114,110,32,110,101,119,32,72,40,116,41,125,44,99,97,108,108,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,40,101,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,45,50,41,62,48,41,102,111,114,40,118,97,114,32,101,44,114,44,105,61,110,101,119,32,65,114,114,97,121,40,101,41,44,111,61,48,59,111,60,101,59,43,43,111,41,105,91,111,93,61,97,114,103,117,109,101,110,116,115,91,111,43,50,93,59,105,102,40,33,116,104,105,115,46,95,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,117,110,107,110,111,119,110,32,116,121,112,101,58,32,34,43,116,41,59,102,111,114,40,111,61,48,44,101,61,40,114,61,116,104,105,115,46,95,91,116,93,41,46,108,101,110,103,116,104,59,111,60,101,59,43,43,111,41,114,91,111,93,46,118,97,108,117,101,46,97,112,112,108,121,40,110,44,105,41,125,44,97,112,112,108,121,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,105,102,40,33,116,104,105,115,46,95,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,117,110,107,110,111,119,110,32,116,121,112,101,58,32,34,43,116,41,59,102,111,114,40,118,97,114,32,114,61,116,104,105,115,46,95,91,116,93,44,105,61,48,44,111,61,114,46,108,101,110,103,116,104,59,105,60,111,59,43,43,105,41,114,91,105,93,46,118,97,108,117,101,46,97,112,112,108,121,40,110,44,101,41,125,125,59,118,97,114,32,71,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,49,57,57,57,47,120,104,116,109,108,34,44,36,61,123,115,118,103,58,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,44,120,104,116,109,108,58,71,44,120,108,105,110,107,58,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,49,57,57,57,47,120,108,105,110,107,34,44,120,109,108,58,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,88,77,76,47,49,57,57,56,47,110,97,109,101,115,112,97,99,101,34,44,120,109,108,110,115,58,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,120,109,108,110,115,47,34,125,59,102,117,110,99,116,105,111,110,32,87,40,116,41,123,118,97,114,32,110,61,116,43,61,34,34,44,101,61,110,46,105,110,100,101,120,79,102,40,34,58,34,41,59,114,101,116,117,114,110,32,101,62,61,48,38,38,34,120,109,108,110,115,34,33,61,61,40,110,61,116,46,115,108,105,99,101,40,48,44,101,41,41,38,38,40,116,61,116,46,115,108,105,99,101,40,101,43,49,41,41,44,36,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,110,41,63,123,115,112,97,99,101,58,36,91,110,93,44,108,111,99,97,108,58,116,125,58,116,125,102,117,110,99,116,105,111,110,32,90,40,116,41,123,118,97,114,32,110,61,87,40,116,41,59,114,101,116,117,114,110,40,110,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,101,61,116,104,105,115,46,110,97,109,101,115,112,97,99,101,85,82,73,59,114,101,116,117,114,110,32,101,61,61,61,71,38,38,110,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,110,97,109,101,115,112,97,99,101,85,82,73,61,61,61,71,63,110,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,116,41,58,110,46,99,114,101,97,116,101,69,108,101,109,101,110,116,78,83,40,101,44,116,41,125,125,41,40,110,41,125,102,117,110,99,116,105,111,110,32,81,40,41,123,125,102,117,110,99,116,105,111,110,32,75,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,81,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,116,41,125,125,102,117,110,99,116,105,111,110,32,74,40,41,123,114,101,116,117,114,110,91,93,125,102,117,110,99,116,105,111,110,32,116,116,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,74,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,41,125,125,102,117,110,99,116,105,111,110,32,110,116,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,97,116,99,104,101,115,40,116,41,125,125,102,117,110,99,116,105,111,110,32,101,116,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,65,114,114,97,121,40,116,46,108,101,110,103,116,104,41,125,102,117,110,99,116,105,111,110,32,114,116,40,116,44,110,41,123,116,104,105,115,46,111,119,110,101,114,68,111,99,117,109,101,110,116,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,116,104,105,115,46,110,97,109,101,115,112,97,99,101,85,82,73,61,116,46,110,97,109,101,115,112,97,99,101,85,82,73,44,116,104,105,115,46,95,110,101,120,116,61,110,117,108,108,44,116,104,105,115,46,95,112,97,114,101,110,116,61,116,44,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,125,114,116,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,114,116,44,97,112,112,101,110,100,67,104,105,108,100,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,112,97,114,101,110,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,116,104,105,115,46,95,110,101,120,116,41,125,44,105,110,115,101,114,116,66,101,102,111,114,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,112,97,114,101,110,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,110,41,125,44,113,117,101,114,121,83,101,108,101,99,116,111,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,112,97,114,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,116,41,125,44,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,112,97,114,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,41,125,125,59,118,97,114,32,105,116,61,34,36,34,59,102,117,110,99,116,105,111,110,32,111,116,40,116,44,110,44,101,44,114,44,105,44,111,41,123,102,111,114,40,118,97,114,32,97,44,117,61,48,44,99,61,110,46,108,101,110,103,116,104,44,102,61,111,46,108,101,110,103,116,104,59,117,60,102,59,43,43,117,41,40,97,61,110,91,117,93,41,63,40,97,46,95,95,100,97,116,97,95,95,61,111,91,117,93,44,114,91,117,93,61,97,41,58,101,91,117,93,61,110,101,119,32,114,116,40,116,44,111,91,117,93,41,59,102,111,114,40,59,117,60,99,59,43,43,117,41,40,97,61,110,91,117,93,41,38,38,40,105,91,117,93,61,97,41,125,102,117,110,99,116,105,111,110,32,97,116,40,116,44,110,44,101,44,114,44,105,44,111,44,97,41,123,118,97,114,32,117,44,99,44,102,44,115,61,123,125,44,108,61,110,46,108,101,110,103,116,104,44,104,61,111,46,108,101,110,103,116,104,44,100,61,110,101,119,32,65,114,114,97,121,40,108,41,59,102,111,114,40,117,61,48,59,117,60,108,59,43,43,117,41,40,99,61,110,91,117,93,41,38,38,40,100,91,117,93,61,102,61,105,116,43,97,46,99,97,108,108,40,99,44,99,46,95,95,100,97,116,97,95,95,44,117,44,110,41,44,102,32,105,110,32,115,63,105,91,117,93,61,99,58,115,91,102,93,61,99,41,59,102,111,114,40,117,61,48,59,117,60,104,59,43,43,117,41,40,99,61,115,91,102,61,105,116,43,97,46,99,97,108,108,40,116,44,111,91,117,93,44,117,44,111,41,93,41,63,40,114,91,117,93,61,99,44,99,46,95,95,100,97,116,97,95,95,61,111,91,117,93,44,115,91,102,93,61,110,117,108,108,41,58,101,91,117,93,61,110,101,119,32,114,116,40,116,44,111,91,117,93,41,59,102,111,114,40,117,61,48,59,117,60,108,59,43,43,117,41,40,99,61,110,91,117,93,41,38,38,115,91,100,91,117,93,93,61,61,61,99,38,38,40,105,91,117,93,61,99,41,125,102,117,110,99,116,105,111,110,32,117,116,40,116,44,110,41,123,114,101,116,117,114,110,32,116,60,110,63,45,49,58,116,62,110,63,49,58,116,62,61,110,63,48,58,78,97,78,125,102,117,110,99,116,105,111,110,32,99,116,40,116,41,123,114,101,116,117,114,110,32,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,38,38,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,124,124,116,46,100,111,99,117,109,101,110,116,38,38,116,124,124,116,46,100,101,102,97,117,108,116,86,105,101,119,125,102,117,110,99,116,105,111,110,32,102,116,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,110,41,124,124,99,116,40,116,41,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,116,44,110,117,108,108,41,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,110,41,125,102,117,110,99,116,105,111,110,32,115,116,40,116,41,123,114,101,116,117,114,110,32,116,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,94,124,92,115,43,47,41,125,102,117,110,99,116,105,111,110,32,108,116,40,116,41,123,114,101,116,117,114,110,32,116,46,99,108,97,115,115,76,105,115,116,124,124,110,101,119,32,104,116,40,116,41,125,102,117,110,99,116,105,111,110,32,104,116,40,116,41,123,116,104,105,115,46,95,110,111,100,101,61,116,44,116,104,105,115,46,95,110,97,109,101,115,61,115,116,40,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,41,124,124,34,34,41,125,102,117,110,99,116,105,111,110,32,100,116,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,108,116,40,116,41,44,114,61,45,49,44,105,61,110,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,101,46,97,100,100,40,110,91,114,93,41,125,102,117,110,99,116,105,111,110,32,112,116,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,108,116,40,116,41,44,114,61,45,49,44,105,61,110,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,101,46,114,101,109,111,118,101,40,110,91,114,93,41,125,102,117,110,99,116,105,111,110,32,118,116,40,41,123,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,125,102,117,110,99,116,105,111,110,32,103,116,40,41,123,116,104,105,115,46,105,110,110,101,114,72,84,77,76,61,34,34,125,102,117,110,99,116,105,111,110,32,121,116,40,41,123,116,104,105,115,46,110,101,120,116,83,105,98,108,105,110,103,38,38,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,104,105,115,41,125,102,117,110,99,116,105,111,110,32,95,116,40,41,123,116,104,105,115,46,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,38,38,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,104,105,115,44,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,102,105,114,115,116,67,104,105,108,100,41,125,102,117,110,99,116,105,111,110,32,98,116,40,41,123,114,101,116,117,114,110,32,110,117,108,108,125,102,117,110,99,116,105,111,110,32,109,116,40,41,123,118,97,114,32,116,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,116,38,38,116,46,114,101,109,111,118,101,67,104,105,108,100,40,116,104,105,115,41,125,102,117,110,99,116,105,111,110,32,120,116,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,108,111,110,101,78,111,100,101,40,33,49,41,44,110,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,114,101,116,117,114,110,32,110,63,110,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,116,104,105,115,46,110,101,120,116,83,105,98,108,105,110,103,41,58,116,125,102,117,110,99,116,105,111,110,32,119,116,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,108,111,110,101,78,111,100,101,40,33,48,41,44,110,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,114,101,116,117,114,110,32,110,63,110,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,116,104,105,115,46,110,101,120,116,83,105,98,108,105,110,103,41,58,116,125,104,116,46,112,114,111,116,111,116,121,112,101,61,123,97,100,100,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,110,97,109,101,115,46,105,110,100,101,120,79,102,40,116,41,60,48,38,38,40,116,104,105,115,46,95,110,97,109,101,115,46,112,117,115,104,40,116,41,44,116,104,105,115,46,95,110,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,116,104,105,115,46,95,110,97,109,101,115,46,106,111,105,110,40,34,32,34,41,41,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,95,110,97,109,101,115,46,105,110,100,101,120,79,102,40,116,41,59,110,62,61,48,38,38,40,116,104,105,115,46,95,110,97,109,101,115,46,115,112,108,105,99,101,40,110,44,49,41,44,116,104,105,115,46,95,110,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,116,104,105,115,46,95,110,97,109,101,115,46,106,111,105,110,40,34,32,34,41,41,41,125,44,99,111,110,116,97,105,110,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,110,97,109,101,115,46,105,110,100,101,120,79,102,40,116,41,62,61,48,125,125,59,118,97,114,32,77,116,61,123,125,59,40,116,46,101,118,101,110,116,61,110,117,108,108,44,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,41,38,38,40,34,111,110,109,111,117,115,101,101,110,116,101,114,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,124,124,40,77,116,61,123,109,111,117,115,101,101,110,116,101,114,58,34,109,111,117,115,101,111,118,101,114,34,44,109,111,117,115,101,108,101,97,118,101,58,34,109,111,117,115,101,111,117,116,34,125,41,41,59,102,117,110,99,116,105,111,110,32,78,116,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,116,61,84,116,40,116,44,110,44,101,41,44,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,61,110,46,114,101,108,97,116,101,100,84,97,114,103,101,116,59,101,38,38,40,101,61,61,61,116,104,105,115,124,124,56,38,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,116,104,105,115,41,41,124,124,116,46,99,97,108,108,40,116,104,105,115,44,110,41,125,125,102,117,110,99,116,105,111,110,32,84,116,40,110,44,101,44,114,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,105,41,123,118,97,114,32,111,61,116,46,101,118,101,110,116,59,116,46,101,118,101,110,116,61,105,59,116,114,121,123,110,46,99,97,108,108,40,116,104,105,115,44,116,104,105,115,46,95,95,100,97,116,97,95,95,44,101,44,114,41,125,102,105,110,97,108,108,121,123,116,46,101,118,101,110,116,61,111,125,125,125,102,117,110,99,116,105,111,110,32,65,116,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,46,95,95,111,110,59,105,102,40,110,41,123,102,111,114,40,118,97,114,32,101,44,114,61,48,44,105,61,45,49,44,111,61,110,46,108,101,110,103,116,104,59,114,60,111,59,43,43,114,41,101,61,110,91,114,93,44,116,46,116,121,112,101,38,38,101,46,116,121,112,101,33,61,61,116,46,116,121,112,101,124,124,101,46,110,97,109,101,33,61,61,116,46,110,97,109,101,63,110,91,43,43,105,93,61,101,58,116,104,105,115,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,101,46,116,121,112,101,44,101,46,108,105,115,116,101,110,101,114,44,101,46,99,97,112,116,117,114,101,41,59,43,43,105,63,110,46,108,101,110,103,116,104,61,105,58,100,101,108,101,116,101,32,116,104,105,115,46,95,95,111,110,125,125,125,102,117,110,99,116,105,111,110,32,83,116,40,116,44,110,44,101,41,123,118,97,114,32,114,61,77,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,46,116,121,112,101,41,63,78,116,58,84,116,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,105,44,111,44,97,41,123,118,97,114,32,117,44,99,61,116,104,105,115,46,95,95,111,110,44,102,61,114,40,110,44,111,44,97,41,59,105,102,40,99,41,102,111,114,40,118,97,114,32,115,61,48,44,108,61,99,46,108,101,110,103,116,104,59,115,60,108,59,43,43,115,41,105,102,40,40,117,61,99,91,115,93,41,46,116,121,112,101,61,61,61,116,46,116,121,112,101,38,38,117,46,110,97,109,101,61,61,61,116,46,110,97,109,101,41,114,101,116,117,114,110,32,116,104,105,115,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,117,46,116,121,112,101,44,117,46,108,105,115,116,101,110,101,114,44,117,46,99,97,112,116,117,114,101,41,44,116,104,105,115,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,117,46,116,121,112,101,44,117,46,108,105,115,116,101,110,101,114,61,102,44,117,46,99,97,112,116,117,114,101,61,101,41,44,118,111,105,100,40,117,46,118,97,108,117,101,61,110,41,59,116,104,105,115,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,46,116,121,112,101,44,102,44,101,41,44,117,61,123,116,121,112,101,58,116,46,116,121,112,101,44,110,97,109,101,58,116,46,110,97,109,101,44,118,97,108,117,101,58,110,44,108,105,115,116,101,110,101,114,58,102,44,99,97,112,116,117,114,101,58,101,125,44,99,63,99,46,112,117,115,104,40,117,41,58,116,104,105,115,46,95,95,111,110,61,91,117,93,125,125,102,117,110,99,116,105,111,110,32,107,116,40,110,44,101,44,114,44,105,41,123,118,97,114,32,111,61,116,46,101,118,101,110,116,59,110,46,115,111,117,114,99,101,69,118,101,110,116,61,116,46,101,118,101,110,116,44,116,46,101,118,101,110,116,61,110,59,116,114,121,123,114,101,116,117,114,110,32,101,46,97,112,112,108,121,40,114,44,105,41,125,102,105,110,97,108,108,121,123,116,46,101,118,101,110,116,61,111,125,125,102,117,110,99,116,105,111,110,32,69,116,40,116,44,110,44,101,41,123,118,97,114,32,114,61,99,116,40,116,41,44,105,61,114,46,67,117,115,116,111,109,69,118,101,110,116,59,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,105,63,105,61,110,101,119,32,105,40,110,44,101,41,58,40,105,61,114,46,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,118,101,110,116,40,34,69,118,101,110,116,34,41,44,101,63,40,105,46,105,110,105,116,69,118,101,110,116,40,110,44,101,46,98,117,98,98,108,101,115,44,101,46,99,97,110,99,101,108,97,98,108,101,41,44,105,46,100,101,116,97,105,108,61,101,46,100,101,116,97,105,108,41,58,105,46,105,110,105,116,69,118,101,110,116,40,110,44,33,49,44,33,49,41,41,44,116,46,100,105,115,112,97,116,99,104,69,118,101,110,116,40,105,41,125,118,97,114,32,67,116,61,91,110,117,108,108,93,59,102,117,110,99,116,105,111,110,32,80,116,40,116,44,110,41,123,116,104,105,115,46,95,103,114,111,117,112,115,61,116,44,116,104,105,115,46,95,112,97,114,101,110,116,115,61,110,125,102,117,110,99,116,105,111,110,32,122,116,40,41,123,114,101,116,117,114,110,32,110,101,119,32,80,116,40,91,91,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,93,93,44,67,116,41,125,102,117,110,99,116,105,111,110,32,82,116,40,116,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,63,110,101,119,32,80,116,40,91,91,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,116,41,93,93,44,91,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,93,41,58,110,101,119,32,80,116,40,91,91,116,93,93,44,67,116,41,125,80,116,46,112,114,111,116,111,116,121,112,101,61,122,116,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,80,116,44,115,101,108,101,99,116,58,102,117,110,99,116,105,111,110,40,116,41,123,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,75,40,116,41,41,59,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,110,46,108,101,110,103,116,104,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,44,105,61,48,59,105,60,101,59,43,43,105,41,102,111,114,40,118,97,114,32,111,44,97,44,117,61,110,91,105,93,44,99,61,117,46,108,101,110,103,116,104,44,102,61,114,91,105,93,61,110,101,119,32,65,114,114,97,121,40,99,41,44,115,61,48,59,115,60,99,59,43,43,115,41,40,111,61,117,91,115,93,41,38,38,40,97,61,116,46,99,97,108,108,40,111,44,111,46,95,95,100,97,116,97,95,95,44,115,44,117,41,41,38,38,40,34,95,95,100,97,116,97,95,95,34,105,110,32,111,38,38,40,97,46,95,95,100,97,116,97,95,95,61,111,46,95,95,100,97,116,97,95,95,41,44,102,91,115,93,61,97,41,59,114,101,116,117,114,110,32,110,101,119,32,80,116,40,114,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,44,115,101,108,101,99,116,65,108,108,58,102,117,110,99,116,105,111,110,40,116,41,123,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,116,116,40,116,41,41,59,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,110,46,108,101,110,103,116,104,44,114,61,91,93,44,105,61,91,93,44,111,61,48,59,111,60,101,59,43,43,111,41,102,111,114,40,118,97,114,32,97,44,117,61,110,91,111,93,44,99,61,117,46,108,101,110,103,116,104,44,102,61,48,59,102,60,99,59,43,43,102,41,40,97,61,117,91,102,93,41,38,38,40,114,46,112,117,115,104,40,116,46,99,97,108,108,40,97,44,97,46,95,95,100,97,116,97,95,95,44,102,44,117,41,41,44,105,46,112,117,115,104,40,97,41,41,59,114,101,116,117,114,110,32,110,101,119,32,80,116,40,114,44,105,41,125,44,102,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,110,116,40,116,41,41,59,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,110,46,108,101,110,103,116,104,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,44,105,61,48,59,105,60,101,59,43,43,105,41,102,111,114,40,118,97,114,32,111,44,97,61,110,91,105,93,44,117,61,97,46,108,101,110,103,116,104,44,99,61,114,91,105,93,61,91,93,44,102,61,48,59,102,60,117,59,43,43,102,41,40,111,61,97,91,102,93,41,38,38,116,46,99,97,108,108,40,111,44,111,46,95,95,100,97,116,97,95,95,44,102,44,97,41,38,38,99,46,112,117,115,104,40,111,41,59,114,101,116,117,114,110,32,110,101,119,32,80,116,40,114,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,33,116,41,114,101,116,117,114,110,32,100,61,110,101,119,32,65,114,114,97,121,40,116,104,105,115,46,115,105,122,101,40,41,41,44,102,61,45,49,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,100,91,43,43,102,93,61,116,125,41,44,100,59,118,97,114,32,101,61,110,63,97,116,58,111,116,44,114,61,116,104,105,115,46,95,112,97,114,101,110,116,115,44,105,61,116,104,105,115,46,95,103,114,111,117,112,115,59,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,40,116,41,41,59,102,111,114,40,118,97,114,32,111,61,105,46,108,101,110,103,116,104,44,97,61,110,101,119,32,65,114,114,97,121,40,111,41,44,117,61,110,101,119,32,65,114,114,97,121,40,111,41,44,99,61,110,101,119,32,65,114,114,97,121,40,111,41,44,102,61,48,59,102,60,111,59,43,43,102,41,123,118,97,114,32,115,61,114,91,102,93,44,108,61,105,91,102,93,44,104,61,108,46,108,101,110,103,116,104,44,100,61,116,46,99,97,108,108,40,115,44,115,38,38,115,46,95,95,100,97,116,97,95,95,44,102,44,114,41,44,112,61,100,46,108,101,110,103,116,104,44,118,61,117,91,102,93,61,110,101,119,32,65,114,114,97,121,40,112,41,44,103,61,97,91,102,93,61,110,101,119,32,65,114,114,97,121,40,112,41,59,101,40,115,44,108,44,118,44,103,44,99,91,102,93,61,110,101,119,32,65,114,114,97,121,40,104,41,44,100,44,110,41,59,102,111,114,40,118,97,114,32,121,44,95,44,98,61,48,44,109,61,48,59,98,60,112,59,43,43,98,41,105,102,40,121,61,118,91,98,93,41,123,102,111,114,40,98,62,61,109,38,38,40,109,61,98,43,49,41,59,33,40,95,61,103,91,109,93,41,38,38,43,43,109,60,112,59,41,59,121,46,95,110,101,120,116,61,95,124,124,110,117,108,108,125,125,114,101,116,117,114,110,40,97,61,110,101,119,32,80,116,40,97,44,114,41,41,46,95,101,110,116,101,114,61,117,44,97,46,95,101,120,105,116,61,99,44,97,125,44,101,110,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,80,116,40,116,104,105,115,46,95,101,110,116,101,114,124,124,116,104,105,115,46,95,103,114,111,117,112,115,46,109,97,112,40,101,116,41,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,44,101,120,105,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,80,116,40,116,104,105,115,46,95,101,120,105,116,124,124,116,104,105,115,46,95,103,114,111,117,112,115,46,109,97,112,40,101,116,41,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,44,106,111,105,110,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,104,105,115,46,101,110,116,101,114,40,41,44,105,61,116,104,105,115,44,111,61,116,104,105,115,46,101,120,105,116,40,41,59,114,101,116,117,114,110,32,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,40,114,41,58,114,46,97,112,112,101,110,100,40,116,43,34,34,41,44,110,117,108,108,33,61,110,38,38,40,105,61,110,40,105,41,41,44,110,117,108,108,61,61,101,63,111,46,114,101,109,111,118,101,40,41,58,101,40,111,41,44,114,38,38,105,63,114,46,109,101,114,103,101,40,105,41,46,111,114,100,101,114,40,41,58,105,125,44,109,101,114,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,116,46,95,103,114,111,117,112,115,44,114,61,110,46,108,101,110,103,116,104,44,105,61,101,46,108,101,110,103,116,104,44,111,61,77,97,116,104,46,109,105,110,40,114,44,105,41,44,97,61,110,101,119,32,65,114,114,97,121,40,114,41,44,117,61,48,59,117,60,111,59,43,43,117,41,102,111,114,40,118,97,114,32,99,44,102,61,110,91,117,93,44,115,61,101,91,117,93,44,108,61,102,46,108,101,110,103,116,104,44,104,61,97,91,117,93,61,110,101,119,32,65,114,114,97,121,40,108,41,44,100,61,48,59,100,60,108,59,43,43,100,41,40,99,61,102,91,100,93,124,124,115,91,100,93,41,38,38,40,104,91,100,93,61,99,41,59,102,111,114,40,59,117,60,114,59,43,43,117,41,97,91,117,93,61,110,91,117,93,59,114,101,116,117,114,110,32,110,101,119,32,80,116,40,97,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,44,111,114,100,101,114,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,116,104,105,115,46,95,103,114,111,117,112,115,44,110,61,45,49,44,101,61,116,46,108,101,110,103,116,104,59,43,43,110,60,101,59,41,102,111,114,40,118,97,114,32,114,44,105,61,116,91,110,93,44,111,61,105,46,108,101,110,103,116,104,45,49,44,97,61,105,91,111,93,59,45,45,111,62,61,48,59,41,40,114,61,105,91,111,93,41,38,38,40,97,38,38,52,94,114,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,97,41,38,38,97,46,112,97,114,101,110,116,78,111,100,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,114,44,97,41,44,97,61,114,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,115,111,114,116,58,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,110,40,110,44,101,41,123,114,101,116,117,114,110,32,110,38,38,101,63,116,40,110,46,95,95,100,97,116,97,95,95,44,101,46,95,95,100,97,116,97,95,95,41,58,33,110,45,33,101,125,116,124,124,40,116,61,117,116,41,59,102,111,114,40,118,97,114,32,101,61,116,104,105,115,46,95,103,114,111,117,112,115,44,114,61,101,46,108,101,110,103,116,104,44,105,61,110,101,119,32,65,114,114,97,121,40,114,41,44,111,61,48,59,111,60,114,59,43,43,111,41,123,102,111,114,40,118,97,114,32,97,44,117,61,101,91,111,93,44,99,61,117,46,108,101,110,103,116,104,44,102,61,105,91,111,93,61,110,101,119,32,65,114,114,97,121,40,99,41,44,115,61,48,59,115,60,99,59,43,43,115,41,40,97,61,117,91,115,93,41,38,38,40,102,91,115,93,61,97,41,59,102,46,115,111,114,116,40,110,41,125,114,101,116,117,114,110,32,110,101,119,32,80,116,40,105,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,46,111,114,100,101,114,40,41,125,44,99,97,108,108,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,91,48,93,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,91,48,93,61,116,104,105,115,44,116,46,97,112,112,108,121,40,110,117,108,108,44,97,114,103,117,109,101,110,116,115,41,44,116,104,105,115,125,44,110,111,100,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,101,119,32,65,114,114,97,121,40,116,104,105,115,46,115,105,122,101,40,41,41,44,110,61,45,49,59,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,116,91,43,43,110,93,61,116,104,105,115,125,41,44,116,125,44,110,111,100,101,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,116,104,105,115,46,95,103,114,111,117,112,115,44,110,61,48,44,101,61,116,46,108,101,110,103,116,104,59,110,60,101,59,43,43,110,41,102,111,114,40,118,97,114,32,114,61,116,91,110,93,44,105,61,48,44,111,61,114,46,108,101,110,103,116,104,59,105,60,111,59,43,43,105,41,123,118,97,114,32,97,61,114,91,105,93,59,105,102,40,97,41,114,101,116,117,114,110,32,97,125,114,101,116,117,114,110,32,110,117,108,108,125,44,115,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,48,59,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,43,43,116,125,41,44,116,125,44,101,109,112,116,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,110,111,100,101,40,41,125,44,101,97,99,104,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,48,44,114,61,110,46,108,101,110,103,116,104,59,101,60,114,59,43,43,101,41,102,111,114,40,118,97,114,32,105,44,111,61,110,91,101,93,44,97,61,48,44,117,61,111,46,108,101,110,103,116,104,59,97,60,117,59,43,43,97,41,40,105,61,111,91,97,93,41,38,38,116,46,99,97,108,108,40,105,44,105,46,95,95,100,97,116,97,95,95,44,97,44,111,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,97,116,116,114,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,87,40,116,41,59,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,123,118,97,114,32,114,61,116,104,105,115,46,110,111,100,101,40,41,59,114,101,116,117,114,110,32,101,46,108,111,99,97,108,63,114,46,103,101,116,65,116,116,114,105,98,117,116,101,78,83,40,101,46,115,112,97,99,101,44,101,46,108,111,99,97,108,41,58,114,46,103,101,116,65,116,116,114,105,98,117,116,101,40,101,41,125,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,110,117,108,108,61,61,110,63,101,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,41,125,125,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,101,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,110,117,108,108,61,61,101,63,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,58,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,44,101,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,110,117,108,108,61,61,101,63,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,41,58,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,116,44,101,41,125,125,58,101,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,44,110,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,116,44,110,41,125,125,41,40,101,44,110,41,41,125,44,115,116,121,108,101,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,116,104,105,115,46,101,97,99,104,40,40,110,117,108,108,61,61,110,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,116,41,125,125,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,114,61,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,110,117,108,108,61,61,114,63,116,104,105,115,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,116,41,58,116,104,105,115,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,116,44,114,44,101,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,116,44,110,44,101,41,125,125,41,40,116,44,110,44,110,117,108,108,61,61,101,63,34,34,58,101,41,41,58,102,116,40,116,104,105,115,46,110,111,100,101,40,41,44,116,41,125,44,112,114,111,112,101,114,116,121,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,116,104,105,115,46,101,97,99,104,40,40,110,117,108,108,61,61,110,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,100,101,108,101,116,101,32,116,104,105,115,91,116,93,125,125,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,110,117,108,108,61,61,101,63,100,101,108,101,116,101,32,116,104,105,115,91,116,93,58,116,104,105,115,91,116,93,61,101,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,91,116,93,61,110,125,125,41,40,116,44,110,41,41,58,116,104,105,115,46,110,111,100,101,40,41,91,116,93,125,44,99,108,97,115,115,101,100,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,115,116,40,116,43,34,34,41,59,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,123,102,111,114,40,118,97,114,32,114,61,108,116,40,116,104,105,115,46,110,111,100,101,40,41,41,44,105,61,45,49,44,111,61,101,46,108,101,110,103,116,104,59,43,43,105,60,111,59,41,105,102,40,33,114,46,99,111,110,116,97,105,110,115,40,101,91,105,93,41,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,40,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,63,100,116,58,112,116,41,40,116,104,105,115,44,116,41,125,125,58,110,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,100,116,40,116,104,105,115,44,116,41,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,112,116,40,116,104,105,115,44,116,41,125,125,41,40,101,44,110,41,41,125,44,116,101,120,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,101,97,99,104,40,110,117,108,108,61,61,116,63,118,116,58,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,110,117,108,108,61,61,110,63,34,34,58,110,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,116,125,125,41,40,116,41,41,58,116,104,105,115,46,110,111,100,101,40,41,46,116,101,120,116,67,111,110,116,101,110,116,125,44,104,116,109,108,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,101,97,99,104,40,110,117,108,108,61,61,116,63,103,116,58,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,116,104,105,115,46,105,110,110,101,114,72,84,77,76,61,110,117,108,108,61,61,110,63,34,34,58,110,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,110,110,101,114,72,84,77,76,61,116,125,125,41,40,116,41,41,58,116,104,105,115,46,110,111,100,101,40,41,46,105,110,110,101,114,72,84,77,76,125,44,114,97,105,115,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,121,116,41,125,44,108,111,119,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,95,116,41,125,44,97,112,112,101,110,100,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,40,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,112,112,101,110,100,67,104,105,108,100,40,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,41,125,44,105,110,115,101,114,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,40,116,41,44,114,61,110,117,108,108,61,61,110,63,98,116,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,75,40,110,41,59,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,115,101,114,116,66,101,102,111,114,101,40,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,124,124,110,117,108,108,41,125,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,109,116,41,125,44,99,108,111,110,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,40,116,63,119,116,58,120,116,41,125,44,100,97,116,117,109,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,112,114,111,112,101,114,116,121,40,34,95,95,100,97,116,97,95,95,34,44,116,41,58,116,104,105,115,46,110,111,100,101,40,41,46,95,95,100,97,116,97,95,95,125,44,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,94,124,92,115,43,47,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,34,34,44,101,61,116,46,105,110,100,101,120,79,102,40,34,46,34,41,59,114,101,116,117,114,110,32,101,62,61,48,38,38,40,110,61,116,46,115,108,105,99,101,40,101,43,49,41,44,116,61,116,46,115,108,105,99,101,40,48,44,101,41,41,44,123,116,121,112,101,58,116,44,110,97,109,101,58,110,125,125,41,125,40,116,43,34,34,41,44,97,61,111,46,108,101,110,103,116,104,59,105,102,40,33,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,41,123,102,111,114,40,117,61,110,63,83,116,58,65,116,44,110,117,108,108,61,61,101,38,38,40,101,61,33,49,41,44,114,61,48,59,114,60,97,59,43,43,114,41,116,104,105,115,46,101,97,99,104,40,117,40,111,91,114,93,44,110,44,101,41,41,59,114,101,116,117,114,110,32,116,104,105,115,125,118,97,114,32,117,61,116,104,105,115,46,110,111,100,101,40,41,46,95,95,111,110,59,105,102,40,117,41,102,111,114,40,118,97,114,32,99,44,102,61,48,44,115,61,117,46,108,101,110,103,116,104,59,102,60,115,59,43,43,102,41,102,111,114,40,114,61,48,44,99,61,117,91,102,93,59,114,60,97,59,43,43,114,41,105,102,40,40,105,61,111,91,114,93,41,46,116,121,112,101,61,61,61,99,46,116,121,112,101,38,38,105,46,110,97,109,101,61,61,61,99,46,110,97,109,101,41,114,101,116,117,114,110,32,99,46,118,97,108,117,101,125,44,100,105,115,112,97,116,99,104,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,69,116,40,116,104,105,115,44,116,44,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,69,116,40,116,104,105,115,44,116,44,110,41,125,125,41,40,116,44,110,41,41,125,125,59,118,97,114,32,68,116,61,48,59,102,117,110,99,116,105,111,110,32,113,116,40,41,123,114,101,116,117,114,110,32,110,101,119,32,76,116,125,102,117,110,99,116,105,111,110,32,76,116,40,41,123,116,104,105,115,46,95,61,34,64,34,43,40,43,43,68,116,41,46,116,111,83,116,114,105,110,103,40,51,54,41,125,102,117,110,99,116,105,111,110,32,85,116,40,41,123,102,111,114,40,118,97,114,32,110,44,101,61,116,46,101,118,101,110,116,59,110,61,101,46,115,111,117,114,99,101,69,118,101,110,116,59,41,101,61,110,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,79,116,40,116,44,110,41,123,118,97,114,32,101,61,116,46,111,119,110,101,114,83,86,71,69,108,101,109,101,110,116,124,124,116,59,105,102,40,101,46,99,114,101,97,116,101,83,86,71,80,111,105,110,116,41,123,118,97,114,32,114,61,101,46,99,114,101,97,116,101,83,86,71,80,111,105,110,116,40,41,59,114,101,116,117,114,110,32,114,46,120,61,110,46,99,108,105,101,110,116,88,44,114,46,121,61,110,46,99,108,105,101,110,116,89,44,91,40,114,61,114,46,109,97,116,114,105,120,84,114,97,110,115,102,111,114,109,40,116,46,103,101,116,83,99,114,101,101,110,67,84,77,40,41,46,105,110,118,101,114,115,101,40,41,41,41,46,120,44,114,46,121,93,125,118,97,114,32,105,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,114,101,116,117,114,110,91,110,46,99,108,105,101,110,116,88,45,105,46,108,101,102,116,45,116,46,99,108,105,101,110,116,76,101,102,116,44,110,46,99,108,105,101,110,116,89,45,105,46,116,111,112,45,116,46,99,108,105,101,110,116,84,111,112,93,125,102,117,110,99,116,105,111,110,32,66,116,40,116,41,123,118,97,114,32,110,61,85,116,40,41,59,114,101,116,117,114,110,32,110,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,38,38,40,110,61,110,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,91,48,93,41,44,79,116,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,70,116,40,116,44,110,44,101,41,123,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,51,38,38,40,101,61,110,44,110,61,85,116,40,41,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,41,59,102,111,114,40,118,97,114,32,114,44,105,61,48,44,111,61,110,63,110,46,108,101,110,103,116,104,58,48,59,105,60,111,59,43,43,105,41,105,102,40,40,114,61,110,91,105,93,41,46,105,100,101,110,116,105,102,105,101,114,61,61,61,101,41,114,101,116,117,114,110,32,79,116,40,116,44,114,41,59,114,101,116,117,114,110,32,110,117,108,108,125,102,117,110,99,116,105,111,110,32,89,116,40,41,123,116,46,101,118,101,110,116,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,73,116,40,41,123,116,46,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,101,118,101,110,116,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,72,116,40,116,41,123,118,97,114,32,110,61,116,46,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,101,61,82,116,40,116,41,46,111,110,40,34,100,114,97,103,115,116,97,114,116,46,100,114,97,103,34,44,73,116,44,33,48,41,59,34,111,110,115,101,108,101,99,116,115,116,97,114,116,34,105,110,32,110,63,101,46,111,110,40,34,115,101,108,101,99,116,115,116,97,114,116,46,100,114,97,103,34,44,73,116,44,33,48,41,58,40,110,46,95,95,110,111,115,101,108,101,99,116,61,110,46,115,116,121,108,101,46,77,111,122,85,115,101,114,83,101,108,101,99,116,44,110,46,115,116,121,108,101,46,77,111,122,85,115,101,114,83,101,108,101,99,116,61,34,110,111,110,101,34,41,125,102,117,110,99,116,105,111,110,32,106,116,40,116,44,110,41,123,118,97,114,32,101,61,116,46,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,114,61,82,116,40,116,41,46,111,110,40,34,100,114,97,103,115,116,97,114,116,46,100,114,97,103,34,44,110,117,108,108,41,59,110,38,38,40,114,46,111,110,40,34,99,108,105,99,107,46,100,114,97,103,34,44,73,116,44,33,48,41,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,114,46,111,110,40,34,99,108,105,99,107,46,100,114,97,103,34,44,110,117,108,108,41,125,44,48,41,41,44,34,111,110,115,101,108,101,99,116,115,116,97,114,116,34,105,110,32,101,63,114,46,111,110,40,34,115,101,108,101,99,116,115,116,97,114,116,46,100,114,97,103,34,44,110,117,108,108,41,58,40,101,46,115,116,121,108,101,46,77,111,122,85,115,101,114,83,101,108,101,99,116,61,101,46,95,95,110,111,115,101,108,101,99,116,44,100,101,108,101,116,101,32,101,46,95,95,110,111,115,101,108,101,99,116,41,125,102,117,110,99,116,105,111,110,32,88,116,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,86,116,40,116,44,110,44,101,44,114,44,105,44,111,44,97,44,117,44,99,44,102,41,123,116,104,105,115,46,116,97,114,103,101,116,61,116,44,116,104,105,115,46,116,121,112,101,61,110,44,116,104,105,115,46,115,117,98,106,101,99,116,61,101,44,116,104,105,115,46,105,100,101,110,116,105,102,105,101,114,61,114,44,116,104,105,115,46,97,99,116,105,118,101,61,105,44,116,104,105,115,46,120,61,111,44,116,104,105,115,46,121,61,97,44,116,104,105,115,46,100,120,61,117,44,116,104,105,115,46,100,121,61,99,44,116,104,105,115,46,95,61,102,125,102,117,110,99,116,105,111,110,32,71,116,40,41,123,114,101,116,117,114,110,33,116,46,101,118,101,110,116,46,99,116,114,108,75,101,121,38,38,33,116,46,101,118,101,110,116,46,98,117,116,116,111,110,125,102,117,110,99,116,105,111,110,32,36,116,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,125,102,117,110,99,116,105,111,110,32,87,116,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,123,120,58,116,46,101,118,101,110,116,46,120,44,121,58,116,46,101,118,101,110,116,46,121,125,58,110,125,102,117,110,99,116,105,111,110,32,90,116,40,41,123,114,101,116,117,114,110,32,110,97,118,105,103,97,116,111,114,46,109,97,120,84,111,117,99,104,80,111,105,110,116,115,124,124,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,81,116,40,116,44,110,44,101,41,123,116,46,112,114,111,116,111,116,121,112,101,61,110,46,112,114,111,116,111,116,121,112,101,61,101,44,101,46,99,111,110,115,116,114,117,99,116,111,114,61,116,125,102,117,110,99,116,105,111,110,32,75,116,40,116,44,110,41,123,118,97,114,32,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,46,112,114,111,116,111,116,121,112,101,41,59,102,111,114,40,118,97,114,32,114,32,105,110,32,110,41,101,91,114,93,61,110,91,114,93,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,74,116,40,41,123,125,76,116,46,112,114,111,116,111,116,121,112,101,61,113,116,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,76,116,44,103,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,59,33,40,110,32,105,110,32,116,41,59,41,105,102,40,33,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,41,114,101,116,117,114,110,59,114,101,116,117,114,110,32,116,91,110,93,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,91,116,104,105,115,46,95,93,61,110,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,32,105,110,32,116,38,38,100,101,108,101,116,101,32,116,91,116,104,105,115,46,95,93,125,44,116,111,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,125,125,44,86,116,46,112,114,111,116,111,116,121,112,101,46,111,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,46,111,110,46,97,112,112,108,121,40,116,104,105,115,46,95,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,116,61,61,61,116,104,105,115,46,95,63,116,104,105,115,58,116,125,59,118,97,114,32,116,110,61,34,92,92,115,42,40,91,43,45,93,63,92,92,100,43,41,92,92,115,42,34,44,110,110,61,34,92,92,115,42,40,91,43,45,93,63,92,92,100,42,92,92,46,63,92,92,100,43,40,63,58,91,101,69,93,91,43,45,93,63,92,92,100,43,41,63,41,92,92,115,42,34,44,101,110,61,34,92,92,115,42,40,91,43,45,93,63,92,92,100,42,92,92,46,63,92,92,100,43,40,63,58,91,101,69,93,91,43,45,93,63,92,92,100,43,41,63,41,37,92,92,115,42,34,44,114,110,61,47,94,35,40,91,48,45,57,97,45,102,93,123,51,44,56,125,41,36,47,44,111,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,114,103,98,92,92,40,34,43,91,116,110,44,116,110,44,116,110,93,43,34,92,92,41,36,34,41,44,97,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,114,103,98,92,92,40,34,43,91,101,110,44,101,110,44,101,110,93,43,34,92,92,41,36,34,41,44,117,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,114,103,98,97,92,92,40,34,43,91,116,110,44,116,110,44,116,110,44,110,110,93,43,34,92,92,41,36,34,41,44,99,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,114,103,98,97,92,92,40,34,43,91,101,110,44,101,110,44,101,110,44,110,110,93,43,34,92,92,41,36,34,41,44,102,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,104,115,108,92,92,40,34,43,91,110,110,44,101,110,44,101,110,93,43,34,92,92,41,36,34,41,44,115,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,104,115,108,97,92,92,40,34,43,91,110,110,44,101,110,44,101,110,44,110,110,93,43,34,92,92,41,36,34,41,44,108,110,61,123,97,108,105,99,101,98,108,117,101,58,49,53,55,57,50,51,56,51,44,97,110,116,105,113,117,101,119,104,105,116,101,58,49,54,52,52,52,51,55,53,44,97,113,117,97,58,54,53,53,51,53,44,97,113,117,97,109,97,114,105,110,101,58,56,51,56,56,53,54,52,44,97,122,117,114,101,58,49,53,55,57,52,49,55,53,44,98,101,105,103,101,58,49,54,49,49,57,50,54,48,44,98,105,115,113,117,101,58,49,54,55,55,48,50,52,52,44,98,108,97,99,107,58,48,44,98,108,97,110,99,104,101,100,97,108,109,111,110,100,58,49,54,55,55,50,48,52,53,44,98,108,117,101,58,50,53,53,44,98,108,117,101,118,105,111,108,101,116,58,57,48,53,53,50,48,50,44,98,114,111,119,110,58,49,48,56,50,52,50,51,52,44,98,117,114,108,121,119,111,111,100,58,49,52,53,57,54,50,51,49,44,99,97,100,101,116,98,108,117,101,58,54,50,54,54,53,50,56,44,99,104,97,114,116,114,101,117,115,101,58,56,51,56,56,51,53,50,44,99,104,111,99,111,108,97,116,101,58,49,51,55,56,57,52,55,48,44,99,111,114,97,108,58,49,54,55,52,52,50,55,50,44,99,111,114,110,102,108,111,119,101,114,98,108,117,101,58,54,53,57,49,57,56,49,44,99,111,114,110,115,105,108,107,58,49,54,55,55,53,51,56,56,44,99,114,105,109,115,111,110,58,49,52,52,50,51,49,48,48,44,99,121,97,110,58,54,53,53,51,53,44,100,97,114,107,98,108,117,101,58,49,51,57,44,100,97,114,107,99,121,97,110,58,51,53,55,50,51,44,100,97,114,107,103,111,108,100,101,110,114,111,100,58,49,50,48,57,50,57,51,57,44,100,97,114,107,103,114,97,121,58,49,49,49,49,57,48,49,55,44,100,97,114,107,103,114,101,101,110,58,50,53,54,48,48,44,100,97,114,107,103,114,101,121,58,49,49,49,49,57,48,49,55,44,100,97,114,107,107,104,97,107,105,58,49,50,52,51,51,50,53,57,44,100,97,114,107,109,97,103,101,110,116,97,58,57,49,48,57,54,52,51,44,100,97,114,107,111,108,105,118,101,103,114,101,101,110,58,53,53,57,55,57,57,57,44,100,97,114,107,111,114,97,110,103,101,58,49,54,55,52,55,53,50,48,44,100,97,114,107,111,114,99,104,105,100,58,49,48,48,52,48,48,49,50,44,100,97,114,107,114,101,100,58,57,49,48,57,53,48,52,44,100,97,114,107,115,97,108,109,111,110,58,49,53,51,48,56,52,49,48,44,100,97,114,107,115,101,97,103,114,101,101,110,58,57,52,49,57,57,49,57,44,100,97,114,107,115,108,97,116,101,98,108,117,101,58,52,55,51,52,51,52,55,44,100,97,114,107,115,108,97,116,101,103,114,97,121,58,51,49,48,48,52,57,53,44,100,97,114,107,115,108,97,116,101,103,114,101,121,58,51,49,48,48,52,57,53,44,100,97,114,107,116,117,114,113,117,111,105,115,101,58,53,50,57,52,53,44,100,97,114,107,118,105,111,108,101,116,58,57,54,57,57,53,51,57,44,100,101,101,112,112,105,110,107,58,49,54,55,49,54,57,52,55,44,100,101,101,112,115,107,121,98,108,117,101,58,52,57,49,53,49,44,100,105,109,103,114,97,121,58,54,57,48,56,50,54,53,44,100,105,109,103,114,101,121,58,54,57,48,56,50,54,53,44,100,111,100,103,101,114,98,108,117,101,58,50,48,48,51,49,57,57,44,102,105,114,101,98,114,105,99,107,58,49,49,54,55,52,49,52,54,44,102,108,111,114,97,108,119,104,105,116,101,58,49,54,55,55,53,57,50,48,44,102,111,114,101,115,116,103,114,101,101,110,58,50,50,54,51,56,52,50,44,102,117,99,104,115,105,97,58,49,54,55,49,49,57,51,53,44,103,97,105,110,115,98,111,114,111,58,49,52,52,55,52,52,54,48,44,103,104,111,115,116,119,104,105,116,101,58,49,54,51,49,54,54,55,49,44,103,111,108,100,58,49,54,55,54,54,55,50,48,44,103,111,108,100,101,110,114,111,100,58,49,52,51,50,57,49,50,48,44,103,114,97,121,58,56,52,50,49,53,48,52,44,103,114,101,101,110,58,51,50,55,54,56,44,103,114,101,101,110,121,101,108,108,111,119,58,49,49,52,48,51,48,53,53,44,103,114,101,121,58,56,52,50,49,53,48,52,44,104,111,110,101,121,100,101,119,58,49,53,55,57,52,49,54,48,44,104,111,116,112,105,110,107,58,49,54,55,51,56,55,52,48,44,105,110,100,105,97,110,114,101,100,58,49,51,52,53,56,53,50,52,44,105,110,100,105,103,111,58,52,57,49,53,51,51,48,44,105,118,111,114,121,58,49,54,55,55,55,50,48,48,44,107,104,97,107,105,58,49,53,55,56,55,54,54,48,44,108,97,118,101,110,100,101,114,58,49,53,49,51,50,52,49,48,44,108,97,118,101,110,100,101,114,98,108,117,115,104,58,49,54,55,55,51,51,54,53,44,108,97,119,110,103,114,101,101,110,58,56,49,57,48,57,55,54,44,108,101,109,111,110,99,104,105,102,102,111,110,58,49,54,55,55,53,56,56,53,44,108,105,103,104,116,98,108,117,101,58,49,49,51,57,51,50,53,52,44,108,105,103,104,116,99,111,114,97,108,58,49,53,55,54,49,53,51,54,44,108,105,103,104,116,99,121,97,110,58,49,52,55,52,53,53,57,57,44,108,105,103,104,116,103,111,108,100,101,110,114,111,100,121,101,108,108,111,119,58,49,54,52,52,56,50,49,48,44,108,105,103,104,116,103,114,97,121,58,49,51,56,56,50,51,50,51,44,108,105,103,104,116,103,114,101,101,110,58,57,52,57,56,50,53,54,44,108,105,103,104,116,103,114,101,121,58,49,51,56,56,50,51,50,51,44,108,105,103,104,116,112,105,110,107,58,49,54,55,53,56,52,54,53,44,108,105,103,104,116,115,97,108,109,111,110,58,49,54,55,53,50,55,54,50,44,108,105,103,104,116,115,101,97,103,114,101,101,110,58,50,49,52,50,56,57,48,44,108,105,103,104,116,115,107,121,98,108,117,101,58,56,57,48,48,51,52,54,44,108,105,103,104,116,115,108,97,116,101,103,114,97,121,58,55,56,51,51,55,53,51,44,108,105,103,104,116,115,108,97,116,101,103,114,101,121,58,55,56,51,51,55,53,51,44,108,105,103,104,116,115,116,101,101,108,98,108,117,101,58,49,49,53,56,52,55,51,52,44,108,105,103,104,116,121,101,108,108,111,119,58,49,54,55,55,55,49,56,52,44,108,105,109,101,58,54,53,50,56,48,44,108,105,109,101,103,114,101,101,110,58,51,51,50,57,51,51,48,44,108,105,110,101,110,58,49,54,52,52,53,54,55,48,44,109,97,103,101,110,116,97,58,49,54,55,49,49,57,51,53,44,109,97,114,111,111,110,58,56,51,56,56,54,48,56,44,109,101,100,105,117,109,97,113,117,97,109,97,114,105,110,101,58,54,55,51,55,51,50,50,44,109,101,100,105,117,109,98,108,117,101,58,50,48,53,44,109,101,100,105,117,109,111,114,99,104,105,100,58,49,50,50,49,49,54,54,55,44,109,101,100,105,117,109,112,117,114,112,108,101,58,57,54,54,50,54,56,51,44,109,101,100,105,117,109,115,101,97,103,114,101,101,110,58,51,57,55,56,48,57,55,44,109,101,100,105,117,109,115,108,97,116,101,98,108,117,101,58,56,48,56,55,55,57,48,44,109,101,100,105,117,109,115,112,114,105,110,103,103,114,101,101,110,58,54,52,49,53,52,44,109,101,100,105,117,109,116,117,114,113,117,111,105,115,101,58,52,55,55,50,51,48,48,44,109,101,100,105,117,109,118,105,111,108,101,116,114,101,100,58,49,51,48,52,55,49,55,51,44,109,105,100,110,105,103,104,116,98,108,117,101,58,49,54,52,52,57,49,50,44,109,105,110,116,99,114,101,97,109,58,49,54,49,50,49,56,53,48,44,109,105,115,116,121,114,111,115,101,58,49,54,55,55,48,50,55,51,44,109,111,99,99,97,115,105,110,58,49,54,55,55,48,50,50,57,44,110,97,118,97,106,111,119,104,105,116,101,58,49,54,55,54,56,54,56,53,44,110,97,118,121,58,49,50,56,44,111,108,100,108,97,99,101,58,49,54,54,52,51,53,53,56,44,111,108,105,118,101,58,56,52,50,49,51,55,54,44,111,108,105,118,101,100,114,97,98,58,55,48,52,56,55,51,57,44,111,114,97,110,103,101,58,49,54,55,53,51,57,50,48,44,111,114,97,110,103,101,114,101,100,58,49,54,55,50,57,51,52,52,44,111,114,99,104,105,100,58,49,52,51,49,53,55,51,52,44,112,97,108,101,103,111,108,100,101,110,114,111,100,58,49,53,54,53,55,49,51,48,44,112,97,108,101,103,114,101,101,110,58,49,48,48,50,53,56,56,48,44,112,97,108,101,116,117,114,113,117,111,105,115,101,58,49,49,53,50,57,57,54,54,44,112,97,108,101,118,105,111,108,101,116,114,101,100,58,49,52,51,56,49,50,48,51,44,112,97,112,97,121,97,119,104,105,112,58,49,54,55,55,51,48,55,55,44,112,101,97,99,104,112,117,102,102,58,49,54,55,54,55,54,55,51,44,112,101,114,117,58,49,51,52,54,56,57,57,49,44,112,105,110,107,58,49,54,55,54,49,48,51,53,44,112,108,117,109,58,49,52,53,50,52,54,51,55,44,112,111,119,100,101,114,98,108,117,101,58,49,49,53,57,49,57,49,48,44,112,117,114,112,108,101,58,56,51,56,56,55,51,54,44,114,101,98,101,99,99,97,112,117,114,112,108,101,58,54,54,57,55,56,56,49,44,114,101,100,58,49,54,55,49,49,54,56,48,44,114,111,115,121,98,114,111,119,110,58,49,50,51,53,55,53,49,57,44,114,111,121,97,108,98,108,117,101,58,52,50,56,54,57,52,53,44,115,97,100,100,108,101,98,114,111,119,110,58,57,49,50,55,49,56,55,44,115,97,108,109,111,110,58,49,54,52,49,54,56,56,50,44,115,97,110,100,121,98,114,111,119,110,58,49,54,48,51,50,56,54,52,44,115,101,97,103,114,101,101,110,58,51,48,53,48,51,50,55,44,115,101,97,115,104,101,108,108,58,49,54,55,55,52,54,51,56,44,115,105,101,110,110,97,58,49,48,53,48,54,55,57,55,44,115,105,108,118,101,114,58,49,50,54,51,50,50,53,54,44,115,107,121,98,108,117,101,58,56,57,48,48,51,51,49,44,115,108,97,116,101,98,108,117,101,58,54,57,55,48,48,54,49,44,115,108,97,116,101,103,114,97,121,58,55,51,55,50,57,52,52,44,115,108,97,116,101,103,114,101,121,58,55,51,55,50,57,52,52,44,115,110,111,119,58,49,54,55,55,53,57,51,48,44,115,112,114,105,110,103,103,114,101,101,110,58,54,53,52,48,55,44,115,116,101,101,108,98,108,117,101,58,52,54,50,48,57,56,48,44,116,97,110,58,49,51,56,48,56,55,56,48,44,116,101,97,108,58,51,50,56,57,54,44,116,104,105,115,116,108,101,58,49,52,50,48,52,56,56,56,44,116,111,109,97,116,111,58,49,54,55,51,55,48,57,53,44,116,117,114,113,117,111,105,115,101,58,52,50,53,49,56,53,54,44,118,105,111,108,101,116,58,49,53,54,51,49,48,56,54,44,119,104,101,97,116,58,49,54,49,49,51,51,51,49,44,119,104,105,116,101,58,49,54,55,55,55,50,49,53,44,119,104,105,116,101,115,109,111,107,101,58,49,54,49,49,57,50,56,53,44,121,101,108,108,111,119,58,49,54,55,55,54,57,54,48,44,121,101,108,108,111,119,103,114,101,101,110,58,49,48,49,52,53,48,55,52,125,59,102,117,110,99,116,105,111,110,32,104,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,103,98,40,41,46,102,111,114,109,97,116,72,101,120,40,41,125,102,117,110,99,116,105,111,110,32,100,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,103,98,40,41,46,102,111,114,109,97,116,82,103,98,40,41,125,102,117,110,99,116,105,111,110,32,112,110,40,116,41,123,118,97,114,32,110,44,101,59,114,101,116,117,114,110,32,116,61,40,116,43,34,34,41,46,116,114,105,109,40,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,40,110,61,114,110,46,101,120,101,99,40,116,41,41,63,40,101,61,110,91,49,93,46,108,101,110,103,116,104,44,110,61,112,97,114,115,101,73,110,116,40,110,91,49,93,44,49,54,41,44,54,61,61,61,101,63,118,110,40,110,41,58,51,61,61,61,101,63,110,101,119,32,98,110,40,110,62,62,56,38,49,53,124,110,62,62,52,38,50,52,48,44,110,62,62,52,38,49,53,124,50,52,48,38,110,44,40,49,53,38,110,41,60,60,52,124,49,53,38,110,44,49,41,58,56,61,61,61,101,63,103,110,40,110,62,62,50,52,38,50,53,53,44,110,62,62,49,54,38,50,53,53,44,110,62,62,56,38,50,53,53,44,40,50,53,53,38,110,41,47,50,53,53,41,58,52,61,61,61,101,63,103,110,40,110,62,62,49,50,38,49,53,124,110,62,62,56,38,50,52,48,44,110,62,62,56,38,49,53,124,110,62,62,52,38,50,52,48,44,110,62,62,52,38,49,53,124,50,52,48,38,110,44,40,40,49,53,38,110,41,60,60,52,124,49,53,38,110,41,47,50,53,53,41,58,110,117,108,108,41,58,40,110,61,111,110,46,101,120,101,99,40,116,41,41,63,110,101,119,32,98,110,40,110,91,49,93,44,110,91,50,93,44,110,91,51,93,44,49,41,58,40,110,61,97,110,46,101,120,101,99,40,116,41,41,63,110,101,119,32,98,110,40,50,53,53,42,110,91,49,93,47,49,48,48,44,50,53,53,42,110,91,50,93,47,49,48,48,44,50,53,53,42,110,91,51,93,47,49,48,48,44,49,41,58,40,110,61,117,110,46,101,120,101,99,40,116,41,41,63,103,110,40,110,91,49,93,44,110,91,50,93,44,110,91,51,93,44,110,91,52,93,41,58,40,110,61,99,110,46,101,120,101,99,40,116,41,41,63,103,110,40,50,53,53,42,110,91,49,93,47,49,48,48,44,50,53,53,42,110,91,50,93,47,49,48,48,44,50,53,53,42,110,91,51,93,47,49,48,48,44,110,91,52,93,41,58,40,110,61,102,110,46,101,120,101,99,40,116,41,41,63,77,110,40,110,91,49,93,44,110,91,50,93,47,49,48,48,44,110,91,51,93,47,49,48,48,44,49,41,58,40,110,61,115,110,46,101,120,101,99,40,116,41,41,63,77,110,40,110,91,49,93,44,110,91,50,93,47,49,48,48,44,110,91,51,93,47,49,48,48,44,110,91,52,93,41,58,108,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,41,63,118,110,40,108,110,91,116,93,41,58,34,116,114,97,110,115,112,97,114,101,110,116,34,61,61,61,116,63,110,101,119,32,98,110,40,78,97,78,44,78,97,78,44,78,97,78,44,48,41,58,110,117,108,108,125,102,117,110,99,116,105,111,110,32,118,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,98,110,40,116,62,62,49,54,38,50,53,53,44,116,62,62,56,38,50,53,53,44,50,53,53,38,116,44,49,41,125,102,117,110,99,116,105,111,110,32,103,110,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,114,60,61,48,38,38,40,116,61,110,61,101,61,78,97,78,41,44,110,101,119,32,98,110,40,116,44,110,44,101,44,114,41,125,102,117,110,99,116,105,111,110,32,121,110,40,116,41,123,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,74,116,124,124,40,116,61,112,110,40,116,41,41,44,116,63,110,101,119,32,98,110,40,40,116,61,116,46,114,103,98,40,41,41,46,114,44,116,46,103,44,116,46,98,44,116,46,111,112,97,99,105,116,121,41,58,110,101,119,32,98,110,125,102,117,110,99,116,105,111,110,32,95,110,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,121,110,40,116,41,58,110,101,119,32,98,110,40,116,44,110,44,101,44,110,117,108,108,61,61,114,63,49,58,114,41,125,102,117,110,99,116,105,111,110,32,98,110,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,114,61,43,116,44,116,104,105,115,46,103,61,43,110,44,116,104,105,115,46,98,61,43,101,44,116,104,105,115,46,111,112,97,99,105,116,121,61,43,114,125,102,117,110,99,116,105,111,110,32,109,110,40,41,123,114,101,116,117,114,110,34,35,34,43,119,110,40,116,104,105,115,46,114,41,43,119,110,40,116,104,105,115,46,103,41,43,119,110,40,116,104,105,115,46,98,41,125,102,117,110,99,116,105,111,110,32,120,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,111,112,97,99,105,116,121,59,114,101,116,117,114,110,40,49,61,61,61,40,116,61,105,115,78,97,78,40,116,41,63,49,58,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,41,41,41,63,34,114,103,98,40,34,58,34,114,103,98,97,40,34,41,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,116,104,105,115,46,114,41,124,124,48,41,41,43,34,44,32,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,116,104,105,115,46,103,41,124,124,48,41,41,43,34,44,32,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,116,104,105,115,46,98,41,124,124,48,41,41,43,40,49,61,61,61,116,63,34,41,34,58,34,44,32,34,43,116,43,34,41,34,41,125,102,117,110,99,116,105,111,110,32,119,110,40,116,41,123,114,101,116,117,114,110,40,40,116,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,116,41,124,124,48,41,41,41,60,49,54,63,34,48,34,58,34,34,41,43,116,46,116,111,83,116,114,105,110,103,40,49,54,41,125,102,117,110,99,116,105,111,110,32,77,110,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,114,60,61,48,63,116,61,110,61,101,61,78,97,78,58,101,60,61,48,124,124,101,62,61,49,63,116,61,110,61,78,97,78,58,110,60,61,48,38,38,40,116,61,78,97,78,41,44,110,101,119,32,65,110,40,116,44,110,44,101,44,114,41,125,102,117,110,99,116,105,111,110,32,78,110,40,116,41,123,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,65,110,41,114,101,116,117,114,110,32,110,101,119,32,65,110,40,116,46,104,44,116,46,115,44,116,46,108,44,116,46,111,112,97,99,105,116,121,41,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,74,116,124,124,40,116,61,112,110,40,116,41,41,44,33,116,41,114,101,116,117,114,110,32,110,101,119,32,65,110,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,65,110,41,114,101,116,117,114,110,32,116,59,118,97,114,32,110,61,40,116,61,116,46,114,103,98,40,41,41,46,114,47,50,53,53,44,101,61,116,46,103,47,50,53,53,44,114,61,116,46,98,47,50,53,53,44,105,61,77,97,116,104,46,109,105,110,40,110,44,101,44,114,41,44,111,61,77,97,116,104,46,109,97,120,40,110,44,101,44,114,41,44,97,61,78,97,78,44,117,61,111,45,105,44,99,61,40,111,43,105,41,47,50,59,114,101,116,117,114,110,32,117,63,40,97,61,110,61,61,61,111,63,40,101,45,114,41,47,117,43,54,42,40,101,60,114,41,58,101,61,61,61,111,63,40,114,45,110,41,47,117,43,50,58,40,110,45,101,41,47,117,43,52,44,117,47,61,99,60,46,53,63,111,43,105,58,50,45,111,45,105,44,97,42,61,54,48,41,58,117,61,99,62,48,38,38,99,60,49,63,48,58,97,44,110,101,119,32,65,110,40,97,44,117,44,99,44,116,46,111,112,97,99,105,116,121,41,125,102,117,110,99,116,105,111,110,32,84,110,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,78,110,40,116,41,58,110,101,119,32,65,110,40,116,44,110,44,101,44,110,117,108,108,61,61,114,63,49,58,114,41,125,102,117,110,99,116,105,111,110,32,65,110,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,104,61,43,116,44,116,104,105,115,46,115,61,43,110,44,116,104,105,115,46,108,61,43,101,44,116,104,105,115,46,111,112,97,99,105,116,121,61,43,114,125,102,117,110,99,116,105,111,110,32,83,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,50,53,53,42,40,116,60,54,48,63,110,43,40,101,45,110,41,42,116,47,54,48,58,116,60,49,56,48,63,101,58,116,60,50,52,48,63,110,43,40,101,45,110,41,42,40,50,52,48,45,116,41,47,54,48,58,110,41,125,81,116,40,74,116,44,112,110,44,123,99,111,112,121,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,79,98,106,101,99,116,46,97,115,115,105,103,110,40,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,44,116,104,105,115,44,116,41,125,44,100,105,115,112,108,97,121,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,103,98,40,41,46,100,105,115,112,108,97,121,97,98,108,101,40,41,125,44,104,101,120,58,104,110,44,102,111,114,109,97,116,72,101,120,58,104,110,44,102,111,114,109,97,116,72,115,108,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,110,40,116,104,105,115,41,46,102,111,114,109,97,116,72,115,108,40,41,125,44,102,111,114,109,97,116,82,103,98,58,100,110,44,116,111,83,116,114,105,110,103,58,100,110,125,41,44,81,116,40,98,110,44,95,110,44,75,116,40,74,116,44,123,98,114,105,103,104,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,49,47,46,55,58,77,97,116,104,46,112,111,119,40,49,47,46,55,44,116,41,44,110,101,119,32,98,110,40,116,104,105,115,46,114,42,116,44,116,104,105,115,46,103,42,116,44,116,104,105,115,46,98,42,116,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,100,97,114,107,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,46,55,58,77,97,116,104,46,112,111,119,40,46,55,44,116,41,44,110,101,119,32,98,110,40,116,104,105,115,46,114,42,116,44,116,104,105,115,46,103,42,116,44,116,104,105,115,46,98,42,116,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,114,103,98,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,125,44,100,105,115,112,108,97,121,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,45,46,53,60,61,116,104,105,115,46,114,38,38,116,104,105,115,46,114,60,50,53,53,46,53,38,38,45,46,53,60,61,116,104,105,115,46,103,38,38,116,104,105,115,46,103,60,50,53,53,46,53,38,38,45,46,53,60,61,116,104,105,115,46,98,38,38,116,104,105,115,46,98,60,50,53,53,46,53,38,38,48,60,61,116,104,105,115,46,111,112,97,99,105,116,121,38,38,116,104,105,115,46,111,112,97,99,105,116,121,60,61,49,125,44,104,101,120,58,109,110,44,102,111,114,109,97,116,72,101,120,58,109,110,44,102,111,114,109,97,116,82,103,98,58,120,110,44,116,111,83,116,114,105,110,103,58,120,110,125,41,41,44,81,116,40,65,110,44,84,110,44,75,116,40,74,116,44,123,98,114,105,103,104,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,49,47,46,55,58,77,97,116,104,46,112,111,119,40,49,47,46,55,44,116,41,44,110,101,119,32,65,110,40,116,104,105,115,46,104,44,116,104,105,115,46,115,44,116,104,105,115,46,108,42,116,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,100,97,114,107,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,46,55,58,77,97,116,104,46,112,111,119,40,46,55,44,116,41,44,110,101,119,32,65,110,40,116,104,105,115,46,104,44,116,104,105,115,46,115,44,116,104,105,115,46,108,42,116,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,114,103,98,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,104,37,51,54,48,43,51,54,48,42,40,116,104,105,115,46,104,60,48,41,44,110,61,105,115,78,97,78,40,116,41,124,124,105,115,78,97,78,40,116,104,105,115,46,115,41,63,48,58,116,104,105,115,46,115,44,101,61,116,104,105,115,46,108,44,114,61,101,43,40,101,60,46,53,63,101,58,49,45,101,41,42,110,44,105,61,50,42,101,45,114,59,114,101,116,117,114,110,32,110,101,119,32,98,110,40,83,110,40,116,62,61,50,52,48,63,116,45,50,52,48,58,116,43,49,50,48,44,105,44,114,41,44,83,110,40,116,44,105,44,114,41,44,83,110,40,116,60,49,50,48,63,116,43,50,52,48,58,116,45,49,50,48,44,105,44,114,41,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,100,105,115,112,108,97,121,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,40,48,60,61,116,104,105,115,46,115,38,38,116,104,105,115,46,115,60,61,49,124,124,105,115,78,97,78,40,116,104,105,115,46,115,41,41,38,38,48,60,61,116,104,105,115,46,108,38,38,116,104,105,115,46,108,60,61,49,38,38,48,60,61,116,104,105,115,46,111,112,97,99,105,116,121,38,38,116,104,105,115,46,111,112,97,99,105,116,121,60,61,49,125,44,102,111,114,109,97,116,72,115,108,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,111,112,97,99,105,116,121,59,114,101,116,117,114,110,40,49,61,61,61,40,116,61,105,115,78,97,78,40,116,41,63,49,58,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,41,41,41,63,34,104,115,108,40,34,58,34,104,115,108,97,40,34,41,43,40,116,104,105,115,46,104,124,124,48,41,43,34,44,32,34,43,49,48,48,42,40,116,104,105,115,46,115,124,124,48,41,43,34,37,44,32,34,43,49,48,48,42,40,116,104,105,115,46,108,124,124,48,41,43,34,37,34,43,40,49,61,61,61,116,63,34,41,34,58,34,44,32,34,43,116,43,34,41,34,41,125,125,41,41,59,118,97,114,32,107,110,61,77,97,116,104,46,80,73,47,49,56,48,44,69,110,61,49,56,48,47,77,97,116,104,46,80,73,44,67,110,61,46,57,54,52,50,50,44,80,110,61,49,44,122,110,61,46,56,50,53,50,49,44,82,110,61,52,47,50,57,44,68,110,61,54,47,50,57,44,113,110,61,51,42,68,110,42,68,110,44,76,110,61,68,110,42,68,110,42,68,110,59,102,117,110,99,116,105,111,110,32,85,110,40,116,41,123,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,66,110,41,114,101,116,117,114,110,32,110,101,119,32,66,110,40,116,46,108,44,116,46,97,44,116,46,98,44,116,46,111,112,97,99,105,116,121,41,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,86,110,41,114,101,116,117,114,110,32,71,110,40,116,41,59,116,32,105,110,115,116,97,110,99,101,111,102,32,98,110,124,124,40,116,61,121,110,40,116,41,41,59,118,97,114,32,110,44,101,44,114,61,72,110,40,116,46,114,41,44,105,61,72,110,40,116,46,103,41,44,111,61,72,110,40,116,46,98,41,44,97,61,70,110,40,40,46,50,50,50,53,48,52,53,42,114,43,46,55,49,54,56,55,56,54,42,105,43,46,48,54,48,54,49,54,57,42,111,41,47,80,110,41,59,114,101,116,117,114,110,32,114,61,61,61,105,38,38,105,61,61,61,111,63,110,61,101,61,97,58,40,110,61,70,110,40,40,46,52,51,54,48,55,52,55,42,114,43,46,51,56,53,48,54,52,57,42,105,43,46,49,52,51,48,56,48,52,42,111,41,47,67,110,41,44,101,61,70,110,40,40,46,48,49,51,57,51,50,50,42,114,43,46,48,57,55,49,48,52,53,42,105,43,46,55,49,52,49,55,51,51,42,111,41,47,122,110,41,41,44,110,101,119,32,66,110,40,49,49,54,42,97,45,49,54,44,53,48,48,42,40,110,45,97,41,44,50,48,48,42,40,97,45,101,41,44,116,46,111,112,97,99,105,116,121,41,125,102,117,110,99,116,105,111,110,32,79,110,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,85,110,40,116,41,58,110,101,119,32,66,110,40,116,44,110,44,101,44,110,117,108,108,61,61,114,63,49,58,114,41,125,102,117,110,99,116,105,111,110,32,66,110,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,108,61,43,116,44,116,104,105,115,46,97,61,43,110,44,116,104,105,115,46,98,61,43,101,44,116,104,105,115,46,111,112,97,99,105,116,121,61,43,114,125,102,117,110,99,116,105,111,110,32,70,110,40,116,41,123,114,101,116,117,114,110,32,116,62,76,110,63,77,97,116,104,46,112,111,119,40,116,44,49,47,51,41,58,116,47,113,110,43,82,110,125,102,117,110,99,116,105,111,110,32,89,110,40,116,41,123,114,101,116,117,114,110,32,116,62,68,110,63,116,42,116,42,116,58,113,110,42,40,116,45,82,110,41,125,102,117,110,99,116,105,111,110,32,73,110,40,116,41,123,114,101,116,117,114,110,32,50,53,53,42,40,116,60,61,46,48,48,51,49,51,48,56,63,49,50,46,57,50,42,116,58,49,46,48,53,53,42,77,97,116,104,46,112,111,119,40,116,44,49,47,50,46,52,41,45,46,48,53,53,41,125,102,117,110,99,116,105,111,110,32,72,110,40,116,41,123,114,101,116,117,114,110,40,116,47,61,50,53,53,41,60,61,46,48,52,48,52,53,63,116,47,49,50,46,57,50,58,77,97,116,104,46,112,111,119,40,40,116,43,46,48,53,53,41,47,49,46,48,53,53,44,50,46,52,41,125,102,117,110,99,116,105,111,110,32,106,110,40,116,41,123,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,86,110,41,114,101,116,117,114,110,32,110,101,119,32,86,110,40,116,46,104,44,116,46,99,44,116,46,108,44,116,46,111,112,97,99,105,116,121,41,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,66,110,124,124,40,116,61,85,110,40,116,41,41,44,48,61,61,61,116,46,97,38,38,48,61,61,61,116,46,98,41,114,101,116,117,114,110,32,110,101,119,32,86,110,40,78,97,78,44,48,60,116,46,108,38,38,116,46,108,60,49,48,48,63,48,58,78,97,78,44,116,46,108,44,116,46,111,112,97,99,105,116,121,41,59,118,97,114,32,110,61,77,97,116,104,46,97,116,97,110,50,40,116,46,98,44,116,46,97,41,42,69,110,59,114,101,116,117,114,110,32,110,101,119,32,86,110,40,110,60,48,63,110,43,51,54,48,58,110,44,77,97,116,104,46,115,113,114,116,40,116,46,97,42,116,46,97,43,116,46,98,42,116,46,98,41,44,116,46,108,44,116,46,111,112,97,99,105,116,121,41,125,102,117,110,99,116,105,111,110,32,88,110,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,106,110,40,116,41,58,110,101,119,32,86,110,40,116,44,110,44,101,44,110,117,108,108,61,61,114,63,49,58,114,41,125,102,117,110,99,116,105,111,110,32,86,110,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,104,61,43,116,44,116,104,105,115,46,99,61,43,110,44,116,104,105,115,46,108,61,43,101,44,116,104,105,115,46,111,112,97,99,105,116,121,61,43,114,125,102,117,110,99,116,105,111,110,32,71,110,40,116,41,123,105,102,40,105,115,78,97,78,40,116,46,104,41,41,114,101,116,117,114,110,32,110,101,119,32,66,110,40,116,46,108,44,48,44,48,44,116,46,111,112,97,99,105,116,121,41,59,118,97,114,32,110,61,116,46,104,42,107,110,59,114,101,116,117,114,110,32,110,101,119,32,66,110,40,116,46,108,44,77,97,116,104,46,99,111,115,40,110,41,42,116,46,99,44,77,97,116,104,46,115,105,110,40,110,41,42,116,46,99,44,116,46,111,112,97,99,105,116,121,41,125,81,116,40,66,110,44,79,110,44,75,116,40,74,116,44,123,98,114,105,103,104,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,66,110,40,116,104,105,115,46,108,43,49,56,42,40,110,117,108,108,61,61,116,63,49,58,116,41,44,116,104,105,115,46,97,44,116,104,105,115,46,98,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,100,97,114,107,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,66,110,40,116,104,105,115,46,108,45,49,56,42,40,110,117,108,108,61,61,116,63,49,58,116,41,44,116,104,105,115,46,97,44,116,104,105,115,46,98,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,114,103,98,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,40,116,104,105,115,46,108,43,49,54,41,47,49,49,54,44,110,61,105,115,78,97,78,40,116,104,105,115,46,97,41,63,116,58,116,43,116,104,105,115,46,97,47,53,48,48,44,101,61,105,115,78,97,78,40,116,104,105,115,46,98,41,63,116,58,116,45,116,104,105,115,46,98,47,50,48,48,59,114,101,116,117,114,110,32,110,101,119,32,98,110,40,73,110,40,51,46,49,51,51,56,53,54,49,42,40,110,61,67,110,42,89,110,40,110,41,41,45,49,46,54,49,54,56,54,54,55,42,40,116,61,80,110,42,89,110,40,116,41,41,45,46,52,57,48,54,49,52,54,42,40,101,61,122,110,42,89,110,40,101,41,41,41,44,73,110,40,45,46,57,55,56,55,54,56,52,42,110,43,49,46,57,49,54,49,52,49,53,42,116,43,46,48,51,51,52,53,52,42,101,41,44,73,110,40,46,48,55,49,57,52,53,51,42,110,45,46,50,50,56,57,57,49,52,42,116,43,49,46,52,48,53,50,52,50,55,42,101,41,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,125,41,41,44,81,116,40,86,110,44,88,110,44,75,116,40,74,116,44,123,98,114,105,103,104,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,86,110,40,116,104,105,115,46,104,44,116,104,105,115,46,99,44,116,104,105,115,46,108,43,49,56,42,40,110,117,108,108,61,61,116,63,49,58,116,41,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,100,97,114,107,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,86,110,40,116,104,105,115,46,104,44,116,104,105,115,46,99,44,116,104,105,115,46,108,45,49,56,42,40,110,117,108,108,61,61,116,63,49,58,116,41,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,114,103,98,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,71,110,40,116,104,105,115,41,46,114,103,98,40,41,125,125,41,41,59,118,97,114,32,36,110,61,45,46,49,52,56,54,49,44,87,110,61,49,46,55,56,50,55,55,44,90,110,61,45,46,50,57,50,50,55,44,81,110,61,45,46,57,48,54,52,57,44,75,110,61,49,46,57,55,50,57,52,44,74,110,61,75,110,42,81,110,44,116,101,61,75,110,42,87,110,44,110,101,61,87,110,42,90,110,45,81,110,42,36,110,59,102,117,110,99,116,105,111,110,32,101,101,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,114,101,41,114,101,116,117,114,110,32,110,101,119,32,114,101,40,116,46,104,44,116,46,115,44,116,46,108,44,116,46,111,112,97,99,105,116,121,41,59,116,32,105,110,115,116,97,110,99,101,111,102,32,98,110,124,124,40,116,61,121,110,40,116,41,41,59,118,97,114,32,110,61,116,46,114,47,50,53,53,44,101,61,116,46,103,47,50,53,53,44,114,61,116,46,98,47,50,53,53,44,105,61,40,110,101,42,114,43,74,110,42,110,45,116,101,42,101,41,47,40,110,101,43,74,110,45,116,101,41,44,111,61,114,45,105,44,97,61,40,75,110,42,40,101,45,105,41,45,90,110,42,111,41,47,81,110,44,117,61,77,97,116,104,46,115,113,114,116,40,97,42,97,43,111,42,111,41,47,40,75,110,42,105,42,40,49,45,105,41,41,44,99,61,117,63,77,97,116,104,46,97,116,97,110,50,40,97,44,111,41,42,69,110,45,49,50,48,58,78,97,78,59,114,101,116,117,114,110,32,110,101,119,32,114,101,40,99,60,48,63,99,43,51,54,48,58,99,44,117,44,105,44,116,46,111,112,97,99,105,116,121,41,125,40,116,41,58,110,101,119,32,114,101,40,116,44,110,44,101,44,110,117,108,108,61,61,114,63,49,58,114,41,125,102,117,110,99,116,105,111,110,32,114,101,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,104,61,43,116,44,116,104,105,115,46,115,61,43,110,44,116,104,105,115,46,108,61,43,101,44,116,104,105,115,46,111,112,97,99,105,116,121,61,43,114,125,102,117,110,99,116,105,111,110,32,105,101,40,116,44,110,44,101,44,114,44,105,41,123,118,97,114,32,111,61,116,42,116,44,97,61,111,42,116,59,114,101,116,117,114,110,40,40,49,45,51,42,116,43,51,42,111,45,97,41,42,110,43,40,52,45,54,42,111,43,51,42,97,41,42,101,43,40,49,43,51,42,116,43,51,42,111,45,51,42,97,41,42,114,43,97,42,105,41,47,54,125,102,117,110,99,116,105,111,110,32,111,101,40,116,41,123,118,97,114,32,110,61,116,46,108,101,110,103,116,104,45,49,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,101,60,61,48,63,101,61,48,58,101,62,61,49,63,40,101,61,49,44,110,45,49,41,58,77,97,116,104,46,102,108,111,111,114,40,101,42,110,41,44,105,61,116,91,114,93,44,111,61,116,91,114,43,49,93,44,97,61,114,62,48,63,116,91,114,45,49,93,58,50,42,105,45,111,44,117,61,114,60,110,45,49,63,116,91,114,43,50,93,58,50,42,111,45,105,59,114,101,116,117,114,110,32,105,101,40,40,101,45,114,47,110,41,42,110,44,97,44,105,44,111,44,117,41,125,125,102,117,110,99,116,105,111,110,32,97,101,40,116,41,123,118,97,114,32,110,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,77,97,116,104,46,102,108,111,111,114,40,40,40,101,37,61,49,41,60,48,63,43,43,101,58,101,41,42,110,41,44,105,61,116,91,40,114,43,110,45,49,41,37,110,93,44,111,61,116,91,114,37,110,93,44,97,61,116,91,40,114,43,49,41,37,110,93,44,117,61,116,91,40,114,43,50,41,37,110,93,59,114,101,116,117,114,110,32,105,101,40,40,101,45,114,47,110,41,42,110,44,105,44,111,44,97,44,117,41,125,125,102,117,110,99,116,105,111,110,32,117,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,99,101,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,43,101,42,110,125,125,102,117,110,99,116,105,111,110,32,102,101,40,116,44,110,41,123,118,97,114,32,101,61,110,45,116,59,114,101,116,117,114,110,32,101,63,99,101,40,116,44,101,62,49,56,48,124,124,101,60,45,49,56,48,63,101,45,51,54,48,42,77,97,116,104,46,114,111,117,110,100,40,101,47,51,54,48,41,58,101,41,58,117,101,40,105,115,78,97,78,40,116,41,63,110,58,116,41,125,102,117,110,99,116,105,111,110,32,115,101,40,116,41,123,114,101,116,117,114,110,32,49,61,61,40,116,61,43,116,41,63,108,101,58,102,117,110,99,116,105,111,110,40,110,44,101,41,123,114,101,116,117,114,110,32,101,45,110,63,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,112,111,119,40,116,44,101,41,44,110,61,77,97,116,104,46,112,111,119,40,110,44,101,41,45,116,44,101,61,49,47,101,44,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,77,97,116,104,46,112,111,119,40,116,43,114,42,110,44,101,41,125,125,40,110,44,101,44,116,41,58,117,101,40,105,115,78,97,78,40,110,41,63,101,58,110,41,125,125,102,117,110,99,116,105,111,110,32,108,101,40,116,44,110,41,123,118,97,114,32,101,61,110,45,116,59,114,101,116,117,114,110,32,101,63,99,101,40,116,44,101,41,58,117,101,40,105,115,78,97,78,40,116,41,63,110,58,116,41,125,81,116,40,114,101,44,101,101,44,75,116,40,74,116,44,123,98,114,105,103,104,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,49,47,46,55,58,77,97,116,104,46,112,111,119,40,49,47,46,55,44,116,41,44,110,101,119,32,114,101,40,116,104,105,115,46,104,44,116,104,105,115,46,115,44,116,104,105,115,46,108,42,116,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,100,97,114,107,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,46,55,58,77,97,116,104,46,112,111,119,40,46,55,44,116,41,44,110,101,119,32,114,101,40,116,104,105,115,46,104,44,116,104,105,115,46,115,44,116,104,105,115,46,108,42,116,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,114,103,98,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,105,115,78,97,78,40,116,104,105,115,46,104,41,63,48,58,40,116,104,105,115,46,104,43,49,50,48,41,42,107,110,44,110,61,43,116,104,105,115,46,108,44,101,61,105,115,78,97,78,40,116,104,105,115,46,115,41,63,48,58,116,104,105,115,46,115,42,110,42,40,49,45,110,41,44,114,61,77,97,116,104,46,99,111,115,40,116,41,44,105,61,77,97,116,104,46,115,105,110,40,116,41,59,114,101,116,117,114,110,32,110,101,119,32,98,110,40,50,53,53,42,40,110,43,101,42,40,36,110,42,114,43,87,110,42,105,41,41,44,50,53,53,42,40,110,43,101,42,40,90,110,42,114,43,81,110,42,105,41,41,44,50,53,53,42,40,110,43,101,42,40,75,110,42,114,41,41,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,125,41,41,59,118,97,114,32,104,101,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,118,97,114,32,101,61,115,101,40,110,41,59,102,117,110,99,116,105,111,110,32,114,40,116,44,110,41,123,118,97,114,32,114,61,101,40,40,116,61,95,110,40,116,41,41,46,114,44,40,110,61,95,110,40,110,41,41,46,114,41,44,105,61,101,40,116,46,103,44,110,46,103,41,44,111,61,101,40,116,46,98,44,110,46,98,41,44,97,61,108,101,40,116,46,111,112,97,99,105,116,121,44,110,46,111,112,97,99,105,116,121,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,46,114,61,114,40,110,41,44,116,46,103,61,105,40,110,41,44,116,46,98,61,111,40,110,41,44,116,46,111,112,97,99,105,116,121,61,97,40,110,41,44,116,43,34,34,125,125,114,101,116,117,114,110,32,114,46,103,97,109,109,97,61,116,44,114,125,40,49,41,59,102,117,110,99,116,105,111,110,32,100,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,44,114,44,105,61,110,46,108,101,110,103,116,104,44,111,61,110,101,119,32,65,114,114,97,121,40,105,41,44,97,61,110,101,119,32,65,114,114,97,121,40,105,41,44,117,61,110,101,119,32,65,114,114,97,121,40,105,41,59,102,111,114,40,101,61,48,59,101,60,105,59,43,43,101,41,114,61,95,110,40,110,91,101,93,41,44,111,91,101,93,61,114,46,114,124,124,48,44,97,91,101,93,61,114,46,103,124,124,48,44,117,91,101,93,61,114,46,98,124,124,48,59,114,101,116,117,114,110,32,111,61,116,40,111,41,44,97,61,116,40,97,41,44,117,61,116,40,117,41,44,114,46,111,112,97,99,105,116,121,61,49,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,46,114,61,111,40,116,41,44,114,46,103,61,97,40,116,41,44,114,46,98,61,117,40,116,41,44,114,43,34,34,125,125,125,118,97,114,32,112,101,61,100,101,40,111,101,41,44,118,101,61,100,101,40,97,101,41,59,102,117,110,99,116,105,111,110,32,103,101,40,116,44,110,41,123,110,124,124,40,110,61,91,93,41,59,118,97,114,32,101,44,114,61,116,63,77,97,116,104,46,109,105,110,40,110,46,108,101,110,103,116,104,44,116,46,108,101,110,103,116,104,41,58,48,44,105,61,110,46,115,108,105,99,101,40,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,111,41,123,102,111,114,40,101,61,48,59,101,60,114,59,43,43,101,41,105,91,101,93,61,116,91,101,93,42,40,49,45,111,41,43,110,91,101,93,42,111,59,114,101,116,117,114,110,32,105,125,125,102,117,110,99,116,105,111,110,32,121,101,40,116,41,123,114,101,116,117,114,110,32,65,114,114,97,121,66,117,102,102,101,114,46,105,115,86,105,101,119,40,116,41,38,38,33,40,116,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,97,86,105,101,119,41,125,102,117,110,99,116,105,111,110,32,95,101,40,116,44,110,41,123,118,97,114,32,101,44,114,61,110,63,110,46,108,101,110,103,116,104,58,48,44,105,61,116,63,77,97,116,104,46,109,105,110,40,114,44,116,46,108,101,110,103,116,104,41,58,48,44,111,61,110,101,119,32,65,114,114,97,121,40,105,41,44,97,61,110,101,119,32,65,114,114,97,121,40,114,41,59,102,111,114,40,101,61,48,59,101,60,105,59,43,43,101,41,111,91,101,93,61,84,101,40,116,91,101,93,44,110,91,101,93,41,59,102,111,114,40,59,101,60,114,59,43,43,101,41,97,91,101,93,61,110,91,101,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,101,61,48,59,101,60,105,59,43,43,101,41,97,91,101,93,61,111,91,101,93,40,116,41,59,114,101,116,117,114,110,32,97,125,125,102,117,110,99,116,105,111,110,32,98,101,40,116,44,110,41,123,118,97,114,32,101,61,110,101,119,32,68,97,116,101,59,114,101,116,117,114,110,32,116,61,43,116,44,110,61,43,110,44,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,101,46,115,101,116,84,105,109,101,40,116,42,40,49,45,114,41,43,110,42,114,41,44,101,125,125,102,117,110,99,116,105,111,110,32,109,101,40,116,44,110,41,123,114,101,116,117,114,110,32,116,61,43,116,44,110,61,43,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,42,40,49,45,101,41,43,110,42,101,125,125,102,117,110,99,116,105,111,110,32,120,101,40,116,44,110,41,123,118,97,114,32,101,44,114,61,123,125,44,105,61,123,125,59,102,111,114,40,101,32,105,110,32,110,117,108,108,33,61,61,116,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,124,124,40,116,61,123,125,41,44,110,117,108,108,33,61,61,110,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,124,124,40,110,61,123,125,41,44,110,41,101,32,105,110,32,116,63,114,91,101,93,61,84,101,40,116,91,101,93,44,110,91,101,93,41,58,105,91,101,93,61,110,91,101,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,101,32,105,110,32,114,41,105,91,101,93,61,114,91,101,93,40,116,41,59,114,101,116,117,114,110,32,105,125,125,118,97,114,32,119,101,61,47,91,45,43,93,63,40,63,58,92,100,43,92,46,63,92,100,42,124,92,46,63,92,100,43,41,40,63,58,91,101,69,93,91,45,43,93,63,92,100,43,41,63,47,103,44,77,101,61,110,101,119,32,82,101,103,69,120,112,40,119,101,46,115,111,117,114,99,101,44,34,103,34,41,59,102,117,110,99,116,105,111,110,32,78,101,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,44,111,61,119,101,46,108,97,115,116,73,110,100,101,120,61,77,101,46,108,97,115,116,73,110,100,101,120,61,48,44,97,61,45,49,44,117,61,91,93,44,99,61,91,93,59,102,111,114,40,116,43,61,34,34,44,110,43,61,34,34,59,40,101,61,119,101,46,101,120,101,99,40,116,41,41,38,38,40,114,61,77,101,46,101,120,101,99,40,110,41,41,59,41,40,105,61,114,46,105,110,100,101,120,41,62,111,38,38,40,105,61,110,46,115,108,105,99,101,40,111,44,105,41,44,117,91,97,93,63,117,91,97,93,43,61,105,58,117,91,43,43,97,93,61,105,41,44,40,101,61,101,91,48,93,41,61,61,61,40,114,61,114,91,48,93,41,63,117,91,97,93,63,117,91,97,93,43,61,114,58,117,91,43,43,97,93,61,114,58,40,117,91,43,43,97,93,61,110,117,108,108,44,99,46,112,117,115,104,40,123,105,58,97,44,120,58,109,101,40,101,44,114,41,125,41,41,44,111,61,77,101,46,108,97,115,116,73,110,100,101,120,59,114,101,116,117,114,110,32,111,60,110,46,108,101,110,103,116,104,38,38,40,105,61,110,46,115,108,105,99,101,40,111,41,44,117,91,97,93,63,117,91,97,93,43,61,105,58,117,91,43,43,97,93,61,105,41,44,117,46,108,101,110,103,116,104,60,50,63,99,91,48,93,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,110,41,43,34,34,125,125,40,99,91,48,93,46,120,41,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,40,110,41,58,40,110,61,99,46,108,101,110,103,116,104,44,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,44,114,61,48,59,114,60,110,59,43,43,114,41,117,91,40,101,61,99,91,114,93,41,46,105,93,61,101,46,120,40,116,41,59,114,101,116,117,114,110,32,117,46,106,111,105,110,40,34,34,41,125,41,125,102,117,110,99,116,105,111,110,32,84,101,40,116,44,110,41,123,118,97,114,32,101,44,114,61,116,121,112,101,111,102,32,110,59,114,101,116,117,114,110,32,110,117,108,108,61,61,110,124,124,34,98,111,111,108,101,97,110,34,61,61,61,114,63,117,101,40,110,41,58,40,34,110,117,109,98,101,114,34,61,61,61,114,63,109,101,58,34,115,116,114,105,110,103,34,61,61,61,114,63,40,101,61,112,110,40,110,41,41,63,40,110,61,101,44,104,101,41,58,78,101,58,110,32,105,110,115,116,97,110,99,101,111,102,32,112,110,63,104,101,58,110,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,63,98,101,58,121,101,40,110,41,63,103,101,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,63,95,101,58,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,46,118,97,108,117,101,79,102,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,46,116,111,83,116,114,105,110,103,124,124,105,115,78,97,78,40,110,41,63,120,101,58,109,101,41,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,65,101,40,116,44,110,41,123,114,101,116,117,114,110,32,116,61,43,116,44,110,61,43,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,42,40,49,45,101,41,43,110,42,101,41,125,125,118,97,114,32,83,101,44,107,101,44,69,101,44,67,101,44,80,101,61,49,56,48,47,77,97,116,104,46,80,73,44,122,101,61,123,116,114,97,110,115,108,97,116,101,88,58,48,44,116,114,97,110,115,108,97,116,101,89,58,48,44,114,111,116,97,116,101,58,48,44,115,107,101,119,88,58,48,44,115,99,97,108,101,88,58,49,44,115,99,97,108,101,89,58,49,125,59,102,117,110,99,116,105,111,110,32,82,101,40,116,44,110,44,101,44,114,44,105,44,111,41,123,118,97,114,32,97,44,117,44,99,59,114,101,116,117,114,110,40,97,61,77,97,116,104,46,115,113,114,116,40,116,42,116,43,110,42,110,41,41,38,38,40,116,47,61,97,44,110,47,61,97,41,44,40,99,61,116,42,101,43,110,42,114,41,38,38,40,101,45,61,116,42,99,44,114,45,61,110,42,99,41,44,40,117,61,77,97,116,104,46,115,113,114,116,40,101,42,101,43,114,42,114,41,41,38,38,40,101,47,61,117,44,114,47,61,117,44,99,47,61,117,41,44,116,42,114,60,110,42,101,38,38,40,116,61,45,116,44,110,61,45,110,44,99,61,45,99,44,97,61,45,97,41,44,123,116,114,97,110,115,108,97,116,101,88,58,105,44,116,114,97,110,115,108,97,116,101,89,58,111,44,114,111,116,97,116,101,58,77,97,116,104,46,97,116,97,110,50,40,110,44,116,41,42,80,101,44,115,107,101,119,88,58,77,97,116,104,46,97,116,97,110,40,99,41,42,80,101,44,115,99,97,108,101,88,58,97,44,115,99,97,108,101,89,58,117,125,125,102,117,110,99,116,105,111,110,32,68,101,40,116,44,110,44,101,44,114,41,123,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,63,116,46,112,111,112,40,41,43,34,32,34,58,34,34,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,111,44,97,41,123,118,97,114,32,117,61,91,93,44,99,61,91,93,59,114,101,116,117,114,110,32,111,61,116,40,111,41,44,97,61,116,40,97,41,44,102,117,110,99,116,105,111,110,40,116,44,114,44,105,44,111,44,97,44,117,41,123,105,102,40,116,33,61,61,105,124,124,114,33,61,61,111,41,123,118,97,114,32,99,61,97,46,112,117,115,104,40,34,116,114,97,110,115,108,97,116,101,40,34,44,110,117,108,108,44,110,44,110,117,108,108,44,101,41,59,117,46,112,117,115,104,40,123,105,58,99,45,52,44,120,58,109,101,40,116,44,105,41,125,44,123,105,58,99,45,50,44,120,58,109,101,40,114,44,111,41,125,41,125,101,108,115,101,40,105,124,124,111,41,38,38,97,46,112,117,115,104,40,34,116,114,97,110,115,108,97,116,101,40,34,43,105,43,110,43,111,43,101,41,125,40,111,46,116,114,97,110,115,108,97,116,101,88,44,111,46,116,114,97,110,115,108,97,116,101,89,44,97,46,116,114,97,110,115,108,97,116,101,88,44,97,46,116,114,97,110,115,108,97,116,101,89,44,117,44,99,41,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,111,41,123,116,33,61,61,110,63,40,116,45,110,62,49,56,48,63,110,43,61,51,54,48,58,110,45,116,62,49,56,48,38,38,40,116,43,61,51,54,48,41,44,111,46,112,117,115,104,40,123,105,58,101,46,112,117,115,104,40,105,40,101,41,43,34,114,111,116,97,116,101,40,34,44,110,117,108,108,44,114,41,45,50,44,120,58,109,101,40,116,44,110,41,125,41,41,58,110,38,38,101,46,112,117,115,104,40,105,40,101,41,43,34,114,111,116,97,116,101,40,34,43,110,43,114,41,125,40,111,46,114,111,116,97,116,101,44,97,46,114,111,116,97,116,101,44,117,44,99,41,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,111,41,123,116,33,61,61,110,63,111,46,112,117,115,104,40,123,105,58,101,46,112,117,115,104,40,105,40,101,41,43,34,115,107,101,119,88,40,34,44,110,117,108,108,44,114,41,45,50,44,120,58,109,101,40,116,44,110,41,125,41,58,110,38,38,101,46,112,117,115,104,40,105,40,101,41,43,34,115,107,101,119,88,40,34,43,110,43,114,41,125,40,111,46,115,107,101,119,88,44,97,46,115,107,101,119,88,44,117,44,99,41,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,111,44,97,41,123,105,102,40,116,33,61,61,101,124,124,110,33,61,61,114,41,123,118,97,114,32,117,61,111,46,112,117,115,104,40,105,40,111,41,43,34,115,99,97,108,101,40,34,44,110,117,108,108,44,34,44,34,44,110,117,108,108,44,34,41,34,41,59,97,46,112,117,115,104,40,123,105,58,117,45,52,44,120,58,109,101,40,116,44,101,41,125,44,123,105,58,117,45,50,44,120,58,109,101,40,110,44,114,41,125,41,125,101,108,115,101,32,49,61,61,61,101,38,38,49,61,61,61,114,124,124,111,46,112,117,115,104,40,105,40,111,41,43,34,115,99,97,108,101,40,34,43,101,43,34,44,34,43,114,43,34,41,34,41,125,40,111,46,115,99,97,108,101,88,44,111,46,115,99,97,108,101,89,44,97,46,115,99,97,108,101,88,44,97,46,115,99,97,108,101,89,44,117,44,99,41,44,111,61,97,61,110,117,108,108,44,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,61,45,49,44,114,61,99,46,108,101,110,103,116,104,59,43,43,101,60,114,59,41,117,91,40,110,61,99,91,101,93,41,46,105,93,61,110,46,120,40,116,41,59,114,101,116,117,114,110,32,117,46,106,111,105,110,40,34,34,41,125,125,125,118,97,114,32,113,101,61,68,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,110,111,110,101,34,61,61,61,116,63,122,101,58,40,83,101,124,124,40,83,101,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,68,73,86,34,41,44,107,101,61,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,69,101,61,100,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,41,44,83,101,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,61,116,44,116,61,69,101,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,107,101,46,97,112,112,101,110,100,67,104,105,108,100,40,83,101,41,44,110,117,108,108,41,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,116,114,97,110,115,102,111,114,109,34,41,44,107,101,46,114,101,109,111,118,101,67,104,105,108,100,40,83,101,41,44,82,101,40,43,40,116,61,116,46,115,108,105,99,101,40,55,44,45,49,41,46,115,112,108,105,116,40,34,44,34,41,41,91,48,93,44,43,116,91,49,93,44,43,116,91,50,93,44,43,116,91,51,93,44,43,116,91,52,93,44,43,116,91,53,93,41,41,125,44,34,112,120,44,32,34,44,34,112,120,41,34,44,34,100,101,103,41,34,41,44,76,101,61,68,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,122,101,58,40,67,101,124,124,40,67,101,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,78,83,40,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,44,34,103,34,41,41,44,67,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,114,97,110,115,102,111,114,109,34,44,116,41,44,40,116,61,67,101,46,116,114,97,110,115,102,111,114,109,46,98,97,115,101,86,97,108,46,99,111,110,115,111,108,105,100,97,116,101,40,41,41,63,82,101,40,40,116,61,116,46,109,97,116,114,105,120,41,46,97,44,116,46,98,44,116,46,99,44,116,46,100,44,116,46,101,44,116,46,102,41,58,122,101,41,125,44,34,44,32,34,44,34,41,34,44,34,41,34,41,44,85,101,61,77,97,116,104,46,83,81,82,84,50,44,79,101,61,50,44,66,101,61,52,44,70,101,61,49,101,45,49,50,59,102,117,110,99,116,105,111,110,32,89,101,40,116,41,123,114,101,116,117,114,110,40,40,116,61,77,97,116,104,46,101,120,112,40,116,41,41,43,49,47,116,41,47,50,125,102,117,110,99,116,105,111,110,32,73,101,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,61,116,91,48,93,44,111,61,116,91,49,93,44,97,61,116,91,50,93,44,117,61,110,91,48,93,44,99,61,110,91,49,93,44,102,61,110,91,50,93,44,115,61,117,45,105,44,108,61,99,45,111,44,104,61,115,42,115,43,108,42,108,59,105,102,40,104,60,70,101,41,114,61,77,97,116,104,46,108,111,103,40,102,47,97,41,47,85,101,44,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,91,105,43,116,42,115,44,111,43,116,42,108,44,97,42,77,97,116,104,46,101,120,112,40,85,101,42,116,42,114,41,93,125,59,101,108,115,101,123,118,97,114,32,100,61,77,97,116,104,46,115,113,114,116,40,104,41,44,112,61,40,102,42,102,45,97,42,97,43,66,101,42,104,41,47,40,50,42,97,42,79,101,42,100,41,44,118,61,40,102,42,102,45,97,42,97,45,66,101,42,104,41,47,40,50,42,102,42,79,101,42,100,41,44,103,61,77,97,116,104,46,108,111,103,40,77,97,116,104,46,115,113,114,116,40,112,42,112,43,49,41,45,112,41,44,121,61,77,97,116,104,46,108,111,103,40,77,97,116,104,46,115,113,114,116,40,118,42,118,43,49,41,45,118,41,59,114,61,40,121,45,103,41,47,85,101,44,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,42,114,44,101,61,89,101,40,103,41,44,117,61,97,47,40,79,101,42,100,41,42,40,101,42,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,40,116,61,77,97,116,104,46,101,120,112,40,50,42,116,41,41,45,49,41,47,40,116,43,49,41,125,40,85,101,42,110,43,103,41,45,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,40,116,61,77,97,116,104,46,101,120,112,40,116,41,41,45,49,47,116,41,47,50,125,40,103,41,41,59,114,101,116,117,114,110,91,105,43,117,42,115,44,111,43,117,42,108,44,97,42,101,47,89,101,40,85,101,42,110,43,103,41,93,125,125,114,101,116,117,114,110,32,101,46,100,117,114,97,116,105,111,110,61,49,101,51,42,114,44,101,125,102,117,110,99,116,105,111,110,32,72,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,41,123,118,97,114,32,114,61,116,40,40,110,61,84,110,40,110,41,41,46,104,44,40,101,61,84,110,40,101,41,41,46,104,41,44,105,61,108,101,40,110,46,115,44,101,46,115,41,44,111,61,108,101,40,110,46,108,44,101,46,108,41,44,97,61,108,101,40,110,46,111,112,97,99,105,116,121,44,101,46,111,112,97,99,105,116,121,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,104,61,114,40,116,41,44,110,46,115,61,105,40,116,41,44,110,46,108,61,111,40,116,41,44,110,46,111,112,97,99,105,116,121,61,97,40,116,41,44,110,43,34,34,125,125,125,118,97,114,32,106,101,61,72,101,40,102,101,41,44,88,101,61,72,101,40,108,101,41,59,102,117,110,99,116,105,111,110,32,86,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,41,123,118,97,114,32,114,61,116,40,40,110,61,88,110,40,110,41,41,46,104,44,40,101,61,88,110,40,101,41,41,46,104,41,44,105,61,108,101,40,110,46,99,44,101,46,99,41,44,111,61,108,101,40,110,46,108,44,101,46,108,41,44,97,61,108,101,40,110,46,111,112,97,99,105,116,121,44,101,46,111,112,97,99,105,116,121,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,104,61,114,40,116,41,44,110,46,99,61,105,40,116,41,44,110,46,108,61,111,40,116,41,44,110,46,111,112,97,99,105,116,121,61,97,40,116,41,44,110,43,34,34,125,125,125,118,97,114,32,71,101,61,86,101,40,102,101,41,44,36,101,61,86,101,40,108,101,41,59,102,117,110,99,116,105,111,110,32,87,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,110,40,101,41,123,102,117,110,99,116,105,111,110,32,114,40,110,44,114,41,123,118,97,114,32,105,61,116,40,40,110,61,101,101,40,110,41,41,46,104,44,40,114,61,101,101,40,114,41,41,46,104,41,44,111,61,108,101,40,110,46,115,44,114,46,115,41,44,97,61,108,101,40,110,46,108,44,114,46,108,41,44,117,61,108,101,40,110,46,111,112,97,99,105,116,121,44,114,46,111,112,97,99,105,116,121,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,104,61,105,40,116,41,44,110,46,115,61,111,40,116,41,44,110,46,108,61,97,40,77,97,116,104,46,112,111,119,40,116,44,101,41,41,44,110,46,111,112,97,99,105,116,121,61,117,40,116,41,44,110,43,34,34,125,125,114,101,116,117,114,110,32,101,61,43,101,44,114,46,103,97,109,109,97,61,110,44,114,125,40,49,41,125,118,97,114,32,90,101,61,87,101,40,102,101,41,44,81,101,61,87,101,40,108,101,41,59,118,97,114,32,75,101,44,74,101,44,116,114,61,48,44,110,114,61,48,44,101,114,61,48,44,114,114,61,49,101,51,44,105,114,61,48,44,111,114,61,48,44,97,114,61,48,44,117,114,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,112,101,114,102,111,114,109,97,110,99,101,38,38,112,101,114,102,111,114,109,97,110,99,101,46,110,111,119,63,112,101,114,102,111,114,109,97,110,99,101,58,68,97,116,101,44,99,114,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,38,38,119,105,110,100,111,119,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,63,119,105,110,100,111,119,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,46,98,105,110,100,40,119,105,110,100,111,119,41,58,102,117,110,99,116,105,111,110,40,116,41,123,115,101,116,84,105,109,101,111,117,116,40,116,44,49,55,41,125,59,102,117,110,99,116,105,111,110,32,102,114,40,41,123,114,101,116,117,114,110,32,111,114,124,124,40,99,114,40,115,114,41,44,111,114,61,117,114,46,110,111,119,40,41,43,97,114,41,125,102,117,110,99,116,105,111,110,32,115,114,40,41,123,111,114,61,48,125,102,117,110,99,116,105,111,110,32,108,114,40,41,123,116,104,105,115,46,95,99,97,108,108,61,116,104,105,115,46,95,116,105,109,101,61,116,104,105,115,46,95,110,101,120,116,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,104,114,40,116,44,110,44,101,41,123,118,97,114,32,114,61,110,101,119,32,108,114,59,114,101,116,117,114,110,32,114,46,114,101,115,116,97,114,116,40,116,44,110,44,101,41,44,114,125,102,117,110,99,116,105,111,110,32,100,114,40,41,123,102,114,40,41,44,43,43,116,114,59,102,111,114,40,118,97,114,32,116,44,110,61,75,101,59,110,59,41,40,116,61,111,114,45,110,46,95,116,105,109,101,41,62,61,48,38,38,110,46,95,99,97,108,108,46,99,97,108,108,40,110,117,108,108,44,116,41,44,110,61,110,46,95,110,101,120,116,59,45,45,116,114,125,102,117,110,99,116,105,111,110,32,112,114,40,41,123,111,114,61,40,105,114,61,117,114,46,110,111,119,40,41,41,43,97,114,44,116,114,61,110,114,61,48,59,116,114,121,123,100,114,40,41,125,102,105,110,97,108,108,121,123,116,114,61,48,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,61,75,101,44,114,61,49,47,48,59,102,111,114,40,59,101,59,41,101,46,95,99,97,108,108,63,40,114,62,101,46,95,116,105,109,101,38,38,40,114,61,101,46,95,116,105,109,101,41,44,116,61,101,44,101,61,101,46,95,110,101,120,116,41,58,40,110,61,101,46,95,110,101,120,116,44,101,46,95,110,101,120,116,61,110,117,108,108,44,101,61,116,63,116,46,95,110,101,120,116,61,110,58,75,101,61,110,41,59,74,101,61,116,44,103,114,40,114,41,125,40,41,44,111,114,61,48,125,125,102,117,110,99,116,105,111,110,32,118,114,40,41,123,118,97,114,32,116,61,117,114,46,110,111,119,40,41,44,110,61,116,45,105,114,59,110,62,114,114,38,38,40,97,114,45,61,110,44,105,114,61,116,41,125,102,117,110,99,116,105,111,110,32,103,114,40,116,41,123,116,114,124,124,40,110,114,38,38,40,110,114,61,99,108,101,97,114,84,105,109,101,111,117,116,40,110,114,41,41,44,116,45,111,114,62,50,52,63,40,116,60,49,47,48,38,38,40,110,114,61,115,101,116,84,105,109,101,111,117,116,40,112,114,44,116,45,117,114,46,110,111,119,40,41,45,97,114,41,41,44,101,114,38,38,40,101,114,61,99,108,101,97,114,73,110,116,101,114,118,97,108,40,101,114,41,41,41,58,40,101,114,124,124,40,105,114,61,117,114,46,110,111,119,40,41,44,101,114,61,115,101,116,73,110,116,101,114,118,97,108,40,118,114,44,114,114,41,41,44,116,114,61,49,44,99,114,40,112,114,41,41,41,125,102,117,110,99,116,105,111,110,32,121,114,40,116,44,110,44,101,41,123,118,97,114,32,114,61,110,101,119,32,108,114,59,114,101,116,117,114,110,32,110,61,110,117,108,108,61,61,110,63,48,58,43,110,44,114,46,114,101,115,116,97,114,116,40,102,117,110,99,116,105,111,110,40,101,41,123,114,46,115,116,111,112,40,41,44,116,40,101,43,110,41,125,44,110,44,101,41,44,114,125,108,114,46,112,114,111,116,111,116,121,112,101,61,104,114,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,108,114,44,114,101,115,116,97,114,116,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,99,97,108,108,98,97,99,107,32,105,115,32,110,111,116,32,97,32,102,117,110,99,116,105,111,110,34,41,59,101,61,40,110,117,108,108,61,61,101,63,102,114,40,41,58,43,101,41,43,40,110,117,108,108,61,61,110,63,48,58,43,110,41,44,116,104,105,115,46,95,110,101,120,116,124,124,74,101,61,61,61,116,104,105,115,124,124,40,74,101,63,74,101,46,95,110,101,120,116,61,116,104,105,115,58,75,101,61,116,104,105,115,44,74,101,61,116,104,105,115,41,44,116,104,105,115,46,95,99,97,108,108,61,116,44,116,104,105,115,46,95,116,105,109,101,61,101,44,103,114,40,41,125,44,115,116,111,112,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,99,97,108,108,38,38,40,116,104,105,115,46,95,99,97,108,108,61,110,117,108,108,44,116,104,105,115,46,95,116,105,109,101,61,49,47,48,44,103,114,40,41,41,125,125,59,118,97,114,32,95,114,61,73,40,34,115,116,97,114,116,34,44,34,101,110,100,34,44,34,99,97,110,99,101,108,34,44,34,105,110,116,101,114,114,117,112,116,34,41,44,98,114,61,91,93,44,109,114,61,48,44,120,114,61,49,44,119,114,61,50,44,77,114,61,51,44,78,114,61,52,44,84,114,61,53,44,65,114,61,54,59,102,117,110,99,116,105,111,110,32,83,114,40,116,44,110,44,101,44,114,44,105,44,111,41,123,118,97,114,32,97,61,116,46,95,95,116,114,97,110,115,105,116,105,111,110,59,105,102,40,97,41,123,105,102,40,101,32,105,110,32,97,41,114,101,116,117,114,110,125,101,108,115,101,32,116,46,95,95,116,114,97,110,115,105,116,105,111,110,61,123,125,59,33,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,61,116,46,95,95,116,114,97,110,115,105,116,105,111,110,59,102,117,110,99,116,105,111,110,32,111,40,99,41,123,118,97,114,32,102,44,115,44,108,44,104,59,105,102,40,101,46,115,116,97,116,101,33,61,61,120,114,41,114,101,116,117,114,110,32,117,40,41,59,102,111,114,40,102,32,105,110,32,105,41,105,102,40,40,104,61,105,91,102,93,41,46,110,97,109,101,61,61,61,101,46,110,97,109,101,41,123,105,102,40,104,46,115,116,97,116,101,61,61,61,77,114,41,114,101,116,117,114,110,32,121,114,40,111,41,59,104,46,115,116,97,116,101,61,61,61,78,114,63,40,104,46,115,116,97,116,101,61,65,114,44,104,46,116,105,109,101,114,46,115,116,111,112,40,41,44,104,46,111,110,46,99,97,108,108,40,34,105,110,116,101,114,114,117,112,116,34,44,116,44,116,46,95,95,100,97,116,97,95,95,44,104,46,105,110,100,101,120,44,104,46,103,114,111,117,112,41,44,100,101,108,101,116,101,32,105,91,102,93,41,58,43,102,60,110,38,38,40,104,46,115,116,97,116,101,61,65,114,44,104,46,116,105,109,101,114,46,115,116,111,112,40,41,44,104,46,111,110,46,99,97,108,108,40,34,99,97,110,99,101,108,34,44,116,44,116,46,95,95,100,97,116,97,95,95,44,104,46,105,110,100,101,120,44,104,46,103,114,111,117,112,41,44,100,101,108,101,116,101,32,105,91,102,93,41,125,105,102,40,121,114,40,102,117,110,99,116,105,111,110,40,41,123,101,46,115,116,97,116,101,61,61,61,77,114,38,38,40,101,46,115,116,97,116,101,61,78,114,44,101,46,116,105,109,101,114,46,114,101,115,116,97,114,116,40,97,44,101,46,100,101,108,97,121,44,101,46,116,105,109,101,41,44,97,40,99,41,41,125,41,44,101,46,115,116,97,116,101,61,119,114,44,101,46,111,110,46,99,97,108,108,40,34,115,116,97,114,116,34,44,116,44,116,46,95,95,100,97,116,97,95,95,44,101,46,105,110,100,101,120,44,101,46,103,114,111,117,112,41,44,101,46,115,116,97,116,101,61,61,61,119,114,41,123,102,111,114,40,101,46,115,116,97,116,101,61,77,114,44,114,61,110,101,119,32,65,114,114,97,121,40,108,61,101,46,116,119,101,101,110,46,108,101,110,103,116,104,41,44,102,61,48,44,115,61,45,49,59,102,60,108,59,43,43,102,41,40,104,61,101,46,116,119,101,101,110,91,102,93,46,118,97,108,117,101,46,99,97,108,108,40,116,44,116,46,95,95,100,97,116,97,95,95,44,101,46,105,110,100,101,120,44,101,46,103,114,111,117,112,41,41,38,38,40,114,91,43,43,115,93,61,104,41,59,114,46,108,101,110,103,116,104,61,115,43,49,125,125,102,117,110,99,116,105,111,110,32,97,40,110,41,123,102,111,114,40,118,97,114,32,105,61,110,60,101,46,100,117,114,97,116,105,111,110,63,101,46,101,97,115,101,46,99,97,108,108,40,110,117,108,108,44,110,47,101,46,100,117,114,97,116,105,111,110,41,58,40,101,46,116,105,109,101,114,46,114,101,115,116,97,114,116,40,117,41,44,101,46,115,116,97,116,101,61,84,114,44,49,41,44,111,61,45,49,44,97,61,114,46,108,101,110,103,116,104,59,43,43,111,60,97,59,41,114,91,111,93,46,99,97,108,108,40,116,44,105,41,59,101,46,115,116,97,116,101,61,61,61,84,114,38,38,40,101,46,111,110,46,99,97,108,108,40,34,101,110,100,34,44,116,44,116,46,95,95,100,97,116,97,95,95,44,101,46,105,110,100,101,120,44,101,46,103,114,111,117,112,41,44,117,40,41,41,125,102,117,110,99,116,105,111,110,32,117,40,41,123,102,111,114,40,118,97,114,32,114,32,105,110,32,101,46,115,116,97,116,101,61,65,114,44,101,46,116,105,109,101,114,46,115,116,111,112,40,41,44,100,101,108,101,116,101,32,105,91,110,93,44,105,41,114,101,116,117,114,110,59,100,101,108,101,116,101,32,116,46,95,95,116,114,97,110,115,105,116,105,111,110,125,105,91,110,93,61,101,44,101,46,116,105,109,101,114,61,104,114,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,115,116,97,116,101,61,120,114,44,101,46,116,105,109,101,114,46,114,101,115,116,97,114,116,40,111,44,101,46,100,101,108,97,121,44,101,46,116,105,109,101,41,44,101,46,100,101,108,97,121,60,61,116,38,38,111,40,116,45,101,46,100,101,108,97,121,41,125,44,48,44,101,46,116,105,109,101,41,125,40,116,44,101,44,123,110,97,109,101,58,110,44,105,110,100,101,120,58,114,44,103,114,111,117,112,58,105,44,111,110,58,95,114,44,116,119,101,101,110,58,98,114,44,116,105,109,101,58,111,46,116,105,109,101,44,100,101,108,97,121,58,111,46,100,101,108,97,121,44,100,117,114,97,116,105,111,110,58,111,46,100,117,114,97,116,105,111,110,44,101,97,115,101,58,111,46,101,97,115,101,44,116,105,109,101,114,58,110,117,108,108,44,115,116,97,116,101,58,109,114,125,41,125,102,117,110,99,116,105,111,110,32,107,114,40,116,44,110,41,123,118,97,114,32,101,61,67,114,40,116,44,110,41,59,105,102,40,101,46,115,116,97,116,101,62,109,114,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,116,111,111,32,108,97,116,101,59,32,97,108,114,101,97,100,121,32,115,99,104,101,100,117,108,101,100,34,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,69,114,40,116,44,110,41,123,118,97,114,32,101,61,67,114,40,116,44,110,41,59,105,102,40,101,46,115,116,97,116,101,62,77,114,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,116,111,111,32,108,97,116,101,59,32,97,108,114,101,97,100,121,32,114,117,110,110,105,110,103,34,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,67,114,40,116,44,110,41,123,118,97,114,32,101,61,116,46,95,95,116,114,97,110,115,105,116,105,111,110,59,105,102,40,33,101,124,124,33,40,101,61,101,91,110,93,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,116,114,97,110,115,105,116,105,111,110,32,110,111,116,32,102,111,117,110,100,34,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,80,114,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,44,111,61,116,46,95,95,116,114,97,110,115,105,116,105,111,110,44,97,61,33,48,59,105,102,40,111,41,123,102,111,114,40,105,32,105,110,32,110,61,110,117,108,108,61,61,110,63,110,117,108,108,58,110,43,34,34,44,111,41,40,101,61,111,91,105,93,41,46,110,97,109,101,61,61,61,110,63,40,114,61,101,46,115,116,97,116,101,62,119,114,38,38,101,46,115,116,97,116,101,60,84,114,44,101,46,115,116,97,116,101,61,65,114,44,101,46,116,105,109,101,114,46,115,116,111,112,40,41,44,101,46,111,110,46,99,97,108,108,40,114,63,34,105,110,116,101,114,114,117,112,116,34,58,34,99,97,110,99,101,108,34,44,116,44,116,46,95,95,100,97,116,97,95,95,44,101,46,105,110,100,101,120,44,101,46,103,114,111,117,112,41,44,100,101,108,101,116,101,32,111,91,105,93,41,58,97,61,33,49,59,97,38,38,100,101,108,101,116,101,32,116,46,95,95,116,114,97,110,115,105,116,105,111,110,125,125,102,117,110,99,116,105,111,110,32,122,114,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,95,105,100,59,114,101,116,117,114,110,32,116,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,69,114,40,116,104,105,115,44,114,41,59,40,116,46,118,97,108,117,101,124,124,40,116,46,118,97,108,117,101,61,123,125,41,41,91,110,93,61,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,41,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,67,114,40,116,44,114,41,46,118,97,108,117,101,91,110,93,125,125,102,117,110,99,116,105,111,110,32,82,114,40,116,44,110,41,123,118,97,114,32,101,59,114,101,116,117,114,110,40,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,110,63,109,101,58,110,32,105,110,115,116,97,110,99,101,111,102,32,112,110,63,104,101,58,40,101,61,112,110,40,110,41,41,63,40,110,61,101,44,104,101,41,58,78,101,41,40,116,44,110,41,125,118,97,114,32,68,114,61,122,116,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,59,102,117,110,99,116,105,111,110,32,113,114,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,116,41,125,125,118,97,114,32,76,114,61,48,59,102,117,110,99,116,105,111,110,32,85,114,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,95,103,114,111,117,112,115,61,116,44,116,104,105,115,46,95,112,97,114,101,110,116,115,61,110,44,116,104,105,115,46,95,110,97,109,101,61,101,44,116,104,105,115,46,95,105,100,61,114,125,102,117,110,99,116,105,111,110,32,79,114,40,116,41,123,114,101,116,117,114,110,32,122,116,40,41,46,116,114,97,110,115,105,116,105,111,110,40,116,41,125,102,117,110,99,116,105,111,110,32,66,114,40,41,123,114,101,116,117,114,110,43,43,76,114,125,118,97,114,32,70,114,61,122,116,46,112,114,111,116,111,116,121,112,101,59,102,117,110,99,116,105,111,110,32,89,114,40,116,41,123,114,101,116,117,114,110,40,40,116,42,61,50,41,60,61,49,63,116,42,116,58,45,45,116,42,40,50,45,116,41,43,49,41,47,50,125,102,117,110,99,116,105,111,110,32,73,114,40,116,41,123,114,101,116,117,114,110,40,40,116,42,61,50,41,60,61,49,63,116,42,116,42,116,58,40,116,45,61,50,41,42,116,42,116,43,50,41,47,50,125,85,114,46,112,114,111,116,111,116,121,112,101,61,79,114,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,85,114,44,115,101,108,101,99,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,95,110,97,109,101,44,101,61,116,104,105,115,46,95,105,100,59,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,75,40,116,41,41,59,102,111,114,40,118,97,114,32,114,61,116,104,105,115,46,95,103,114,111,117,112,115,44,105,61,114,46,108,101,110,103,116,104,44,111,61,110,101,119,32,65,114,114,97,121,40,105,41,44,97,61,48,59,97,60,105,59,43,43,97,41,102,111,114,40,118,97,114,32,117,44,99,44,102,61,114,91,97,93,44,115,61,102,46,108,101,110,103,116,104,44,108,61,111,91,97,93,61,110,101,119,32,65,114,114,97,121,40,115,41,44,104,61,48,59,104,60,115,59,43,43,104,41,40,117,61,102,91,104,93,41,38,38,40,99,61,116,46,99,97,108,108,40,117,44,117,46,95,95,100,97,116,97,95,95,44,104,44,102,41,41,38,38,40,34,95,95,100,97,116,97,95,95,34,105,110,32,117,38,38,40,99,46,95,95,100,97,116,97,95,95,61,117,46,95,95,100,97,116,97,95,95,41,44,108,91,104,93,61,99,44,83,114,40,108,91,104,93,44,110,44,101,44,104,44,108,44,67,114,40,117,44,101,41,41,41,59,114,101,116,117,114,110,32,110,101,119,32,85,114,40,111,44,116,104,105,115,46,95,112,97,114,101,110,116,115,44,110,44,101,41,125,44,115,101,108,101,99,116,65,108,108,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,95,110,97,109,101,44,101,61,116,104,105,115,46,95,105,100,59,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,116,116,40,116,41,41,59,102,111,114,40,118,97,114,32,114,61,116,104,105,115,46,95,103,114,111,117,112,115,44,105,61,114,46,108,101,110,103,116,104,44,111,61,91,93,44,97,61,91,93,44,117,61,48,59,117,60,105,59,43,43,117,41,102,111,114,40,118,97,114,32,99,44,102,61,114,91,117,93,44,115,61,102,46,108,101,110,103,116,104,44,108,61,48,59,108,60,115,59,43,43,108,41,105,102,40,99,61,102,91,108,93,41,123,102,111,114,40,118,97,114,32,104,44,100,61,116,46,99,97,108,108,40,99,44,99,46,95,95,100,97,116,97,95,95,44,108,44,102,41,44,112,61,67,114,40,99,44,101,41,44,118,61,48,44,103,61,100,46,108,101,110,103,116,104,59,118,60,103,59,43,43,118,41,40,104,61,100,91,118,93,41,38,38,83,114,40,104,44,110,44,101,44,118,44,100,44,112,41,59,111,46,112,117,115,104,40,100,41,44,97,46,112,117,115,104,40,99,41,125,114,101,116,117,114,110,32,110,101,119,32,85,114,40,111,44,97,44,110,44,101,41,125,44,102,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,110,116,40,116,41,41,59,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,110,46,108,101,110,103,116,104,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,44,105,61,48,59,105,60,101,59,43,43,105,41,102,111,114,40,118,97,114,32,111,44,97,61,110,91,105,93,44,117,61,97,46,108,101,110,103,116,104,44,99,61,114,91,105,93,61,91,93,44,102,61,48,59,102,60,117,59,43,43,102,41,40,111,61,97,91,102,93,41,38,38,116,46,99,97,108,108,40,111,44,111,46,95,95,100,97,116,97,95,95,44,102,44,97,41,38,38,99,46,112,117,115,104,40,111,41,59,114,101,116,117,114,110,32,110,101,119,32,85,114,40,114,44,116,104,105,115,46,95,112,97,114,101,110,116,115,44,116,104,105,115,46,95,110,97,109,101,44,116,104,105,115,46,95,105,100,41,125,44,109,101,114,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,46,95,105,100,33,61,61,116,104,105,115,46,95,105,100,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,116,46,95,103,114,111,117,112,115,44,114,61,110,46,108,101,110,103,116,104,44,105,61,101,46,108,101,110,103,116,104,44,111,61,77,97,116,104,46,109,105,110,40,114,44,105,41,44,97,61,110,101,119,32,65,114,114,97,121,40,114,41,44,117,61,48,59,117,60,111,59,43,43,117,41,102,111,114,40,118,97,114,32,99,44,102,61,110,91,117,93,44,115,61,101,91,117,93,44,108,61,102,46,108,101,110,103,116,104,44,104,61,97,91,117,93,61,110,101,119,32,65,114,114,97,121,40,108,41,44,100,61,48,59,100,60,108,59,43,43,100,41,40,99,61,102,91,100,93,124,124,115,91,100,93,41,38,38,40,104,91,100,93,61,99,41,59,102,111,114,40,59,117,60,114,59,43,43,117,41,97,91,117,93,61,110,91,117,93,59,114,101,116,117,114,110,32,110,101,119,32,85,114,40,97,44,116,104,105,115,46,95,112,97,114,101,110,116,115,44,116,104,105,115,46,95,110,97,109,101,44,116,104,105,115,46,95,105,100,41,125,44,115,101,108,101,99,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,68,114,40,116,104,105,115,46,95,103,114,111,117,112,115,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,44,116,114,97,110,115,105,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,116,104,105,115,46,95,110,97,109,101,44,110,61,116,104,105,115,46,95,105,100,44,101,61,66,114,40,41,44,114,61,116,104,105,115,46,95,103,114,111,117,112,115,44,105,61,114,46,108,101,110,103,116,104,44,111,61,48,59,111,60,105,59,43,43,111,41,102,111,114,40,118,97,114,32,97,44,117,61,114,91,111,93,44,99,61,117,46,108,101,110,103,116,104,44,102,61,48,59,102,60,99,59,43,43,102,41,105,102,40,97,61,117,91,102,93,41,123,118,97,114,32,115,61,67,114,40,97,44,110,41,59,83,114,40,97,44,116,44,101,44,102,44,117,44,123,116,105,109,101,58,115,46,116,105,109,101,43,115,46,100,101,108,97,121,43,115,46,100,117,114,97,116,105,111,110,44,100,101,108,97,121,58,48,44,100,117,114,97,116,105,111,110,58,115,46,100,117,114,97,116,105,111,110,44,101,97,115,101,58,115,46,101,97,115,101,125,41,125,114,101,116,117,114,110,32,110,101,119,32,85,114,40,114,44,116,104,105,115,46,95,112,97,114,101,110,116,115,44,116,44,101,41,125,44,99,97,108,108,58,70,114,46,99,97,108,108,44,110,111,100,101,115,58,70,114,46,110,111,100,101,115,44,110,111,100,101,58,70,114,46,110,111,100,101,44,115,105,122,101,58,70,114,46,115,105,122,101,44,101,109,112,116,121,58,70,114,46,101,109,112,116,121,44,101,97,99,104,58,70,114,46,101,97,99,104,44,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,116,104,105,115,46,95,105,100,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,63,67,114,40,116,104,105,115,46,110,111,100,101,40,41,44,101,41,46,111,110,46,111,110,40,116,41,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,43,34,34,41,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,94,124,92,115,43,47,41,46,101,118,101,114,121,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,46,105,110,100,101,120,79,102,40,34,46,34,41,59,114,101,116,117,114,110,32,110,62,61,48,38,38,40,116,61,116,46,115,108,105,99,101,40,48,44,110,41,41,44,33,116,124,124,34,115,116,97,114,116,34,61,61,61,116,125,41,125,40,110,41,63,107,114,58,69,114,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,111,40,116,104,105,115,44,116,41,44,117,61,97,46,111,110,59,117,33,61,61,114,38,38,40,105,61,40,114,61,117,41,46,99,111,112,121,40,41,41,46,111,110,40,110,44,101,41,44,97,46,111,110,61,105,125,125,40,101,44,116,44,110,41,41,125,44,97,116,116,114,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,87,40,116,41,44,114,61,34,116,114,97,110,115,102,111,114,109,34,61,61,61,101,63,76,101,58,82,114,59,114,101,116,117,114,110,32,116,104,105,115,46,97,116,116,114,84,119,101,101,110,40,116,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,40,101,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,44,117,44,99,61,101,40,116,104,105,115,41,59,105,102,40,110,117,108,108,33,61,99,41,114,101,116,117,114,110,40,97,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,41,61,61,61,40,117,61,99,43,34,34,41,63,110,117,108,108,58,97,61,61,61,114,38,38,117,61,61,61,105,63,111,58,40,105,61,117,44,111,61,110,40,114,61,97,44,99,41,41,59,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,44,117,44,99,61,101,40,116,104,105,115,41,59,105,102,40,110,117,108,108,33,61,99,41,114,101,116,117,114,110,40,97,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,116,41,41,61,61,61,40,117,61,99,43,34,34,41,63,110,117,108,108,58,97,61,61,61,114,38,38,117,61,61,61,105,63,111,58,40,105,61,117,44,111,61,110,40,114,61,97,44,99,41,41,59,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,41,125,125,41,40,101,44,114,44,122,114,40,116,104,105,115,44,34,97,116,116,114,46,34,43,116,44,110,41,41,58,110,117,108,108,61,61,110,63,40,101,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,41,125,125,41,40,101,41,58,40,101,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,61,101,43,34,34,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,59,114,101,116,117,114,110,32,97,61,61,61,111,63,110,117,108,108,58,97,61,61,61,114,63,105,58,105,61,110,40,114,61,97,44,101,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,61,101,43,34,34,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,116,41,59,114,101,116,117,114,110,32,97,61,61,61,111,63,110,117,108,108,58,97,61,61,61,114,63,105,58,105,61,110,40,114,61,97,44,101,41,125,125,41,40,101,44,114,44,110,41,41,125,44,97,116,116,114,84,119,101,101,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,34,97,116,116,114,46,34,43,116,59,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,114,101,116,117,114,110,40,101,61,116,104,105,115,46,116,119,101,101,110,40,101,41,41,38,38,101,46,95,118,97,108,117,101,59,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,101,44,110,117,108,108,41,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,118,97,114,32,114,61,87,40,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,101,44,40,114,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,59,102,117,110,99,116,105,111,110,32,105,40,41,123,118,97,114,32,105,61,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,105,33,61,61,114,38,38,40,101,61,40,114,61,105,41,38,38,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,44,110,46,99,97,108,108,40,116,104,105,115,44,101,41,41,125,125,40,116,44,105,41,41,44,101,125,114,101,116,117,114,110,32,105,46,95,118,97,108,117,101,61,110,44,105,125,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,59,102,117,110,99,116,105,111,110,32,105,40,41,123,118,97,114,32,105,61,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,105,33,61,61,114,38,38,40,101,61,40,114,61,105,41,38,38,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,116,44,110,46,99,97,108,108,40,116,104,105,115,44,101,41,41,125,125,40,116,44,105,41,41,44,101,125,114,101,116,117,114,110,32,105,46,95,118,97,108,117,101,61,110,44,105,125,41,40,114,44,110,41,41,125,44,115,116,121,108,101,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,34,116,114,97,110,115,102,111,114,109,34,61,61,40,116,43,61,34,34,41,63,113,101,58,82,114,59,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,116,104,105,115,46,115,116,121,108,101,84,119,101,101,110,40,116,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,102,116,40,116,104,105,115,44,116,41,44,97,61,40,116,104,105,115,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,116,41,44,102,116,40,116,104,105,115,44,116,41,41,59,114,101,116,117,114,110,32,111,61,61,61,97,63,110,117,108,108,58,111,61,61,61,101,38,38,97,61,61,61,114,63,105,58,105,61,110,40,101,61,111,44,114,61,97,41,125,125,40,116,44,114,41,41,46,111,110,40,34,101,110,100,46,115,116,121,108,101,46,34,43,116,44,113,114,40,116,41,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,116,104,105,115,46,115,116,121,108,101,84,119,101,101,110,40,116,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,102,116,40,116,104,105,115,44,116,41,44,117,61,101,40,116,104,105,115,41,44,99,61,117,43,34,34,59,114,101,116,117,114,110,32,110,117,108,108,61,61,117,38,38,40,116,104,105,115,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,116,41,44,99,61,117,61,102,116,40,116,104,105,115,44,116,41,41,44,97,61,61,61,99,63,110,117,108,108,58,97,61,61,61,114,38,38,99,61,61,61,105,63,111,58,40,105,61,99,44,111,61,110,40,114,61,97,44,117,41,41,125,125,40,116,44,114,44,122,114,40,116,104,105,115,44,34,115,116,121,108,101,46,34,43,116,44,110,41,41,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,44,111,44,97,61,34,115,116,121,108,101,46,34,43,110,44,117,61,34,101,110,100,46,34,43,97,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,99,61,69,114,40,116,104,105,115,44,116,41,44,102,61,99,46,111,110,44,115,61,110,117,108,108,61,61,99,46,118,97,108,117,101,91,97,93,63,111,124,124,40,111,61,113,114,40,110,41,41,58,118,111,105,100,32,48,59,102,61,61,61,101,38,38,105,61,61,61,115,124,124,40,114,61,40,101,61,102,41,46,99,111,112,121,40,41,41,46,111,110,40,117,44,105,61,115,41,44,99,46,111,110,61,114,125,125,40,116,104,105,115,46,95,105,100,44,116,41,41,58,116,104,105,115,46,115,116,121,108,101,84,119,101,101,110,40,116,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,61,101,43,34,34,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,102,116,40,116,104,105,115,44,116,41,59,114,101,116,117,114,110,32,97,61,61,61,111,63,110,117,108,108,58,97,61,61,61,114,63,105,58,105,61,110,40,114,61,97,44,101,41,125,125,40,116,44,114,44,110,41,44,101,41,46,111,110,40,34,101,110,100,46,115,116,121,108,101,46,34,43,116,44,110,117,108,108,41,125,44,115,116,121,108,101,84,119,101,101,110,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,34,115,116,121,108,101,46,34,43,40,116,43,61,34,34,41,59,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,114,101,116,117,114,110,40,114,61,116,104,105,115,46,116,119,101,101,110,40,114,41,41,38,38,114,46,95,118,97,108,117,101,59,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,114,44,110,117,108,108,41,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,114,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,59,102,117,110,99,116,105,111,110,32,111,40,41,123,118,97,114,32,111,61,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,111,33,61,61,105,38,38,40,114,61,40,105,61,111,41,38,38,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,116,104,105,115,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,116,44,110,46,99,97,108,108,40,116,104,105,115,44,114,41,44,101,41,125,125,40,116,44,111,44,101,41,41,44,114,125,114,101,116,117,114,110,32,111,46,95,118,97,108,117,101,61,110,44,111,125,40,116,44,110,44,110,117,108,108,61,61,101,63,34,34,58,101,41,41,125,44,116,101,120,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,34,116,101,120,116,34,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,40,116,104,105,115,41,59,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,110,117,108,108,61,61,110,63,34,34,58,110,125,125,40,122,114,40,116,104,105,115,44,34,116,101,120,116,34,44,116,41,41,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,116,125,125,40,110,117,108,108,61,61,116,63,34,34,58,116,43,34,34,41,41,125,44,116,101,120,116,84,119,101,101,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,34,116,101,120,116,34,59,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,49,41,114,101,116,117,114,110,40,110,61,116,104,105,115,46,116,119,101,101,110,40,110,41,41,38,38,110,46,95,118,97,108,117,101,59,105,102,40,110,117,108,108,61,61,116,41,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,110,44,110,117,108,108,41,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,110,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,59,102,117,110,99,116,105,111,110,32,114,40,41,123,118,97,114,32,114,61,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,114,33,61,61,101,38,38,40,110,61,40,101,61,114,41,38,38,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,116,46,99,97,108,108,40,116,104,105,115,44,110,41,125,125,40,114,41,41,44,110,125,114,101,116,117,114,110,32,114,46,95,118,97,108,117,101,61,116,44,114,125,40,116,41,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,110,40,34,101,110,100,46,114,101,109,111,118,101,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,102,111,114,40,118,97,114,32,101,32,105,110,32,116,104,105,115,46,95,95,116,114,97,110,115,105,116,105,111,110,41,105,102,40,43,101,33,61,61,116,41,114,101,116,117,114,110,59,110,38,38,110,46,114,101,109,111,118,101,67,104,105,108,100,40,116,104,105,115,41,125,125,40,116,104,105,115,46,95,105,100,41,41,125,44,116,119,101,101,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,116,104,105,115,46,95,105,100,59,105,102,40,116,43,61,34,34,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,123,102,111,114,40,118,97,114,32,114,44,105,61,67,114,40,116,104,105,115,46,110,111,100,101,40,41,44,101,41,46,116,119,101,101,110,44,111,61,48,44,97,61,105,46,108,101,110,103,116,104,59,111,60,97,59,43,43,111,41,105,102,40,40,114,61,105,91,111,93,41,46,110,97,109,101,61,61,61,116,41,114,101,116,117,114,110,32,114,46,118,97,108,117,101,59,114,101,116,117,114,110,32,110,117,108,108,125,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,110,117,108,108,61,61,110,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,61,69,114,40,116,104,105,115,44,116,41,44,111,61,105,46,116,119,101,101,110,59,105,102,40,111,33,61,61,101,41,102,111,114,40,118,97,114,32,97,61,48,44,117,61,40,114,61,101,61,111,41,46,108,101,110,103,116,104,59,97,60,117,59,43,43,97,41,105,102,40,114,91,97,93,46,110,97,109,101,61,61,61,110,41,123,40,114,61,114,46,115,108,105,99,101,40,41,41,46,115,112,108,105,99,101,40,97,44,49,41,59,98,114,101,97,107,125,105,46,116,119,101,101,110,61,114,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,69,114,40,116,104,105,115,44,116,41,44,97,61,111,46,116,119,101,101,110,59,105,102,40,97,33,61,61,114,41,123,105,61,40,114,61,97,41,46,115,108,105,99,101,40,41,59,102,111,114,40,118,97,114,32,117,61,123,110,97,109,101,58,110,44,118,97,108,117,101,58,101,125,44,99,61,48,44,102,61,105,46,108,101,110,103,116,104,59,99,60,102,59,43,43,99,41,105,102,40,105,91,99,93,46,110,97,109,101,61,61,61,110,41,123,105,91,99,93,61,117,59,98,114,101,97,107,125,99,61,61,61,102,38,38,105,46,112,117,115,104,40,117,41,125,111,46,116,119,101,101,110,61,105,125,125,41,40,101,44,116,44,110,41,41,125,44,100,101,108,97,121,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,95,105,100,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,101,97,99,104,40,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,107,114,40,116,104,105,115,44,116,41,46,100,101,108,97,121,61,43,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,61,43,110,44,102,117,110,99,116,105,111,110,40,41,123,107,114,40,116,104,105,115,44,116,41,46,100,101,108,97,121,61,110,125,125,41,40,110,44,116,41,41,58,67,114,40,116,104,105,115,46,110,111,100,101,40,41,44,110,41,46,100,101,108,97,121,125,44,100,117,114,97,116,105,111,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,95,105,100,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,101,97,99,104,40,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,69,114,40,116,104,105,115,44,116,41,46,100,117,114,97,116,105,111,110,61,43,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,61,43,110,44,102,117,110,99,116,105,111,110,40,41,123,69,114,40,116,104,105,115,44,116,41,46,100,117,114,97,116,105,111,110,61,110,125,125,41,40,110,44,116,41,41,58,67,114,40,116,104,105,115,46,110,111,100,101,40,41,44,110,41,46,100,117,114,97,116,105,111,110,125,44,101,97,115,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,95,105,100,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,69,114,40,116,104,105,115,44,116,41,46,101,97,115,101,61,110,125,125,40,110,44,116,41,41,58,67,114,40,116,104,105,115,46,110,111,100,101,40,41,44,110,41,46,101,97,115,101,125,44,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,61,116,104,105,115,44,114,61,101,46,95,105,100,44,105,61,101,46,115,105,122,101,40,41,59,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,111,44,97,41,123,118,97,114,32,117,61,123,118,97,108,117,101,58,97,125,44,99,61,123,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,48,61,61,45,45,105,38,38,111,40,41,125,125,59,101,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,69,114,40,116,104,105,115,44,114,41,44,105,61,101,46,111,110,59,105,33,61,61,116,38,38,40,40,110,61,40,116,61,105,41,46,99,111,112,121,40,41,41,46,95,46,99,97,110,99,101,108,46,112,117,115,104,40,117,41,44,110,46,95,46,105,110,116,101,114,114,117,112,116,46,112,117,115,104,40,117,41,44,110,46,95,46,101,110,100,46,112,117,115,104,40,99,41,41,44,101,46,111,110,61,110,125,41,125,41,125,125,59,118,97,114,32,72,114,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,112,111,119,40,116,44,110,41,125,114,101,116,117,114,110,32,110,61,43,110,44,101,46,101,120,112,111,110,101,110,116,61,116,44,101,125,40,51,41,44,106,114,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,49,45,77,97,116,104,46,112,111,119,40,49,45,116,44,110,41,125,114,101,116,117,114,110,32,110,61,43,110,44,101,46,101,120,112,111,110,101,110,116,61,116,44,101,125,40,51,41,44,88,114,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,40,40,116,42,61,50,41,60,61,49,63,77,97,116,104,46,112,111,119,40,116,44,110,41,58,50,45,77,97,116,104,46,112,111,119,40,50,45,116,44,110,41,41,47,50,125,114,101,116,117,114,110,32,110,61,43,110,44,101,46,101,120,112,111,110,101,110,116,61,116,44,101,125,40,51,41,44,86,114,61,77,97,116,104,46,80,73,44,71,114,61,86,114,47,50,59,102,117,110,99,116,105,111,110,32,36,114,40,116,41,123,114,101,116,117,114,110,40,49,45,77,97,116,104,46,99,111,115,40,86,114,42,116,41,41,47,50,125,102,117,110,99,116,105,111,110,32,87,114,40,116,41,123,114,101,116,117,114,110,40,40,116,42,61,50,41,60,61,49,63,77,97,116,104,46,112,111,119,40,50,44,49,48,42,116,45,49,48,41,58,50,45,77,97,116,104,46,112,111,119,40,50,44,49,48,45,49,48,42,116,41,41,47,50,125,102,117,110,99,116,105,111,110,32,90,114,40,116,41,123,114,101,116,117,114,110,40,40,116,42,61,50,41,60,61,49,63,49,45,77,97,116,104,46,115,113,114,116,40,49,45,116,42,116,41,58,77,97,116,104,46,115,113,114,116,40,49,45,40,116,45,61,50,41,42,116,41,43,49,41,47,50,125,118,97,114,32,81,114,61,52,47,49,49,44,75,114,61,54,47,49,49,44,74,114,61,56,47,49,49,44,116,105,61,46,55,53,44,110,105,61,57,47,49,49,44,101,105,61,49,48,47,49,49,44,114,105,61,46,57,51,55,53,44,105,105,61,50,49,47,50,50,44,111,105,61,54,51,47,54,52,44,97,105,61,49,47,81,114,47,81,114,59,102,117,110,99,116,105,111,110,32,117,105,40,116,41,123,114,101,116,117,114,110,40,116,61,43,116,41,60,81,114,63,97,105,42,116,42,116,58,116,60,74,114,63,97,105,42,40,116,45,61,75,114,41,42,116,43,116,105,58,116,60,101,105,63,97,105,42,40,116,45,61,110,105,41,42,116,43,114,105,58,97,105,42,40,116,45,61,105,105,41,42,116,43,111,105,125,118,97,114,32,99,105,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,116,42,116,42,40,40,110,43,49,41,42,116,45,110,41,125,114,101,116,117,114,110,32,110,61,43,110,44,101,46,111,118,101,114,115,104,111,111,116,61,116,44,101,125,40,49,46,55,48,49,53,56,41,44,102,105,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,45,45,116,42,116,42,40,40,110,43,49,41,42,116,43,110,41,43,49,125,114,101,116,117,114,110,32,110,61,43,110,44,101,46,111,118,101,114,115,104,111,111,116,61,116,44,101,125,40,49,46,55,48,49,53,56,41,44,115,105,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,40,40,116,42,61,50,41,60,49,63,116,42,116,42,40,40,110,43,49,41,42,116,45,110,41,58,40,116,45,61,50,41,42,116,42,40,40,110,43,49,41,42,116,43,110,41,43,50,41,47,50,125,114,101,116,117,114,110,32,110,61,43,110,44,101,46,111,118,101,114,115,104,111,111,116,61,116,44,101,125,40,49,46,55,48,49,53,56,41,44,108,105,61,50,42,77,97,116,104,46,80,73,44,104,105,61,102,117,110,99,116,105,111,110,32,116,40,110,44,101,41,123,118,97,114,32,114,61,77,97,116,104,46,97,115,105,110,40,49,47,40,110,61,77,97,116,104,46,109,97,120,40,49,44,110,41,41,41,42,40,101,47,61,108,105,41,59,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,101,116,117,114,110,32,110,42,77,97,116,104,46,112,111,119,40,50,44,49,48,42,45,45,116,41,42,77,97,116,104,46,115,105,110,40,40,114,45,116,41,47,101,41,125,114,101,116,117,114,110,32,105,46,97,109,112,108,105,116,117,100,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,110,44,101,42,108,105,41,125,44,105,46,112,101,114,105,111,100,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,40,110,44,101,41,125,44,105,125,40,49,44,46,51,41,44,100,105,61,102,117,110,99,116,105,111,110,32,116,40,110,44,101,41,123,118,97,114,32,114,61,77,97,116,104,46,97,115,105,110,40,49,47,40,110,61,77,97,116,104,46,109,97,120,40,49,44,110,41,41,41,42,40,101,47,61,108,105,41,59,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,101,116,117,114,110,32,49,45,110,42,77,97,116,104,46,112,111,119,40,50,44,45,49,48,42,40,116,61,43,116,41,41,42,77,97,116,104,46,115,105,110,40,40,116,43,114,41,47,101,41,125,114,101,116,117,114,110,32,105,46,97,109,112,108,105,116,117,100,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,110,44,101,42,108,105,41,125,44,105,46,112,101,114,105,111,100,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,40,110,44,101,41,125,44,105,125,40,49,44,46,51,41,44,112,105,61,102,117,110,99,116,105,111,110,32,116,40,110,44,101,41,123,118,97,114,32,114,61,77,97,116,104,46,97,115,105,110,40,49,47,40,110,61,77,97,116,104,46,109,97,120,40,49,44,110,41,41,41,42,40,101,47,61,108,105,41,59,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,101,116,117,114,110,40,40,116,61,50,42,116,45,49,41,60,48,63,110,42,77,97,116,104,46,112,111,119,40,50,44,49,48,42,116,41,42,77,97,116,104,46,115,105,110,40,40,114,45,116,41,47,101,41,58,50,45,110,42,77,97,116,104,46,112,111,119,40,50,44,45,49,48,42,116,41,42,77,97,116,104,46,115,105,110,40,40,114,43,116,41,47,101,41,41,47,50,125,114,101,116,117,114,110,32,105,46,97,109,112,108,105,116,117,100,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,110,44,101,42,108,105,41,125,44,105,46,112,101,114,105,111,100,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,40,110,44,101,41,125,44,105,125,40,49,44,46,51,41,44,118,105,61,123,116,105,109,101,58,110,117,108,108,44,100,101,108,97,121,58,48,44,100,117,114,97,116,105,111,110,58,50,53,48,44,101,97,115,101,58,73,114,125,59,102,117,110,99,116,105,111,110,32,103,105,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,59,33,40,101,61,116,46,95,95,116,114,97,110,115,105,116,105,111,110,41,124,124,33,40,101,61,101,91,110,93,41,59,41,105,102,40,33,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,41,114,101,116,117,114,110,32,118,105,46,116,105,109,101,61,102,114,40,41,44,118,105,59,114,101,116,117,114,110,32,101,125,122,116,46,112,114,111,116,111,116,121,112,101,46,105,110,116,101,114,114,117,112,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,80,114,40,116,104,105,115,44,116,41,125,41,125,44,122,116,46,112,114,111,116,111,116,121,112,101,46,116,114,97,110,115,105,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,59,116,32,105,110,115,116,97,110,99,101,111,102,32,85,114,63,40,110,61,116,46,95,105,100,44,116,61,116,46,95,110,97,109,101,41,58,40,110,61,66,114,40,41,44,40,101,61,118,105,41,46,116,105,109,101,61,102,114,40,41,44,116,61,110,117,108,108,61,61,116,63,110,117,108,108,58,116,43,34,34,41,59,102,111,114,40,118,97,114,32,114,61,116,104,105,115,46,95,103,114,111,117,112,115,44,105,61,114,46,108,101,110,103,116,104,44,111,61,48,59,111,60,105,59,43,43,111,41,102,111,114,40,118,97,114,32,97,44,117,61,114,91,111,93,44,99,61,117,46,108,101,110,103,116,104,44,102,61,48,59,102,60,99,59,43,43,102,41,40,97,61,117,91,102,93,41,38,38,83,114,40,97,44,116,44,110,44,102,44,117,44,101,124,124,103,105,40,97,44,110,41,41,59,114,101,116,117,114,110,32,110,101,119,32,85,114,40,114,44,116,104,105,115,46,95,112,97,114,101,110,116,115,44,116,44,110,41,125,59,118,97,114,32,121,105,61,91,110,117,108,108,93,59,102,117,110,99,116,105,111,110,32,95,105,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,98,105,40,116,44,110,44,101,41,123,116,104,105,115,46,116,97,114,103,101,116,61,116,44,116,104,105,115,46,116,121,112,101,61,110,44,116,104,105,115,46,115,101,108,101,99,116,105,111,110,61,101,125,102,117,110,99,116,105,111,110,32,109,105,40,41,123,116,46,101,118,101,110,116,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,120,105,40,41,123,116,46,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,101,118,101,110,116,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,125,118,97,114,32,119,105,61,123,110,97,109,101,58,34,100,114,97,103,34,125,44,77,105,61,123,110,97,109,101,58,34,115,112,97,99,101,34,125,44,78,105,61,123,110,97,109,101,58,34,104,97,110,100,108,101,34,125,44,84,105,61,123,110,97,109,101,58,34,99,101,110,116,101,114,34,125,59,102,117,110,99,116,105,111,110,32,65,105,40,116,41,123,114,101,116,117,114,110,91,43,116,91,48,93,44,43,116,91,49,93,93,125,102,117,110,99,116,105,111,110,32,83,105,40,116,41,123,114,101,116,117,114,110,91,65,105,40,116,91,48,93,41,44,65,105,40,116,91,49,93,41,93,125,118,97,114,32,107,105,61,123,110,97,109,101,58,34,120,34,44,104,97,110,100,108,101,115,58,91,34,119,34,44,34,101,34,93,46,109,97,112,40,76,105,41,44,105,110,112,117,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,110,117,108,108,58,91,91,43,116,91,48,93,44,110,91,48,93,91,49,93,93,44,91,43,116,91,49,93,44,110,91,49,93,91,49,93,93,93,125,44,111,117,116,112,117,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,38,38,91,116,91,48,93,91,48,93,44,116,91,49,93,91,48,93,93,125,125,44,69,105,61,123,110,97,109,101,58,34,121,34,44,104,97,110,100,108,101,115,58,91,34,110,34,44,34,115,34,93,46,109,97,112,40,76,105,41,44,105,110,112,117,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,110,117,108,108,58,91,91,110,91,48,93,91,48,93,44,43,116,91,48,93,93,44,91,110,91,49,93,91,48,93,44,43,116,91,49,93,93,93,125,44,111,117,116,112,117,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,38,38,91,116,91,48,93,91,49,93,44,116,91,49,93,91,49,93,93,125,125,44,67,105,61,123,110,97,109,101,58,34,120,121,34,44,104,97,110,100,108,101,115,58,91,34,110,34,44,34,119,34,44,34,101,34,44,34,115,34,44,34,110,119,34,44,34,110,101,34,44,34,115,119,34,44,34,115,101,34,93,46,109,97,112,40,76,105,41,44,105,110,112,117,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,110,117,108,108,58,83,105,40,116,41,125,44,111,117,116,112,117,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,125,44,80,105,61,123,111,118,101,114,108,97,121,58,34,99,114,111,115,115,104,97,105,114,34,44,115,101,108,101,99,116,105,111,110,58,34,109,111,118,101,34,44,110,58,34,110,115,45,114,101,115,105,122,101,34,44,101,58,34,101,119,45,114,101,115,105,122,101,34,44,115,58,34,110,115,45,114,101,115,105,122,101,34,44,119,58,34,101,119,45,114,101,115,105,122,101,34,44,110,119,58,34,110,119,115,101,45,114,101,115,105,122,101,34,44,110,101,58,34,110,101,115,119,45,114,101,115,105,122,101,34,44,115,101,58,34,110,119,115,101,45,114,101,115,105,122,101,34,44,115,119,58,34,110,101,115,119,45,114,101,115,105,122,101,34,125,44,122,105,61,123,101,58,34,119,34,44,119,58,34,101,34,44,110,119,58,34,110,101,34,44,110,101,58,34,110,119,34,44,115,101,58,34,115,119,34,44,115,119,58,34,115,101,34,125,44,82,105,61,123,110,58,34,115,34,44,115,58,34,110,34,44,110,119,58,34,115,119,34,44,110,101,58,34,115,101,34,44,115,101,58,34,110,101,34,44,115,119,58,34,110,119,34,125,44,68,105,61,123,111,118,101,114,108,97,121,58,49,44,115,101,108,101,99,116,105,111,110,58,49,44,110,58,110,117,108,108,44,101,58,49,44,115,58,110,117,108,108,44,119,58,45,49,44,110,119,58,45,49,44,110,101,58,49,44,115,101,58,49,44,115,119,58,45,49,125,44,113,105,61,123,111,118,101,114,108,97,121,58,49,44,115,101,108,101,99,116,105,111,110,58,49,44,110,58,45,49,44,101,58,110,117,108,108,44,115,58,49,44,119,58,110,117,108,108,44,110,119,58,45,49,44,110,101,58,45,49,44,115,101,58,49,44,115,119,58,49,125,59,102,117,110,99,116,105,111,110,32,76,105,40,116,41,123,114,101,116,117,114,110,123,116,121,112,101,58,116,125,125,102,117,110,99,116,105,111,110,32,85,105,40,41,123,114,101,116,117,114,110,33,116,46,101,118,101,110,116,46,99,116,114,108,75,101,121,38,38,33,116,46,101,118,101,110,116,46,98,117,116,116,111,110,125,102,117,110,99,116,105,111,110,32,79,105,40,41,123,118,97,114,32,116,61,116,104,105,115,46,111,119,110,101,114,83,86,71,69,108,101,109,101,110,116,124,124,116,104,105,115,59,114,101,116,117,114,110,32,116,46,104,97,115,65,116,116,114,105,98,117,116,101,40,34,118,105,101,119,66,111,120,34,41,63,91,91,40,116,61,116,46,118,105,101,119,66,111,120,46,98,97,115,101,86,97,108,41,46,120,44,116,46,121,93,44,91,116,46,120,43,116,46,119,105,100,116,104,44,116,46,121,43,116,46,104,101,105,103,104,116,93,93,58,91,91,48,44,48,93,44,91,116,46,119,105,100,116,104,46,98,97,115,101,86,97,108,46,118,97,108,117,101,44,116,46,104,101,105,103,104,116,46,98,97,115,101,86,97,108,46,118,97,108,117,101,93,93,125,102,117,110,99,116,105,111,110,32,66,105,40,41,123,114,101,116,117,114,110,32,110,97,118,105,103,97,116,111,114,46,109,97,120,84,111,117,99,104,80,111,105,110,116,115,124,124,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,70,105,40,116,41,123,102,111,114,40,59,33,116,46,95,95,98,114,117,115,104,59,41,105,102,40,33,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,41,114,101,116,117,114,110,59,114,101,116,117,114,110,32,116,46,95,95,98,114,117,115,104,125,102,117,110,99,116,105,111,110,32,89,105,40,110,41,123,118,97,114,32,101,44,114,61,79,105,44,105,61,85,105,44,111,61,66,105,44,97,61,33,48,44,117,61,73,40,34,115,116,97,114,116,34,44,34,98,114,117,115,104,34,44,34,101,110,100,34,41,44,99,61,54,59,102,117,110,99,116,105,111,110,32,102,40,116,41,123,118,97,114,32,101,61,116,46,112,114,111,112,101,114,116,121,40,34,95,95,98,114,117,115,104,34,44,103,41,46,115,101,108,101,99,116,65,108,108,40,34,46,111,118,101,114,108,97,121,34,41,46,100,97,116,97,40,91,76,105,40,34,111,118,101,114,108,97,121,34,41,93,41,59,101,46,101,110,116,101,114,40,41,46,97,112,112,101,110,100,40,34,114,101,99,116,34,41,46,97,116,116,114,40,34,99,108,97,115,115,34,44,34,111,118,101,114,108,97,121,34,41,46,97,116,116,114,40,34,112,111,105,110,116,101,114,45,101,118,101,110,116,115,34,44,34,97,108,108,34,41,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,46,111,118,101,114,108,97,121,41,46,109,101,114,103,101,40,101,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,70,105,40,116,104,105,115,41,46,101,120,116,101,110,116,59,82,116,40,116,104,105,115,41,46,97,116,116,114,40,34,120,34,44,116,91,48,93,91,48,93,41,46,97,116,116,114,40,34,121,34,44,116,91,48,93,91,49,93,41,46,97,116,116,114,40,34,119,105,100,116,104,34,44,116,91,49,93,91,48,93,45,116,91,48,93,91,48,93,41,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,116,91,49,93,91,49,93,45,116,91,48,93,91,49,93,41,125,41,44,116,46,115,101,108,101,99,116,65,108,108,40,34,46,115,101,108,101,99,116,105,111,110,34,41,46,100,97,116,97,40,91,76,105,40,34,115,101,108,101,99,116,105,111,110,34,41,93,41,46,101,110,116,101,114,40,41,46,97,112,112,101,110,100,40,34,114,101,99,116,34,41,46,97,116,116,114,40,34,99,108,97,115,115,34,44,34,115,101,108,101,99,116,105,111,110,34,41,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,46,115,101,108,101,99,116,105,111,110,41,46,97,116,116,114,40,34,102,105,108,108,34,44,34,35,55,55,55,34,41,46,97,116,116,114,40,34,102,105,108,108,45,111,112,97,99,105,116,121,34,44,46,51,41,46,97,116,116,114,40,34,115,116,114,111,107,101,34,44,34,35,102,102,102,34,41,46,97,116,116,114,40,34,115,104,97,112,101,45,114,101,110,100,101,114,105,110,103,34,44,34,99,114,105,115,112,69,100,103,101,115,34,41,59,118,97,114,32,114,61,116,46,115,101,108,101,99,116,65,108,108,40,34,46,104,97,110,100,108,101,34,41,46,100,97,116,97,40,110,46,104,97,110,100,108,101,115,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,121,112,101,125,41,59,114,46,101,120,105,116,40,41,46,114,101,109,111,118,101,40,41,44,114,46,101,110,116,101,114,40,41,46,97,112,112,101,110,100,40,34,114,101,99,116,34,41,46,97,116,116,114,40,34,99,108,97,115,115,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,104,97,110,100,108,101,32,104,97,110,100,108,101,45,45,34,43,116,46,116,121,112,101,125,41,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,80,105,91,116,46,116,121,112,101,93,125,41,44,116,46,101,97,99,104,40,115,41,46,97,116,116,114,40,34,102,105,108,108,34,44,34,110,111,110,101,34,41,46,97,116,116,114,40,34,112,111,105,110,116,101,114,45,101,118,101,110,116,115,34,44,34,97,108,108,34,41,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,98,114,117,115,104,34,44,100,41,46,102,105,108,116,101,114,40,111,41,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,98,114,117,115,104,34,44,100,41,46,111,110,40,34,116,111,117,99,104,109,111,118,101,46,98,114,117,115,104,34,44,112,41,46,111,110,40,34,116,111,117,99,104,101,110,100,46,98,114,117,115,104,32,116,111,117,99,104,99,97,110,99,101,108,46,98,114,117,115,104,34,44,118,41,46,115,116,121,108,101,40,34,116,111,117,99,104,45,97,99,116,105,111,110,34,44,34,110,111,110,101,34,41,46,115,116,121,108,101,40,34,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,34,44,34,114,103,98,97,40,48,44,48,44,48,44,48,41,34,41,125,102,117,110,99,116,105,111,110,32,115,40,41,123,118,97,114,32,116,61,82,116,40,116,104,105,115,41,44,110,61,70,105,40,116,104,105,115,41,46,115,101,108,101,99,116,105,111,110,59,110,63,40,116,46,115,101,108,101,99,116,65,108,108,40,34,46,115,101,108,101,99,116,105,111,110,34,41,46,115,116,121,108,101,40,34,100,105,115,112,108,97,121,34,44,110,117,108,108,41,46,97,116,116,114,40,34,120,34,44,110,91,48,93,91,48,93,41,46,97,116,116,114,40,34,121,34,44,110,91,48,93,91,49,93,41,46,97,116,116,114,40,34,119,105,100,116,104,34,44,110,91,49,93,91,48,93,45,110,91,48,93,91,48,93,41,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,110,91,49,93,91,49,93,45,110,91,48,93,91,49,93,41,44,116,46,115,101,108,101,99,116,65,108,108,40,34,46,104,97,110,100,108,101,34,41,46,115,116,121,108,101,40,34,100,105,115,112,108,97,121,34,44,110,117,108,108,41,46,97,116,116,114,40,34,120,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,101,34,61,61,61,116,46,116,121,112,101,91,116,46,116,121,112,101,46,108,101,110,103,116,104,45,49,93,63,110,91,49,93,91,48,93,45,99,47,50,58,110,91,48,93,91,48,93,45,99,47,50,125,41,46,97,116,116,114,40,34,121,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,115,34,61,61,61,116,46,116,121,112,101,91,48,93,63,110,91,49,93,91,49,93,45,99,47,50,58,110,91,48,93,91,49,93,45,99,47,50,125,41,46,97,116,116,114,40,34,119,105,100,116,104,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,110,34,61,61,61,116,46,116,121,112,101,124,124,34,115,34,61,61,61,116,46,116,121,112,101,63,110,91,49,93,91,48,93,45,110,91,48,93,91,48,93,43,99,58,99,125,41,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,101,34,61,61,61,116,46,116,121,112,101,124,124,34,119,34,61,61,61,116,46,116,121,112,101,63,110,91,49,93,91,49,93,45,110,91,48,93,91,49,93,43,99,58,99,125,41,41,58,116,46,115,101,108,101,99,116,65,108,108,40,34,46,115,101,108,101,99,116,105,111,110,44,46,104,97,110,100,108,101,34,41,46,115,116,121,108,101,40,34,100,105,115,112,108,97,121,34,44,34,110,111,110,101,34,41,46,97,116,116,114,40,34,120,34,44,110,117,108,108,41,46,97,116,116,114,40,34,121,34,44,110,117,108,108,41,46,97,116,116,114,40,34,119,105,100,116,104,34,44,110,117,108,108,41,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,110,117,108,108,41,125,102,117,110,99,116,105,111,110,32,108,40,116,44,110,44,101,41,123,114,101,116,117,114,110,33,101,38,38,116,46,95,95,98,114,117,115,104,46,101,109,105,116,116,101,114,124,124,110,101,119,32,104,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,104,40,116,44,110,41,123,116,104,105,115,46,116,104,97,116,61,116,44,116,104,105,115,46,97,114,103,115,61,110,44,116,104,105,115,46,115,116,97,116,101,61,116,46,95,95,98,114,117,115,104,44,116,104,105,115,46,97,99,116,105,118,101,61,48,125,102,117,110,99,116,105,111,110,32,100,40,41,123,105,102,40,40,33,101,124,124,116,46,101,118,101,110,116,46,116,111,117,99,104,101,115,41,38,38,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,123,118,97,114,32,114,44,111,44,117,44,99,44,102,44,104,44,100,44,112,44,118,44,103,44,121,44,95,44,98,61,116,104,105,115,44,109,61,116,46,101,118,101,110,116,46,116,97,114,103,101,116,46,95,95,100,97,116,97,95,95,46,116,121,112,101,44,120,61,34,115,101,108,101,99,116,105,111,110,34,61,61,61,40,97,38,38,116,46,101,118,101,110,116,46,109,101,116,97,75,101,121,63,109,61,34,111,118,101,114,108,97,121,34,58,109,41,63,119,105,58,97,38,38,116,46,101,118,101,110,116,46,97,108,116,75,101,121,63,84,105,58,78,105,44,119,61,110,61,61,61,69,105,63,110,117,108,108,58,68,105,91,109,93,44,77,61,110,61,61,61,107,105,63,110,117,108,108,58,113,105,91,109,93,44,78,61,70,105,40,98,41,44,84,61,78,46,101,120,116,101,110,116,44,65,61,78,46,115,101,108,101,99,116,105,111,110,44,83,61,84,91,48,93,91,48,93,44,107,61,84,91,48,93,91,49,93,44,69,61,84,91,49,93,91,48,93,44,67,61,84,91,49,93,91,49,93,44,80,61,48,44,122,61,48,44,82,61,119,38,38,77,38,38,97,38,38,116,46,101,118,101,110,116,46,115,104,105,102,116,75,101,121,44,68,61,116,46,101,118,101,110,116,46,116,111,117,99,104,101,115,63,40,95,61,116,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,91,48,93,46,105,100,101,110,116,105,102,105,101,114,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,70,116,40,110,44,116,46,101,118,101,110,116,46,116,111,117,99,104,101,115,44,95,41,125,41,58,66,116,44,113,61,68,40,98,41,44,76,61,113,44,85,61,108,40,98,44,97,114,103,117,109,101,110,116,115,44,33,48,41,46,98,101,102,111,114,101,115,116,97,114,116,40,41,59,34,111,118,101,114,108,97,121,34,61,61,61,109,63,40,65,38,38,40,118,61,33,48,41,44,78,46,115,101,108,101,99,116,105,111,110,61,65,61,91,91,114,61,110,61,61,61,69,105,63,83,58,113,91,48,93,44,117,61,110,61,61,61,107,105,63,107,58,113,91,49,93,93,44,91,102,61,110,61,61,61,69,105,63,69,58,114,44,100,61,110,61,61,61,107,105,63,67,58,117,93,93,41,58,40,114,61,65,91,48,93,91,48,93,44,117,61,65,91,48,93,91,49,93,44,102,61,65,91,49,93,91,48,93,44,100,61,65,91,49,93,91,49,93,41,44,111,61,114,44,99,61,117,44,104,61,102,44,112,61,100,59,118,97,114,32,79,61,82,116,40,98,41,46,97,116,116,114,40,34,112,111,105,110,116,101,114,45,101,118,101,110,116,115,34,44,34,110,111,110,101,34,41,44,66,61,79,46,115,101,108,101,99,116,65,108,108,40,34,46,111,118,101,114,108,97,121,34,41,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,91,109,93,41,59,105,102,40,116,46,101,118,101,110,116,46,116,111,117,99,104,101,115,41,85,46,109,111,118,101,100,61,89,44,85,46,101,110,100,101,100,61,72,59,101,108,115,101,123,118,97,114,32,70,61,82,116,40,116,46,101,118,101,110,116,46,118,105,101,119,41,46,111,110,40,34,109,111,117,115,101,109,111,118,101,46,98,114,117,115,104,34,44,89,44,33,48,41,46,111,110,40,34,109,111,117,115,101,117,112,46,98,114,117,115,104,34,44,72,44,33,48,41,59,97,38,38,70,46,111,110,40,34,107,101,121,100,111,119,110,46,98,114,117,115,104,34,44,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,46,101,118,101,110,116,46,107,101,121,67,111,100,101,41,123,99,97,115,101,32,49,54,58,82,61,119,38,38,77,59,98,114,101,97,107,59,99,97,115,101,32,49,56,58,120,61,61,61,78,105,38,38,40,119,38,38,40,102,61,104,45,80,42,119,44,114,61,111,43,80,42,119,41,44,77,38,38,40,100,61,112,45,122,42,77,44,117,61,99,43,122,42,77,41,44,120,61,84,105,44,73,40,41,41,59,98,114,101,97,107,59,99,97,115,101,32,51,50,58,120,33,61,61,78,105,38,38,120,33,61,61,84,105,124,124,40,119,60,48,63,102,61,104,45,80,58,119,62,48,38,38,40,114,61,111,45,80,41,44,77,60,48,63,100,61,112,45,122,58,77,62,48,38,38,40,117,61,99,45,122,41,44,120,61,77,105,44,66,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,46,115,101,108,101,99,116,105,111,110,41,44,73,40,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,114,101,116,117,114,110,125,120,105,40,41,125,44,33,48,41,46,111,110,40,34,107,101,121,117,112,46,98,114,117,115,104,34,44,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,46,101,118,101,110,116,46,107,101,121,67,111,100,101,41,123,99,97,115,101,32,49,54,58,82,38,38,40,103,61,121,61,82,61,33,49,44,73,40,41,41,59,98,114,101,97,107,59,99,97,115,101,32,49,56,58,120,61,61,61,84,105,38,38,40,119,60,48,63,102,61,104,58,119,62,48,38,38,40,114,61,111,41,44,77,60,48,63,100,61,112,58,77,62,48,38,38,40,117,61,99,41,44,120,61,78,105,44,73,40,41,41,59,98,114,101,97,107,59,99,97,115,101,32,51,50,58,120,61,61,61,77,105,38,38,40,116,46,101,118,101,110,116,46,97,108,116,75,101,121,63,40,119,38,38,40,102,61,104,45,80,42,119,44,114,61,111,43,80,42,119,41,44,77,38,38,40,100,61,112,45,122,42,77,44,117,61,99,43,122,42,77,41,44,120,61,84,105,41,58,40,119,60,48,63,102,61,104,58,119,62,48,38,38,40,114,61,111,41,44,77,60,48,63,100,61,112,58,77,62,48,38,38,40,117,61,99,41,44,120,61,78,105,41,44,66,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,91,109,93,41,44,73,40,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,114,101,116,117,114,110,125,120,105,40,41,125,44,33,48,41,44,72,116,40,116,46,101,118,101,110,116,46,118,105,101,119,41,125,109,105,40,41,44,80,114,40,98,41,44,115,46,99,97,108,108,40,98,41,44,85,46,115,116,97,114,116,40,41,125,102,117,110,99,116,105,111,110,32,89,40,41,123,118,97,114,32,116,61,68,40,98,41,59,33,82,124,124,103,124,124,121,124,124,40,77,97,116,104,46,97,98,115,40,116,91,48,93,45,76,91,48,93,41,62,77,97,116,104,46,97,98,115,40,116,91,49,93,45,76,91,49,93,41,63,121,61,33,48,58,103,61,33,48,41,44,76,61,116,44,118,61,33,48,44,120,105,40,41,44,73,40,41,125,102,117,110,99,116,105,111,110,32,73,40,41,123,118,97,114,32,116,59,115,119,105,116,99,104,40,80,61,76,91,48,93,45,113,91,48,93,44,122,61,76,91,49,93,45,113,91,49,93,44,120,41,123,99,97,115,101,32,77,105,58,99,97,115,101,32,119,105,58,119,38,38,40,80,61,77,97,116,104,46,109,97,120,40,83,45,114,44,77,97,116,104,46,109,105,110,40,69,45,102,44,80,41,41,44,111,61,114,43,80,44,104,61,102,43,80,41,44,77,38,38,40,122,61,77,97,116,104,46,109,97,120,40,107,45,117,44,77,97,116,104,46,109,105,110,40,67,45,100,44,122,41,41,44,99,61,117,43,122,44,112,61,100,43,122,41,59,98,114,101,97,107,59,99,97,115,101,32,78,105,58,119,60,48,63,40,80,61,77,97,116,104,46,109,97,120,40,83,45,114,44,77,97,116,104,46,109,105,110,40,69,45,114,44,80,41,41,44,111,61,114,43,80,44,104,61,102,41,58,119,62,48,38,38,40,80,61,77,97,116,104,46,109,97,120,40,83,45,102,44,77,97,116,104,46,109,105,110,40,69,45,102,44,80,41,41,44,111,61,114,44,104,61,102,43,80,41,44,77,60,48,63,40,122,61,77,97,116,104,46,109,97,120,40,107,45,117,44,77,97,116,104,46,109,105,110,40,67,45,117,44,122,41,41,44,99,61,117,43,122,44,112,61,100,41,58,77,62,48,38,38,40,122,61,77,97,116,104,46,109,97,120,40,107,45,100,44,77,97,116,104,46,109,105,110,40,67,45,100,44,122,41,41,44,99,61,117,44,112,61,100,43,122,41,59,98,114,101,97,107,59,99,97,115,101,32,84,105,58,119,38,38,40,111,61,77,97,116,104,46,109,97,120,40,83,44,77,97,116,104,46,109,105,110,40,69,44,114,45,80,42,119,41,41,44,104,61,77,97,116,104,46,109,97,120,40,83,44,77,97,116,104,46,109,105,110,40,69,44,102,43,80,42,119,41,41,41,44,77,38,38,40,99,61,77,97,116,104,46,109,97,120,40,107,44,77,97,116,104,46,109,105,110,40,67,44,117,45,122,42,77,41,41,44,112,61,77,97,116,104,46,109,97,120,40,107,44,77,97,116,104,46,109,105,110,40,67,44,100,43,122,42,77,41,41,41,125,104,60,111,38,38,40,119,42,61,45,49,44,116,61,114,44,114,61,102,44,102,61,116,44,116,61,111,44,111,61,104,44,104,61,116,44,109,32,105,110,32,122,105,38,38,66,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,91,109,61,122,105,91,109,93,93,41,41,44,112,60,99,38,38,40,77,42,61,45,49,44,116,61,117,44,117,61,100,44,100,61,116,44,116,61,99,44,99,61,112,44,112,61,116,44,109,32,105,110,32,82,105,38,38,66,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,91,109,61,82,105,91,109,93,93,41,41,44,78,46,115,101,108,101,99,116,105,111,110,38,38,40,65,61,78,46,115,101,108,101,99,116,105,111,110,41,44,103,38,38,40,111,61,65,91,48,93,91,48,93,44,104,61,65,91,49,93,91,48,93,41,44,121,38,38,40,99,61,65,91,48,93,91,49,93,44,112,61,65,91,49,93,91,49,93,41,44,65,91,48,93,91,48,93,61,61,61,111,38,38,65,91,48,93,91,49,93,61,61,61,99,38,38,65,91,49,93,91,48,93,61,61,61,104,38,38,65,91,49,93,91,49,93,61,61,61,112,124,124,40,78,46,115,101,108,101,99,116,105,111,110,61,91,91,111,44,99,93,44,91,104,44,112,93,93,44,115,46,99,97,108,108,40,98,41,44,85,46,98,114,117,115,104,40,41,41,125,102,117,110,99,116,105,111,110,32,72,40,41,123,105,102,40,109,105,40,41,44,116,46,101,118,101,110,116,46,116,111,117,99,104,101,115,41,123,105,102,40,116,46,101,118,101,110,116,46,116,111,117,99,104,101,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,59,101,38,38,99,108,101,97,114,84,105,109,101,111,117,116,40,101,41,44,101,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,61,110,117,108,108,125,44,53,48,48,41,125,101,108,115,101,32,106,116,40,116,46,101,118,101,110,116,46,118,105,101,119,44,118,41,44,70,46,111,110,40,34,107,101,121,100,111,119,110,46,98,114,117,115,104,32,107,101,121,117,112,46,98,114,117,115,104,32,109,111,117,115,101,109,111,118,101,46,98,114,117,115,104,32,109,111,117,115,101,117,112,46,98,114,117,115,104,34,44,110,117,108,108,41,59,79,46,97,116,116,114,40,34,112,111,105,110,116,101,114,45,101,118,101,110,116,115,34,44,34,97,108,108,34,41,44,66,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,46,111,118,101,114,108,97,121,41,44,78,46,115,101,108,101,99,116,105,111,110,38,38,40,65,61,78,46,115,101,108,101,99,116,105,111,110,41,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,91,48,93,91,48,93,61,61,61,116,91,49,93,91,48,93,124,124,116,91,48,93,91,49,93,61,61,61,116,91,49,93,91,49,93,125,40,65,41,38,38,40,78,46,115,101,108,101,99,116,105,111,110,61,110,117,108,108,44,115,46,99,97,108,108,40,98,41,41,44,85,46,101,110,100,40,41,125,125,102,117,110,99,116,105,111,110,32,112,40,41,123,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,109,111,118,101,100,40,41,125,102,117,110,99,116,105,111,110,32,118,40,41,123,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,101,110,100,101,100,40,41,125,102,117,110,99,116,105,111,110,32,103,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,98,114,117,115,104,124,124,123,115,101,108,101,99,116,105,111,110,58,110,117,108,108,125,59,114,101,116,117,114,110,32,116,46,101,120,116,101,110,116,61,83,105,40,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,44,116,46,100,105,109,61,110,44,116,125,114,101,116,117,114,110,32,102,46,109,111,118,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,115,101,108,101,99,116,105,111,110,63,116,46,111,110,40,34,115,116,97,114,116,46,98,114,117,115,104,34,44,102,117,110,99,116,105,111,110,40,41,123,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,98,101,102,111,114,101,115,116,97,114,116,40,41,46,115,116,97,114,116,40,41,125,41,46,111,110,40,34,105,110,116,101,114,114,117,112,116,46,98,114,117,115,104,32,101,110,100,46,98,114,117,115,104,34,44,102,117,110,99,116,105,111,110,40,41,123,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,101,110,100,40,41,125,41,46,116,119,101,101,110,40,34,98,114,117,115,104,34,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,114,61,116,46,95,95,98,114,117,115,104,44,105,61,108,40,116,44,97,114,103,117,109,101,110,116,115,41,44,111,61,114,46,115,101,108,101,99,116,105,111,110,44,97,61,110,46,105,110,112,117,116,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,101,44,114,46,101,120,116,101,110,116,41,44,117,61,84,101,40,111,44,97,41,59,102,117,110,99,116,105,111,110,32,99,40,110,41,123,114,46,115,101,108,101,99,116,105,111,110,61,49,61,61,61,110,38,38,110,117,108,108,61,61,61,97,63,110,117,108,108,58,117,40,110,41,44,115,46,99,97,108,108,40,116,41,44,105,46,98,114,117,115,104,40,41,125,114,101,116,117,114,110,32,110,117,108,108,33,61,61,111,38,38,110,117,108,108,33,61,61,97,63,99,58,99,40,49,41,125,41,58,116,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,114,61,97,114,103,117,109,101,110,116,115,44,105,61,116,46,95,95,98,114,117,115,104,44,111,61,110,46,105,110,112,117,116,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,46,97,112,112,108,121,40,116,44,114,41,58,101,44,105,46,101,120,116,101,110,116,41,44,97,61,108,40,116,44,114,41,46,98,101,102,111,114,101,115,116,97,114,116,40,41,59,80,114,40,116,41,44,105,46,115,101,108,101,99,116,105,111,110,61,110,117,108,108,61,61,61,111,63,110,117,108,108,58,111,44,115,46,99,97,108,108,40,116,41,44,97,46,115,116,97,114,116,40,41,46,98,114,117,115,104,40,41,46,101,110,100,40,41,125,41,125,44,102,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,116,41,123,102,46,109,111,118,101,40,116,44,110,117,108,108,41,125,44,104,46,112,114,111,116,111,116,121,112,101,61,123,98,101,102,111,114,101,115,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,49,61,61,43,43,116,104,105,115,46,97,99,116,105,118,101,38,38,40,116,104,105,115,46,115,116,97,116,101,46,101,109,105,116,116,101,114,61,116,104,105,115,44,116,104,105,115,46,115,116,97,114,116,105,110,103,61,33,48,41,44,116,104,105,115,125,44,115,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,114,116,105,110,103,63,40,116,104,105,115,46,115,116,97,114,116,105,110,103,61,33,49,44,116,104,105,115,46,101,109,105,116,40,34,115,116,97,114,116,34,41,41,58,116,104,105,115,46,101,109,105,116,40,34,98,114,117,115,104,34,41,44,116,104,105,115,125,44,98,114,117,115,104,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,109,105,116,40,34,98,114,117,115,104,34,41,44,116,104,105,115,125,44,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,61,61,45,45,116,104,105,115,46,97,99,116,105,118,101,38,38,40,100,101,108,101,116,101,32,116,104,105,115,46,115,116,97,116,101,46,101,109,105,116,116,101,114,44,116,104,105,115,46,101,109,105,116,40,34,101,110,100,34,41,41,44,116,104,105,115,125,44,101,109,105,116,58,102,117,110,99,116,105,111,110,40,116,41,123,107,116,40,110,101,119,32,98,105,40,102,44,116,44,110,46,111,117,116,112,117,116,40,116,104,105,115,46,115,116,97,116,101,46,115,101,108,101,99,116,105,111,110,41,41,44,117,46,97,112,112,108,121,44,117,44,91,116,44,116,104,105,115,46,116,104,97,116,44,116,104,105,115,46,97,114,103,115,93,41,125,125,44,102,46,101,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,95,105,40,83,105,40,116,41,41,44,102,41,58,114,125,44,102,46,102,105,108,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,95,105,40,33,33,116,41,44,102,41,58,105,125,44,102,46,116,111,117,99,104,97,98,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,95,105,40,33,33,116,41,44,102,41,58,111,125,44,102,46,104,97,110,100,108,101,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,43,116,44,102,41,58,99,125,44,102,46,107,101,121,77,111,100,105,102,105,101,114,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,33,33,116,44,102,41,58,97,125,44,102,46,111,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,117,46,111,110,46,97,112,112,108,121,40,117,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,116,61,61,61,117,63,102,58,116,125,44,102,125,118,97,114,32,73,105,61,77,97,116,104,46,99,111,115,44,72,105,61,77,97,116,104,46,115,105,110,44,106,105,61,77,97,116,104,46,80,73,44,88,105,61,106,105,47,50,44,86,105,61,50,42,106,105,44,71,105,61,77,97,116,104,46,109,97,120,59,102,117,110,99,116,105,111,110,32,36,105,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,41,123,114,101,116,117,114,110,32,116,40,110,46,115,111,117,114,99,101,46,118,97,108,117,101,43,110,46,116,97,114,103,101,116,46,118,97,108,117,101,44,101,46,115,111,117,114,99,101,46,118,97,108,117,101,43,101,46,116,97,114,103,101,116,46,118,97,108,117,101,41,125,125,118,97,114,32,87,105,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,59,102,117,110,99,116,105,111,110,32,90,105,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,118,97,114,32,81,105,61,77,97,116,104,46,80,73,44,75,105,61,50,42,81,105,44,74,105,61,75,105,45,49,101,45,54,59,102,117,110,99,116,105,111,110,32,116,111,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,121,49,61,110,117,108,108,44,116,104,105,115,46,95,61,34,34,125,102,117,110,99,116,105,111,110,32,110,111,40,41,123,114,101,116,117,114,110,32,110,101,119,32,116,111,125,102,117,110,99,116,105,111,110,32,101,111,40,116,41,123,114,101,116,117,114,110,32,116,46,115,111,117,114,99,101,125,102,117,110,99,116,105,111,110,32,114,111,40,116,41,123,114,101,116,117,114,110,32,116,46,116,97,114,103,101,116,125,102,117,110,99,116,105,111,110,32,105,111,40,116,41,123,114,101,116,117,114,110,32,116,46,114,97,100,105,117,115,125,102,117,110,99,116,105,111,110,32,111,111,40,116,41,123,114,101,116,117,114,110,32,116,46,115,116,97,114,116,65,110,103,108,101,125,102,117,110,99,116,105,111,110,32,97,111,40,116,41,123,114,101,116,117,114,110,32,116,46,101,110,100,65,110,103,108,101,125,116,111,46,112,114,111,116,111,116,121,112,101,61,110,111,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,116,111,44,109,111,118,101,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,95,43,61,34,77,34,43,40,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,43,116,41,43,34,44,34,43,40,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,43,110,41,125,44,99,108,111,115,101,80,97,116,104,58,102,117,110,99,116,105,111,110,40,41,123,110,117,108,108,33,61,61,116,104,105,115,46,95,120,49,38,38,40,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,48,44,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,48,44,116,104,105,115,46,95,43,61,34,90,34,41,125,44,108,105,110,101,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,95,43,61,34,76,34,43,40,116,104,105,115,46,95,120,49,61,43,116,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,43,110,41,125,44,113,117,97,100,114,97,116,105,99,67,117,114,118,101,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,95,43,61,34,81,34,43,32,43,116,43,34,44,34,43,32,43,110,43,34,44,34,43,40,116,104,105,115,46,95,120,49,61,43,101,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,43,114,41,125,44,98,101,122,105,101,114,67,117,114,118,101,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,44,111,41,123,116,104,105,115,46,95,43,61,34,67,34,43,32,43,116,43,34,44,34,43,32,43,110,43,34,44,34,43,32,43,101,43,34,44,34,43,32,43,114,43,34,44,34,43,40,116,104,105,115,46,95,120,49,61,43,105,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,43,111,41,125,44,97,114,99,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,41,123,116,61,43,116,44,110,61,43,110,44,101,61,43,101,44,114,61,43,114,44,105,61,43,105,59,118,97,114,32,111,61,116,104,105,115,46,95,120,49,44,97,61,116,104,105,115,46,95,121,49,44,117,61,101,45,116,44,99,61,114,45,110,44,102,61,111,45,116,44,115,61,97,45,110,44,108,61,102,42,102,43,115,42,115,59,105,102,40,105,60,48,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,101,103,97,116,105,118,101,32,114,97,100,105,117,115,58,32,34,43,105,41,59,105,102,40,110,117,108,108,61,61,61,116,104,105,115,46,95,120,49,41,116,104,105,115,46,95,43,61,34,77,34,43,40,116,104,105,115,46,95,120,49,61,116,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,110,41,59,101,108,115,101,32,105,102,40,108,62,49,101,45,54,41,105,102,40,77,97,116,104,46,97,98,115,40,115,42,117,45,99,42,102,41,62,49,101,45,54,38,38,105,41,123,118,97,114,32,104,61,101,45,111,44,100,61,114,45,97,44,112,61,117,42,117,43,99,42,99,44,118,61,104,42,104,43,100,42,100,44,103,61,77,97,116,104,46,115,113,114,116,40,112,41,44,121,61,77,97,116,104,46,115,113,114,116,40,108,41,44,95,61,105,42,77,97,116,104,46,116,97,110,40,40,81,105,45,77,97,116,104,46,97,99,111,115,40,40,112,43,108,45,118,41,47,40,50,42,103,42,121,41,41,41,47,50,41,44,98,61,95,47,121,44,109,61,95,47,103,59,77,97,116,104,46,97,98,115,40,98,45,49,41,62,49,101,45,54,38,38,40,116,104,105,115,46,95,43,61,34,76,34,43,40,116,43,98,42,102,41,43,34,44,34,43,40,110,43,98,42,115,41,41,44,116,104,105,115,46,95,43,61,34,65,34,43,105,43,34,44,34,43,105,43,34,44,48,44,48,44,34,43,32,43,40,115,42,104,62,102,42,100,41,43,34,44,34,43,40,116,104,105,115,46,95,120,49,61,116,43,109,42,117,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,110,43,109,42,99,41,125,101,108,115,101,32,116,104,105,115,46,95,43,61,34,76,34,43,40,116,104,105,115,46,95,120,49,61,116,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,110,41,59,101,108,115,101,59,125,44,97,114,99,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,44,111,41,123,116,61,43,116,44,110,61,43,110,44,111,61,33,33,111,59,118,97,114,32,97,61,40,101,61,43,101,41,42,77,97,116,104,46,99,111,115,40,114,41,44,117,61,101,42,77,97,116,104,46,115,105,110,40,114,41,44,99,61,116,43,97,44,102,61,110,43,117,44,115,61,49,94,111,44,108,61,111,63,114,45,105,58,105,45,114,59,105,102,40,101,60,48,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,101,103,97,116,105,118,101,32,114,97,100,105,117,115,58,32,34,43,101,41,59,110,117,108,108,61,61,61,116,104,105,115,46,95,120,49,63,116,104,105,115,46,95,43,61,34,77,34,43,99,43,34,44,34,43,102,58,40,77,97,116,104,46,97,98,115,40,116,104,105,115,46,95,120,49,45,99,41,62,49,101,45,54,124,124,77,97,116,104,46,97,98,115,40,116,104,105,115,46,95,121,49,45,102,41,62,49,101,45,54,41,38,38,40,116,104,105,115,46,95,43,61,34,76,34,43,99,43,34,44,34,43,102,41,44,101,38,38,40,108,60,48,38,38,40,108,61,108,37,75,105,43,75,105,41,44,108,62,74,105,63,116,104,105,115,46,95,43,61,34,65,34,43,101,43,34,44,34,43,101,43,34,44,48,44,49,44,34,43,115,43,34,44,34,43,40,116,45,97,41,43,34,44,34,43,40,110,45,117,41,43,34,65,34,43,101,43,34,44,34,43,101,43,34,44,48,44,49,44,34,43,115,43,34,44,34,43,40,116,104,105,115,46,95,120,49,61,99,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,102,41,58,108,62,49,101,45,54,38,38,40,116,104,105,115,46,95,43,61,34,65,34,43,101,43,34,44,34,43,101,43,34,44,48,44,34,43,32,43,40,108,62,61,81,105,41,43,34,44,34,43,115,43,34,44,34,43,40,116,104,105,115,46,95,120,49,61,116,43,101,42,77,97,116,104,46,99,111,115,40,105,41,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,110,43,101,42,77,97,116,104,46,115,105,110,40,105,41,41,41,41,125,44,114,101,99,116,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,95,43,61,34,77,34,43,40,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,43,116,41,43,34,44,34,43,40,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,43,110,41,43,34,104,34,43,32,43,101,43,34,118,34,43,32,43,114,43,34,104,34,43,45,101,43,34,90,34,125,44,116,111,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,125,125,59,102,117,110,99,116,105,111,110,32,117,111,40,41,123,125,102,117,110,99,116,105,111,110,32,99,111,40,116,44,110,41,123,118,97,114,32,101,61,110,101,119,32,117,111,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,117,111,41,116,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,101,46,115,101,116,40,110,44,116,41,125,41,59,101,108,115,101,32,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,123,118,97,114,32,114,44,105,61,45,49,44,111,61,116,46,108,101,110,103,116,104,59,105,102,40,110,117,108,108,61,61,110,41,102,111,114,40,59,43,43,105,60,111,59,41,101,46,115,101,116,40,105,44,116,91,105,93,41,59,101,108,115,101,32,102,111,114,40,59,43,43,105,60,111,59,41,101,46,115,101,116,40,110,40,114,61,116,91,105,93,44,105,44,116,41,44,114,41,125,101,108,115,101,32,105,102,40,116,41,102,111,114,40,118,97,114,32,97,32,105,110,32,116,41,101,46,115,101,116,40,97,44,116,91,97,93,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,102,111,40,41,123,114,101,116,117,114,110,123,125,125,102,117,110,99,116,105,111,110,32,115,111,40,116,44,110,44,101,41,123,116,91,110,93,61,101,125,102,117,110,99,116,105,111,110,32,108,111,40,41,123,114,101,116,117,114,110,32,99,111,40,41,125,102,117,110,99,116,105,111,110,32,104,111,40,116,44,110,44,101,41,123,116,46,115,101,116,40,110,44,101,41,125,102,117,110,99,116,105,111,110,32,112,111,40,41,123,125,117,111,46,112,114,111,116,111,116,121,112,101,61,99,111,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,117,111,44,104,97,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,36,34,43,116,32,105,110,32,116,104,105,115,125,44,103,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,91,34,36,34,43,116,93,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,91,34,36,34,43,116,93,61,110,44,116,104,105,115,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,34,36,34,43,116,59,114,101,116,117,114,110,32,110,32,105,110,32,116,104,105,115,38,38,100,101,108,101,116,101,32,116,104,105,115,91,110,93,125,44,99,108,101,97,114,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,32,105,110,32,116,104,105,115,41,34,36,34,61,61,61,116,91,48,93,38,38,100,101,108,101,116,101,32,116,104,105,115,91,116,93,125,44,107,101,121,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,102,111,114,40,118,97,114,32,110,32,105,110,32,116,104,105,115,41,34,36,34,61,61,61,110,91,48,93,38,38,116,46,112,117,115,104,40,110,46,115,108,105,99,101,40,49,41,41,59,114,101,116,117,114,110,32,116,125,44,118,97,108,117,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,102,111,114,40,118,97,114,32,110,32,105,110,32,116,104,105,115,41,34,36,34,61,61,61,110,91,48,93,38,38,116,46,112,117,115,104,40,116,104,105,115,91,110,93,41,59,114,101,116,117,114,110,32,116,125,44,101,110,116,114,105,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,102,111,114,40,118,97,114,32,110,32,105,110,32,116,104,105,115,41,34,36,34,61,61,61,110,91,48,93,38,38,116,46,112,117,115,104,40,123,107,101,121,58,110,46,115,108,105,99,101,40,49,41,44,118,97,108,117,101,58,116,104,105,115,91,110,93,125,41,59,114,101,116,117,114,110,32,116,125,44,115,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,48,59,102,111,114,40,118,97,114,32,110,32,105,110,32,116,104,105,115,41,34,36,34,61,61,61,110,91,48,93,38,38,43,43,116,59,114,101,116,117,114,110,32,116,125,44,101,109,112,116,121,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,32,105,110,32,116,104,105,115,41,105,102,40,34,36,34,61,61,61,116,91,48,93,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,44,101,97,99,104,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,32,105,110,32,116,104,105,115,41,34,36,34,61,61,61,110,91,48,93,38,38,116,40,116,104,105,115,91,110,93,44,110,46,115,108,105,99,101,40,49,41,44,116,104,105,115,41,125,125,59,118,97,114,32,118,111,61,99,111,46,112,114,111,116,111,116,121,112,101,59,102,117,110,99,116,105,111,110,32,103,111,40,116,44,110,41,123,118,97,114,32,101,61,110,101,119,32,112,111,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,112,111,41,116,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,97,100,100,40,116,41,125,41,59,101,108,115,101,32,105,102,40,116,41,123,118,97,114,32,114,61,45,49,44,105,61,116,46,108,101,110,103,116,104,59,105,102,40,110,117,108,108,61,61,110,41,102,111,114,40,59,43,43,114,60,105,59,41,101,46,97,100,100,40,116,91,114,93,41,59,101,108,115,101,32,102,111,114,40,59,43,43,114,60,105,59,41,101,46,97,100,100,40,110,40,116,91,114,93,44,114,44,116,41,41,125,114,101,116,117,114,110,32,101,125,112,111,46,112,114,111,116,111,116,121,112,101,61,103,111,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,112,111,44,104,97,115,58,118,111,46,104,97,115,44,97,100,100,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,91,34,36,34,43,40,116,43,61,34,34,41,93,61,116,44,116,104,105,115,125,44,114,101,109,111,118,101,58,118,111,46,114,101,109,111,118,101,44,99,108,101,97,114,58,118,111,46,99,108,101,97,114,44,118,97,108,117,101,115,58,118,111,46,107,101,121,115,44,115,105,122,101,58,118,111,46,115,105,122,101,44,101,109,112,116,121,58,118,111,46,101,109,112,116,121,44,101,97,99,104,58,118,111,46,101,97,99,104,125,59,118,97,114,32,121,111,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,59,102,117,110,99,116,105,111,110,32,95,111,40,116,44,110,41,123,114,101,116,117,114,110,32,116,45,110,125,102,117,110,99,116,105,111,110,32,98,111,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,109,111,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,44,114,61,45,49,44,105,61,110,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,105,102,40,101,61,120,111,40,116,44,110,91,114,93,41,41,114,101,116,117,114,110,32,101,59,114,101,116,117,114,110,32,48,125,102,117,110,99,116,105,111,110,32,120,111,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,110,91,48,93,44,114,61,110,91,49,93,44,105,61,45,49,44,111,61,48,44,97,61,116,46,108,101,110,103,116,104,44,117,61,97,45,49,59,111,60,97,59,117,61,111,43,43,41,123,118,97,114,32,99,61,116,91,111,93,44,102,61,99,91,48,93,44,115,61,99,91,49,93,44,108,61,116,91,117,93,44,104,61,108,91,48,93,44,100,61,108,91,49,93,59,105,102,40,119,111,40,99,44,108,44,110,41,41,114,101,116,117,114,110,32,48,59,115,62,114,33,61,100,62,114,38,38,101,60,40,104,45,102,41,42,40,114,45,115,41,47,40,100,45,115,41,43,102,38,38,40,105,61,45,105,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,119,111,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,44,97,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,40,110,91,48,93,45,116,91,48,93,41,42,40,101,91,49,93,45,116,91,49,93,41,61,61,40,101,91,48,93,45,116,91,48,93,41,42,40,110,91,49,93,45,116,91,49,93,41,125,40,116,44,110,44,101,41,38,38,40,105,61,116,91,114,61,43,40,116,91,48,93,61,61,61,110,91,48,93,41,93,44,111,61,101,91,114,93,44,97,61,110,91,114,93,44,105,60,61,111,38,38,111,60,61,97,124,124,97,60,61,111,38,38,111,60,61,105,41,125,102,117,110,99,116,105,111,110,32,77,111,40,41,123,125,118,97,114,32,78,111,61,91,91,93,44,91,91,91,49,44,49,46,53,93,44,91,46,53,44,49,93,93,93,44,91,91,91,49,46,53,44,49,93,44,91,49,44,49,46,53,93,93,93,44,91,91,91,49,46,53,44,49,93,44,91,46,53,44,49,93,93,93,44,91,91,91,49,44,46,53,93,44,91,49,46,53,44,49,93,93,93,44,91,91,91,49,44,49,46,53,93,44,91,46,53,44,49,93,93,44,91,91,49,44,46,53,93,44,91,49,46,53,44,49,93,93,93,44,91,91,91,49,44,46,53,93,44,91,49,44,49,46,53,93,93,93,44,91,91,91,49,44,46,53,93,44,91,46,53,44,49,93,93,93,44,91,91,91,46,53,44,49,93,44,91,49,44,46,53,93,93,93,44,91,91,91,49,44,49,46,53,93,44,91,49,44,46,53,93,93,93,44,91,91,91,46,53,44,49,93,44,91,49,44,46,53,93,93,44,91,91,49,46,53,44,49,93,44,91,49,44,49,46,53,93,93,93,44,91,91,91,49,46,53,44,49,93,44,91,49,44,46,53,93,93,93,44,91,91,91,46,53,44,49,93,44,91,49,46,53,44,49,93,93,93,44,91,91,91,49,44,49,46,53,93,44,91,49,46,53,44,49,93,93,93,44,91,91,91,46,53,44,49,93,44,91,49,44,49,46,53,93,93,93,44,91,93,93,59,102,117,110,99,116,105,111,110,32,84,111,40,41,123,118,97,114,32,116,61,49,44,110,61,49,44,101,61,77,44,114,61,117,59,102,117,110,99,116,105,111,110,32,105,40,116,41,123,118,97,114,32,110,61,101,40,116,41,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,41,110,61,110,46,115,108,105,99,101,40,41,46,115,111,114,116,40,95,111,41,59,101,108,115,101,123,118,97,114,32,114,61,115,40,116,41,44,105,61,114,91,48,93,44,97,61,114,91,49,93,59,110,61,119,40,105,44,97,44,110,41,44,110,61,103,40,77,97,116,104,46,102,108,111,111,114,40,105,47,110,41,42,110,44,77,97,116,104,46,102,108,111,111,114,40,97,47,110,41,42,110,44,110,41,125,114,101,116,117,114,110,32,110,46,109,97,112,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,111,40,116,44,110,41,125,41,125,102,117,110,99,116,105,111,110,32,111,40,101,44,105,41,123,118,97,114,32,111,61,91,93,44,117,61,91,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,114,44,105,41,123,118,97,114,32,111,44,117,44,99,44,102,44,115,44,108,44,104,61,110,101,119,32,65,114,114,97,121,44,100,61,110,101,119,32,65,114,114,97,121,59,111,61,117,61,45,49,44,102,61,101,91,48,93,62,61,114,44,78,111,91,102,60,60,49,93,46,102,111,114,69,97,99,104,40,112,41,59,102,111,114,40,59,43,43,111,60,116,45,49,59,41,99,61,102,44,102,61,101,91,111,43,49,93,62,61,114,44,78,111,91,99,124,102,60,60,49,93,46,102,111,114,69,97,99,104,40,112,41,59,78,111,91,102,60,60,48,93,46,102,111,114,69,97,99,104,40,112,41,59,102,111,114,40,59,43,43,117,60,110,45,49,59,41,123,102,111,114,40,111,61,45,49,44,102,61,101,91,117,42,116,43,116,93,62,61,114,44,115,61,101,91,117,42,116,93,62,61,114,44,78,111,91,102,60,60,49,124,115,60,60,50,93,46,102,111,114,69,97,99,104,40,112,41,59,43,43,111,60,116,45,49,59,41,99,61,102,44,102,61,101,91,117,42,116,43,116,43,111,43,49,93,62,61,114,44,108,61,115,44,115,61,101,91,117,42,116,43,111,43,49,93,62,61,114,44,78,111,91,99,124,102,60,60,49,124,115,60,60,50,124,108,60,60,51,93,46,102,111,114,69,97,99,104,40,112,41,59,78,111,91,102,124,115,60,60,51,93,46,102,111,114,69,97,99,104,40,112,41,125,111,61,45,49,44,115,61,101,91,117,42,116,93,62,61,114,44,78,111,91,115,60,60,50,93,46,102,111,114,69,97,99,104,40,112,41,59,102,111,114,40,59,43,43,111,60,116,45,49,59,41,108,61,115,44,115,61,101,91,117,42,116,43,111,43,49,93,62,61,114,44,78,111,91,115,60,60,50,124,108,60,60,51,93,46,102,111,114,69,97,99,104,40,112,41,59,102,117,110,99,116,105,111,110,32,112,40,116,41,123,118,97,114,32,110,44,101,44,114,61,91,116,91,48,93,91,48,93,43,111,44,116,91,48,93,91,49,93,43,117,93,44,99,61,91,116,91,49,93,91,48,93,43,111,44,116,91,49,93,91,49,93,43,117,93,44,102,61,97,40,114,41,44,115,61,97,40,99,41,59,40,110,61,100,91,102,93,41,63,40,101,61,104,91,115,93,41,63,40,100,101,108,101,116,101,32,100,91,110,46,101,110,100,93,44,100,101,108,101,116,101,32,104,91,101,46,115,116,97,114,116,93,44,110,61,61,61,101,63,40,110,46,114,105,110,103,46,112,117,115,104,40,99,41,44,105,40,110,46,114,105,110,103,41,41,58,104,91,110,46,115,116,97,114,116,93,61,100,91,101,46,101,110,100,93,61,123,115,116,97,114,116,58,110,46,115,116,97,114,116,44,101,110,100,58,101,46,101,110,100,44,114,105,110,103,58,110,46,114,105,110,103,46,99,111,110,99,97,116,40,101,46,114,105,110,103,41,125,41,58,40,100,101,108,101,116,101,32,100,91,110,46,101,110,100,93,44,110,46,114,105,110,103,46,112,117,115,104,40,99,41,44,100,91,110,46,101,110,100,61,115,93,61,110,41,58,40,110,61,104,91,115,93,41,63,40,101,61,100,91,102,93,41,63,40,100,101,108,101,116,101,32,104,91,110,46,115,116,97,114,116,93,44,100,101,108,101,116,101,32,100,91,101,46,101,110,100,93,44,110,61,61,61,101,63,40,110,46,114,105,110,103,46,112,117,115,104,40,99,41,44,105,40,110,46,114,105,110,103,41,41,58,104,91,101,46,115,116,97,114,116,93,61,100,91,110,46,101,110,100,93,61,123,115,116,97,114,116,58,101,46,115,116,97,114,116,44,101,110,100,58,110,46,101,110,100,44,114,105,110,103,58,101,46,114,105,110,103,46,99,111,110,99,97,116,40,110,46,114,105,110,103,41,125,41,58,40,100,101,108,101,116,101,32,104,91,110,46,115,116,97,114,116,93,44,110,46,114,105,110,103,46,117,110,115,104,105,102,116,40,114,41,44,104,91,110,46,115,116,97,114,116,61,102,93,61,110,41,58,104,91,102,93,61,100,91,115,93,61,123,115,116,97,114,116,58,102,44,101,110,100,58,115,44,114,105,110,103,58,91,114,44,99,93,125,125,78,111,91,115,60,60,51,93,46,102,111,114,69,97,99,104,40,112,41,125,40,101,44,105,44,102,117,110,99,116,105,111,110,40,116,41,123,114,40,116,44,101,44,105,41,44,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,61,48,44,101,61,116,46,108,101,110,103,116,104,44,114,61,116,91,101,45,49,93,91,49,93,42,116,91,48,93,91,48,93,45,116,91,101,45,49,93,91,48,93,42,116,91,48,93,91,49,93,59,43,43,110,60,101,59,41,114,43,61,116,91,110,45,49,93,91,49,93,42,116,91,110,93,91,48,93,45,116,91,110,45,49,93,91,48,93,42,116,91,110,93,91,49,93,59,114,101,116,117,114,110,32,114,125,40,116,41,62,48,63,111,46,112,117,115,104,40,91,116,93,41,58,117,46,112,117,115,104,40,116,41,125,41,44,117,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,61,48,44,114,61,111,46,108,101,110,103,116,104,59,101,60,114,59,43,43,101,41,105,102,40,45,49,33,61,61,109,111,40,40,110,61,111,91,101,93,41,91,48,93,44,116,41,41,114,101,116,117,114,110,32,118,111,105,100,32,110,46,112,117,115,104,40,116,41,125,41,44,123,116,121,112,101,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,118,97,108,117,101,58,105,44,99,111,111,114,100,105,110,97,116,101,115,58,111,125,125,102,117,110,99,116,105,111,110,32,97,40,110,41,123,114,101,116,117,114,110,32,50,42,110,91,48,93,43,110,91,49,93,42,40,116,43,49,41,42,52,125,102,117,110,99,116,105,111,110,32,117,40,101,44,114,44,105,41,123,101,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,111,44,97,61,101,91,48,93,44,117,61,101,91,49,93,44,99,61,48,124,97,44,102,61,48,124,117,44,115,61,114,91,102,42,116,43,99,93,59,97,62,48,38,38,97,60,116,38,38,99,61,61,61,97,38,38,40,111,61,114,91,102,42,116,43,99,45,49,93,44,101,91,48,93,61,97,43,40,105,45,111,41,47,40,115,45,111,41,45,46,53,41,44,117,62,48,38,38,117,60,110,38,38,102,61,61,61,117,38,38,40,111,61,114,91,40,102,45,49,41,42,116,43,99,93,44,101,91,49,93,61,117,43,40,105,45,111,41,47,40,115,45,111,41,45,46,53,41,125,41,125,114,101,116,117,114,110,32,105,46,99,111,110,116,111,117,114,61,111,44,105,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,91,116,44,110,93,59,118,97,114,32,114,61,77,97,116,104,46,99,101,105,108,40,101,91,48,93,41,44,111,61,77,97,116,104,46,99,101,105,108,40,101,91,49,93,41,59,105,102,40,33,40,114,62,48,38,38,111,62,48,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,110,118,97,108,105,100,32,115,105,122,101,34,41,59,114,101,116,117,114,110,32,116,61,114,44,110,61,111,44,105,125,44,105,46,116,104,114,101,115,104,111,108,100,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,98,111,40,121,111,46,99,97,108,108,40,116,41,41,58,98,111,40,116,41,44,105,41,58,101,125,44,105,46,115,109,111,111,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,116,63,117,58,77,111,44,105,41,58,114,61,61,61,117,125,44,105,125,102,117,110,99,116,105,111,110,32,65,111,40,116,44,110,44,101,41,123,102,111,114,40,118,97,114,32,114,61,116,46,119,105,100,116,104,44,105,61,116,46,104,101,105,103,104,116,44,111,61,49,43,40,101,60,60,49,41,44,97,61,48,59,97,60,105,59,43,43,97,41,102,111,114,40,118,97,114,32,117,61,48,44,99,61,48,59,117,60,114,43,101,59,43,43,117,41,117,60,114,38,38,40,99,43,61,116,46,100,97,116,97,91,117,43,97,42,114,93,41,44,117,62,61,101,38,38,40,117,62,61,111,38,38,40,99,45,61,116,46,100,97,116,97,91,117,45,111,43,97,42,114,93,41,44,110,46,100,97,116,97,91,117,45,101,43,97,42,114,93,61,99,47,77,97,116,104,46,109,105,110,40,117,43,49,44,114,45,49,43,111,45,117,44,111,41,41,125,102,117,110,99,116,105,111,110,32,83,111,40,116,44,110,44,101,41,123,102,111,114,40,118,97,114,32,114,61,116,46,119,105,100,116,104,44,105,61,116,46,104,101,105,103,104,116,44,111,61,49,43,40,101,60,60,49,41,44,97,61,48,59,97,60,114,59,43,43,97,41,102,111,114,40,118,97,114,32,117,61,48,44,99,61,48,59,117,60,105,43,101,59,43,43,117,41,117,60,105,38,38,40,99,43,61,116,46,100,97,116,97,91,97,43,117,42,114,93,41,44,117,62,61,101,38,38,40,117,62,61,111,38,38,40,99,45,61,116,46,100,97,116,97,91,97,43,40,117,45,111,41,42,114,93,41,44,110,46,100,97,116,97,91,97,43,40,117,45,101,41,42,114,93,61,99,47,77,97,116,104,46,109,105,110,40,117,43,49,44,105,45,49,43,111,45,117,44,111,41,41,125,102,117,110,99,116,105,111,110,32,107,111,40,116,41,123,114,101,116,117,114,110,32,116,91,48,93,125,102,117,110,99,116,105,111,110,32,69,111,40,116,41,123,114,101,116,117,114,110,32,116,91,49,93,125,102,117,110,99,116,105,111,110,32,67,111,40,41,123,114,101,116,117,114,110,32,49,125,118,97,114,32,80,111,61,123,125,44,122,111,61,123,125,44,82,111,61,51,52,44,68,111,61,49,48,44,113,111,61,49,51,59,102,117,110,99,116,105,111,110,32,76,111,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,70,117,110,99,116,105,111,110,40,34,100,34,44,34,114,101,116,117,114,110,32,123,34,43,116,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,116,41,43,34,58,32,100,91,34,43,110,43,39,93,32,124,124,32,34,34,39,125,41,46,106,111,105,110,40,34,44,34,41,43,34,125,34,41,125,102,117,110,99,116,105,111,110,32,85,111,40,116,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,101,61,91,93,59,114,101,116,117,114,110,32,116,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,114,32,105,110,32,116,41,114,32,105,110,32,110,124,124,101,46,112,117,115,104,40,110,91,114,93,61,114,41,125,41,44,101,125,102,117,110,99,116,105,111,110,32,79,111,40,116,44,110,41,123,118,97,114,32,101,61,116,43,34,34,44,114,61,101,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,114,60,110,63,110,101,119,32,65,114,114,97,121,40,110,45,114,43,49,41,46,106,111,105,110,40,48,41,43,101,58,101,125,102,117,110,99,116,105,111,110,32,66,111,40,116,41,123,118,97,114,32,110,61,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,44,101,61,116,46,103,101,116,85,84,67,77,105,110,117,116,101,115,40,41,44,114,61,116,46,103,101,116,85,84,67,83,101,99,111,110,100,115,40,41,44,105,61,116,46,103,101,116,85,84,67,77,105,108,108,105,115,101,99,111,110,100,115,40,41,59,114,101,116,117,114,110,32,105,115,78,97,78,40,116,41,63,34,73,110,118,97,108,105,100,32,68,97,116,101,34,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,60,48,63,34,45,34,43,79,111,40,45,116,44,54,41,58,116,62,57,57,57,57,63,34,43,34,43,79,111,40,116,44,54,41,58,79,111,40,116,44,52,41,125,40,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,41,43,34,45,34,43,79,111,40,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,43,49,44,50,41,43,34,45,34,43,79,111,40,116,46,103,101,116,85,84,67,68,97,116,101,40,41,44,50,41,43,40,105,63,34,84,34,43,79,111,40,110,44,50,41,43,34,58,34,43,79,111,40,101,44,50,41,43,34,58,34,43,79,111,40,114,44,50,41,43,34,46,34,43,79,111,40,105,44,51,41,43,34,90,34,58,114,63,34,84,34,43,79,111,40,110,44,50,41,43,34,58,34,43,79,111,40,101,44,50,41,43,34,58,34,43,79,111,40,114,44,50,41,43,34,90,34,58,101,124,124,110,63,34,84,34,43,79,111,40,110,44,50,41,43,34,58,34,43,79,111,40,101,44,50,41,43,34,90,34,58,34,34,41,125,102,117,110,99,116,105,111,110,32,70,111,40,116,41,123,118,97,114,32,110,61,110,101,119,32,82,101,103,69,120,112,40,39,91,34,39,43,116,43,34,92,110,92,114,93,34,41,44,101,61,116,46,99,104,97,114,67,111,100,101,65,116,40,48,41,59,102,117,110,99,116,105,111,110,32,114,40,116,44,110,41,123,118,97,114,32,114,44,105,61,91,93,44,111,61,116,46,108,101,110,103,116,104,44,97,61,48,44,117,61,48,44,99,61,111,60,61,48,44,102,61,33,49,59,102,117,110,99,116,105,111,110,32,115,40,41,123,105,102,40,99,41,114,101,116,117,114,110,32,122,111,59,105,102,40,102,41,114,101,116,117,114,110,32,102,61,33,49,44,80,111,59,118,97,114,32,110,44,114,44,105,61,97,59,105,102,40,116,46,99,104,97,114,67,111,100,101,65,116,40,105,41,61,61,61,82,111,41,123,102,111,114,40,59,97,43,43,60,111,38,38,116,46,99,104,97,114,67,111,100,101,65,116,40,97,41,33,61,61,82,111,124,124,116,46,99,104,97,114,67,111,100,101,65,116,40,43,43,97,41,61,61,61,82,111,59,41,59,114,101,116,117,114,110,40,110,61,97,41,62,61,111,63,99,61,33,48,58,40,114,61,116,46,99,104,97,114,67,111,100,101,65,116,40,97,43,43,41,41,61,61,61,68,111,63,102,61,33,48,58,114,61,61,61,113,111,38,38,40,102,61,33,48,44,116,46,99,104,97,114,67,111,100,101,65,116,40,97,41,61,61,61,68,111,38,38,43,43,97,41,44,116,46,115,108,105,99,101,40,105,43,49,44,110,45,49,41,46,114,101,112,108,97,99,101,40,47,34,34,47,103,44,39,34,39,41,125,102,111,114,40,59,97,60,111,59,41,123,105,102,40,40,114,61,116,46,99,104,97,114,67,111,100,101,65,116,40,110,61,97,43,43,41,41,61,61,61,68,111,41,102,61,33,48,59,101,108,115,101,32,105,102,40,114,61,61,61,113,111,41,102,61,33,48,44,116,46,99,104,97,114,67,111,100,101,65,116,40,97,41,61,61,61,68,111,38,38,43,43,97,59,101,108,115,101,32,105,102,40,114,33,61,61,101,41,99,111,110,116,105,110,117,101,59,114,101,116,117,114,110,32,116,46,115,108,105,99,101,40,105,44,110,41,125,114,101,116,117,114,110,32,99,61,33,48,44,116,46,115,108,105,99,101,40,105,44,111,41,125,102,111,114,40,116,46,99,104,97,114,67,111,100,101,65,116,40,111,45,49,41,61,61,61,68,111,38,38,45,45,111,44,116,46,99,104,97,114,67,111,100,101,65,116,40,111,45,49,41,61,61,61,113,111,38,38,45,45,111,59,40,114,61,115,40,41,41,33,61,61,122,111,59,41,123,102,111,114,40,118,97,114,32,108,61,91,93,59,114,33,61,61,80,111,38,38,114,33,61,61,122,111,59,41,108,46,112,117,115,104,40,114,41,44,114,61,115,40,41,59,110,38,38,110,117,108,108,61,61,40,108,61,110,40,108,44,117,43,43,41,41,124,124,105,46,112,117,115,104,40,108,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,105,40,110,44,101,41,123,114,101,116,117,114,110,32,110,46,109,97,112,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,101,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,40,110,91,116,93,41,125,41,46,106,111,105,110,40,116,41,125,41,125,102,117,110,99,116,105,111,110,32,111,40,110,41,123,114,101,116,117,114,110,32,110,46,109,97,112,40,97,41,46,106,111,105,110,40,116,41,125,102,117,110,99,116,105,111,110,32,97,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,34,34,58,116,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,63,66,111,40,116,41,58,110,46,116,101,115,116,40,116,43,61,34,34,41,63,39,34,39,43,116,46,114,101,112,108,97,99,101,40,47,34,47,103,44,39,34,34,39,41,43,39,34,39,58,116,125,114,101,116,117,114,110,123,112,97,114,115,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,105,44,111,61,114,40,116,44,102,117,110,99,116,105,111,110,40,116,44,114,41,123,105,102,40,101,41,114,101,116,117,114,110,32,101,40,116,44,114,45,49,41,59,105,61,116,44,101,61,110,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,76,111,40,116,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,44,105,41,123,114,101,116,117,114,110,32,110,40,101,40,114,41,44,105,44,116,41,125,125,40,116,44,110,41,58,76,111,40,116,41,125,41,59,114,101,116,117,114,110,32,111,46,99,111,108,117,109,110,115,61,105,124,124,91,93,44,111,125,44,112,97,114,115,101,82,111,119,115,58,114,44,102,111,114,109,97,116,58,102,117,110,99,116,105,111,110,40,110,44,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,38,38,40,101,61,85,111,40,110,41,41,44,91,101,46,109,97,112,40,97,41,46,106,111,105,110,40,116,41,93,46,99,111,110,99,97,116,40,105,40,110,44,101,41,41,46,106,111,105,110,40,34,92,110,34,41,125,44,102,111,114,109,97,116,66,111,100,121,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,38,38,40,110,61,85,111,40,116,41,41,44,105,40,116,44,110,41,46,106,111,105,110,40,34,92,110,34,41,125,44,102,111,114,109,97,116,82,111,119,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,109,97,112,40,111,41,46,106,111,105,110,40,34,92,110,34,41,125,44,102,111,114,109,97,116,82,111,119,58,111,44,102,111,114,109,97,116,86,97,108,117,101,58,97,125,125,118,97,114,32,89,111,61,70,111,40,34,44,34,41,44,73,111,61,89,111,46,112,97,114,115,101,44,72,111,61,89,111,46,112,97,114,115,101,82,111,119,115,44,106,111,61,89,111,46,102,111,114,109,97,116,44,88,111,61,89,111,46,102,111,114,109,97,116,66,111,100,121,44,86,111,61,89,111,46,102,111,114,109,97,116,82,111,119,115,44,71,111,61,89,111,46,102,111,114,109,97,116,82,111,119,44,36,111,61,89,111,46,102,111,114,109,97,116,86,97,108,117,101,44,87,111,61,70,111,40,34,92,116,34,41,44,90,111,61,87,111,46,112,97,114,115,101,44,81,111,61,87,111,46,112,97,114,115,101,82,111,119,115,44,75,111,61,87,111,46,102,111,114,109,97,116,44,74,111,61,87,111,46,102,111,114,109,97,116,66,111,100,121,44,116,97,61,87,111,46,102,111,114,109,97,116,82,111,119,115,44,110,97,61,87,111,46,102,111,114,109,97,116,82,111,119,44,101,97,61,87,111,46,102,111,114,109,97,116,86,97,108,117,101,59,118,97,114,32,114,97,61,110,101,119,32,68,97,116,101,40,34,50,48,49,57,45,48,49,45,48,49,84,48,48,58,48,48,34,41,46,103,101,116,72,111,117,114,115,40,41,124,124,110,101,119,32,68,97,116,101,40,34,50,48,49,57,45,48,55,45,48,49,84,48,48,58,48,48,34,41,46,103,101,116,72,111,117,114,115,40,41,59,102,117,110,99,116,105,111,110,32,105,97,40,116,41,123,105,102,40,33,116,46,111,107,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,116,46,115,116,97,116,117,115,43,34,32,34,43,116,46,115,116,97,116,117,115,84,101,120,116,41,59,114,101,116,117,114,110,32,116,46,98,108,111,98,40,41,125,102,117,110,99,116,105,111,110,32,111,97,40,116,41,123,105,102,40,33,116,46,111,107,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,116,46,115,116,97,116,117,115,43,34,32,34,43,116,46,115,116,97,116,117,115,84,101,120,116,41,59,114,101,116,117,114,110,32,116,46,97,114,114,97,121,66,117,102,102,101,114,40,41,125,102,117,110,99,116,105,111,110,32,97,97,40,116,41,123,105,102,40,33,116,46,111,107,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,116,46,115,116,97,116,117,115,43,34,32,34,43,116,46,115,116,97,116,117,115,84,101,120,116,41,59,114,101,116,117,114,110,32,116,46,116,101,120,116,40,41,125,102,117,110,99,116,105,111,110,32,117,97,40,116,44,110,41,123,114,101,116,117,114,110,32,102,101,116,99,104,40,116,44,110,41,46,116,104,101,110,40,97,97,41,125,102,117,110,99,116,105,111,110,32,99,97,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,44,114,41,123,114,101,116,117,114,110,32,50,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,38,38,40,114,61,101,44,101,61,118,111,105,100,32,48,41,44,117,97,40,110,44,101,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,110,44,114,41,125,41,125,125,118,97,114,32,102,97,61,99,97,40,73,111,41,44,115,97,61,99,97,40,90,111,41,59,102,117,110,99,116,105,111,110,32,108,97,40,116,41,123,105,102,40,33,116,46,111,107,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,116,46,115,116,97,116,117,115,43,34,32,34,43,116,46,115,116,97,116,117,115,84,101,120,116,41,59,114,101,116,117,114,110,32,116,46,106,115,111,110,40,41,125,102,117,110,99,116,105,111,110,32,104,97,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,41,123,114,101,116,117,114,110,32,117,97,40,110,44,101,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,101,119,32,68,79,77,80,97,114,115,101,114,41,46,112,97,114,115,101,70,114,111,109,83,116,114,105,110,103,40,110,44,116,41,125,41,125,125,118,97,114,32,100,97,61,104,97,40,34,97,112,112,108,105,99,97,116,105,111,110,47,120,109,108,34,41,44,112,97,61,104,97,40,34,116,101,120,116,47,104,116,109,108,34,41,44,118,97,61,104,97,40,34,105,109,97,103,101,47,115,118,103,43,120,109,108,34,41,59,102,117,110,99,116,105,111,110,32,103,97,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,121,97,40,41,123,114,101,116,117,114,110,32,49,101,45,54,42,40,77,97,116,104,46,114,97,110,100,111,109,40,41,45,46,53,41,125,102,117,110,99,116,105,111,110,32,95,97,40,116,44,110,44,101,44,114,41,123,105,102,40,105,115,78,97,78,40,110,41,124,124,105,115,78,97,78,40,101,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,44,104,44,100,61,116,46,95,114,111,111,116,44,112,61,123,100,97,116,97,58,114,125,44,118,61,116,46,95,120,48,44,103,61,116,46,95,121,48,44,121,61,116,46,95,120,49,44,95,61,116,46,95,121,49,59,105,102,40,33,100,41,114,101,116,117,114,110,32,116,46,95,114,111,111,116,61,112,44,116,59,102,111,114,40,59,100,46,108,101,110,103,116,104,59,41,105,102,40,40,102,61,110,62,61,40,111,61,40,118,43,121,41,47,50,41,41,63,118,61,111,58,121,61,111,44,40,115,61,101,62,61,40,97,61,40,103,43,95,41,47,50,41,41,63,103,61,97,58,95,61,97,44,105,61,100,44,33,40,100,61,100,91,108,61,115,60,60,49,124,102,93,41,41,114,101,116,117,114,110,32,105,91,108,93,61,112,44,116,59,105,102,40,117,61,43,116,46,95,120,46,99,97,108,108,40,110,117,108,108,44,100,46,100,97,116,97,41,44,99,61,43,116,46,95,121,46,99,97,108,108,40,110,117,108,108,44,100,46,100,97,116,97,41,44,110,61,61,61,117,38,38,101,61,61,61,99,41,114,101,116,117,114,110,32,112,46,110,101,120,116,61,100,44,105,63,105,91,108,93,61,112,58,116,46,95,114,111,111,116,61,112,44,116,59,100,111,123,105,61,105,63,105,91,108,93,61,110,101,119,32,65,114,114,97,121,40,52,41,58,116,46,95,114,111,111,116,61,110,101,119,32,65,114,114,97,121,40,52,41,44,40,102,61,110,62,61,40,111,61,40,118,43,121,41,47,50,41,41,63,118,61,111,58,121,61,111,44,40,115,61,101,62,61,40,97,61,40,103,43,95,41,47,50,41,41,63,103,61,97,58,95,61,97,125,119,104,105,108,101,40,40,108,61,115,60,60,49,124,102,41,61,61,40,104,61,40,99,62,61,97,41,60,60,49,124,117,62,61,111,41,41,59,114,101,116,117,114,110,32,105,91,104,93,61,100,44,105,91,108,93,61,112,44,116,125,102,117,110,99,116,105,111,110,32,98,97,40,116,44,110,44,101,44,114,44,105,41,123,116,104,105,115,46,110,111,100,101,61,116,44,116,104,105,115,46,120,48,61,110,44,116,104,105,115,46,121,48,61,101,44,116,104,105,115,46,120,49,61,114,44,116,104,105,115,46,121,49,61,105,125,102,117,110,99,116,105,111,110,32,109,97,40,116,41,123,114,101,116,117,114,110,32,116,91,48,93,125,102,117,110,99,116,105,111,110,32,120,97,40,116,41,123,114,101,116,117,114,110,32,116,91,49,93,125,102,117,110,99,116,105,111,110,32,119,97,40,116,44,110,44,101,41,123,118,97,114,32,114,61,110,101,119,32,77,97,40,110,117,108,108,61,61,110,63,109,97,58,110,44,110,117,108,108,61,61,101,63,120,97,58,101,44,78,97,78,44,78,97,78,44,78,97,78,44,78,97,78,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,114,58,114,46,97,100,100,65,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,77,97,40,116,44,110,44,101,44,114,44,105,44,111,41,123,116,104,105,115,46,95,120,61,116,44,116,104,105,115,46,95,121,61,110,44,116,104,105,115,46,95,120,48,61,101,44,116,104,105,115,46,95,121,48,61,114,44,116,104,105,115,46,95,120,49,61,105,44,116,104,105,115,46,95,121,49,61,111,44,116,104,105,115,46,95,114,111,111,116,61,118,111,105,100,32,48,125,102,117,110,99,116,105,111,110,32,78,97,40,116,41,123,102,111,114,40,118,97,114,32,110,61,123,100,97,116,97,58,116,46,100,97,116,97,125,44,101,61,110,59,116,61,116,46,110,101,120,116,59,41,101,61,101,46,110,101,120,116,61,123,100,97,116,97,58,116,46,100,97,116,97,125,59,114,101,116,117,114,110,32,110,125,118,97,114,32,84,97,61,119,97,46,112,114,111,116,111,116,121,112,101,61,77,97,46,112,114,111,116,111,116,121,112,101,59,102,117,110,99,116,105,111,110,32,65,97,40,116,41,123,114,101,116,117,114,110,32,116,46,120,43,116,46,118,120,125,102,117,110,99,116,105,111,110,32,83,97,40,116,41,123,114,101,116,117,114,110,32,116,46,121,43,116,46,118,121,125,102,117,110,99,116,105,111,110,32,107,97,40,116,41,123,114,101,116,117,114,110,32,116,46,105,110,100,101,120,125,102,117,110,99,116,105,111,110,32,69,97,40,116,44,110,41,123,118,97,114,32,101,61,116,46,103,101,116,40,110,41,59,105,102,40,33,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,109,105,115,115,105,110,103,58,32,34,43,110,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,67,97,40,116,41,123,114,101,116,117,114,110,32,116,46,120,125,102,117,110,99,116,105,111,110,32,80,97,40,116,41,123,114,101,116,117,114,110,32,116,46,121,125,84,97,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,61,110,101,119,32,77,97,40,116,104,105,115,46,95,120,44,116,104,105,115,46,95,121,44,116,104,105,115,46,95,120,48,44,116,104,105,115,46,95,121,48,44,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,41,44,114,61,116,104,105,115,46,95,114,111,111,116,59,105,102,40,33,114,41,114,101,116,117,114,110,32,101,59,105,102,40,33,114,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,101,46,95,114,111,111,116,61,78,97,40,114,41,44,101,59,102,111,114,40,116,61,91,123,115,111,117,114,99,101,58,114,44,116,97,114,103,101,116,58,101,46,95,114,111,111,116,61,110,101,119,32,65,114,114,97,121,40,52,41,125,93,59,114,61,116,46,112,111,112,40,41,59,41,102,111,114,40,118,97,114,32,105,61,48,59,105,60,52,59,43,43,105,41,40,110,61,114,46,115,111,117,114,99,101,91,105,93,41,38,38,40,110,46,108,101,110,103,116,104,63,116,46,112,117,115,104,40,123,115,111,117,114,99,101,58,110,44,116,97,114,103,101,116,58,114,46,116,97,114,103,101,116,91,105,93,61,110,101,119,32,65,114,114,97,121,40,52,41,125,41,58,114,46,116,97,114,103,101,116,91,105,93,61,78,97,40,110,41,41,59,114,101,116,117,114,110,32,101,125,44,84,97,46,97,100,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,43,116,104,105,115,46,95,120,46,99,97,108,108,40,110,117,108,108,44,116,41,44,101,61,43,116,104,105,115,46,95,121,46,99,97,108,108,40,110,117,108,108,44,116,41,59,114,101,116,117,114,110,32,95,97,40,116,104,105,115,46,99,111,118,101,114,40,110,44,101,41,44,110,44,101,44,116,41,125,44,84,97,46,97,100,100,65,108,108,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,44,111,61,116,46,108,101,110,103,116,104,44,97,61,110,101,119,32,65,114,114,97,121,40,111,41,44,117,61,110,101,119,32,65,114,114,97,121,40,111,41,44,99,61,49,47,48,44,102,61,49,47,48,44,115,61,45,49,47,48,44,108,61,45,49,47,48,59,102,111,114,40,101,61,48,59,101,60,111,59,43,43,101,41,105,115,78,97,78,40,114,61,43,116,104,105,115,46,95,120,46,99,97,108,108,40,110,117,108,108,44,110,61,116,91,101,93,41,41,124,124,105,115,78,97,78,40,105,61,43,116,104,105,115,46,95,121,46,99,97,108,108,40,110,117,108,108,44,110,41,41,124,124,40,97,91,101,93,61,114,44,117,91,101,93,61,105,44,114,60,99,38,38,40,99,61,114,41,44,114,62,115,38,38,40,115,61,114,41,44,105,60,102,38,38,40,102,61,105,41,44,105,62,108,38,38,40,108,61,105,41,41,59,105,102,40,99,62,115,124,124,102,62,108,41,114,101,116,117,114,110,32,116,104,105,115,59,102,111,114,40,116,104,105,115,46,99,111,118,101,114,40,99,44,102,41,46,99,111,118,101,114,40,115,44,108,41,44,101,61,48,59,101,60,111,59,43,43,101,41,95,97,40,116,104,105,115,44,97,91,101,93,44,117,91,101,93,44,116,91,101,93,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,84,97,46,99,111,118,101,114,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,105,115,78,97,78,40,116,61,43,116,41,124,124,105,115,78,97,78,40,110,61,43,110,41,41,114,101,116,117,114,110,32,116,104,105,115,59,118,97,114,32,101,61,116,104,105,115,46,95,120,48,44,114,61,116,104,105,115,46,95,121,48,44,105,61,116,104,105,115,46,95,120,49,44,111,61,116,104,105,115,46,95,121,49,59,105,102,40,105,115,78,97,78,40,101,41,41,105,61,40,101,61,77,97,116,104,46,102,108,111,111,114,40,116,41,41,43,49,44,111,61,40,114,61,77,97,116,104,46,102,108,111,111,114,40,110,41,41,43,49,59,101,108,115,101,123,102,111,114,40,118,97,114,32,97,44,117,44,99,61,105,45,101,44,102,61,116,104,105,115,46,95,114,111,111,116,59,101,62,116,124,124,116,62,61,105,124,124,114,62,110,124,124,110,62,61,111,59,41,115,119,105,116,99,104,40,117,61,40,110,60,114,41,60,60,49,124,116,60,101,44,40,97,61,110,101,119,32,65,114,114,97,121,40,52,41,41,91,117,93,61,102,44,102,61,97,44,99,42,61,50,44,117,41,123,99,97,115,101,32,48,58,105,61,101,43,99,44,111,61,114,43,99,59,98,114,101,97,107,59,99,97,115,101,32,49,58,101,61,105,45,99,44,111,61,114,43,99,59,98,114,101,97,107,59,99,97,115,101,32,50,58,105,61,101,43,99,44,114,61,111,45,99,59,98,114,101,97,107,59,99,97,115,101,32,51,58,101,61,105,45,99,44,114,61,111,45,99,125,116,104,105,115,46,95,114,111,111,116,38,38,116,104,105,115,46,95,114,111,111,116,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,95,114,111,111,116,61,102,41,125,114,101,116,117,114,110,32,116,104,105,115,46,95,120,48,61,101,44,116,104,105,115,46,95,121,48,61,114,44,116,104,105,115,46,95,120,49,61,105,44,116,104,105,115,46,95,121,49,61,111,44,116,104,105,115,125,44,84,97,46,100,97,116,97,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,118,105,115,105,116,40,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,33,110,46,108,101,110,103,116,104,41,100,111,123,116,46,112,117,115,104,40,110,46,100,97,116,97,41,125,119,104,105,108,101,40,110,61,110,46,110,101,120,116,41,125,41,44,116,125,44,84,97,46,101,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,99,111,118,101,114,40,43,116,91,48,93,91,48,93,44,43,116,91,48,93,91,49,93,41,46,99,111,118,101,114,40,43,116,91,49,93,91,48,93,44,43,116,91,49,93,91,49,93,41,58,105,115,78,97,78,40,116,104,105,115,46,95,120,48,41,63,118,111,105,100,32,48,58,91,91,116,104,105,115,46,95,120,48,44,116,104,105,115,46,95,121,48,93,44,91,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,93,93,125,44,84,97,46,102,105,110,100,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,61,116,104,105,115,46,95,120,48,44,108,61,116,104,105,115,46,95,121,48,44,104,61,116,104,105,115,46,95,120,49,44,100,61,116,104,105,115,46,95,121,49,44,112,61,91,93,44,118,61,116,104,105,115,46,95,114,111,111,116,59,102,111,114,40,118,38,38,112,46,112,117,115,104,40,110,101,119,32,98,97,40,118,44,115,44,108,44,104,44,100,41,41,44,110,117,108,108,61,61,101,63,101,61,49,47,48,58,40,115,61,116,45,101,44,108,61,110,45,101,44,104,61,116,43,101,44,100,61,110,43,101,44,101,42,61,101,41,59,99,61,112,46,112,111,112,40,41,59,41,105,102,40,33,40,33,40,118,61,99,46,110,111,100,101,41,124,124,40,105,61,99,46,120,48,41,62,104,124,124,40,111,61,99,46,121,48,41,62,100,124,124,40,97,61,99,46,120,49,41,60,115,124,124,40,117,61,99,46,121,49,41,60,108,41,41,105,102,40,118,46,108,101,110,103,116,104,41,123,118,97,114,32,103,61,40,105,43,97,41,47,50,44,121,61,40,111,43,117,41,47,50,59,112,46,112,117,115,104,40,110,101,119,32,98,97,40,118,91,51,93,44,103,44,121,44,97,44,117,41,44,110,101,119,32,98,97,40,118,91,50,93,44,105,44,121,44,103,44,117,41,44,110,101,119,32,98,97,40,118,91,49,93,44,103,44,111,44,97,44,121,41,44,110,101,119,32,98,97,40,118,91,48,93,44,105,44,111,44,103,44,121,41,41,44,40,102,61,40,110,62,61,121,41,60,60,49,124,116,62,61,103,41,38,38,40,99,61,112,91,112,46,108,101,110,103,116,104,45,49,93,44,112,91,112,46,108,101,110,103,116,104,45,49,93,61,112,91,112,46,108,101,110,103,116,104,45,49,45,102,93,44,112,91,112,46,108,101,110,103,116,104,45,49,45,102,93,61,99,41,125,101,108,115,101,123,118,97,114,32,95,61,116,45,43,116,104,105,115,46,95,120,46,99,97,108,108,40,110,117,108,108,44,118,46,100,97,116,97,41,44,98,61,110,45,43,116,104,105,115,46,95,121,46,99,97,108,108,40,110,117,108,108,44,118,46,100,97,116,97,41,44,109,61,95,42,95,43,98,42,98,59,105,102,40,109,60,101,41,123,118,97,114,32,120,61,77,97,116,104,46,115,113,114,116,40,101,61,109,41,59,115,61,116,45,120,44,108,61,110,45,120,44,104,61,116,43,120,44,100,61,110,43,120,44,114,61,118,46,100,97,116,97,125,125,114,101,116,117,114,110,32,114,125,44,84,97,46,114,101,109,111,118,101,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,105,115,78,97,78,40,111,61,43,116,104,105,115,46,95,120,46,99,97,108,108,40,110,117,108,108,44,116,41,41,124,124,105,115,78,97,78,40,97,61,43,116,104,105,115,46,95,121,46,99,97,108,108,40,110,117,108,108,44,116,41,41,41,114,101,116,117,114,110,32,116,104,105,115,59,118,97,114,32,110,44,101,44,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,44,104,44,100,61,116,104,105,115,46,95,114,111,111,116,44,112,61,116,104,105,115,46,95,120,48,44,118,61,116,104,105,115,46,95,121,48,44,103,61,116,104,105,115,46,95,120,49,44,121,61,116,104,105,115,46,95,121,49,59,105,102,40,33,100,41,114,101,116,117,114,110,32,116,104,105,115,59,105,102,40,100,46,108,101,110,103,116,104,41,102,111,114,40,59,59,41,123,105,102,40,40,102,61,111,62,61,40,117,61,40,112,43,103,41,47,50,41,41,63,112,61,117,58,103,61,117,44,40,115,61,97,62,61,40,99,61,40,118,43,121,41,47,50,41,41,63,118,61,99,58,121,61,99,44,110,61,100,44,33,40,100,61,100,91,108,61,115,60,60,49,124,102,93,41,41,114,101,116,117,114,110,32,116,104,105,115,59,105,102,40,33,100,46,108,101,110,103,116,104,41,98,114,101,97,107,59,40,110,91,108,43,49,38,51,93,124,124,110,91,108,43,50,38,51,93,124,124,110,91,108,43,51,38,51,93,41,38,38,40,101,61,110,44,104,61,108,41,125,102,111,114,40,59,100,46,100,97,116,97,33,61,61,116,59,41,105,102,40,114,61,100,44,33,40,100,61,100,46,110,101,120,116,41,41,114,101,116,117,114,110,32,116,104,105,115,59,114,101,116,117,114,110,40,105,61,100,46,110,101,120,116,41,38,38,100,101,108,101,116,101,32,100,46,110,101,120,116,44,114,63,40,105,63,114,46,110,101,120,116,61,105,58,100,101,108,101,116,101,32,114,46,110,101,120,116,44,116,104,105,115,41,58,110,63,40,105,63,110,91,108,93,61,105,58,100,101,108,101,116,101,32,110,91,108,93,44,40,100,61,110,91,48,93,124,124,110,91,49,93,124,124,110,91,50,93,124,124,110,91,51,93,41,38,38,100,61,61,61,40,110,91,51,93,124,124,110,91,50,93,124,124,110,91,49,93,124,124,110,91,48,93,41,38,38,33,100,46,108,101,110,103,116,104,38,38,40,101,63,101,91,104,93,61,100,58,116,104,105,115,46,95,114,111,111,116,61,100,41,44,116,104,105,115,41,58,40,116,104,105,115,46,95,114,111,111,116,61,105,44,116,104,105,115,41,125,44,84,97,46,114,101,109,111,118,101,65,108,108,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,61,48,44,101,61,116,46,108,101,110,103,116,104,59,110,60,101,59,43,43,110,41,116,104,105,115,46,114,101,109,111,118,101,40,116,91,110,93,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,84,97,46,114,111,111,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,114,111,111,116,125,44,84,97,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,48,59,114,101,116,117,114,110,32,116,104,105,115,46,118,105,115,105,116,40,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,33,110,46,108,101,110,103,116,104,41,100,111,123,43,43,116,125,119,104,105,108,101,40,110,61,110,46,110,101,120,116,41,125,41,44,116,125,44,84,97,46,118,105,115,105,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,44,111,44,97,44,117,61,91,93,44,99,61,116,104,105,115,46,95,114,111,111,116,59,102,111,114,40,99,38,38,117,46,112,117,115,104,40,110,101,119,32,98,97,40,99,44,116,104,105,115,46,95,120,48,44,116,104,105,115,46,95,121,48,44,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,41,41,59,110,61,117,46,112,111,112,40,41,59,41,105,102,40,33,116,40,99,61,110,46,110,111,100,101,44,114,61,110,46,120,48,44,105,61,110,46,121,48,44,111,61,110,46,120,49,44,97,61,110,46,121,49,41,38,38,99,46,108,101,110,103,116,104,41,123,118,97,114,32,102,61,40,114,43,111,41,47,50,44,115,61,40,105,43,97,41,47,50,59,40,101,61,99,91,51,93,41,38,38,117,46,112,117,115,104,40,110,101,119,32,98,97,40,101,44,102,44,115,44,111,44,97,41,41,44,40,101,61,99,91,50,93,41,38,38,117,46,112,117,115,104,40,110,101,119,32,98,97,40,101,44,114,44,115,44,102,44,97,41,41,44,40,101,61,99,91,49,93,41,38,38,117,46,112,117,115,104,40,110,101,119,32,98,97,40,101,44,102,44,105,44,111,44,115,41,41,44,40,101,61,99,91,48,93,41,38,38,117,46,112,117,115,104,40,110,101,119,32,98,97,40,101,44,114,44,105,44,102,44,115,41,41,125,114,101,116,117,114,110,32,116,104,105,115,125,44,84,97,46,118,105,115,105,116,65,102,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,61,91,93,44,114,61,91,93,59,102,111,114,40,116,104,105,115,46,95,114,111,111,116,38,38,101,46,112,117,115,104,40,110,101,119,32,98,97,40,116,104,105,115,46,95,114,111,111,116,44,116,104,105,115,46,95,120,48,44,116,104,105,115,46,95,121,48,44,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,41,41,59,110,61,101,46,112,111,112,40,41,59,41,123,118,97,114,32,105,61,110,46,110,111,100,101,59,105,102,40,105,46,108,101,110,103,116,104,41,123,118,97,114,32,111,44,97,61,110,46,120,48,44,117,61,110,46,121,48,44,99,61,110,46,120,49,44,102,61,110,46,121,49,44,115,61,40,97,43,99,41,47,50,44,108,61,40,117,43,102,41,47,50,59,40,111,61,105,91,48,93,41,38,38,101,46,112,117,115,104,40,110,101,119,32,98,97,40,111,44,97,44,117,44,115,44,108,41,41,44,40,111,61,105,91,49,93,41,38,38,101,46,112,117,115,104,40,110,101,119,32,98,97,40,111,44,115,44,117,44,99,44,108,41,41,44,40,111,61,105,91,50,93,41,38,38,101,46,112,117,115,104,40,110,101,119,32,98,97,40,111,44,97,44,108,44,115,44,102,41,41,44,40,111,61,105,91,51,93,41,38,38,101,46,112,117,115,104,40,110,101,119,32,98,97,40,111,44,115,44,108,44,99,44,102,41,41,125,114,46,112,117,115,104,40,110,41,125,102,111,114,40,59,110,61,114,46,112,111,112,40,41,59,41,116,40,110,46,110,111,100,101,44,110,46,120,48,44,110,46,121,48,44,110,46,120,49,44,110,46,121,49,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,84,97,46,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,104,105,115,46,95,120,61,116,44,116,104,105,115,41,58,116,104,105,115,46,95,120,125,44,84,97,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,104,105,115,46,95,121,61,116,44,116,104,105,115,41,58,116,104,105,115,46,95,121,125,59,118,97,114,32,122,97,61,49,48,44,82,97,61,77,97,116,104,46,80,73,42,40,51,45,77,97,116,104,46,115,113,114,116,40,53,41,41,59,102,117,110,99,116,105,111,110,32,68,97,40,116,44,110,41,123,105,102,40,40,101,61,40,116,61,110,63,116,46,116,111,69,120,112,111,110,101,110,116,105,97,108,40,110,45,49,41,58,116,46,116,111,69,120,112,111,110,101,110,116,105,97,108,40,41,41,46,105,110,100,101,120,79,102,40,34,101,34,41,41,60,48,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,101,44,114,61,116,46,115,108,105,99,101,40,48,44,101,41,59,114,101,116,117,114,110,91,114,46,108,101,110,103,116,104,62,49,63,114,91,48,93,43,114,46,115,108,105,99,101,40,50,41,58,114,44,43,116,46,115,108,105,99,101,40,101,43,49,41,93,125,102,117,110,99,116,105,111,110,32,113,97,40,116,41,123,114,101,116,117,114,110,40,116,61,68,97,40,77,97,116,104,46,97,98,115,40,116,41,41,41,63,116,91,49,93,58,78,97,78,125,118,97,114,32,76,97,44,85,97,61,47,94,40,63,58,40,46,41,63,40,91,60,62,61,94,93,41,41,63,40,91,43,92,45,40,32,93,41,63,40,91,36,35,93,41,63,40,48,41,63,40,92,100,43,41,63,40,44,41,63,40,92,46,92,100,43,41,63,40,126,41,63,40,91,97,45,122,37,93,41,63,36,47,105,59,102,117,110,99,116,105,111,110,32,79,97,40,116,41,123,105,102,40,33,40,110,61,85,97,46,101,120,101,99,40,116,41,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,110,118,97,108,105,100,32,102,111,114,109,97,116,58,32,34,43,116,41,59,118,97,114,32,110,59,114,101,116,117,114,110,32,110,101,119,32,66,97,40,123,102,105,108,108,58,110,91,49,93,44,97,108,105,103,110,58,110,91,50,93,44,115,105,103,110,58,110,91,51,93,44,115,121,109,98,111,108,58,110,91,52,93,44,122,101,114,111,58,110,91,53,93,44,119,105,100,116,104,58,110,91,54,93,44,99,111,109,109,97,58,110,91,55,93,44,112,114,101,99,105,115,105,111,110,58,110,91,56,93,38,38,110,91,56,93,46,115,108,105,99,101,40,49,41,44,116,114,105,109,58,110,91,57,93,44,116,121,112,101,58,110,91,49,48,93,125,41,125,102,117,110,99,116,105,111,110,32,66,97,40,116,41,123,116,104,105,115,46,102,105,108,108,61,118,111,105,100,32,48,61,61,61,116,46,102,105,108,108,63,34,32,34,58,116,46,102,105,108,108,43,34,34,44,116,104,105,115,46,97,108,105,103,110,61,118,111,105,100,32,48,61,61,61,116,46,97,108,105,103,110,63,34,62,34,58,116,46,97,108,105,103,110,43,34,34,44,116,104,105,115,46,115,105,103,110,61,118,111,105,100,32,48,61,61,61,116,46,115,105,103,110,63,34,45,34,58,116,46,115,105,103,110,43,34,34,44,116,104,105,115,46,115,121,109,98,111,108,61,118,111,105,100,32,48,61,61,61,116,46,115,121,109,98,111,108,63,34,34,58,116,46,115,121,109,98,111,108,43,34,34,44,116,104,105,115,46,122,101,114,111,61,33,33,116,46,122,101,114,111,44,116,104,105,115,46,119,105,100,116,104,61,118,111,105,100,32,48,61,61,61,116,46,119,105,100,116,104,63,118,111,105,100,32,48,58,43,116,46,119,105,100,116,104,44,116,104,105,115,46,99,111,109,109,97,61,33,33,116,46,99,111,109,109,97,44,116,104,105,115,46,112,114,101,99,105,115,105,111,110,61,118,111,105,100,32,48,61,61,61,116,46,112,114,101,99,105,115,105,111,110,63,118,111,105,100,32,48,58,43,116,46,112,114,101,99,105,115,105,111,110,44,116,104,105,115,46,116,114,105,109,61,33,33,116,46,116,114,105,109,44,116,104,105,115,46,116,121,112,101,61,118,111,105,100,32,48,61,61,61,116,46,116,121,112,101,63,34,34,58,116,46,116,121,112,101,43,34,34,125,102,117,110,99,116,105,111,110,32,70,97,40,116,44,110,41,123,118,97,114,32,101,61,68,97,40,116,44,110,41,59,105,102,40,33,101,41,114,101,116,117,114,110,32,116,43,34,34,59,118,97,114,32,114,61,101,91,48,93,44,105,61,101,91,49,93,59,114,101,116,117,114,110,32,105,60,48,63,34,48,46,34,43,110,101,119,32,65,114,114,97,121,40,45,105,41,46,106,111,105,110,40,34,48,34,41,43,114,58,114,46,108,101,110,103,116,104,62,105,43,49,63,114,46,115,108,105,99,101,40,48,44,105,43,49,41,43,34,46,34,43,114,46,115,108,105,99,101,40,105,43,49,41,58,114,43,110,101,119,32,65,114,114,97,121,40,105,45,114,46,108,101,110,103,116,104,43,50,41,46,106,111,105,110,40,34,48,34,41,125,79,97,46,112,114,111,116,111,116,121,112,101,61,66,97,46,112,114,111,116,111,116,121,112,101,44,66,97,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,108,43,116,104,105,115,46,97,108,105,103,110,43,116,104,105,115,46,115,105,103,110,43,116,104,105,115,46,115,121,109,98,111,108,43,40,116,104,105,115,46,122,101,114,111,63,34,48,34,58,34,34,41,43,40,118,111,105,100,32,48,61,61,61,116,104,105,115,46,119,105,100,116,104,63,34,34,58,77,97,116,104,46,109,97,120,40,49,44,48,124,116,104,105,115,46,119,105,100,116,104,41,41,43,40,116,104,105,115,46,99,111,109,109,97,63,34,44,34,58,34,34,41,43,40,118,111,105,100,32,48,61,61,61,116,104,105,115,46,112,114,101,99,105,115,105,111,110,63,34,34,58,34,46,34,43,77,97,116,104,46,109,97,120,40,48,44,48,124,116,104,105,115,46,112,114,101,99,105,115,105,111,110,41,41,43,40,116,104,105,115,46,116,114,105,109,63,34,126,34,58,34,34,41,43,116,104,105,115,46,116,121,112,101,125,59,118,97,114,32,89,97,61,123,34,37,34,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,49,48,48,42,116,41,46,116,111,70,105,120,101,100,40,110,41,125,44,98,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,41,46,116,111,83,116,114,105,110,103,40,50,41,125,44,99,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,43,34,34,125,44,100,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,41,46,116,111,83,116,114,105,110,103,40,49,48,41,125,44,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,116,111,69,120,112,111,110,101,110,116,105,97,108,40,110,41,125,44,102,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,116,111,70,105,120,101,100,40,110,41,125,44,103,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,116,111,80,114,101,99,105,115,105,111,110,40,110,41,125,44,111,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,41,46,116,111,83,116,114,105,110,103,40,56,41,125,44,112,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,70,97,40,49,48,48,42,116,44,110,41,125,44,114,58,70,97,44,115,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,68,97,40,116,44,110,41,59,105,102,40,33,101,41,114,101,116,117,114,110,32,116,43,34,34,59,118,97,114,32,114,61,101,91,48,93,44,105,61,101,91,49,93,44,111,61,105,45,40,76,97,61,51,42,77,97,116,104,46,109,97,120,40,45,56,44,77,97,116,104,46,109,105,110,40,56,44,77,97,116,104,46,102,108,111,111,114,40,105,47,51,41,41,41,41,43,49,44,97,61,114,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,111,61,61,61,97,63,114,58,111,62,97,63,114,43,110,101,119,32,65,114,114,97,121,40,111,45,97,43,49,41,46,106,111,105,110,40,34,48,34,41,58,111,62,48,63,114,46,115,108,105,99,101,40,48,44,111,41,43,34,46,34,43,114,46,115,108,105,99,101,40,111,41,58,34,48,46,34,43,110,101,119,32,65,114,114,97,121,40,49,45,111,41,46,106,111,105,110,40,34,48,34,41,43,68,97,40,116,44,77,97,116,104,46,109,97,120,40,48,44,110,43,111,45,49,41,41,91,48,93,125,44,88,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,41,46,116,111,83,116,114,105,110,103,40,49,54,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,44,120,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,41,46,116,111,83,116,114,105,110,103,40,49,54,41,125,125,59,102,117,110,99,116,105,111,110,32,73,97,40,116,41,123,114,101,116,117,114,110,32,116,125,118,97,114,32,72,97,44,106,97,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,109,97,112,44,88,97,61,91,34,121,34,44,34,122,34,44,34,97,34,44,34,102,34,44,34,112,34,44,34,110,34,44,34,194,181,34,44,34,109,34,44,34,34,44,34,107,34,44,34,77,34,44,34,71,34,44,34,84,34,44,34,80,34,44,34,69,34,44,34,90,34,44,34,89,34,93,59,102,117,110,99,116,105,111,110,32,86,97,40,116,41,123,118,97,114,32,110,44,101,44,114,61,118,111,105,100,32,48,61,61,61,116,46,103,114,111,117,112,105,110,103,124,124,118,111,105,100,32,48,61,61,61,116,46,116,104,111,117,115,97,110,100,115,63,73,97,58,40,110,61,106,97,46,99,97,108,108,40,116,46,103,114,111,117,112,105,110,103,44,78,117,109,98,101,114,41,44,101,61,116,46,116,104,111,117,115,97,110,100,115,43,34,34,44,102,117,110,99,116,105,111,110,40,116,44,114,41,123,102,111,114,40,118,97,114,32,105,61,116,46,108,101,110,103,116,104,44,111,61,91,93,44,97,61,48,44,117,61,110,91,48,93,44,99,61,48,59,105,62,48,38,38,117,62,48,38,38,40,99,43,117,43,49,62,114,38,38,40,117,61,77,97,116,104,46,109,97,120,40,49,44,114,45,99,41,41,44,111,46,112,117,115,104,40,116,46,115,117,98,115,116,114,105,110,103,40,105,45,61,117,44,105,43,117,41,41,44,33,40,40,99,43,61,117,43,49,41,62,114,41,41,59,41,117,61,110,91,97,61,40,97,43,49,41,37,110,46,108,101,110,103,116,104,93,59,114,101,116,117,114,110,32,111,46,114,101,118,101,114,115,101,40,41,46,106,111,105,110,40,101,41,125,41,44,105,61,118,111,105,100,32,48,61,61,61,116,46,99,117,114,114,101,110,99,121,63,34,34,58,116,46,99,117,114,114,101,110,99,121,91,48,93,43,34,34,44,111,61,118,111,105,100,32,48,61,61,61,116,46,99,117,114,114,101,110,99,121,63,34,34,58,116,46,99,117,114,114,101,110,99,121,91,49,93,43,34,34,44,97,61,118,111,105,100,32,48,61,61,61,116,46,100,101,99,105,109,97,108,63,34,46,34,58,116,46,100,101,99,105,109,97,108,43,34,34,44,117,61,118,111,105,100,32,48,61,61,61,116,46,110,117,109,101,114,97,108,115,63,73,97,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,46,114,101,112,108,97,99,101,40,47,91,48,45,57,93,47,103,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,91,43,110,93,125,41,125,125,40,106,97,46,99,97,108,108,40,116,46,110,117,109,101,114,97,108,115,44,83,116,114,105,110,103,41,41,44,99,61,118,111,105,100,32,48,61,61,61,116,46,112,101,114,99,101,110,116,63,34,37,34,58,116,46,112,101,114,99,101,110,116,43,34,34,44,102,61,118,111,105,100,32,48,61,61,61,116,46,109,105,110,117,115,63,34,45,34,58,116,46,109,105,110,117,115,43,34,34,44,115,61,118,111,105,100,32,48,61,61,61,116,46,110,97,110,63,34,78,97,78,34,58,116,46,110,97,110,43,34,34,59,102,117,110,99,116,105,111,110,32,108,40,116,41,123,118,97,114,32,110,61,40,116,61,79,97,40,116,41,41,46,102,105,108,108,44,101,61,116,46,97,108,105,103,110,44,108,61,116,46,115,105,103,110,44,104,61,116,46,115,121,109,98,111,108,44,100,61,116,46,122,101,114,111,44,112,61,116,46,119,105,100,116,104,44,118,61,116,46,99,111,109,109,97,44,103,61,116,46,112,114,101,99,105,115,105,111,110,44,121,61,116,46,116,114,105,109,44,95,61,116,46,116,121,112,101,59,34,110,34,61,61,61,95,63,40,118,61,33,48,44,95,61,34,103,34,41,58,89,97,91,95,93,124,124,40,118,111,105,100,32,48,61,61,61,103,38,38,40,103,61,49,50,41,44,121,61,33,48,44,95,61,34,103,34,41,44,40,100,124,124,34,48,34,61,61,61,110,38,38,34,61,34,61,61,61,101,41,38,38,40,100,61,33,48,44,110,61,34,48,34,44,101,61,34,61,34,41,59,118,97,114,32,98,61,34,36,34,61,61,61,104,63,105,58,34,35,34,61,61,61,104,38,38,47,91,98,111,120,88,93,47,46,116,101,115,116,40,95,41,63,34,48,34,43,95,46,116,111,76,111,119,101,114,67,97,115,101,40,41,58,34,34,44,109,61,34,36,34,61,61,61,104,63,111,58,47,91,37,112,93,47,46,116,101,115,116,40,95,41,63,99,58,34,34,44,120,61,89,97,91,95,93,44,119,61,47,91,100,101,102,103,112,114,115,37,93,47,46,116,101,115,116,40,95,41,59,102,117,110,99,116,105,111,110,32,77,40,116,41,123,118,97,114,32,105,44,111,44,99,44,104,61,98,44,77,61,109,59,105,102,40,34,99,34,61,61,61,95,41,77,61,120,40,116,41,43,77,44,116,61,34,34,59,101,108,115,101,123,118,97,114,32,78,61,40,116,61,43,116,41,60,48,124,124,49,47,116,60,48,59,105,102,40,116,61,105,115,78,97,78,40,116,41,63,115,58,120,40,77,97,116,104,46,97,98,115,40,116,41,44,103,41,44,121,38,38,40,116,61,102,117,110,99,116,105,111,110,40,116,41,123,116,58,102,111,114,40,118,97,114,32,110,44,101,61,116,46,108,101,110,103,116,104,44,114,61,49,44,105,61,45,49,59,114,60,101,59,43,43,114,41,115,119,105,116,99,104,40,116,91,114,93,41,123,99,97,115,101,34,46,34,58,105,61,110,61,114,59,98,114,101,97,107,59,99,97,115,101,34,48,34,58,48,61,61,61,105,38,38,40,105,61,114,41,44,110,61,114,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,105,102,40,33,43,116,91,114,93,41,98,114,101,97,107,32,116,59,105,62,48,38,38,40,105,61,48,41,125,114,101,116,117,114,110,32,105,62,48,63,116,46,115,108,105,99,101,40,48,44,105,41,43,116,46,115,108,105,99,101,40,110,43,49,41,58,116,125,40,116,41,41,44,78,38,38,48,61,61,43,116,38,38,34,43,34,33,61,61,108,38,38,40,78,61,33,49,41,44,104,61,40,78,63,34,40,34,61,61,61,108,63,108,58,102,58,34,45,34,61,61,61,108,124,124,34,40,34,61,61,61,108,63,34,34,58,108,41,43,104,44,77,61,40,34,115,34,61,61,61,95,63,88,97,91,56,43,76,97,47,51,93,58,34,34,41,43,77,43,40,78,38,38,34,40,34,61,61,61,108,63,34,41,34,58,34,34,41,44,119,41,102,111,114,40,105,61,45,49,44,111,61,116,46,108,101,110,103,116,104,59,43,43,105,60,111,59,41,105,102,40,52,56,62,40,99,61,116,46,99,104,97,114,67,111,100,101,65,116,40,105,41,41,124,124,99,62,53,55,41,123,77,61,40,52,54,61,61,61,99,63,97,43,116,46,115,108,105,99,101,40,105,43,49,41,58,116,46,115,108,105,99,101,40,105,41,41,43,77,44,116,61,116,46,115,108,105,99,101,40,48,44,105,41,59,98,114,101,97,107,125,125,118,38,38,33,100,38,38,40,116,61,114,40,116,44,49,47,48,41,41,59,118,97,114,32,84,61,104,46,108,101,110,103,116,104,43,116,46,108,101,110,103,116,104,43,77,46,108,101,110,103,116,104,44,65,61,84,60,112,63,110,101,119,32,65,114,114,97,121,40,112,45,84,43,49,41,46,106,111,105,110,40,110,41,58,34,34,59,115,119,105,116,99,104,40,118,38,38,100,38,38,40,116,61,114,40,65,43,116,44,65,46,108,101,110,103,116,104,63,112,45,77,46,108,101,110,103,116,104,58,49,47,48,41,44,65,61,34,34,41,44,101,41,123,99,97,115,101,34,60,34,58,116,61,104,43,116,43,77,43,65,59,98,114,101,97,107,59,99,97,115,101,34,61,34,58,116,61,104,43,65,43,116,43,77,59,98,114,101,97,107,59,99,97,115,101,34,94,34,58,116,61,65,46,115,108,105,99,101,40,48,44,84,61,65,46,108,101,110,103,116,104,62,62,49,41,43,104,43,116,43,77,43,65,46,115,108,105,99,101,40,84,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,116,61,65,43,104,43,116,43,77,125,114,101,116,117,114,110,32,117,40,116,41,125,114,101,116,117,114,110,32,103,61,118,111,105,100,32,48,61,61,61,103,63,54,58,47,91,103,112,114,115,93,47,46,116,101,115,116,40,95,41,63,77,97,116,104,46,109,97,120,40,49,44,77,97,116,104,46,109,105,110,40,50,49,44,103,41,41,58,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,48,44,103,41,41,44,77,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,43,34,34,125,44,77,125,114,101,116,117,114,110,123,102,111,114,109,97,116,58,108,44,102,111,114,109,97,116,80,114,101,102,105,120,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,108,40,40,40,116,61,79,97,40,116,41,41,46,116,121,112,101,61,34,102,34,44,116,41,41,44,114,61,51,42,77,97,116,104,46,109,97,120,40,45,56,44,77,97,116,104,46,109,105,110,40,56,44,77,97,116,104,46,102,108,111,111,114,40,113,97,40,110,41,47,51,41,41,41,44,105,61,77,97,116,104,46,112,111,119,40,49,48,44,45,114,41,44,111,61,88,97,91,56,43,114,47,51,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,40,105,42,116,41,43,111,125,125,125,125,102,117,110,99,116,105,111,110,32,71,97,40,110,41,123,114,101,116,117,114,110,32,72,97,61,86,97,40,110,41,44,116,46,102,111,114,109,97,116,61,72,97,46,102,111,114,109,97,116,44,116,46,102,111,114,109,97,116,80,114,101,102,105,120,61,72,97,46,102,111,114,109,97,116,80,114,101,102,105,120,44,72,97,125,102,117,110,99,116,105,111,110,32,36,97,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,48,44,45,113,97,40,77,97,116,104,46,97,98,115,40,116,41,41,41,125,102,117,110,99,116,105,111,110,32,87,97,40,116,44,110,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,48,44,51,42,77,97,116,104,46,109,97,120,40,45,56,44,77,97,116,104,46,109,105,110,40,56,44,77,97,116,104,46,102,108,111,111,114,40,113,97,40,110,41,47,51,41,41,41,45,113,97,40,77,97,116,104,46,97,98,115,40,116,41,41,41,125,102,117,110,99,116,105,111,110,32,90,97,40,116,44,110,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,97,98,115,40,116,41,44,110,61,77,97,116,104,46,97,98,115,40,110,41,45,116,44,77,97,116,104,46,109,97,120,40,48,44,113,97,40,110,41,45,113,97,40,116,41,41,43,49,125,102,117,110,99,116,105,111,110,32,81,97,40,41,123,114,101,116,117,114,110,32,110,101,119,32,75,97,125,102,117,110,99,116,105,111,110,32,75,97,40,41,123,116,104,105,115,46,114,101,115,101,116,40,41,125,71,97,40,123,100,101,99,105,109,97,108,58,34,46,34,44,116,104,111,117,115,97,110,100,115,58,34,44,34,44,103,114,111,117,112,105,110,103,58,91,51,93,44,99,117,114,114,101,110,99,121,58,91,34,36,34,44,34,34,93,44,109,105,110,117,115,58,34,45,34,125,41,44,75,97,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,75,97,44,114,101,115,101,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,61,116,104,105,115,46,116,61,48,125,44,97,100,100,58,102,117,110,99,116,105,111,110,40,116,41,123,116,117,40,74,97,44,116,44,116,104,105,115,46,116,41,44,116,117,40,116,104,105,115,44,74,97,46,115,44,116,104,105,115,46,115,41,44,116,104,105,115,46,115,63,116,104,105,115,46,116,43,61,74,97,46,116,58,116,104,105,115,46,115,61,74,97,46,116,125,44,118,97,108,117,101,79,102,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,125,125,59,118,97,114,32,74,97,61,110,101,119,32,75,97,59,102,117,110,99,116,105,111,110,32,116,117,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,115,61,110,43,101,44,105,61,114,45,110,44,111,61,114,45,105,59,116,46,116,61,110,45,111,43,40,101,45,105,41,125,118,97,114,32,110,117,61,49,101,45,54,44,101,117,61,49,101,45,49,50,44,114,117,61,77,97,116,104,46,80,73,44,105,117,61,114,117,47,50,44,111,117,61,114,117,47,52,44,97,117,61,50,42,114,117,44,117,117,61,49,56,48,47,114,117,44,99,117,61,114,117,47,49,56,48,44,102,117,61,77,97,116,104,46,97,98,115,44,115,117,61,77,97,116,104,46,97,116,97,110,44,108,117,61,77,97,116,104,46,97,116,97,110,50,44,104,117,61,77,97,116,104,46,99,111,115,44,100,117,61,77,97,116,104,46,99,101,105,108,44,112,117,61,77,97,116,104,46,101,120,112,44,118,117,61,77,97,116,104,46,108,111,103,44,103,117,61,77,97,116,104,46,112,111,119,44,121,117,61,77,97,116,104,46,115,105,110,44,95,117,61,77,97,116,104,46,115,105,103,110,124,124,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,62,48,63,49,58,116,60,48,63,45,49,58,48,125,44,98,117,61,77,97,116,104,46,115,113,114,116,44,109,117,61,77,97,116,104,46,116,97,110,59,102,117,110,99,116,105,111,110,32,120,117,40,116,41,123,114,101,116,117,114,110,32,116,62,49,63,48,58,116,60,45,49,63,114,117,58,77,97,116,104,46,97,99,111,115,40,116,41,125,102,117,110,99,116,105,111,110,32,119,117,40,116,41,123,114,101,116,117,114,110,32,116,62,49,63,105,117,58,116,60,45,49,63,45,105,117,58,77,97,116,104,46,97,115,105,110,40,116,41,125,102,117,110,99,116,105,111,110,32,77,117,40,116,41,123,114,101,116,117,114,110,40,116,61,121,117,40,116,47,50,41,41,42,116,125,102,117,110,99,116,105,111,110,32,78,117,40,41,123,125,102,117,110,99,116,105,111,110,32,84,117,40,116,44,110,41,123,116,38,38,83,117,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,46,116,121,112,101,41,38,38,83,117,91,116,46,116,121,112,101,93,40,116,44,110,41,125,118,97,114,32,65,117,61,123,70,101,97,116,117,114,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,84,117,40,116,46,103,101,111,109,101,116,114,121,44,110,41,125,44,70,101,97,116,117,114,101,67,111,108,108,101,99,116,105,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,102,101,97,116,117,114,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,84,117,40,101,91,114,93,46,103,101,111,109,101,116,114,121,44,110,41,125,125,44,83,117,61,123,83,112,104,101,114,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,110,46,115,112,104,101,114,101,40,41,125,44,80,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,61,116,46,99,111,111,114,100,105,110,97,116,101,115,44,110,46,112,111,105,110,116,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,125,44,77,117,108,116,105,80,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,99,111,111,114,100,105,110,97,116,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,116,61,101,91,114,93,44,110,46,112,111,105,110,116,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,125,44,76,105,110,101,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,107,117,40,116,46,99,111,111,114,100,105,110,97,116,101,115,44,110,44,48,41,125,44,77,117,108,116,105,76,105,110,101,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,99,111,111,114,100,105,110,97,116,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,107,117,40,101,91,114,93,44,110,44,48,41,125,44,80,111,108,121,103,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,69,117,40,116,46,99,111,111,114,100,105,110,97,116,101,115,44,110,41,125,44,77,117,108,116,105,80,111,108,121,103,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,99,111,111,114,100,105,110,97,116,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,69,117,40,101,91,114,93,44,110,41,125,44,71,101,111,109,101,116,114,121,67,111,108,108,101,99,116,105,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,103,101,111,109,101,116,114,105,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,84,117,40,101,91,114,93,44,110,41,125,125,59,102,117,110,99,116,105,111,110,32,107,117,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,61,45,49,44,111,61,116,46,108,101,110,103,116,104,45,101,59,102,111,114,40,110,46,108,105,110,101,83,116,97,114,116,40,41,59,43,43,105,60,111,59,41,114,61,116,91,105,93,44,110,46,112,111,105,110,116,40,114,91,48,93,44,114,91,49,93,44,114,91,50,93,41,59,110,46,108,105,110,101,69,110,100,40,41,125,102,117,110,99,116,105,111,110,32,69,117,40,116,44,110,41,123,118,97,114,32,101,61,45,49,44,114,61,116,46,108,101,110,103,116,104,59,102,111,114,40,110,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,59,43,43,101,60,114,59,41,107,117,40,116,91,101,93,44,110,44,49,41,59,110,46,112,111,108,121,103,111,110,69,110,100,40,41,125,102,117,110,99,116,105,111,110,32,67,117,40,116,44,110,41,123,116,38,38,65,117,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,46,116,121,112,101,41,63,65,117,91,116,46,116,121,112,101,93,40,116,44,110,41,58,84,117,40,116,44,110,41,125,118,97,114,32,80,117,44,122,117,44,82,117,44,68,117,44,113,117,44,76,117,61,81,97,40,41,44,85,117,61,81,97,40,41,44,79,117,61,123,112,111,105,110,116,58,78,117,44,108,105,110,101,83,116,97,114,116,58,78,117,44,108,105,110,101,69,110,100,58,78,117,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,76,117,46,114,101,115,101,116,40,41,44,79,117,46,108,105,110,101,83,116,97,114,116,61,66,117,44,79,117,46,108,105,110,101,69,110,100,61,70,117,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,43,76,117,59,85,117,46,97,100,100,40,116,60,48,63,97,117,43,116,58,116,41,44,116,104,105,115,46,108,105,110,101,83,116,97,114,116,61,116,104,105,115,46,108,105,110,101,69,110,100,61,116,104,105,115,46,112,111,105,110,116,61,78,117,125,44,115,112,104,101,114,101,58,102,117,110,99,116,105,111,110,40,41,123,85,117,46,97,100,100,40,97,117,41,125,125,59,102,117,110,99,116,105,111,110,32,66,117,40,41,123,79,117,46,112,111,105,110,116,61,89,117,125,102,117,110,99,116,105,111,110,32,70,117,40,41,123,73,117,40,80,117,44,122,117,41,125,102,117,110,99,116,105,111,110,32,89,117,40,116,44,110,41,123,79,117,46,112,111,105,110,116,61,73,117,44,80,117,61,116,44,122,117,61,110,44,82,117,61,116,42,61,99,117,44,68,117,61,104,117,40,110,61,40,110,42,61,99,117,41,47,50,43,111,117,41,44,113,117,61,121,117,40,110,41,125,102,117,110,99,116,105,111,110,32,73,117,40,116,44,110,41,123,118,97,114,32,101,61,40,116,42,61,99,117,41,45,82,117,44,114,61,101,62,61,48,63,49,58,45,49,44,105,61,114,42,101,44,111,61,104,117,40,110,61,40,110,42,61,99,117,41,47,50,43,111,117,41,44,97,61,121,117,40,110,41,44,117,61,113,117,42,97,44,99,61,68,117,42,111,43,117,42,104,117,40,105,41,44,102,61,117,42,114,42,121,117,40,105,41,59,76,117,46,97,100,100,40,108,117,40,102,44,99,41,41,44,82,117,61,116,44,68,117,61,111,44,113,117,61,97,125,102,117,110,99,116,105,111,110,32,72,117,40,116,41,123,114,101,116,117,114,110,91,108,117,40,116,91,49,93,44,116,91,48,93,41,44,119,117,40,116,91,50,93,41,93,125,102,117,110,99,116,105,111,110,32,106,117,40,116,41,123,118,97,114,32,110,61,116,91,48,93,44,101,61,116,91,49,93,44,114,61,104,117,40,101,41,59,114,101,116,117,114,110,91,114,42,104,117,40,110,41,44,114,42,121,117,40,110,41,44,121,117,40,101,41,93,125,102,117,110,99,116,105,111,110,32,88,117,40,116,44,110,41,123,114,101,116,117,114,110,32,116,91,48,93,42,110,91,48,93,43,116,91,49,93,42,110,91,49,93,43,116,91,50,93,42,110,91,50,93,125,102,117,110,99,116,105,111,110,32,86,117,40,116,44,110,41,123,114,101,116,117,114,110,91,116,91,49,93,42,110,91,50,93,45,116,91,50,93,42,110,91,49,93,44,116,91,50,93,42,110,91,48,93,45,116,91,48,93,42,110,91,50,93,44,116,91,48,93,42,110,91,49,93,45,116,91,49,93,42,110,91,48,93,93,125,102,117,110,99,116,105,111,110,32,71,117,40,116,44,110,41,123,116,91,48,93,43,61,110,91,48,93,44,116,91,49,93,43,61,110,91,49,93,44,116,91,50,93,43,61,110,91,50,93,125,102,117,110,99,116,105,111,110,32,36,117,40,116,44,110,41,123,114,101,116,117,114,110,91,116,91,48,93,42,110,44,116,91,49,93,42,110,44,116,91,50,93,42,110,93,125,102,117,110,99,116,105,111,110,32,87,117,40,116,41,123,118,97,114,32,110,61,98,117,40,116,91,48,93,42,116,91,48,93,43,116,91,49,93,42,116,91,49,93,43,116,91,50,93,42,116,91,50,93,41,59,116,91,48,93,47,61,110,44,116,91,49,93,47,61,110,44,116,91,50,93,47,61,110,125,118,97,114,32,90,117,44,81,117,44,75,117,44,74,117,44,116,99,44,110,99,44,101,99,44,114,99,44,105,99,44,111,99,44,97,99,44,117,99,44,99,99,44,102,99,44,115,99,44,108,99,44,104,99,44,100,99,44,112,99,44,118,99,44,103,99,44,121,99,44,95,99,44,98,99,44,109,99,44,120,99,44,119,99,61,81,97,40,41,44,77,99,61,123,112,111,105,110,116,58,78,99,44,108,105,110,101,83,116,97,114,116,58,65,99,44,108,105,110,101,69,110,100,58,83,99,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,77,99,46,112,111,105,110,116,61,107,99,44,77,99,46,108,105,110,101,83,116,97,114,116,61,69,99,44,77,99,46,108,105,110,101,69,110,100,61,67,99,44,119,99,46,114,101,115,101,116,40,41,44,79,117,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,79,117,46,112,111,108,121,103,111,110,69,110,100,40,41,44,77,99,46,112,111,105,110,116,61,78,99,44,77,99,46,108,105,110,101,83,116,97,114,116,61,65,99,44,77,99,46,108,105,110,101,69,110,100,61,83,99,44,76,117,60,48,63,40,90,117,61,45,40,75,117,61,49,56,48,41,44,81,117,61,45,40,74,117,61,57,48,41,41,58,119,99,62,110,117,63,74,117,61,57,48,58,119,99,60,45,110,117,38,38,40,81,117,61,45,57,48,41,44,111,99,91,48,93,61,90,117,44,111,99,91,49,93,61,75,117,125,44,115,112,104,101,114,101,58,102,117,110,99,116,105,111,110,40,41,123,90,117,61,45,40,75,117,61,49,56,48,41,44,81,117,61,45,40,74,117,61,57,48,41,125,125,59,102,117,110,99,116,105,111,110,32,78,99,40,116,44,110,41,123,105,99,46,112,117,115,104,40,111,99,61,91,90,117,61,116,44,75,117,61,116,93,41,44,110,60,81,117,38,38,40,81,117,61,110,41,44,110,62,74,117,38,38,40,74,117,61,110,41,125,102,117,110,99,116,105,111,110,32,84,99,40,116,44,110,41,123,118,97,114,32,101,61,106,117,40,91,116,42,99,117,44,110,42,99,117,93,41,59,105,102,40,114,99,41,123,118,97,114,32,114,61,86,117,40,114,99,44,101,41,44,105,61,86,117,40,91,114,91,49,93,44,45,114,91,48,93,44,48,93,44,114,41,59,87,117,40,105,41,44,105,61,72,117,40,105,41,59,118,97,114,32,111,44,97,61,116,45,116,99,44,117,61,97,62,48,63,49,58,45,49,44,99,61,105,91,48,93,42,117,117,42,117,44,102,61,102,117,40,97,41,62,49,56,48,59,102,94,40,117,42,116,99,60,99,38,38,99,60,117,42,116,41,63,40,111,61,105,91,49,93,42,117,117,41,62,74,117,38,38,40,74,117,61,111,41,58,102,94,40,117,42,116,99,60,40,99,61,40,99,43,51,54,48,41,37,51,54,48,45,49,56,48,41,38,38,99,60,117,42,116,41,63,40,111,61,45,105,91,49,93,42,117,117,41,60,81,117,38,38,40,81,117,61,111,41,58,40,110,60,81,117,38,38,40,81,117,61,110,41,44,110,62,74,117,38,38,40,74,117,61,110,41,41,44,102,63,116,60,116,99,63,80,99,40,90,117,44,116,41,62,80,99,40,90,117,44,75,117,41,38,38,40,75,117,61,116,41,58,80,99,40,116,44,75,117,41,62,80,99,40,90,117,44,75,117,41,38,38,40,90,117,61,116,41,58,75,117,62,61,90,117,63,40,116,60,90,117,38,38,40,90,117,61,116,41,44,116,62,75,117,38,38,40,75,117,61,116,41,41,58,116,62,116,99,63,80,99,40,90,117,44,116,41,62,80,99,40,90,117,44,75,117,41,38,38,40,75,117,61,116,41,58,80,99,40,116,44,75,117,41,62,80,99,40,90,117,44,75,117,41,38,38,40,90,117,61,116,41,125,101,108,115,101,32,105,99,46,112,117,115,104,40,111,99,61,91,90,117,61,116,44,75,117,61,116,93,41,59,110,60,81,117,38,38,40,81,117,61,110,41,44,110,62,74,117,38,38,40,74,117,61,110,41,44,114,99,61,101,44,116,99,61,116,125,102,117,110,99,116,105,111,110,32,65,99,40,41,123,77,99,46,112,111,105,110,116,61,84,99,125,102,117,110,99,116,105,111,110,32,83,99,40,41,123,111,99,91,48,93,61,90,117,44,111,99,91,49,93,61,75,117,44,77,99,46,112,111,105,110,116,61,78,99,44,114,99,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,107,99,40,116,44,110,41,123,105,102,40,114,99,41,123,118,97,114,32,101,61,116,45,116,99,59,119,99,46,97,100,100,40,102,117,40,101,41,62,49,56,48,63,101,43,40,101,62,48,63,51,54,48,58,45,51,54,48,41,58,101,41,125,101,108,115,101,32,110,99,61,116,44,101,99,61,110,59,79,117,46,112,111,105,110,116,40,116,44,110,41,44,84,99,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,69,99,40,41,123,79,117,46,108,105,110,101,83,116,97,114,116,40,41,125,102,117,110,99,116,105,111,110,32,67,99,40,41,123,107,99,40,110,99,44,101,99,41,44,79,117,46,108,105,110,101,69,110,100,40,41,44,102,117,40,119,99,41,62,110,117,38,38,40,90,117,61,45,40,75,117,61,49,56,48,41,41,44,111,99,91,48,93,61,90,117,44,111,99,91,49,93,61,75,117,44,114,99,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,80,99,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,61,116,41,60,48,63,110,43,51,54,48,58,110,125,102,117,110,99,116,105,111,110,32,122,99,40,116,44,110,41,123,114,101,116,117,114,110,32,116,91,48,93,45,110,91,48,93,125,102,117,110,99,116,105,111,110,32,82,99,40,116,44,110,41,123,114,101,116,117,114,110,32,116,91,48,93,60,61,116,91,49,93,63,116,91,48,93,60,61,110,38,38,110,60,61,116,91,49,93,58,110,60,116,91,48,93,124,124,116,91,49,93,60,110,125,118,97,114,32,68,99,61,123,115,112,104,101,114,101,58,78,117,44,112,111,105,110,116,58,113,99,44,108,105,110,101,83,116,97,114,116,58,85,99,44,108,105,110,101,69,110,100,58,70,99,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,68,99,46,108,105,110,101,83,116,97,114,116,61,89,99,44,68,99,46,108,105,110,101,69,110,100,61,73,99,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,68,99,46,108,105,110,101,83,116,97,114,116,61,85,99,44,68,99,46,108,105,110,101,69,110,100,61,70,99,125,125,59,102,117,110,99,116,105,111,110,32,113,99,40,116,44,110,41,123,116,42,61,99,117,59,118,97,114,32,101,61,104,117,40,110,42,61,99,117,41,59,76,99,40,101,42,104,117,40,116,41,44,101,42,121,117,40,116,41,44,121,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,76,99,40,116,44,110,44,101,41,123,99,99,43,61,40,116,45,99,99,41,47,43,43,97,99,44,102,99,43,61,40,110,45,102,99,41,47,97,99,44,115,99,43,61,40,101,45,115,99,41,47,97,99,125,102,117,110,99,116,105,111,110,32,85,99,40,41,123,68,99,46,112,111,105,110,116,61,79,99,125,102,117,110,99,116,105,111,110,32,79,99,40,116,44,110,41,123,116,42,61,99,117,59,118,97,114,32,101,61,104,117,40,110,42,61,99,117,41,59,98,99,61,101,42,104,117,40,116,41,44,109,99,61,101,42,121,117,40,116,41,44,120,99,61,121,117,40,110,41,44,68,99,46,112,111,105,110,116,61,66,99,44,76,99,40,98,99,44,109,99,44,120,99,41,125,102,117,110,99,116,105,111,110,32,66,99,40,116,44,110,41,123,116,42,61,99,117,59,118,97,114,32,101,61,104,117,40,110,42,61,99,117,41,44,114,61,101,42,104,117,40,116,41,44,105,61,101,42,121,117,40,116,41,44,111,61,121,117,40,110,41,44,97,61,108,117,40,98,117,40,40,97,61,109,99,42,111,45,120,99,42,105,41,42,97,43,40,97,61,120,99,42,114,45,98,99,42,111,41,42,97,43,40,97,61,98,99,42,105,45,109,99,42,114,41,42,97,41,44,98,99,42,114,43,109,99,42,105,43,120,99,42,111,41,59,117,99,43,61,97,44,108,99,43,61,97,42,40,98,99,43,40,98,99,61,114,41,41,44,104,99,43,61,97,42,40,109,99,43,40,109,99,61,105,41,41,44,100,99,43,61,97,42,40,120,99,43,40,120,99,61,111,41,41,44,76,99,40,98,99,44,109,99,44,120,99,41,125,102,117,110,99,116,105,111,110,32,70,99,40,41,123,68,99,46,112,111,105,110,116,61,113,99,125,102,117,110,99,116,105,111,110,32,89,99,40,41,123,68,99,46,112,111,105,110,116,61,72,99,125,102,117,110,99,116,105,111,110,32,73,99,40,41,123,106,99,40,121,99,44,95,99,41,44,68,99,46,112,111,105,110,116,61,113,99,125,102,117,110,99,116,105,111,110,32,72,99,40,116,44,110,41,123,121,99,61,116,44,95,99,61,110,44,116,42,61,99,117,44,110,42,61,99,117,44,68,99,46,112,111,105,110,116,61,106,99,59,118,97,114,32,101,61,104,117,40,110,41,59,98,99,61,101,42,104,117,40,116,41,44,109,99,61,101,42,121,117,40,116,41,44,120,99,61,121,117,40,110,41,44,76,99,40,98,99,44,109,99,44,120,99,41,125,102,117,110,99,116,105,111,110,32,106,99,40,116,44,110,41,123,116,42,61,99,117,59,118,97,114,32,101,61,104,117,40,110,42,61,99,117,41,44,114,61,101,42,104,117,40,116,41,44,105,61,101,42,121,117,40,116,41,44,111,61,121,117,40,110,41,44,97,61,109,99,42,111,45,120,99,42,105,44,117,61,120,99,42,114,45,98,99,42,111,44,99,61,98,99,42,105,45,109,99,42,114,44,102,61,98,117,40,97,42,97,43,117,42,117,43,99,42,99,41,44,115,61,119,117,40,102,41,44,108,61,102,38,38,45,115,47,102,59,112,99,43,61,108,42,97,44,118,99,43,61,108,42,117,44,103,99,43,61,108,42,99,44,117,99,43,61,115,44,108,99,43,61,115,42,40,98,99,43,40,98,99,61,114,41,41,44,104,99,43,61,115,42,40,109,99,43,40,109,99,61,105,41,41,44,100,99,43,61,115,42,40,120,99,43,40,120,99,61,111,41,41,44,76,99,40,98,99,44,109,99,44,120,99,41,125,102,117,110,99,116,105,111,110,32,88,99,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,86,99,40,116,44,110,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,114,41,123,114,101,116,117,114,110,32,101,61,116,40,101,44,114,41,44,110,40,101,91,48,93,44,101,91,49,93,41,125,114,101,116,117,114,110,32,116,46,105,110,118,101,114,116,38,38,110,46,105,110,118,101,114,116,38,38,40,101,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,101,44,114,41,123,114,101,116,117,114,110,40,101,61,110,46,105,110,118,101,114,116,40,101,44,114,41,41,38,38,116,46,105,110,118,101,114,116,40,101,91,48,93,44,101,91,49,93,41,125,41,44,101,125,102,117,110,99,116,105,111,110,32,71,99,40,116,44,110,41,123,114,101,116,117,114,110,91,102,117,40,116,41,62,114,117,63,116,43,77,97,116,104,46,114,111,117,110,100,40,45,116,47,97,117,41,42,97,117,58,116,44,110,93,125,102,117,110,99,116,105,111,110,32,36,99,40,116,44,110,44,101,41,123,114,101,116,117,114,110,40,116,37,61,97,117,41,63,110,124,124,101,63,86,99,40,90,99,40,116,41,44,81,99,40,110,44,101,41,41,58,90,99,40,116,41,58,110,124,124,101,63,81,99,40,110,44,101,41,58,71,99,125,102,117,110,99,116,105,111,110,32,87,99,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,41,123,114,101,116,117,114,110,91,40,110,43,61,116,41,62,114,117,63,110,45,97,117,58,110,60,45,114,117,63,110,43,97,117,58,110,44,101,93,125,125,102,117,110,99,116,105,111,110,32,90,99,40,116,41,123,118,97,114,32,110,61,87,99,40,116,41,59,114,101,116,117,114,110,32,110,46,105,110,118,101,114,116,61,87,99,40,45,116,41,44,110,125,102,117,110,99,116,105,111,110,32,81,99,40,116,44,110,41,123,118,97,114,32,101,61,104,117,40,116,41,44,114,61,121,117,40,116,41,44,105,61,104,117,40,110,41,44,111,61,121,117,40,110,41,59,102,117,110,99,116,105,111,110,32,97,40,116,44,110,41,123,118,97,114,32,97,61,104,117,40,110,41,44,117,61,104,117,40,116,41,42,97,44,99,61,121,117,40,116,41,42,97,44,102,61,121,117,40,110,41,44,115,61,102,42,101,43,117,42,114,59,114,101,116,117,114,110,91,108,117,40,99,42,105,45,115,42,111,44,117,42,101,45,102,42,114,41,44,119,117,40,115,42,105,43,99,42,111,41,93,125,114,101,116,117,114,110,32,97,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,97,61,104,117,40,110,41,44,117,61,104,117,40,116,41,42,97,44,99,61,121,117,40,116,41,42,97,44,102,61,121,117,40,110,41,44,115,61,102,42,105,45,99,42,111,59,114,101,116,117,114,110,91,108,117,40,99,42,105,43,102,42,111,44,117,42,101,43,115,42,114,41,44,119,117,40,115,42,101,45,117,42,114,41,93,125,44,97,125,102,117,110,99,116,105,111,110,32,75,99,40,116,41,123,102,117,110,99,116,105,111,110,32,110,40,110,41,123,114,101,116,117,114,110,40,110,61,116,40,110,91,48,93,42,99,117,44,110,91,49,93,42,99,117,41,41,91,48,93,42,61,117,117,44,110,91,49,93,42,61,117,117,44,110,125,114,101,116,117,114,110,32,116,61,36,99,40,116,91,48,93,42,99,117,44,116,91,49,93,42,99,117,44,116,46,108,101,110,103,116,104,62,50,63,116,91,50,93,42,99,117,58,48,41,44,110,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,61,116,46,105,110,118,101,114,116,40,110,91,48,93,42,99,117,44,110,91,49,93,42,99,117,41,41,91,48,93,42,61,117,117,44,110,91,49,93,42,61,117,117,44,110,125,44,110,125,102,117,110,99,116,105,111,110,32,74,99,40,116,44,110,44,101,44,114,44,105,44,111,41,123,105,102,40,101,41,123,118,97,114,32,97,61,104,117,40,110,41,44,117,61,121,117,40,110,41,44,99,61,114,42,101,59,110,117,108,108,61,61,105,63,40,105,61,110,43,114,42,97,117,44,111,61,110,45,99,47,50,41,58,40,105,61,116,102,40,97,44,105,41,44,111,61,116,102,40,97,44,111,41,44,40,114,62,48,63,105,60,111,58,105,62,111,41,38,38,40,105,43,61,114,42,97,117,41,41,59,102,111,114,40,118,97,114,32,102,44,115,61,105,59,114,62,48,63,115,62,111,58,115,60,111,59,115,45,61,99,41,102,61,72,117,40,91,97,44,45,117,42,104,117,40,115,41,44,45,117,42,121,117,40,115,41,93,41,44,116,46,112,111,105,110,116,40,102,91,48,93,44,102,91,49,93,41,125,125,102,117,110,99,116,105,111,110,32,116,102,40,116,44,110,41,123,40,110,61,106,117,40,110,41,41,91,48,93,45,61,116,44,87,117,40,110,41,59,118,97,114,32,101,61,120,117,40,45,110,91,49,93,41,59,114,101,116,117,114,110,40,40,45,110,91,50,93,60,48,63,45,101,58,101,41,43,97,117,45,110,117,41,37,97,117,125,102,117,110,99,116,105,111,110,32,110,102,40,41,123,118,97,114,32,116,44,110,61,91,93,59,114,101,116,117,114,110,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,110,44,101,41,123,116,46,112,117,115,104,40,91,110,44,101,93,41,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,110,46,112,117,115,104,40,116,61,91,93,41,125,44,108,105,110,101,69,110,100,58,78,117,44,114,101,106,111,105,110,58,102,117,110,99,116,105,111,110,40,41,123,110,46,108,101,110,103,116,104,62,49,38,38,110,46,112,117,115,104,40,110,46,112,111,112,40,41,46,99,111,110,99,97,116,40,110,46,115,104,105,102,116,40,41,41,41,125,44,114,101,115,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,59,114,101,116,117,114,110,32,110,61,91,93,44,116,61,110,117,108,108,44,101,125,125,125,102,117,110,99,116,105,111,110,32,101,102,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,40,116,91,48,93,45,110,91,48,93,41,60,110,117,38,38,102,117,40,116,91,49,93,45,110,91,49,93,41,60,110,117,125,102,117,110,99,116,105,111,110,32,114,102,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,120,61,116,44,116,104,105,115,46,122,61,110,44,116,104,105,115,46,111,61,101,44,116,104,105,115,46,101,61,114,44,116,104,105,115,46,118,61,33,49,44,116,104,105,115,46,110,61,116,104,105,115,46,112,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,111,102,40,116,44,110,44,101,44,114,44,105,41,123,118,97,114,32,111,44,97,44,117,61,91,93,44,99,61,91,93,59,105,102,40,116,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,40,40,110,61,116,46,108,101,110,103,116,104,45,49,41,60,61,48,41,41,123,118,97,114,32,110,44,101,44,114,61,116,91,48,93,44,97,61,116,91,110,93,59,105,102,40,101,102,40,114,44,97,41,41,123,102,111,114,40,105,46,108,105,110,101,83,116,97,114,116,40,41,44,111,61,48,59,111,60,110,59,43,43,111,41,105,46,112,111,105,110,116,40,40,114,61,116,91,111,93,41,91,48,93,44,114,91,49,93,41,59,105,46,108,105,110,101,69,110,100,40,41,125,101,108,115,101,32,117,46,112,117,115,104,40,101,61,110,101,119,32,114,102,40,114,44,116,44,110,117,108,108,44,33,48,41,41,44,99,46,112,117,115,104,40,101,46,111,61,110,101,119,32,114,102,40,114,44,110,117,108,108,44,101,44,33,49,41,41,44,117,46,112,117,115,104,40,101,61,110,101,119,32,114,102,40,97,44,116,44,110,117,108,108,44,33,49,41,41,44,99,46,112,117,115,104,40,101,46,111,61,110,101,119,32,114,102,40,97,44,110,117,108,108,44,101,44,33,48,41,41,125,125,41,44,117,46,108,101,110,103,116,104,41,123,102,111,114,40,99,46,115,111,114,116,40,110,41,44,97,102,40,117,41,44,97,102,40,99,41,44,111,61,48,44,97,61,99,46,108,101,110,103,116,104,59,111,60,97,59,43,43,111,41,99,91,111,93,46,101,61,101,61,33,101,59,102,111,114,40,118,97,114,32,102,44,115,44,108,61,117,91,48,93,59,59,41,123,102,111,114,40,118,97,114,32,104,61,108,44,100,61,33,48,59,104,46,118,59,41,105,102,40,40,104,61,104,46,110,41,61,61,61,108,41,114,101,116,117,114,110,59,102,61,104,46,122,44,105,46,108,105,110,101,83,116,97,114,116,40,41,59,100,111,123,105,102,40,104,46,118,61,104,46,111,46,118,61,33,48,44,104,46,101,41,123,105,102,40,100,41,102,111,114,40,111,61,48,44,97,61,102,46,108,101,110,103,116,104,59,111,60,97,59,43,43,111,41,105,46,112,111,105,110,116,40,40,115,61,102,91,111,93,41,91,48,93,44,115,91,49,93,41,59,101,108,115,101,32,114,40,104,46,120,44,104,46,110,46,120,44,49,44,105,41,59,104,61,104,46,110,125,101,108,115,101,123,105,102,40,100,41,102,111,114,40,102,61,104,46,112,46,122,44,111,61,102,46,108,101,110,103,116,104,45,49,59,111,62,61,48,59,45,45,111,41,105,46,112,111,105,110,116,40,40,115,61,102,91,111,93,41,91,48,93,44,115,91,49,93,41,59,101,108,115,101,32,114,40,104,46,120,44,104,46,112,46,120,44,45,49,44,105,41,59,104,61,104,46,112,125,102,61,40,104,61,104,46,111,41,46,122,44,100,61,33,100,125,119,104,105,108,101,40,33,104,46,118,41,59,105,46,108,105,110,101,69,110,100,40,41,125,125,125,102,117,110,99,116,105,111,110,32,97,102,40,116,41,123,105,102,40,110,61,116,46,108,101,110,103,116,104,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,61,48,44,105,61,116,91,48,93,59,43,43,114,60,110,59,41,105,46,110,61,101,61,116,91,114,93,44,101,46,112,61,105,44,105,61,101,59,105,46,110,61,101,61,116,91,48,93,44,101,46,112,61,105,125,125,71,99,46,105,110,118,101,114,116,61,71,99,59,118,97,114,32,117,102,61,81,97,40,41,59,102,117,110,99,116,105,111,110,32,99,102,40,116,41,123,114,101,116,117,114,110,32,102,117,40,116,91,48,93,41,60,61,114,117,63,116,91,48,93,58,95,117,40,116,91,48,93,41,42,40,40,102,117,40,116,91,48,93,41,43,114,117,41,37,97,117,45,114,117,41,125,102,117,110,99,116,105,111,110,32,102,102,40,116,44,110,41,123,118,97,114,32,101,61,99,102,40,110,41,44,114,61,110,91,49,93,44,105,61,121,117,40,114,41,44,111,61,91,121,117,40,101,41,44,45,104,117,40,101,41,44,48,93,44,97,61,48,44,117,61,48,59,117,102,46,114,101,115,101,116,40,41,44,49,61,61,61,105,63,114,61,105,117,43,110,117,58,45,49,61,61,61,105,38,38,40,114,61,45,105,117,45,110,117,41,59,102,111,114,40,118,97,114,32,99,61,48,44,102,61,116,46,108,101,110,103,116,104,59,99,60,102,59,43,43,99,41,105,102,40,108,61,40,115,61,116,91,99,93,41,46,108,101,110,103,116,104,41,102,111,114,40,118,97,114,32,115,44,108,44,104,61,115,91,108,45,49,93,44,100,61,99,102,40,104,41,44,112,61,104,91,49,93,47,50,43,111,117,44,118,61,121,117,40,112,41,44,103,61,104,117,40,112,41,44,121,61,48,59,121,60,108,59,43,43,121,44,100,61,98,44,118,61,120,44,103,61,119,44,104,61,95,41,123,118,97,114,32,95,61,115,91,121,93,44,98,61,99,102,40,95,41,44,109,61,95,91,49,93,47,50,43,111,117,44,120,61,121,117,40,109,41,44,119,61,104,117,40,109,41,44,77,61,98,45,100,44,78,61,77,62,61,48,63,49,58,45,49,44,84,61,78,42,77,44,65,61,84,62,114,117,44,83,61,118,42,120,59,105,102,40,117,102,46,97,100,100,40,108,117,40,83,42,78,42,121,117,40,84,41,44,103,42,119,43,83,42,104,117,40,84,41,41,41,44,97,43,61,65,63,77,43,78,42,97,117,58,77,44,65,94,100,62,61,101,94,98,62,61,101,41,123,118,97,114,32,107,61,86,117,40,106,117,40,104,41,44,106,117,40,95,41,41,59,87,117,40,107,41,59,118,97,114,32,69,61,86,117,40,111,44,107,41,59,87,117,40,69,41,59,118,97,114,32,67,61,40,65,94,77,62,61,48,63,45,49,58,49,41,42,119,117,40,69,91,50,93,41,59,40,114,62,67,124,124,114,61,61,61,67,38,38,40,107,91,48,93,124,124,107,91,49,93,41,41,38,38,40,117,43,61,65,94,77,62,61,48,63,49,58,45,49,41,125,125,114,101,116,117,114,110,40,97,60,45,110,117,124,124,97,60,110,117,38,38,117,102,60,45,110,117,41,94,49,38,117,125,102,117,110,99,116,105,111,110,32,115,102,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,105,41,123,118,97,114,32,111,44,97,44,117,44,99,61,110,40,105,41,44,102,61,110,102,40,41,44,115,61,110,40,102,41,44,108,61,33,49,44,104,61,123,112,111,105,110,116,58,100,44,108,105,110,101,83,116,97,114,116,58,118,44,108,105,110,101,69,110,100,58,103,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,104,46,112,111,105,110,116,61,121,44,104,46,108,105,110,101,83,116,97,114,116,61,95,44,104,46,108,105,110,101,69,110,100,61,98,44,97,61,91,93,44,111,61,91,93,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,104,46,112,111,105,110,116,61,100,44,104,46,108,105,110,101,83,116,97,114,116,61,118,44,104,46,108,105,110,101,69,110,100,61,103,44,97,61,65,40,97,41,59,118,97,114,32,116,61,102,102,40,111,44,114,41,59,97,46,108,101,110,103,116,104,63,40,108,124,124,40,105,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,44,108,61,33,48,41,44,111,102,40,97,44,104,102,44,116,44,101,44,105,41,41,58,116,38,38,40,108,124,124,40,105,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,44,108,61,33,48,41,44,105,46,108,105,110,101,83,116,97,114,116,40,41,44,101,40,110,117,108,108,44,110,117,108,108,44,49,44,105,41,44,105,46,108,105,110,101,69,110,100,40,41,41,44,108,38,38,40,105,46,112,111,108,121,103,111,110,69,110,100,40,41,44,108,61,33,49,41,44,97,61,111,61,110,117,108,108,125,44,115,112,104,101,114,101,58,102,117,110,99,116,105,111,110,40,41,123,105,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,44,105,46,108,105,110,101,83,116,97,114,116,40,41,44,101,40,110,117,108,108,44,110,117,108,108,44,49,44,105,41,44,105,46,108,105,110,101,69,110,100,40,41,44,105,46,112,111,108,121,103,111,110,69,110,100,40,41,125,125,59,102,117,110,99,116,105,111,110,32,100,40,110,44,101,41,123,116,40,110,44,101,41,38,38,105,46,112,111,105,110,116,40,110,44,101,41,125,102,117,110,99,116,105,111,110,32,112,40,116,44,110,41,123,99,46,112,111,105,110,116,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,118,40,41,123,104,46,112,111,105,110,116,61,112,44,99,46,108,105,110,101,83,116,97,114,116,40,41,125,102,117,110,99,116,105,111,110,32,103,40,41,123,104,46,112,111,105,110,116,61,100,44,99,46,108,105,110,101,69,110,100,40,41,125,102,117,110,99,116,105,111,110,32,121,40,116,44,110,41,123,117,46,112,117,115,104,40,91,116,44,110,93,41,44,115,46,112,111,105,110,116,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,95,40,41,123,115,46,108,105,110,101,83,116,97,114,116,40,41,44,117,61,91,93,125,102,117,110,99,116,105,111,110,32,98,40,41,123,121,40,117,91,48,93,91,48,93,44,117,91,48,93,91,49,93,41,44,115,46,108,105,110,101,69,110,100,40,41,59,118,97,114,32,116,44,110,44,101,44,114,44,99,61,115,46,99,108,101,97,110,40,41,44,104,61,102,46,114,101,115,117,108,116,40,41,44,100,61,104,46,108,101,110,103,116,104,59,105,102,40,117,46,112,111,112,40,41,44,111,46,112,117,115,104,40,117,41,44,117,61,110,117,108,108,44,100,41,105,102,40,49,38,99,41,123,105,102,40,40,110,61,40,101,61,104,91,48,93,41,46,108,101,110,103,116,104,45,49,41,62,48,41,123,102,111,114,40,108,124,124,40,105,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,44,108,61,33,48,41,44,105,46,108,105,110,101,83,116,97,114,116,40,41,44,116,61,48,59,116,60,110,59,43,43,116,41,105,46,112,111,105,110,116,40,40,114,61,101,91,116,93,41,91,48,93,44,114,91,49,93,41,59,105,46,108,105,110,101,69,110,100,40,41,125,125,101,108,115,101,32,100,62,49,38,38,50,38,99,38,38,104,46,112,117,115,104,40,104,46,112,111,112,40,41,46,99,111,110,99,97,116,40,104,46,115,104,105,102,116,40,41,41,41,44,97,46,112,117,115,104,40,104,46,102,105,108,116,101,114,40,108,102,41,41,125,114,101,116,117,114,110,32,104,125,125,102,117,110,99,116,105,111,110,32,108,102,40,116,41,123,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,62,49,125,102,117,110,99,116,105,111,110,32,104,102,40,116,44,110,41,123,114,101,116,117,114,110,40,40,116,61,116,46,120,41,91,48,93,60,48,63,116,91,49,93,45,105,117,45,110,117,58,105,117,45,116,91,49,93,41,45,40,40,110,61,110,46,120,41,91,48,93,60,48,63,110,91,49,93,45,105,117,45,110,117,58,105,117,45,110,91,49,93,41,125,118,97,114,32,100,102,61,115,102,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,61,78,97,78,44,114,61,78,97,78,44,105,61,78,97,78,59,114,101,116,117,114,110,123,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,46,108,105,110,101,83,116,97,114,116,40,41,44,110,61,49,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,111,44,97,41,123,118,97,114,32,117,61,111,62,48,63,114,117,58,45,114,117,44,99,61,102,117,40,111,45,101,41,59,102,117,40,99,45,114,117,41,60,110,117,63,40,116,46,112,111,105,110,116,40,101,44,114,61,40,114,43,97,41,47,50,62,48,63,105,117,58,45,105,117,41,44,116,46,112,111,105,110,116,40,105,44,114,41,44,116,46,108,105,110,101,69,110,100,40,41,44,116,46,108,105,110,101,83,116,97,114,116,40,41,44,116,46,112,111,105,110,116,40,117,44,114,41,44,116,46,112,111,105,110,116,40,111,44,114,41,44,110,61,48,41,58,105,33,61,61,117,38,38,99,62,61,114,117,38,38,40,102,117,40,101,45,105,41,60,110,117,38,38,40,101,45,61,105,42,110,117,41,44,102,117,40,111,45,117,41,60,110,117,38,38,40,111,45,61,117,42,110,117,41,44,114,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,118,97,114,32,105,44,111,44,97,61,121,117,40,116,45,101,41,59,114,101,116,117,114,110,32,102,117,40,97,41,62,110,117,63,115,117,40,40,121,117,40,110,41,42,40,111,61,104,117,40,114,41,41,42,121,117,40,101,41,45,121,117,40,114,41,42,40,105,61,104,117,40,110,41,41,42,121,117,40,116,41,41,47,40,105,42,111,42,97,41,41,58,40,110,43,114,41,47,50,125,40,101,44,114,44,111,44,97,41,44,116,46,112,111,105,110,116,40,105,44,114,41,44,116,46,108,105,110,101,69,110,100,40,41,44,116,46,108,105,110,101,83,116,97,114,116,40,41,44,116,46,112,111,105,110,116,40,117,44,114,41,44,110,61,48,41,44,116,46,112,111,105,110,116,40,101,61,111,44,114,61,97,41,44,105,61,117,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,46,108,105,110,101,69,110,100,40,41,44,101,61,114,61,78,97,78,125,44,99,108,101,97,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,50,45,110,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,118,97,114,32,105,59,105,102,40,110,117,108,108,61,61,116,41,105,61,101,42,105,117,44,114,46,112,111,105,110,116,40,45,114,117,44,105,41,44,114,46,112,111,105,110,116,40,48,44,105,41,44,114,46,112,111,105,110,116,40,114,117,44,105,41,44,114,46,112,111,105,110,116,40,114,117,44,48,41,44,114,46,112,111,105,110,116,40,114,117,44,45,105,41,44,114,46,112,111,105,110,116,40,48,44,45,105,41,44,114,46,112,111,105,110,116,40,45,114,117,44,45,105,41,44,114,46,112,111,105,110,116,40,45,114,117,44,48,41,44,114,46,112,111,105,110,116,40,45,114,117,44,105,41,59,101,108,115,101,32,105,102,40,102,117,40,116,91,48,93,45,110,91,48,93,41,62,110,117,41,123,118,97,114,32,111,61,116,91,48,93,60,110,91,48,93,63,114,117,58,45,114,117,59,105,61,101,42,111,47,50,44,114,46,112,111,105,110,116,40,45,111,44,105,41,44,114,46,112,111,105,110,116,40,48,44,105,41,44,114,46,112,111,105,110,116,40,111,44,105,41,125,101,108,115,101,32,114,46,112,111,105,110,116,40,110,91,48,93,44,110,91,49,93,41,125,44,91,45,114,117,44,45,105,117,93,41,59,102,117,110,99,116,105,111,110,32,112,102,40,116,41,123,118,97,114,32,110,61,104,117,40,116,41,44,101,61,54,42,99,117,44,114,61,110,62,48,44,105,61,102,117,40,110,41,62,110,117,59,102,117,110,99,116,105,111,110,32,111,40,116,44,101,41,123,114,101,116,117,114,110,32,104,117,40,116,41,42,104,117,40,101,41,62,110,125,102,117,110,99,116,105,111,110,32,97,40,116,44,101,44,114,41,123,118,97,114,32,105,61,91,49,44,48,44,48,93,44,111,61,86,117,40,106,117,40,116,41,44,106,117,40,101,41,41,44,97,61,88,117,40,111,44,111,41,44,117,61,111,91,48,93,44,99,61,97,45,117,42,117,59,105,102,40,33,99,41,114,101,116,117,114,110,33,114,38,38,116,59,118,97,114,32,102,61,110,42,97,47,99,44,115,61,45,110,42,117,47,99,44,108,61,86,117,40,105,44,111,41,44,104,61,36,117,40,105,44,102,41,59,71,117,40,104,44,36,117,40,111,44,115,41,41,59,118,97,114,32,100,61,108,44,112,61,88,117,40,104,44,100,41,44,118,61,88,117,40,100,44,100,41,44,103,61,112,42,112,45,118,42,40,88,117,40,104,44,104,41,45,49,41,59,105,102,40,33,40,103,60,48,41,41,123,118,97,114,32,121,61,98,117,40,103,41,44,95,61,36,117,40,100,44,40,45,112,45,121,41,47,118,41,59,105,102,40,71,117,40,95,44,104,41,44,95,61,72,117,40,95,41,44,33,114,41,114,101,116,117,114,110,32,95,59,118,97,114,32,98,44,109,61,116,91,48,93,44,120,61,101,91,48,93,44,119,61,116,91,49,93,44,77,61,101,91,49,93,59,120,60,109,38,38,40,98,61,109,44,109,61,120,44,120,61,98,41,59,118,97,114,32,78,61,120,45,109,44,84,61,102,117,40,78,45,114,117,41,60,110,117,59,105,102,40,33,84,38,38,77,60,119,38,38,40,98,61,119,44,119,61,77,44,77,61,98,41,44,84,124,124,78,60,110,117,63,84,63,119,43,77,62,48,94,95,91,49,93,60,40,102,117,40,95,91,48,93,45,109,41,60,110,117,63,119,58,77,41,58,119,60,61,95,91,49,93,38,38,95,91,49,93,60,61,77,58,78,62,114,117,94,40,109,60,61,95,91,48,93,38,38,95,91,48,93,60,61,120,41,41,123,118,97,114,32,65,61,36,117,40,100,44,40,45,112,43,121,41,47,118,41,59,114,101,116,117,114,110,32,71,117,40,65,44,104,41,44,91,95,44,72,117,40,65,41,93,125,125,125,102,117,110,99,116,105,111,110,32,117,40,110,44,101,41,123,118,97,114,32,105,61,114,63,116,58,114,117,45,116,44,111,61,48,59,114,101,116,117,114,110,32,110,60,45,105,63,111,124,61,49,58,110,62,105,38,38,40,111,124,61,50,41,44,101,60,45,105,63,111,124,61,52,58,101,62,105,38,38,40,111,124,61,56,41,44,111,125,114,101,116,117,114,110,32,115,102,40,111,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,99,44,102,44,115,59,114,101,116,117,114,110,123,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,102,61,99,61,33,49,44,115,61,49,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,108,44,104,41,123,118,97,114,32,100,44,112,61,91,108,44,104,93,44,118,61,111,40,108,44,104,41,44,103,61,114,63,118,63,48,58,117,40,108,44,104,41,58,118,63,117,40,108,43,40,108,60,48,63,114,117,58,45,114,117,41,44,104,41,58,48,59,105,102,40,33,110,38,38,40,102,61,99,61,118,41,38,38,116,46,108,105,110,101,83,116,97,114,116,40,41,44,118,33,61,61,99,38,38,40,33,40,100,61,97,40,110,44,112,41,41,124,124,101,102,40,110,44,100,41,124,124,101,102,40,112,44,100,41,41,38,38,40,112,91,48,93,43,61,110,117,44,112,91,49,93,43,61,110,117,44,118,61,111,40,112,91,48,93,44,112,91,49,93,41,41,44,118,33,61,61,99,41,115,61,48,44,118,63,40,116,46,108,105,110,101,83,116,97,114,116,40,41,44,100,61,97,40,112,44,110,41,44,116,46,112,111,105,110,116,40,100,91,48,93,44,100,91,49,93,41,41,58,40,100,61,97,40,110,44,112,41,44,116,46,112,111,105,110,116,40,100,91,48,93,44,100,91,49,93,41,44,116,46,108,105,110,101,69,110,100,40,41,41,44,110,61,100,59,101,108,115,101,32,105,102,40,105,38,38,110,38,38,114,94,118,41,123,118,97,114,32,121,59,103,38,101,124,124,33,40,121,61,97,40,112,44,110,44,33,48,41,41,124,124,40,115,61,48,44,114,63,40,116,46,108,105,110,101,83,116,97,114,116,40,41,44,116,46,112,111,105,110,116,40,121,91,48,93,91,48,93,44,121,91,48,93,91,49,93,41,44,116,46,112,111,105,110,116,40,121,91,49,93,91,48,93,44,121,91,49,93,91,49,93,41,44,116,46,108,105,110,101,69,110,100,40,41,41,58,40,116,46,112,111,105,110,116,40,121,91,49,93,91,48,93,44,121,91,49,93,91,49,93,41,44,116,46,108,105,110,101,69,110,100,40,41,44,116,46,108,105,110,101,83,116,97,114,116,40,41,44,116,46,112,111,105,110,116,40,121,91,48,93,91,48,93,44,121,91,48,93,91,49,93,41,41,41,125,33,118,124,124,110,38,38,101,102,40,110,44,112,41,124,124,116,46,112,111,105,110,116,40,112,91,48,93,44,112,91,49,93,41,44,110,61,112,44,99,61,118,44,101,61,103,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,99,38,38,116,46,108,105,110,101,69,110,100,40,41,44,110,61,110,117,108,108,125,44,99,108,101,97,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,124,40,102,38,38,99,41,60,60,49,125,125,125,44,102,117,110,99,116,105,111,110,40,110,44,114,44,105,44,111,41,123,74,99,40,111,44,116,44,101,44,105,44,110,44,114,41,125,44,114,63,91,48,44,45,116,93,58,91,45,114,117,44,116,45,114,117,93,41,125,118,97,114,32,118,102,61,49,101,57,44,103,102,61,45,118,102,59,102,117,110,99,116,105,111,110,32,121,102,40,116,44,110,44,101,44,114,41,123,102,117,110,99,116,105,111,110,32,105,40,105,44,111,41,123,114,101,116,117,114,110,32,116,60,61,105,38,38,105,60,61,101,38,38,110,60,61,111,38,38,111,60,61,114,125,102,117,110,99,116,105,111,110,32,111,40,105,44,111,44,117,44,102,41,123,118,97,114,32,115,61,48,44,108,61,48,59,105,102,40,110,117,108,108,61,61,105,124,124,40,115,61,97,40,105,44,117,41,41,33,61,61,40,108,61,97,40,111,44,117,41,41,124,124,99,40,105,44,111,41,60,48,94,117,62,48,41,100,111,123,102,46,112,111,105,110,116,40,48,61,61,61,115,124,124,51,61,61,61,115,63,116,58,101,44,115,62,49,63,114,58,110,41,125,119,104,105,108,101,40,40,115,61,40,115,43,117,43,52,41,37,52,41,33,61,61,108,41,59,101,108,115,101,32,102,46,112,111,105,110,116,40,111,91,48,93,44,111,91,49,93,41,125,102,117,110,99,116,105,111,110,32,97,40,114,44,105,41,123,114,101,116,117,114,110,32,102,117,40,114,91,48,93,45,116,41,60,110,117,63,105,62,48,63,48,58,51,58,102,117,40,114,91,48,93,45,101,41,60,110,117,63,105,62,48,63,50,58,49,58,102,117,40,114,91,49,93,45,110,41,60,110,117,63,105,62,48,63,49,58,48,58,105,62,48,63,51,58,50,125,102,117,110,99,116,105,111,110,32,117,40,116,44,110,41,123,114,101,116,117,114,110,32,99,40,116,46,120,44,110,46,120,41,125,102,117,110,99,116,105,111,110,32,99,40,116,44,110,41,123,118,97,114,32,101,61,97,40,116,44,49,41,44,114,61,97,40,110,44,49,41,59,114,101,116,117,114,110,32,101,33,61,61,114,63,101,45,114,58,48,61,61,61,101,63,110,91,49,93,45,116,91,49,93,58,49,61,61,61,101,63,116,91,48,93,45,110,91,48,93,58,50,61,61,61,101,63,116,91,49,93,45,110,91,49,93,58,110,91,48,93,45,116,91,48,93,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,99,44,102,44,115,44,108,44,104,44,100,44,112,44,118,44,103,44,121,44,95,44,98,61,97,44,109,61,110,102,40,41,44,120,61,123,112,111,105,110,116,58,119,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,120,46,112,111,105,110,116,61,77,44,102,38,38,102,46,112,117,115,104,40,115,61,91,93,41,59,121,61,33,48,44,103,61,33,49,44,112,61,118,61,78,97,78,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,99,38,38,40,77,40,108,44,104,41,44,100,38,38,103,38,38,109,46,114,101,106,111,105,110,40,41,44,99,46,112,117,115,104,40,109,46,114,101,115,117,108,116,40,41,41,41,59,120,46,112,111,105,110,116,61,119,44,103,38,38,98,46,108,105,110,101,69,110,100,40,41,125,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,98,61,109,44,99,61,91,93,44,102,61,91,93,44,95,61,33,48,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,110,61,48,44,101,61,48,44,105,61,102,46,108,101,110,103,116,104,59,101,60,105,59,43,43,101,41,102,111,114,40,118,97,114,32,111,44,97,44,117,61,102,91,101,93,44,99,61,49,44,115,61,117,46,108,101,110,103,116,104,44,108,61,117,91,48,93,44,104,61,108,91,48,93,44,100,61,108,91,49,93,59,99,60,115,59,43,43,99,41,111,61,104,44,97,61,100,44,108,61,117,91,99,93,44,104,61,108,91,48,93,44,100,61,108,91,49,93,44,97,60,61,114,63,100,62,114,38,38,40,104,45,111,41,42,40,114,45,97,41,62,40,100,45,97,41,42,40,116,45,111,41,38,38,43,43,110,58,100,60,61,114,38,38,40,104,45,111,41,42,40,114,45,97,41,60,40,100,45,97,41,42,40,116,45,111,41,38,38,45,45,110,59,114,101,116,117,114,110,32,110,125,40,41,44,101,61,95,38,38,110,44,105,61,40,99,61,65,40,99,41,41,46,108,101,110,103,116,104,59,40,101,124,124,105,41,38,38,40,97,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,44,101,38,38,40,97,46,108,105,110,101,83,116,97,114,116,40,41,44,111,40,110,117,108,108,44,110,117,108,108,44,49,44,97,41,44,97,46,108,105,110,101,69,110,100,40,41,41,44,105,38,38,111,102,40,99,44,117,44,110,44,111,44,97,41,44,97,46,112,111,108,121,103,111,110,69,110,100,40,41,41,59,98,61,97,44,99,61,102,61,115,61,110,117,108,108,125,125,59,102,117,110,99,116,105,111,110,32,119,40,116,44,110,41,123,105,40,116,44,110,41,38,38,98,46,112,111,105,110,116,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,77,40,111,44,97,41,123,118,97,114,32,117,61,105,40,111,44,97,41,59,105,102,40,102,38,38,115,46,112,117,115,104,40,91,111,44,97,93,41,44,121,41,108,61,111,44,104,61,97,44,100,61,117,44,121,61,33,49,44,117,38,38,40,98,46,108,105,110,101,83,116,97,114,116,40,41,44,98,46,112,111,105,110,116,40,111,44,97,41,41,59,101,108,115,101,32,105,102,40,117,38,38,103,41,98,46,112,111,105,110,116,40,111,44,97,41,59,101,108,115,101,123,118,97,114,32,99,61,91,112,61,77,97,116,104,46,109,97,120,40,103,102,44,77,97,116,104,46,109,105,110,40,118,102,44,112,41,41,44,118,61,77,97,116,104,46,109,97,120,40,103,102,44,77,97,116,104,46,109,105,110,40,118,102,44,118,41,41,93,44,109,61,91,111,61,77,97,116,104,46,109,97,120,40,103,102,44,77,97,116,104,46,109,105,110,40,118,102,44,111,41,41,44,97,61,77,97,116,104,46,109,97,120,40,103,102,44,77,97,116,104,46,109,105,110,40,118,102,44,97,41,41,93,59,33,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,44,111,41,123,118,97,114,32,97,44,117,61,116,91,48,93,44,99,61,116,91,49,93,44,102,61,48,44,115,61,49,44,108,61,110,91,48,93,45,117,44,104,61,110,91,49,93,45,99,59,105,102,40,97,61,101,45,117,44,108,124,124,33,40,97,62,48,41,41,123,105,102,40,97,47,61,108,44,108,60,48,41,123,105,102,40,97,60,102,41,114,101,116,117,114,110,59,97,60,115,38,38,40,115,61,97,41,125,101,108,115,101,32,105,102,40,108,62,48,41,123,105,102,40,97,62,115,41,114,101,116,117,114,110,59,97,62,102,38,38,40,102,61,97,41,125,105,102,40,97,61,105,45,117,44,108,124,124,33,40,97,60,48,41,41,123,105,102,40,97,47,61,108,44,108,60,48,41,123,105,102,40,97,62,115,41,114,101,116,117,114,110,59,97,62,102,38,38,40,102,61,97,41,125,101,108,115,101,32,105,102,40,108,62,48,41,123,105,102,40,97,60,102,41,114,101,116,117,114,110,59,97,60,115,38,38,40,115,61,97,41,125,105,102,40,97,61,114,45,99,44,104,124,124,33,40,97,62,48,41,41,123,105,102,40,97,47,61,104,44,104,60,48,41,123,105,102,40,97,60,102,41,114,101,116,117,114,110,59,97,60,115,38,38,40,115,61,97,41,125,101,108,115,101,32,105,102,40,104,62,48,41,123,105,102,40,97,62,115,41,114,101,116,117,114,110,59,97,62,102,38,38,40,102,61,97,41,125,105,102,40,97,61,111,45,99,44,104,124,124,33,40,97,60,48,41,41,123,105,102,40,97,47,61,104,44,104,60,48,41,123,105,102,40,97,62,115,41,114,101,116,117,114,110,59,97,62,102,38,38,40,102,61,97,41,125,101,108,115,101,32,105,102,40,104,62,48,41,123,105,102,40,97,60,102,41,114,101,116,117,114,110,59,97,60,115,38,38,40,115,61,97,41,125,114,101,116,117,114,110,32,102,62,48,38,38,40,116,91,48,93,61,117,43,102,42,108,44,116,91,49,93,61,99,43,102,42,104,41,44,115,60,49,38,38,40,110,91,48,93,61,117,43,115,42,108,44,110,91,49,93,61,99,43,115,42,104,41,44,33,48,125,125,125,125,125,40,99,44,109,44,116,44,110,44,101,44,114,41,63,117,38,38,40,98,46,108,105,110,101,83,116,97,114,116,40,41,44,98,46,112,111,105,110,116,40,111,44,97,41,44,95,61,33,49,41,58,40,103,124,124,40,98,46,108,105,110,101,83,116,97,114,116,40,41,44,98,46,112,111,105,110,116,40,99,91,48,93,44,99,91,49,93,41,41,44,98,46,112,111,105,110,116,40,109,91,48,93,44,109,91,49,93,41,44,117,124,124,98,46,108,105,110,101,69,110,100,40,41,44,95,61,33,49,41,125,112,61,111,44,118,61,97,44,103,61,117,125,114,101,116,117,114,110,32,120,125,125,118,97,114,32,95,102,44,98,102,44,109,102,44,120,102,61,81,97,40,41,44,119,102,61,123,115,112,104,101,114,101,58,78,117,44,112,111,105,110,116,58,78,117,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,119,102,46,112,111,105,110,116,61,78,102,44,119,102,46,108,105,110,101,69,110,100,61,77,102,125,44,108,105,110,101,69,110,100,58,78,117,44,112,111,108,121,103,111,110,83,116,97,114,116,58,78,117,44,112,111,108,121,103,111,110,69,110,100,58,78,117,125,59,102,117,110,99,116,105,111,110,32,77,102,40,41,123,119,102,46,112,111,105,110,116,61,119,102,46,108,105,110,101,69,110,100,61,78,117,125,102,117,110,99,116,105,111,110,32,78,102,40,116,44,110,41,123,95,102,61,116,42,61,99,117,44,98,102,61,121,117,40,110,42,61,99,117,41,44,109,102,61,104,117,40,110,41,44,119,102,46,112,111,105,110,116,61,84,102,125,102,117,110,99,116,105,111,110,32,84,102,40,116,44,110,41,123,116,42,61,99,117,59,118,97,114,32,101,61,121,117,40,110,42,61,99,117,41,44,114,61,104,117,40,110,41,44,105,61,102,117,40,116,45,95,102,41,44,111,61,104,117,40,105,41,44,97,61,114,42,121,117,40,105,41,44,117,61,109,102,42,101,45,98,102,42,114,42,111,44,99,61,98,102,42,101,43,109,102,42,114,42,111,59,120,102,46,97,100,100,40,108,117,40,98,117,40,97,42,97,43,117,42,117,41,44,99,41,41,44,95,102,61,116,44,98,102,61,101,44,109,102,61,114,125,102,117,110,99,116,105,111,110,32,65,102,40,116,41,123,114,101,116,117,114,110,32,120,102,46,114,101,115,101,116,40,41,44,67,117,40,116,44,119,102,41,44,43,120,102,125,118,97,114,32,83,102,61,91,110,117,108,108,44,110,117,108,108,93,44,107,102,61,123,116,121,112,101,58,34,76,105,110,101,83,116,114,105,110,103,34,44,99,111,111,114,100,105,110,97,116,101,115,58,83,102,125,59,102,117,110,99,116,105,111,110,32,69,102,40,116,44,110,41,123,114,101,116,117,114,110,32,83,102,91,48,93,61,116,44,83,102,91,49,93,61,110,44,65,102,40,107,102,41,125,118,97,114,32,67,102,61,123,70,101,97,116,117,114,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,122,102,40,116,46,103,101,111,109,101,116,114,121,44,110,41,125,44,70,101,97,116,117,114,101,67,111,108,108,101,99,116,105,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,102,101,97,116,117,114,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,105,102,40,122,102,40,101,91,114,93,46,103,101,111,109,101,116,114,121,44,110,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,125,44,80,102,61,123,83,112,104,101,114,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,44,80,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,82,102,40,116,46,99,111,111,114,100,105,110,97,116,101,115,44,110,41,125,44,77,117,108,116,105,80,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,99,111,111,114,100,105,110,97,116,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,105,102,40,82,102,40,101,91,114,93,44,110,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,44,76,105,110,101,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,68,102,40,116,46,99,111,111,114,100,105,110,97,116,101,115,44,110,41,125,44,77,117,108,116,105,76,105,110,101,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,99,111,111,114,100,105,110,97,116,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,105,102,40,68,102,40,101,91,114,93,44,110,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,44,80,111,108,121,103,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,113,102,40,116,46,99,111,111,114,100,105,110,97,116,101,115,44,110,41,125,44,77,117,108,116,105,80,111,108,121,103,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,99,111,111,114,100,105,110,97,116,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,105,102,40,113,102,40,101,91,114,93,44,110,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,44,71,101,111,109,101,116,114,121,67,111,108,108,101,99,116,105,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,103,101,111,109,101,116,114,105,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,105,102,40,122,102,40,101,91,114,93,44,110,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,125,59,102,117,110,99,116,105,111,110,32,122,102,40,116,44,110,41,123,114,101,116,117,114,110,33,40,33,116,124,124,33,80,102,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,46,116,121,112,101,41,41,38,38,80,102,91,116,46,116,121,112,101,93,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,82,102,40,116,44,110,41,123,114,101,116,117,114,110,32,48,61,61,61,69,102,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,68,102,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,44,114,44,105,44,111,61,48,44,97,61,116,46,108,101,110,103,116,104,59,111,60,97,59,111,43,43,41,123,105,102,40,48,61,61,61,40,114,61,69,102,40,116,91,111,93,44,110,41,41,41,114,101,116,117,114,110,33,48,59,105,102,40,111,62,48,38,38,40,105,61,69,102,40,116,91,111,93,44,116,91,111,45,49,93,41,41,62,48,38,38,101,60,61,105,38,38,114,60,61,105,38,38,40,101,43,114,45,105,41,42,40,49,45,77,97,116,104,46,112,111,119,40,40,101,45,114,41,47,105,44,50,41,41,60,101,117,42,105,41,114,101,116,117,114,110,33,48,59,101,61,114,125,114,101,116,117,114,110,33,49,125,102,117,110,99,116,105,111,110,32,113,102,40,116,44,110,41,123,114,101,116,117,114,110,33,33,102,102,40,116,46,109,97,112,40,76,102,41,44,85,102,40,110,41,41,125,102,117,110,99,116,105,111,110,32,76,102,40,116,41,123,114,101,116,117,114,110,40,116,61,116,46,109,97,112,40,85,102,41,41,46,112,111,112,40,41,44,116,125,102,117,110,99,116,105,111,110,32,85,102,40,116,41,123,114,101,116,117,114,110,91,116,91,48,93,42,99,117,44,116,91,49,93,42,99,117,93,125,102,117,110,99,116,105,111,110,32,79,102,40,116,44,110,44,101,41,123,118,97,114,32,114,61,103,40,116,44,110,45,110,117,44,101,41,46,99,111,110,99,97,116,40,110,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,46,109,97,112,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,91,116,44,110,93,125,41,125,125,102,117,110,99,116,105,111,110,32,66,102,40,116,44,110,44,101,41,123,118,97,114,32,114,61,103,40,116,44,110,45,110,117,44,101,41,46,99,111,110,99,97,116,40,110,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,46,109,97,112,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,91,110,44,116,93,125,41,125,125,102,117,110,99,116,105,111,110,32,70,102,40,41,123,118,97,114,32,116,44,110,44,101,44,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,44,104,61,49,48,44,100,61,104,44,112,61,57,48,44,118,61,51,54,48,44,121,61,50,46,53,59,102,117,110,99,116,105,111,110,32,95,40,41,123,114,101,116,117,114,110,123,116,121,112,101,58,34,77,117,108,116,105,76,105,110,101,83,116,114,105,110,103,34,44,99,111,111,114,100,105,110,97,116,101,115,58,98,40,41,125,125,102,117,110,99,116,105,111,110,32,98,40,41,123,114,101,116,117,114,110,32,103,40,100,117,40,114,47,112,41,42,112,44,101,44,112,41,46,109,97,112,40,115,41,46,99,111,110,99,97,116,40,103,40,100,117,40,117,47,118,41,42,118,44,97,44,118,41,46,109,97,112,40,108,41,41,46,99,111,110,99,97,116,40,103,40,100,117,40,110,47,104,41,42,104,44,116,44,104,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,40,116,37,112,41,62,110,117,125,41,46,109,97,112,40,99,41,41,46,99,111,110,99,97,116,40,103,40,100,117,40,111,47,100,41,42,100,44,105,44,100,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,40,116,37,118,41,62,110,117,125,41,46,109,97,112,40,102,41,41,125,114,101,116,117,114,110,32,95,46,108,105,110,101,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,98,40,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,123,116,121,112,101,58,34,76,105,110,101,83,116,114,105,110,103,34,44,99,111,111,114,100,105,110,97,116,101,115,58,116,125,125,41,125,44,95,46,111,117,116,108,105,110,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,116,121,112,101,58,34,80,111,108,121,103,111,110,34,44,99,111,111,114,100,105,110,97,116,101,115,58,91,115,40,114,41,46,99,111,110,99,97,116,40,108,40,97,41,46,115,108,105,99,101,40,49,41,44,115,40,101,41,46,114,101,118,101,114,115,101,40,41,46,115,108,105,99,101,40,49,41,44,108,40,117,41,46,114,101,118,101,114,115,101,40,41,46,115,108,105,99,101,40,49,41,41,93,125,125,44,95,46,101,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,95,46,101,120,116,101,110,116,77,97,106,111,114,40,116,41,46,101,120,116,101,110,116,77,105,110,111,114,40,116,41,58,95,46,101,120,116,101,110,116,77,105,110,111,114,40,41,125,44,95,46,101,120,116,101,110,116,77,97,106,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,43,116,91,48,93,91,48,93,44,101,61,43,116,91,49,93,91,48,93,44,117,61,43,116,91,48,93,91,49,93,44,97,61,43,116,91,49,93,91,49,93,44,114,62,101,38,38,40,116,61,114,44,114,61,101,44,101,61,116,41,44,117,62,97,38,38,40,116,61,117,44,117,61,97,44,97,61,116,41,44,95,46,112,114,101,99,105,115,105,111,110,40,121,41,41,58,91,91,114,44,117,93,44,91,101,44,97,93,93,125,44,95,46,101,120,116,101,110,116,77,105,110,111,114,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,43,101,91,48,93,91,48,93,44,116,61,43,101,91,49,93,91,48,93,44,111,61,43,101,91,48,93,91,49,93,44,105,61,43,101,91,49,93,91,49,93,44,110,62,116,38,38,40,101,61,110,44,110,61,116,44,116,61,101,41,44,111,62,105,38,38,40,101,61,111,44,111,61,105,44,105,61,101,41,44,95,46,112,114,101,99,105,115,105,111,110,40,121,41,41,58,91,91,110,44,111,93,44,91,116,44,105,93,93,125,44,95,46,115,116,101,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,95,46,115,116,101,112,77,97,106,111,114,40,116,41,46,115,116,101,112,77,105,110,111,114,40,116,41,58,95,46,115,116,101,112,77,105,110,111,114,40,41,125,44,95,46,115,116,101,112,77,97,106,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,112,61,43,116,91,48,93,44,118,61,43,116,91,49,93,44,95,41,58,91,112,44,118,93,125,44,95,46,115,116,101,112,77,105,110,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,104,61,43,116,91,48,93,44,100,61,43,116,91,49,93,44,95,41,58,91,104,44,100,93,125,44,95,46,112,114,101,99,105,115,105,111,110,61,102,117,110,99,116,105,111,110,40,104,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,121,61,43,104,44,99,61,79,102,40,111,44,105,44,57,48,41,44,102,61,66,102,40,110,44,116,44,121,41,44,115,61,79,102,40,117,44,97,44,57,48,41,44,108,61,66,102,40,114,44,101,44,121,41,44,95,41,58,121,125,44,95,46,101,120,116,101,110,116,77,97,106,111,114,40,91,91,45,49,56,48,44,45,57,48,43,110,117,93,44,91,49,56,48,44,57,48,45,110,117,93,93,41,46,101,120,116,101,110,116,77,105,110,111,114,40,91,91,45,49,56,48,44,45,56,48,45,110,117,93,44,91,49,56,48,44,56,48,43,110,117,93,93,41,125,102,117,110,99,116,105,111,110,32,89,102,40,116,41,123,114,101,116,117,114,110,32,116,125,118,97,114,32,73,102,44,72,102,44,106,102,44,88,102,44,86,102,61,81,97,40,41,44,71,102,61,81,97,40,41,44,36,102,61,123,112,111,105,110,116,58,78,117,44,108,105,110,101,83,116,97,114,116,58,78,117,44,108,105,110,101,69,110,100,58,78,117,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,36,102,46,108,105,110,101,83,116,97,114,116,61,87,102,44,36,102,46,108,105,110,101,69,110,100,61,75,102,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,36,102,46,108,105,110,101,83,116,97,114,116,61,36,102,46,108,105,110,101,69,110,100,61,36,102,46,112,111,105,110,116,61,78,117,44,86,102,46,97,100,100,40,102,117,40,71,102,41,41,44,71,102,46,114,101,115,101,116,40,41,125,44,114,101,115,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,86,102,47,50,59,114,101,116,117,114,110,32,86,102,46,114,101,115,101,116,40,41,44,116,125,125,59,102,117,110,99,116,105,111,110,32,87,102,40,41,123,36,102,46,112,111,105,110,116,61,90,102,125,102,117,110,99,116,105,111,110,32,90,102,40,116,44,110,41,123,36,102,46,112,111,105,110,116,61,81,102,44,73,102,61,106,102,61,116,44,72,102,61,88,102,61,110,125,102,117,110,99,116,105,111,110,32,81,102,40,116,44,110,41,123,71,102,46,97,100,100,40,88,102,42,116,45,106,102,42,110,41,44,106,102,61,116,44,88,102,61,110,125,102,117,110,99,116,105,111,110,32,75,102,40,41,123,81,102,40,73,102,44,72,102,41,125,118,97,114,32,74,102,61,49,47,48,44,116,115,61,74,102,44,110,115,61,45,74,102,44,101,115,61,110,115,44,114,115,61,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,60,74,102,38,38,40,74,102,61,116,41,59,116,62,110,115,38,38,40,110,115,61,116,41,59,110,60,116,115,38,38,40,116,115,61,110,41,59,110,62,101,115,38,38,40,101,115,61,110,41,125,44,108,105,110,101,83,116,97,114,116,58,78,117,44,108,105,110,101,69,110,100,58,78,117,44,112,111,108,121,103,111,110,83,116,97,114,116,58,78,117,44,112,111,108,121,103,111,110,69,110,100,58,78,117,44,114,101,115,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,91,74,102,44,116,115,93,44,91,110,115,44,101,115,93,93,59,114,101,116,117,114,110,32,110,115,61,101,115,61,45,40,116,115,61,74,102,61,49,47,48,41,44,116,125,125,59,118,97,114,32,105,115,44,111,115,44,97,115,44,117,115,44,99,115,61,48,44,102,115,61,48,44,115,115,61,48,44,108,115,61,48,44,104,115,61,48,44,100,115,61,48,44,112,115,61,48,44,118,115,61,48,44,103,115,61,48,44,121,115,61,123,112,111,105,110,116,58,95,115,44,108,105,110,101,83,116,97,114,116,58,98,115,44,108,105,110,101,69,110,100,58,119,115,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,121,115,46,108,105,110,101,83,116,97,114,116,61,77,115,44,121,115,46,108,105,110,101,69,110,100,61,78,115,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,121,115,46,112,111,105,110,116,61,95,115,44,121,115,46,108,105,110,101,83,116,97,114,116,61,98,115,44,121,115,46,108,105,110,101,69,110,100,61,119,115,125,44,114,101,115,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,103,115,63,91,112,115,47,103,115,44,118,115,47,103,115,93,58,100,115,63,91,108,115,47,100,115,44,104,115,47,100,115,93,58,115,115,63,91,99,115,47,115,115,44,102,115,47,115,115,93,58,91,78,97,78,44,78,97,78,93,59,114,101,116,117,114,110,32,99,115,61,102,115,61,115,115,61,108,115,61,104,115,61,100,115,61,112,115,61,118,115,61,103,115,61,48,44,116,125,125,59,102,117,110,99,116,105,111,110,32,95,115,40,116,44,110,41,123,99,115,43,61,116,44,102,115,43,61,110,44,43,43,115,115,125,102,117,110,99,116,105,111,110,32,98,115,40,41,123,121,115,46,112,111,105,110,116,61,109,115,125,102,117,110,99,116,105,111,110,32,109,115,40,116,44,110,41,123,121,115,46,112,111,105,110,116,61,120,115,44,95,115,40,97,115,61,116,44,117,115,61,110,41,125,102,117,110,99,116,105,111,110,32,120,115,40,116,44,110,41,123,118,97,114,32,101,61,116,45,97,115,44,114,61,110,45,117,115,44,105,61,98,117,40,101,42,101,43,114,42,114,41,59,108,115,43,61,105,42,40,97,115,43,116,41,47,50,44,104,115,43,61,105,42,40,117,115,43,110,41,47,50,44,100,115,43,61,105,44,95,115,40,97,115,61,116,44,117,115,61,110,41,125,102,117,110,99,116,105,111,110,32,119,115,40,41,123,121,115,46,112,111,105,110,116,61,95,115,125,102,117,110,99,116,105,111,110,32,77,115,40,41,123,121,115,46,112,111,105,110,116,61,84,115,125,102,117,110,99,116,105,111,110,32,78,115,40,41,123,65,115,40,105,115,44,111,115,41,125,102,117,110,99,116,105,111,110,32,84,115,40,116,44,110,41,123,121,115,46,112,111,105,110,116,61,65,115,44,95,115,40,105,115,61,97,115,61,116,44,111,115,61,117,115,61,110,41,125,102,117,110,99,116,105,111,110,32,65,115,40,116,44,110,41,123,118,97,114,32,101,61,116,45,97,115,44,114,61,110,45,117,115,44,105,61,98,117,40,101,42,101,43,114,42,114,41,59,108,115,43,61,105,42,40,97,115,43,116,41,47,50,44,104,115,43,61,105,42,40,117,115,43,110,41,47,50,44,100,115,43,61,105,44,112,115,43,61,40,105,61,117,115,42,116,45,97,115,42,110,41,42,40,97,115,43,116,41,44,118,115,43,61,105,42,40,117,115,43,110,41,44,103,115,43,61,51,42,105,44,95,115,40,97,115,61,116,44,117,115,61,110,41,125,102,117,110,99,116,105,111,110,32,83,115,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,83,115,46,112,114,111,116,111,116,121,112,101,61,123,95,114,97,100,105,117,115,58,52,46,53,44,112,111,105,110,116,82,97,100,105,117,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,114,97,100,105,117,115,61,116,44,116,104,105,115,125,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,48,61,61,61,116,104,105,115,46,95,108,105,110,101,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,112,111,105,110,116,61,78,97,78,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,44,116,104,105,115,46,95,112,111,105,110,116,61,49,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,43,116,104,105,115,46,95,114,97,100,105,117,115,44,110,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,97,114,99,40,116,44,110,44,116,104,105,115,46,95,114,97,100,105,117,115,44,48,44,97,117,41,125,125,44,114,101,115,117,108,116,58,78,117,125,59,118,97,114,32,107,115,44,69,115,44,67,115,44,80,115,44,122,115,44,82,115,61,81,97,40,41,44,68,115,61,123,112,111,105,110,116,58,78,117,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,68,115,46,112,111,105,110,116,61,113,115,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,107,115,38,38,76,115,40,69,115,44,67,115,41,44,68,115,46,112,111,105,110,116,61,78,117,125,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,107,115,61,33,48,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,107,115,61,110,117,108,108,125,44,114,101,115,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,43,82,115,59,114,101,116,117,114,110,32,82,115,46,114,101,115,101,116,40,41,44,116,125,125,59,102,117,110,99,116,105,111,110,32,113,115,40,116,44,110,41,123,68,115,46,112,111,105,110,116,61,76,115,44,69,115,61,80,115,61,116,44,67,115,61,122,115,61,110,125,102,117,110,99,116,105,111,110,32,76,115,40,116,44,110,41,123,80,115,45,61,116,44,122,115,45,61,110,44,82,115,46,97,100,100,40,98,117,40,80,115,42,80,115,43,122,115,42,122,115,41,41,44,80,115,61,116,44,122,115,61,110,125,102,117,110,99,116,105,111,110,32,85,115,40,41,123,116,104,105,115,46,95,115,116,114,105,110,103,61,91,93,125,102,117,110,99,116,105,111,110,32,79,115,40,116,41,123,114,101,116,117,114,110,34,109,48,44,34,43,116,43,34,97,34,43,116,43,34,44,34,43,116,43,34,32,48,32,49,44,49,32,48,44,34,43,45,50,42,116,43,34,97,34,43,116,43,34,44,34,43,116,43,34,32,48,32,49,44,49,32,48,44,34,43,50,42,116,43,34,122,34,125,102,117,110,99,116,105,111,110,32,66,115,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,61,110,101,119,32,70,115,59,102,111,114,40,118,97,114,32,114,32,105,110,32,116,41,101,91,114,93,61,116,91,114,93,59,114,101,116,117,114,110,32,101,46,115,116,114,101,97,109,61,110,44,101,125,125,102,117,110,99,116,105,111,110,32,70,115,40,41,123,125,102,117,110,99,116,105,111,110,32,89,115,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,99,108,105,112,69,120,116,101,110,116,38,38,116,46,99,108,105,112,69,120,116,101,110,116,40,41,59,114,101,116,117,114,110,32,116,46,115,99,97,108,101,40,49,53,48,41,46,116,114,97,110,115,108,97,116,101,40,91,48,44,48,93,41,44,110,117,108,108,33,61,114,38,38,116,46,99,108,105,112,69,120,116,101,110,116,40,110,117,108,108,41,44,67,117,40,101,44,116,46,115,116,114,101,97,109,40,114,115,41,41,44,110,40,114,115,46,114,101,115,117,108,116,40,41,41,44,110,117,108,108,33,61,114,38,38,116,46,99,108,105,112,69,120,116,101,110,116,40,114,41,44,116,125,102,117,110,99,116,105,111,110,32,73,115,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,89,115,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,110,91,49,93,91,48,93,45,110,91,48,93,91,48,93,44,105,61,110,91,49,93,91,49,93,45,110,91,48,93,91,49,93,44,111,61,77,97,116,104,46,109,105,110,40,114,47,40,101,91,49,93,91,48,93,45,101,91,48,93,91,48,93,41,44,105,47,40,101,91,49,93,91,49,93,45,101,91,48,93,91,49,93,41,41,44,97,61,43,110,91,48,93,91,48,93,43,40,114,45,111,42,40,101,91,49,93,91,48,93,43,101,91,48,93,91,48,93,41,41,47,50,44,117,61,43,110,91,48,93,91,49,93,43,40,105,45,111,42,40,101,91,49,93,91,49,93,43,101,91,48,93,91,49,93,41,41,47,50,59,116,46,115,99,97,108,101,40,49,53,48,42,111,41,46,116,114,97,110,115,108,97,116,101,40,91,97,44,117,93,41,125,44,101,41,125,102,117,110,99,116,105,111,110,32,72,115,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,73,115,40,116,44,91,91,48,44,48,93,44,110,93,44,101,41,125,102,117,110,99,116,105,111,110,32,106,115,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,89,115,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,43,110,44,105,61,114,47,40,101,91,49,93,91,48,93,45,101,91,48,93,91,48,93,41,44,111,61,40,114,45,105,42,40,101,91,49,93,91,48,93,43,101,91,48,93,91,48,93,41,41,47,50,44,97,61,45,105,42,101,91,48,93,91,49,93,59,116,46,115,99,97,108,101,40,49,53,48,42,105,41,46,116,114,97,110,115,108,97,116,101,40,91,111,44,97,93,41,125,44,101,41,125,102,117,110,99,116,105,111,110,32,88,115,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,89,115,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,43,110,44,105,61,114,47,40,101,91,49,93,91,49,93,45,101,91,48,93,91,49,93,41,44,111,61,45,105,42,101,91,48,93,91,48,93,44,97,61,40,114,45,105,42,40,101,91,49,93,91,49,93,43,101,91,48,93,91,49,93,41,41,47,50,59,116,46,115,99,97,108,101,40,49,53,48,42,105,41,46,116,114,97,110,115,108,97,116,101,40,91,111,44,97,93,41,125,44,101,41,125,85,115,46,112,114,111,116,111,116,121,112,101,61,123,95,114,97,100,105,117,115,58,52,46,53,44,95,99,105,114,99,108,101,58,79,115,40,52,46,53,41,44,112,111,105,110,116,82,97,100,105,117,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,61,43,116,41,33,61,61,116,104,105,115,46,95,114,97,100,105,117,115,38,38,40,116,104,105,115,46,95,114,97,100,105,117,115,61,116,44,116,104,105,115,46,95,99,105,114,99,108,101,61,110,117,108,108,41,44,116,104,105,115,125,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,48,61,61,61,116,104,105,115,46,95,108,105,110,101,38,38,116,104,105,115,46,95,115,116,114,105,110,103,46,112,117,115,104,40,34,90,34,41,44,116,104,105,115,46,95,112,111,105,110,116,61,78,97,78,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,115,116,114,105,110,103,46,112,117,115,104,40,34,77,34,44,116,44,34,44,34,44,110,41,44,116,104,105,115,46,95,112,111,105,110,116,61,49,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,115,116,114,105,110,103,46,112,117,115,104,40,34,76,34,44,116,44,34,44,34,44,110,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,110,117,108,108,61,61,116,104,105,115,46,95,99,105,114,99,108,101,38,38,40,116,104,105,115,46,95,99,105,114,99,108,101,61,79,115,40,116,104,105,115,46,95,114,97,100,105,117,115,41,41,44,116,104,105,115,46,95,115,116,114,105,110,103,46,112,117,115,104,40,34,77,34,44,116,44,34,44,34,44,110,44,116,104,105,115,46,95,99,105,114,99,108,101,41,125,125,44,114,101,115,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,95,115,116,114,105,110,103,46,108,101,110,103,116,104,41,123,118,97,114,32,116,61,116,104,105,115,46,95,115,116,114,105,110,103,46,106,111,105,110,40,34,34,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,115,116,114,105,110,103,61,91,93,44,116,125,114,101,116,117,114,110,32,110,117,108,108,125,125,44,70,115,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,70,115,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,115,116,114,101,97,109,46,112,111,105,110,116,40,116,44,110,41,125,44,115,112,104,101,114,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,114,101,97,109,46,115,112,104,101,114,101,40,41,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,40,41,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,114,101,97,109,46,108,105,110,101,69,110,100,40,41,125,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,114,101,97,109,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,114,101,97,109,46,112,111,108,121,103,111,110,69,110,100,40,41,125,125,59,118,97,114,32,86,115,61,49,54,44,71,115,61,104,117,40,51,48,42,99,117,41,59,102,117,110,99,116,105,111,110,32,36,115,40,116,44,110,41,123,114,101,116,117,114,110,43,110,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,117,110,99,116,105,111,110,32,101,40,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,44,104,44,100,44,112,44,118,44,103,41,123,118,97,114,32,121,61,102,45,114,44,95,61,115,45,105,44,98,61,121,42,121,43,95,42,95,59,105,102,40,98,62,52,42,110,38,38,118,45,45,41,123,118,97,114,32,109,61,97,43,104,44,120,61,117,43,100,44,119,61,99,43,112,44,77,61,98,117,40,109,42,109,43,120,42,120,43,119,42,119,41,44,78,61,119,117,40,119,47,61,77,41,44,84,61,102,117,40,102,117,40,119,41,45,49,41,60,110,117,124,124,102,117,40,111,45,108,41,60,110,117,63,40,111,43,108,41,47,50,58,108,117,40,120,44,109,41,44,65,61,116,40,84,44,78,41,44,83,61,65,91,48,93,44,107,61,65,91,49,93,44,69,61,83,45,114,44,67,61,107,45,105,44,80,61,95,42,69,45,121,42,67,59,40,80,42,80,47,98,62,110,124,124,102,117,40,40,121,42,69,43,95,42,67,41,47,98,45,46,53,41,62,46,51,124,124,97,42,104,43,117,42,100,43,99,42,112,60,71,115,41,38,38,40,101,40,114,44,105,44,111,44,97,44,117,44,99,44,83,44,107,44,84,44,109,47,61,77,44,120,47,61,77,44,119,44,118,44,103,41,44,103,46,112,111,105,110,116,40,83,44,107,41,44,101,40,83,44,107,44,84,44,109,44,120,44,119,44,102,44,115,44,108,44,104,44,100,44,112,44,118,44,103,41,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,44,104,44,100,44,112,44,118,61,123,112,111,105,110,116,58,103,44,108,105,110,101,83,116,97,114,116,58,121,44,108,105,110,101,69,110,100,58,98,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,110,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,44,118,46,108,105,110,101,83,116,97,114,116,61,109,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,110,46,112,111,108,121,103,111,110,69,110,100,40,41,44,118,46,108,105,110,101,83,116,97,114,116,61,121,125,125,59,102,117,110,99,116,105,111,110,32,103,40,101,44,114,41,123,101,61,116,40,101,44,114,41,44,110,46,112,111,105,110,116,40,101,91,48,93,44,101,91,49,93,41,125,102,117,110,99,116,105,111,110,32,121,40,41,123,115,61,78,97,78,44,118,46,112,111,105,110,116,61,95,44,110,46,108,105,110,101,83,116,97,114,116,40,41,125,102,117,110,99,116,105,111,110,32,95,40,114,44,105,41,123,118,97,114,32,111,61,106,117,40,91,114,44,105,93,41,44,97,61,116,40,114,44,105,41,59,101,40,115,44,108,44,102,44,104,44,100,44,112,44,115,61,97,91,48,93,44,108,61,97,91,49,93,44,102,61,114,44,104,61,111,91,48,93,44,100,61,111,91,49,93,44,112,61,111,91,50,93,44,86,115,44,110,41,44,110,46,112,111,105,110,116,40,115,44,108,41,125,102,117,110,99,116,105,111,110,32,98,40,41,123,118,46,112,111,105,110,116,61,103,44,110,46,108,105,110,101,69,110,100,40,41,125,102,117,110,99,116,105,111,110,32,109,40,41,123,121,40,41,44,118,46,112,111,105,110,116,61,120,44,118,46,108,105,110,101,69,110,100,61,119,125,102,117,110,99,116,105,111,110,32,120,40,116,44,110,41,123,95,40,114,61,116,44,110,41,44,105,61,115,44,111,61,108,44,97,61,104,44,117,61,100,44,99,61,112,44,118,46,112,111,105,110,116,61,95,125,102,117,110,99,116,105,111,110,32,119,40,41,123,101,40,115,44,108,44,102,44,104,44,100,44,112,44,105,44,111,44,114,44,97,44,117,44,99,44,86,115,44,110,41,44,118,46,108,105,110,101,69,110,100,61,98,44,98,40,41,125,114,101,116,117,114,110,32,118,125,125,40,116,44,110,41,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,66,115,40,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,110,44,101,41,123,110,61,116,40,110,44,101,41,44,116,104,105,115,46,115,116,114,101,97,109,46,112,111,105,110,116,40,110,91,48,93,44,110,91,49,93,41,125,125,41,125,40,116,41,125,118,97,114,32,87,115,61,66,115,40,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,115,116,114,101,97,109,46,112,111,105,110,116,40,116,42,99,117,44,110,42,99,117,41,125,125,41,59,102,117,110,99,116,105,111,110,32,90,115,40,116,44,110,44,101,44,114,44,105,44,111,41,123,118,97,114,32,97,61,104,117,40,111,41,44,117,61,121,117,40,111,41,44,99,61,97,42,116,44,102,61,117,42,116,44,115,61,97,47,116,44,108,61,117,47,116,44,104,61,40,117,42,101,45,97,42,110,41,47,116,44,100,61,40,117,42,110,43,97,42,101,41,47,116,59,102,117,110,99,116,105,111,110,32,112,40,116,44,111,41,123,114,101,116,117,114,110,91,99,42,40,116,42,61,114,41,45,102,42,40,111,42,61,105,41,43,110,44,101,45,102,42,116,45,99,42,111,93,125,114,101,116,117,114,110,32,112,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,91,114,42,40,115,42,116,45,108,42,110,43,104,41,44,105,42,40,100,45,108,42,116,45,115,42,110,41,93,125,44,112,125,102,117,110,99,116,105,111,110,32,81,115,40,116,41,123,114,101,116,117,114,110,32,75,115,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,41,40,41,125,102,117,110,99,116,105,111,110,32,75,115,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,61,49,53,48,44,104,61,52,56,48,44,100,61,50,53,48,44,112,61,48,44,118,61,48,44,103,61,48,44,121,61,48,44,95,61,48,44,98,61,48,44,109,61,49,44,120,61,49,44,119,61,110,117,108,108,44,77,61,100,102,44,78,61,110,117,108,108,44,84,61,89,102,44,65,61,46,53,59,102,117,110,99,116,105,111,110,32,83,40,116,41,123,114,101,116,117,114,110,32,99,40,116,91,48,93,42,99,117,44,116,91,49,93,42,99,117,41,125,102,117,110,99,116,105,111,110,32,107,40,116,41,123,114,101,116,117,114,110,40,116,61,99,46,105,110,118,101,114,116,40,116,91,48,93,44,116,91,49,93,41,41,38,38,91,116,91,48,93,42,117,117,44,116,91,49,93,42,117,117,93,125,102,117,110,99,116,105,111,110,32,69,40,41,123,118,97,114,32,116,61,90,115,40,108,44,48,44,48,44,109,44,120,44,98,41,46,97,112,112,108,121,40,110,117,108,108,44,110,40,112,44,118,41,41,44,114,61,40,98,63,90,115,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,41,123,102,117,110,99,116,105,111,110,32,111,40,111,44,97,41,123,114,101,116,117,114,110,91,110,43,116,42,40,111,42,61,114,41,44,101,45,116,42,40,97,42,61,105,41,93,125,114,101,116,117,114,110,32,111,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,111,44,97,41,123,114,101,116,117,114,110,91,40,111,45,110,41,47,116,42,114,44,40,101,45,97,41,47,116,42,105,93,125,44,111,125,41,40,108,44,104,45,116,91,48,93,44,100,45,116,91,49,93,44,109,44,120,44,98,41,59,114,101,116,117,114,110,32,101,61,36,99,40,103,44,121,44,95,41,44,117,61,86,99,40,110,44,114,41,44,99,61,86,99,40,101,44,117,41,44,97,61,36,115,40,117,44,65,41,44,67,40,41,125,102,117,110,99,116,105,111,110,32,67,40,41,123,114,101,116,117,114,110,32,102,61,115,61,110,117,108,108,44,83,125,114,101,116,117,114,110,32,83,46,115,116,114,101,97,109,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,38,38,115,61,61,61,116,63,102,58,102,61,87,115,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,66,115,40,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,110,44,101,41,123,118,97,114,32,114,61,116,40,110,44,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,115,116,114,101,97,109,46,112,111,105,110,116,40,114,91,48,93,44,114,91,49,93,41,125,125,41,125,40,101,41,40,77,40,97,40,84,40,115,61,116,41,41,41,41,41,125,44,83,46,112,114,101,99,108,105,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,77,61,116,44,119,61,118,111,105,100,32,48,44,67,40,41,41,58,77,125,44,83,46,112,111,115,116,99,108,105,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,84,61,116,44,78,61,114,61,105,61,111,61,110,117,108,108,44,67,40,41,41,58,84,125,44,83,46,99,108,105,112,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,77,61,43,116,63,112,102,40,119,61,116,42,99,117,41,58,40,119,61,110,117,108,108,44,100,102,41,44,67,40,41,41,58,119,42,117,117,125,44,83,46,99,108,105,112,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,84,61,110,117,108,108,61,61,116,63,40,78,61,114,61,105,61,111,61,110,117,108,108,44,89,102,41,58,121,102,40,78,61,43,116,91,48,93,91,48,93,44,114,61,43,116,91,48,93,91,49,93,44,105,61,43,116,91,49,93,91,48,93,44,111,61,43,116,91,49,93,91,49,93,41,44,67,40,41,41,58,110,117,108,108,61,61,78,63,110,117,108,108,58,91,91,78,44,114,93,44,91,105,44,111,93,93,125,44,83,46,115,99,97,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,108,61,43,116,44,69,40,41,41,58,108,125,44,83,46,116,114,97,110,115,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,104,61,43,116,91,48,93,44,100,61,43,116,91,49,93,44,69,40,41,41,58,91,104,44,100,93,125,44,83,46,99,101,110,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,112,61,116,91,48,93,37,51,54,48,42,99,117,44,118,61,116,91,49,93,37,51,54,48,42,99,117,44,69,40,41,41,58,91,112,42,117,117,44,118,42,117,117,93,125,44,83,46,114,111,116,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,103,61,116,91,48,93,37,51,54,48,42,99,117,44,121,61,116,91,49,93,37,51,54,48,42,99,117,44,95,61,116,46,108,101,110,103,116,104,62,50,63,116,91,50,93,37,51,54,48,42,99,117,58,48,44,69,40,41,41,58,91,103,42,117,117,44,121,42,117,117,44,95,42,117,117,93,125,44,83,46,97,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,98,61,116,37,51,54,48,42,99,117,44,69,40,41,41,58,98,42,117,117,125,44,83,46,114,101,102,108,101,99,116,88,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,109,61,116,63,45,49,58,49,44,69,40,41,41,58,109,60,48,125,44,83,46,114,101,102,108,101,99,116,89,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,120,61,116,63,45,49,58,49,44,69,40,41,41,58,120,60,48,125,44,83,46,112,114,101,99,105,115,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,36,115,40,117,44,65,61,116,42,116,41,44,67,40,41,41,58,98,117,40,65,41,125,44,83,46,102,105,116,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,73,115,40,83,44,116,44,110,41,125,44,83,46,102,105,116,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,72,115,40,83,44,116,44,110,41,125,44,83,46,102,105,116,87,105,100,116,104,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,106,115,40,83,44,116,44,110,41,125,44,83,46,102,105,116,72,101,105,103,104,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,88,115,40,83,44,116,44,110,41,125,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,61,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,83,46,105,110,118,101,114,116,61,110,46,105,110,118,101,114,116,38,38,107,44,69,40,41,125,125,102,117,110,99,116,105,111,110,32,74,115,40,116,41,123,118,97,114,32,110,61,48,44,101,61,114,117,47,51,44,114,61,75,115,40,116,41,44,105,61,114,40,110,44,101,41,59,114,101,116,117,114,110,32,105,46,112,97,114,97,108,108,101,108,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,114,40,110,61,116,91,48,93,42,99,117,44,101,61,116,91,49,93,42,99,117,41,58,91,110,42,117,117,44,101,42,117,117,93,125,44,105,125,102,117,110,99,116,105,111,110,32,116,108,40,116,44,110,41,123,118,97,114,32,101,61,121,117,40,116,41,44,114,61,40,101,43,121,117,40,110,41,41,47,50,59,105,102,40,102,117,40,114,41,60,110,117,41,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,104,117,40,116,41,59,102,117,110,99,116,105,111,110,32,101,40,116,44,101,41,123,114,101,116,117,114,110,91,116,42,110,44,121,117,40,101,41,47,110,93,125,114,101,116,117,114,110,32,101,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,91,116,47,110,44,119,117,40,101,42,110,41,93,125,44,101,125,40,116,41,59,118,97,114,32,105,61,49,43,101,42,40,50,42,114,45,101,41,44,111,61,98,117,40,105,41,47,114,59,102,117,110,99,116,105,111,110,32,97,40,116,44,110,41,123,118,97,114,32,101,61,98,117,40,105,45,50,42,114,42,121,117,40,110,41,41,47,114,59,114,101,116,117,114,110,91,101,42,121,117,40,116,42,61,114,41,44,111,45,101,42,104,117,40,116,41,93,125,114,101,116,117,114,110,32,97,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,111,45,110,44,97,61,108,117,40,116,44,102,117,40,101,41,41,42,95,117,40,101,41,59,114,101,116,117,114,110,32,101,42,114,60,48,38,38,40,97,45,61,114,117,42,95,117,40,116,41,42,95,117,40,101,41,41,44,91,97,47,114,44,119,117,40,40,105,45,40,116,42,116,43,101,42,101,41,42,114,42,114,41,47,40,50,42,114,41,41,93,125,44,97,125,102,117,110,99,116,105,111,110,32,110,108,40,41,123,114,101,116,117,114,110,32,74,115,40,116,108,41,46,115,99,97,108,101,40,49,53,53,46,52,50,52,41,46,99,101,110,116,101,114,40,91,48,44,51,51,46,54,52,52,50,93,41,125,102,117,110,99,116,105,111,110,32,101,108,40,41,123,114,101,116,117,114,110,32,110,108,40,41,46,112,97,114,97,108,108,101,108,115,40,91,50,57,46,53,44,52,53,46,53,93,41,46,115,99,97,108,101,40,49,48,55,48,41,46,116,114,97,110,115,108,97,116,101,40,91,52,56,48,44,50,53,48,93,41,46,114,111,116,97,116,101,40,91,57,54,44,48,93,41,46,99,101,110,116,101,114,40,91,45,46,54,44,51,56,46,55,93,41,125,102,117,110,99,116,105,111,110,32,114,108,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,41,123,118,97,114,32,114,61,104,117,40,110,41,44,105,61,104,117,40,101,41,44,111,61,116,40,114,42,105,41,59,114,101,116,117,114,110,91,111,42,105,42,121,117,40,110,41,44,111,42,121,117,40,101,41,93,125,125,102,117,110,99,116,105,111,110,32,105,108,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,41,123,118,97,114,32,114,61,98,117,40,110,42,110,43,101,42,101,41,44,105,61,116,40,114,41,44,111,61,121,117,40,105,41,44,97,61,104,117,40,105,41,59,114,101,116,117,114,110,91,108,117,40,110,42,111,44,114,42,97,41,44,119,117,40,114,38,38,101,42,111,47,114,41,93,125,125,118,97,114,32,111,108,61,114,108,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,98,117,40,50,47,40,49,43,116,41,41,125,41,59,111,108,46,105,110,118,101,114,116,61,105,108,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,50,42,119,117,40,116,47,50,41,125,41,59,118,97,114,32,97,108,61,114,108,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,61,120,117,40,116,41,41,38,38,116,47,121,117,40,116,41,125,41,59,102,117,110,99,116,105,111,110,32,117,108,40,116,44,110,41,123,114,101,116,117,114,110,91,116,44,118,117,40,109,117,40,40,105,117,43,110,41,47,50,41,41,93,125,102,117,110,99,116,105,111,110,32,99,108,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,61,81,115,40,116,41,44,111,61,105,46,99,101,110,116,101,114,44,97,61,105,46,115,99,97,108,101,44,117,61,105,46,116,114,97,110,115,108,97,116,101,44,99,61,105,46,99,108,105,112,69,120,116,101,110,116,44,102,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,115,40,41,123,118,97,114,32,111,61,114,117,42,97,40,41,44,117,61,105,40,75,99,40,105,46,114,111,116,97,116,101,40,41,41,46,105,110,118,101,114,116,40,91,48,44,48,93,41,41,59,114,101,116,117,114,110,32,99,40,110,117,108,108,61,61,102,63,91,91,117,91,48,93,45,111,44,117,91,49,93,45,111,93,44,91,117,91,48,93,43,111,44,117,91,49,93,43,111,93,93,58,116,61,61,61,117,108,63,91,91,77,97,116,104,46,109,97,120,40,117,91,48,93,45,111,44,102,41,44,110,93,44,91,77,97,116,104,46,109,105,110,40,117,91,48,93,43,111,44,101,41,44,114,93,93,58,91,91,102,44,77,97,116,104,46,109,97,120,40,117,91,49,93,45,111,44,110,41,93,44,91,101,44,77,97,116,104,46,109,105,110,40,117,91,49,93,43,111,44,114,41,93,93,41,125,114,101,116,117,114,110,32,105,46,115,99,97,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,40,116,41,44,115,40,41,41,58,97,40,41,125,44,105,46,116,114,97,110,115,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,40,116,41,44,115,40,41,41,58,117,40,41,125,44,105,46,99,101,110,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,40,116,41,44,115,40,41,41,58,111,40,41,125,44,105,46,99,108,105,112,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,117,108,108,61,61,116,63,102,61,110,61,101,61,114,61,110,117,108,108,58,40,102,61,43,116,91,48,93,91,48,93,44,110,61,43,116,91,48,93,91,49,93,44,101,61,43,116,91,49,93,91,48,93,44,114,61,43,116,91,49,93,91,49,93,41,44,115,40,41,41,58,110,117,108,108,61,61,102,63,110,117,108,108,58,91,91,102,44,110,93,44,91,101,44,114,93,93,125,44,115,40,41,125,102,117,110,99,116,105,111,110,32,102,108,40,116,41,123,114,101,116,117,114,110,32,109,117,40,40,105,117,43,116,41,47,50,41,125,102,117,110,99,116,105,111,110,32,115,108,40,116,44,110,41,123,118,97,114,32,101,61,104,117,40,116,41,44,114,61,116,61,61,61,110,63,121,117,40,116,41,58,118,117,40,101,47,104,117,40,110,41,41,47,118,117,40,102,108,40,110,41,47,102,108,40,116,41,41,44,105,61,101,42,103,117,40,102,108,40,116,41,44,114,41,47,114,59,105,102,40,33,114,41,114,101,116,117,114,110,32,117,108,59,102,117,110,99,116,105,111,110,32,111,40,116,44,110,41,123,105,62,48,63,110,60,45,105,117,43,110,117,38,38,40,110,61,45,105,117,43,110,117,41,58,110,62,105,117,45,110,117,38,38,40,110,61,105,117,45,110,117,41,59,118,97,114,32,101,61,105,47,103,117,40,102,108,40,110,41,44,114,41,59,114,101,116,117,114,110,91,101,42,121,117,40,114,42,116,41,44,105,45,101,42,104,117,40,114,42,116,41,93,125,114,101,116,117,114,110,32,111,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,105,45,110,44,111,61,95,117,40,114,41,42,98,117,40,116,42,116,43,101,42,101,41,44,97,61,108,117,40,116,44,102,117,40,101,41,41,42,95,117,40,101,41,59,114,101,116,117,114,110,32,101,42,114,60,48,38,38,40,97,45,61,114,117,42,95,117,40,116,41,42,95,117,40,101,41,41,44,91,97,47,114,44,50,42,115,117,40,103,117,40,105,47,111,44,49,47,114,41,41,45,105,117,93,125,44,111,125,102,117,110,99,116,105,111,110,32,108,108,40,116,44,110,41,123,114,101,116,117,114,110,91,116,44,110,93,125,102,117,110,99,116,105,111,110,32,104,108,40,116,44,110,41,123,118,97,114,32,101,61,104,117,40,116,41,44,114,61,116,61,61,61,110,63,121,117,40,116,41,58,40,101,45,104,117,40,110,41,41,47,40,110,45,116,41,44,105,61,101,47,114,43,116,59,105,102,40,102,117,40,114,41,60,110,117,41,114,101,116,117,114,110,32,108,108,59,102,117,110,99,116,105,111,110,32,111,40,116,44,110,41,123,118,97,114,32,101,61,105,45,110,44,111,61,114,42,116,59,114,101,116,117,114,110,91,101,42,121,117,40,111,41,44,105,45,101,42,104,117,40,111,41,93,125,114,101,116,117,114,110,32,111,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,105,45,110,44,111,61,108,117,40,116,44,102,117,40,101,41,41,42,95,117,40,101,41,59,114,101,116,117,114,110,32,101,42,114,60,48,38,38,40,111,45,61,114,117,42,95,117,40,116,41,42,95,117,40,101,41,41,44,91,111,47,114,44,105,45,95,117,40,114,41,42,98,117,40,116,42,116,43,101,42,101,41,93,125,44,111,125,97,108,46,105,110,118,101,114,116,61,105,108,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,41,44,117,108,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,91,116,44,50,42,115,117,40,112,117,40,110,41,41,45,105,117,93,125,44,108,108,46,105,110,118,101,114,116,61,108,108,59,118,97,114,32,100,108,61,49,46,51,52,48,50,54,52,44,112,108,61,45,46,48,56,49,49,48,54,44,118,108,61,56,57,51,101,45,54,44,103,108,61,46,48,48,51,55,57,54,44,121,108,61,98,117,40,51,41,47,50,59,102,117,110,99,116,105,111,110,32,95,108,40,116,44,110,41,123,118,97,114,32,101,61,119,117,40,121,108,42,121,117,40,110,41,41,44,114,61,101,42,101,44,105,61,114,42,114,42,114,59,114,101,116,117,114,110,91,116,42,104,117,40,101,41,47,40,121,108,42,40,100,108,43,51,42,112,108,42,114,43,105,42,40,55,42,118,108,43,57,42,103,108,42,114,41,41,41,44,101,42,40,100,108,43,112,108,42,114,43,105,42,40,118,108,43,103,108,42,114,41,41,93,125,102,117,110,99,116,105,111,110,32,98,108,40,116,44,110,41,123,118,97,114,32,101,61,104,117,40,110,41,44,114,61,104,117,40,116,41,42,101,59,114,101,116,117,114,110,91,101,42,121,117,40,116,41,47,114,44,121,117,40,110,41,47,114,93,125,102,117,110,99,116,105,111,110,32,109,108,40,116,44,110,41,123,118,97,114,32,101,61,110,42,110,44,114,61,101,42,101,59,114,101,116,117,114,110,91,116,42,40,46,56,55,48,55,45,46,49,51,49,57,55,57,42,101,43,114,42,40,114,42,40,46,48,48,51,57,55,49,42,101,45,46,48,48,49,53,50,57,42,114,41,45,46,48,49,51,55,57,49,41,41,44,110,42,40,49,46,48,48,55,50,50,54,43,101,42,40,46,48,49,53,48,56,53,43,114,42,40,46,48,50,56,56,55,52,42,101,45,46,48,52,52,52,55,53,45,46,48,48,53,57,49,54,42,114,41,41,41,93,125,102,117,110,99,116,105,111,110,32,120,108,40,116,44,110,41,123,114,101,116,117,114,110,91,104,117,40,110,41,42,121,117,40,116,41,44,121,117,40,110,41,93,125,102,117,110,99,116,105,111,110,32,119,108,40,116,44,110,41,123,118,97,114,32,101,61,104,117,40,110,41,44,114,61,49,43,104,117,40,116,41,42,101,59,114,101,116,117,114,110,91,101,42,121,117,40,116,41,47,114,44,121,117,40,110,41,47,114,93,125,102,117,110,99,116,105,111,110,32,77,108,40,116,44,110,41,123,114,101,116,117,114,110,91,118,117,40,109,117,40,40,105,117,43,110,41,47,50,41,41,44,45,116,93,125,102,117,110,99,116,105,111,110,32,78,108,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,112,97,114,101,110,116,61,61,61,110,46,112,97,114,101,110,116,63,49,58,50,125,102,117,110,99,116,105,111,110,32,84,108,40,116,44,110,41,123,114,101,116,117,114,110,32,116,43,110,46,120,125,102,117,110,99,116,105,111,110,32,65,108,40,116,44,110,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,116,44,110,46,121,41,125,102,117,110,99,116,105,111,110,32,83,108,40,116,41,123,118,97,114,32,110,61,48,44,101,61,116,46,99,104,105,108,100,114,101,110,44,114,61,101,38,38,101,46,108,101,110,103,116,104,59,105,102,40,114,41,102,111,114,40,59,45,45,114,62,61,48,59,41,110,43,61,101,91,114,93,46,118,97,108,117,101,59,101,108,115,101,32,110,61,49,59,116,46,118,97,108,117,101,61,110,125,102,117,110,99,116,105,111,110,32,107,108,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,44,111,44,97,44,117,61,110,101,119,32,122,108,40,116,41,44,99,61,43,116,46,118,97,108,117,101,38,38,40,117,46,118,97,108,117,101,61,116,46,118,97,108,117,101,41,44,102,61,91,117,93,59,102,111,114,40,110,117,108,108,61,61,110,38,38,40,110,61,69,108,41,59,101,61,102,46,112,111,112,40,41,59,41,105,102,40,99,38,38,40,101,46,118,97,108,117,101,61,43,101,46,100,97,116,97,46,118,97,108,117,101,41,44,40,105,61,110,40,101,46,100,97,116,97,41,41,38,38,40,97,61,105,46,108,101,110,103,116,104,41,41,102,111,114,40,101,46,99,104,105,108,100,114,101,110,61,110,101,119,32,65,114,114,97,121,40,97,41,44,111,61,97,45,49,59,111,62,61,48,59,45,45,111,41,102,46,112,117,115,104,40,114,61,101,46,99,104,105,108,100,114,101,110,91,111,93,61,110,101,119,32,122,108,40,105,91,111,93,41,41,44,114,46,112,97,114,101,110,116,61,101,44,114,46,100,101,112,116,104,61,101,46,100,101,112,116,104,43,49,59,114,101,116,117,114,110,32,117,46,101,97,99,104,66,101,102,111,114,101,40,80,108,41,125,102,117,110,99,116,105,111,110,32,69,108,40,116,41,123,114,101,116,117,114,110,32,116,46,99,104,105,108,100,114,101,110,125,102,117,110,99,116,105,111,110,32,67,108,40,116,41,123,116,46,100,97,116,97,61,116,46,100,97,116,97,46,100,97,116,97,125,102,117,110,99,116,105,111,110,32,80,108,40,116,41,123,118,97,114,32,110,61,48,59,100,111,123,116,46,104,101,105,103,104,116,61,110,125,119,104,105,108,101,40,40,116,61,116,46,112,97,114,101,110,116,41,38,38,116,46,104,101,105,103,104,116,60,43,43,110,41,125,102,117,110,99,116,105,111,110,32,122,108,40,116,41,123,116,104,105,115,46,100,97,116,97,61,116,44,116,104,105,115,46,100,101,112,116,104,61,116,104,105,115,46,104,101,105,103,104,116,61,48,44,116,104,105,115,46,112,97,114,101,110,116,61,110,117,108,108,125,95,108,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,44,114,61,110,44,105,61,114,42,114,44,111,61,105,42,105,42,105,44,97,61,48,59,97,60,49,50,38,38,40,111,61,40,105,61,40,114,45,61,101,61,40,114,42,40,100,108,43,112,108,42,105,43,111,42,40,118,108,43,103,108,42,105,41,41,45,110,41,47,40,100,108,43,51,42,112,108,42,105,43,111,42,40,55,42,118,108,43,57,42,103,108,42,105,41,41,41,42,114,41,42,105,42,105,44,33,40,102,117,40,101,41,60,101,117,41,41,59,43,43,97,41,59,114,101,116,117,114,110,91,121,108,42,116,42,40,100,108,43,51,42,112,108,42,105,43,111,42,40,55,42,118,108,43,57,42,103,108,42,105,41,41,47,104,117,40,114,41,44,119,117,40,121,117,40,114,41,47,121,108,41,93,125,44,98,108,46,105,110,118,101,114,116,61,105,108,40,115,117,41,44,109,108,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,61,110,44,105,61,50,53,59,100,111,123,118,97,114,32,111,61,114,42,114,44,97,61,111,42,111,59,114,45,61,101,61,40,114,42,40,49,46,48,48,55,50,50,54,43,111,42,40,46,48,49,53,48,56,53,43,97,42,40,46,48,50,56,56,55,52,42,111,45,46,48,52,52,52,55,53,45,46,48,48,53,57,49,54,42,97,41,41,41,45,110,41,47,40,49,46,48,48,55,50,50,54,43,111,42,40,46,48,52,53,50,53,53,43,97,42,40,46,50,53,57,56,54,54,42,111,45,46,51,49,49,51,50,53,45,46,48,48,53,57,49,54,42,49,49,42,97,41,41,41,125,119,104,105,108,101,40,102,117,40,101,41,62,110,117,38,38,45,45,105,62,48,41,59,114,101,116,117,114,110,91,116,47,40,46,56,55,48,55,43,40,111,61,114,42,114,41,42,40,111,42,40,111,42,111,42,111,42,40,46,48,48,51,57,55,49,45,46,48,48,49,53,50,57,42,111,41,45,46,48,49,51,55,57,49,41,45,46,49,51,49,57,55,57,41,41,44,114,93,125,44,120,108,46,105,110,118,101,114,116,61,105,108,40,119,117,41,44,119,108,46,105,110,118,101,114,116,61,105,108,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,50,42,115,117,40,116,41,125,41,44,77,108,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,91,45,110,44,50,42,115,117,40,112,117,40,116,41,41,45,105,117,93,125,44,122,108,46,112,114,111,116,111,116,121,112,101,61,107,108,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,122,108,44,99,111,117,110,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,65,102,116,101,114,40,83,108,41,125,44,101,97,99,104,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,44,111,61,116,104,105,115,44,97,61,91,111,93,59,100,111,123,102,111,114,40,110,61,97,46,114,101,118,101,114,115,101,40,41,44,97,61,91,93,59,111,61,110,46,112,111,112,40,41,59,41,105,102,40,116,40,111,41,44,101,61,111,46,99,104,105,108,100,114,101,110,41,102,111,114,40,114,61,48,44,105,61,101,46,108,101,110,103,116,104,59,114,60,105,59,43,43,114,41,97,46,112,117,115,104,40,101,91,114,93,41,125,119,104,105,108,101,40,97,46,108,101,110,103,116,104,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,101,97,99,104,65,102,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,44,105,61,116,104,105,115,44,111,61,91,105,93,44,97,61,91,93,59,105,61,111,46,112,111,112,40,41,59,41,105,102,40,97,46,112,117,115,104,40,105,41,44,110,61,105,46,99,104,105,108,100,114,101,110,41,102,111,114,40,101,61,48,44,114,61,110,46,108,101,110,103,116,104,59,101,60,114,59,43,43,101,41,111,46,112,117,115,104,40,110,91,101,93,41,59,102,111,114,40,59,105,61,97,46,112,111,112,40,41,59,41,116,40,105,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,101,97,99,104,66,101,102,111,114,101,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,61,116,104,105,115,44,105,61,91,114,93,59,114,61,105,46,112,111,112,40,41,59,41,105,102,40,116,40,114,41,44,110,61,114,46,99,104,105,108,100,114,101,110,41,102,111,114,40,101,61,110,46,108,101,110,103,116,104,45,49,59,101,62,61,48,59,45,45,101,41,105,46,112,117,115,104,40,110,91,101,93,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,115,117,109,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,65,102,116,101,114,40,102,117,110,99,116,105,111,110,40,110,41,123,102,111,114,40,118,97,114,32,101,61,43,116,40,110,46,100,97,116,97,41,124,124,48,44,114,61,110,46,99,104,105,108,100,114,101,110,44,105,61,114,38,38,114,46,108,101,110,103,116,104,59,45,45,105,62,61,48,59,41,101,43,61,114,91,105,93,46,118,97,108,117,101,59,110,46,118,97,108,117,101,61,101,125,41,125,44,115,111,114,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,66,101,102,111,114,101,40,102,117,110,99,116,105,111,110,40,110,41,123,110,46,99,104,105,108,100,114,101,110,38,38,110,46,99,104,105,108,100,114,101,110,46,115,111,114,116,40,116,41,125,41,125,44,112,97,116,104,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,61,116,104,105,115,44,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,116,61,61,61,110,41,114,101,116,117,114,110,32,116,59,118,97,114,32,101,61,116,46,97,110,99,101,115,116,111,114,115,40,41,44,114,61,110,46,97,110,99,101,115,116,111,114,115,40,41,44,105,61,110,117,108,108,59,102,111,114,40,116,61,101,46,112,111,112,40,41,44,110,61,114,46,112,111,112,40,41,59,116,61,61,61,110,59,41,105,61,116,44,116,61,101,46,112,111,112,40,41,44,110,61,114,46,112,111,112,40,41,59,114,101,116,117,114,110,32,105,125,40,110,44,116,41,44,114,61,91,110,93,59,110,33,61,61,101,59,41,110,61,110,46,112,97,114,101,110,116,44,114,46,112,117,115,104,40,110,41,59,102,111,114,40,118,97,114,32,105,61,114,46,108,101,110,103,116,104,59,116,33,61,61,101,59,41,114,46,115,112,108,105,99,101,40,105,44,48,44,116,41,44,116,61,116,46,112,97,114,101,110,116,59,114,101,116,117,114,110,32,114,125,44,97,110,99,101,115,116,111,114,115,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,116,104,105,115,44,110,61,91,116,93,59,116,61,116,46,112,97,114,101,110,116,59,41,110,46,112,117,115,104,40,116,41,59,114,101,116,117,114,110,32,110,125,44,100,101,115,99,101,110,100,97,110,116,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,110,41,123,116,46,112,117,115,104,40,110,41,125,41,44,116,125,44,108,101,97,118,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,66,101,102,111,114,101,40,102,117,110,99,116,105,111,110,40,110,41,123,110,46,99,104,105,108,100,114,101,110,124,124,116,46,112,117,115,104,40,110,41,125,41,44,116,125,44,108,105,110,107,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,110,61,91,93,59,114,101,116,117,114,110,32,116,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,101,33,61,61,116,38,38,110,46,112,117,115,104,40,123,115,111,117,114,99,101,58,101,46,112,97,114,101,110,116,44,116,97,114,103,101,116,58,101,125,41,125,41,44,110,125,44,99,111,112,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,108,40,116,104,105,115,41,46,101,97,99,104,66,101,102,111,114,101,40,67,108,41,125,125,59,118,97,114,32,82,108,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,59,102,117,110,99,116,105,111,110,32,68,108,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,61,48,44,105,61,40,116,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,61,116,46,108,101,110,103,116,104,59,114,59,41,101,61,77,97,116,104,46,114,97,110,100,111,109,40,41,42,114,45,45,124,48,44,110,61,116,91,114,93,44,116,91,114,93,61,116,91,101,93,44,116,91,101,93,61,110,59,114,101,116,117,114,110,32,116,125,40,82,108,46,99,97,108,108,40,116,41,41,41,46,108,101,110,103,116,104,44,111,61,91,93,59,114,60,105,59,41,110,61,116,91,114,93,44,101,38,38,85,108,40,101,44,110,41,63,43,43,114,58,40,101,61,66,108,40,111,61,113,108,40,111,44,110,41,41,44,114,61,48,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,113,108,40,116,44,110,41,123,118,97,114,32,101,44,114,59,105,102,40,79,108,40,110,44,116,41,41,114,101,116,117,114,110,91,110,93,59,102,111,114,40,101,61,48,59,101,60,116,46,108,101,110,103,116,104,59,43,43,101,41,105,102,40,76,108,40,110,44,116,91,101,93,41,38,38,79,108,40,70,108,40,116,91,101,93,44,110,41,44,116,41,41,114,101,116,117,114,110,91,116,91,101,93,44,110,93,59,102,111,114,40,101,61,48,59,101,60,116,46,108,101,110,103,116,104,45,49,59,43,43,101,41,102,111,114,40,114,61,101,43,49,59,114,60,116,46,108,101,110,103,116,104,59,43,43,114,41,105,102,40,76,108,40,70,108,40,116,91,101,93,44,116,91,114,93,41,44,110,41,38,38,76,108,40,70,108,40,116,91,101,93,44,110,41,44,116,91,114,93,41,38,38,76,108,40,70,108,40,116,91,114,93,44,110,41,44,116,91,101,93,41,38,38,79,108,40,89,108,40,116,91,101,93,44,116,91,114,93,44,110,41,44,116,41,41,114,101,116,117,114,110,91,116,91,101,93,44,116,91,114,93,44,110,93,59,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,125,102,117,110,99,116,105,111,110,32,76,108,40,116,44,110,41,123,118,97,114,32,101,61,116,46,114,45,110,46,114,44,114,61,110,46,120,45,116,46,120,44,105,61,110,46,121,45,116,46,121,59,114,101,116,117,114,110,32,101,60,48,124,124,101,42,101,60,114,42,114,43,105,42,105,125,102,117,110,99,116,105,111,110,32,85,108,40,116,44,110,41,123,118,97,114,32,101,61,116,46,114,45,110,46,114,43,49,101,45,54,44,114,61,110,46,120,45,116,46,120,44,105,61,110,46,121,45,116,46,121,59,114,101,116,117,114,110,32,101,62,48,38,38,101,42,101,62,114,42,114,43,105,42,105,125,102,117,110,99,116,105,111,110,32,79,108,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,48,59,101,60,110,46,108,101,110,103,116,104,59,43,43,101,41,105,102,40,33,85,108,40,116,44,110,91,101,93,41,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,102,117,110,99,116,105,111,110,32,66,108,40,116,41,123,115,119,105,116,99,104,40,116,46,108,101,110,103,116,104,41,123,99,97,115,101,32,49,58,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,123,120,58,116,46,120,44,121,58,116,46,121,44,114,58,116,46,114,125,125,40,116,91,48,93,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,70,108,40,116,91,48,93,44,116,91,49,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,89,108,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,125,125,102,117,110,99,116,105,111,110,32,70,108,40,116,44,110,41,123,118,97,114,32,101,61,116,46,120,44,114,61,116,46,121,44,105,61,116,46,114,44,111,61,110,46,120,44,97,61,110,46,121,44,117,61,110,46,114,44,99,61,111,45,101,44,102,61,97,45,114,44,115,61,117,45,105,44,108,61,77,97,116,104,46,115,113,114,116,40,99,42,99,43,102,42,102,41,59,114,101,116,117,114,110,123,120,58,40,101,43,111,43,99,47,108,42,115,41,47,50,44,121,58,40,114,43,97,43,102,47,108,42,115,41,47,50,44,114,58,40,108,43,105,43,117,41,47,50,125,125,102,117,110,99,116,105,111,110,32,89,108,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,120,44,105,61,116,46,121,44,111,61,116,46,114,44,97,61,110,46,120,44,117,61,110,46,121,44,99,61,110,46,114,44,102,61,101,46,120,44,115,61,101,46,121,44,108,61,101,46,114,44,104,61,114,45,97,44,100,61,114,45,102,44,112,61,105,45,117,44,118,61,105,45,115,44,103,61,99,45,111,44,121,61,108,45,111,44,95,61,114,42,114,43,105,42,105,45,111,42,111,44,98,61,95,45,97,42,97,45,117,42,117,43,99,42,99,44,109,61,95,45,102,42,102,45,115,42,115,43,108,42,108,44,120,61,100,42,112,45,104,42,118,44,119,61,40,112,42,109,45,118,42,98,41,47,40,50,42,120,41,45,114,44,77,61,40,118,42,103,45,112,42,121,41,47,120,44,78,61,40,100,42,98,45,104,42,109,41,47,40,50,42,120,41,45,105,44,84,61,40,104,42,121,45,100,42,103,41,47,120,44,65,61,77,42,77,43,84,42,84,45,49,44,83,61,50,42,40,111,43,119,42,77,43,78,42,84,41,44,107,61,119,42,119,43,78,42,78,45,111,42,111,44,69,61,45,40,65,63,40,83,43,77,97,116,104,46,115,113,114,116,40,83,42,83,45,52,42,65,42,107,41,41,47,40,50,42,65,41,58,107,47,83,41,59,114,101,116,117,114,110,123,120,58,114,43,119,43,77,42,69,44,121,58,105,43,78,43,84,42,69,44,114,58,69,125,125,102,117,110,99,116,105,111,110,32,73,108,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,44,97,44,117,61,116,46,120,45,110,46,120,44,99,61,116,46,121,45,110,46,121,44,102,61,117,42,117,43,99,42,99,59,102,63,40,105,61,110,46,114,43,101,46,114,44,105,42,61,105,44,97,61,116,46,114,43,101,46,114,44,105,62,40,97,42,61,97,41,63,40,114,61,40,102,43,97,45,105,41,47,40,50,42,102,41,44,111,61,77,97,116,104,46,115,113,114,116,40,77,97,116,104,46,109,97,120,40,48,44,97,47,102,45,114,42,114,41,41,44,101,46,120,61,116,46,120,45,114,42,117,45,111,42,99,44,101,46,121,61,116,46,121,45,114,42,99,43,111,42,117,41,58,40,114,61,40,102,43,105,45,97,41,47,40,50,42,102,41,44,111,61,77,97,116,104,46,115,113,114,116,40,77,97,116,104,46,109,97,120,40,48,44,105,47,102,45,114,42,114,41,41,44,101,46,120,61,110,46,120,43,114,42,117,45,111,42,99,44,101,46,121,61,110,46,121,43,114,42,99,43,111,42,117,41,41,58,40,101,46,120,61,110,46,120,43,101,46,114,44,101,46,121,61,110,46,121,41,125,102,117,110,99,116,105,111,110,32,72,108,40,116,44,110,41,123,118,97,114,32,101,61,116,46,114,43,110,46,114,45,49,101,45,54,44,114,61,110,46,120,45,116,46,120,44,105,61,110,46,121,45,116,46,121,59,114,101,116,117,114,110,32,101,62,48,38,38,101,42,101,62,114,42,114,43,105,42,105,125,102,117,110,99,116,105,111,110,32,106,108,40,116,41,123,118,97,114,32,110,61,116,46,95,44,101,61,116,46,110,101,120,116,46,95,44,114,61,110,46,114,43,101,46,114,44,105,61,40,110,46,120,42,101,46,114,43,101,46,120,42,110,46,114,41,47,114,44,111,61,40,110,46,121,42,101,46,114,43,101,46,121,42,110,46,114,41,47,114,59,114,101,116,117,114,110,32,105,42,105,43,111,42,111,125,102,117,110,99,116,105,111,110,32,88,108,40,116,41,123,116,104,105,115,46,95,61,116,44,116,104,105,115,46,110,101,120,116,61,110,117,108,108,44,116,104,105,115,46,112,114,101,118,105,111,117,115,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,86,108,40,116,41,123,105,102,40,33,40,105,61,116,46,108,101,110,103,116,104,41,41,114,101,116,117,114,110,32,48,59,118,97,114,32,110,44,101,44,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,59,105,102,40,40,110,61,116,91,48,93,41,46,120,61,48,44,110,46,121,61,48,44,33,40,105,62,49,41,41,114,101,116,117,114,110,32,110,46,114,59,105,102,40,101,61,116,91,49,93,44,110,46,120,61,45,101,46,114,44,101,46,120,61,110,46,114,44,101,46,121,61,48,44,33,40,105,62,50,41,41,114,101,116,117,114,110,32,110,46,114,43,101,46,114,59,73,108,40,101,44,110,44,114,61,116,91,50,93,41,44,110,61,110,101,119,32,88,108,40,110,41,44,101,61,110,101,119,32,88,108,40,101,41,44,114,61,110,101,119,32,88,108,40,114,41,44,110,46,110,101,120,116,61,114,46,112,114,101,118,105,111,117,115,61,101,44,101,46,110,101,120,116,61,110,46,112,114,101,118,105,111,117,115,61,114,44,114,46,110,101,120,116,61,101,46,112,114,101,118,105,111,117,115,61,110,59,116,58,102,111,114,40,117,61,51,59,117,60,105,59,43,43,117,41,123,73,108,40,110,46,95,44,101,46,95,44,114,61,116,91,117,93,41,44,114,61,110,101,119,32,88,108,40,114,41,44,99,61,101,46,110,101,120,116,44,102,61,110,46,112,114,101,118,105,111,117,115,44,115,61,101,46,95,46,114,44,108,61,110,46,95,46,114,59,100,111,123,105,102,40,115,60,61,108,41,123,105,102,40,72,108,40,99,46,95,44,114,46,95,41,41,123,101,61,99,44,110,46,110,101,120,116,61,101,44,101,46,112,114,101,118,105,111,117,115,61,110,44,45,45,117,59,99,111,110,116,105,110,117,101,32,116,125,115,43,61,99,46,95,46,114,44,99,61,99,46,110,101,120,116,125,101,108,115,101,123,105,102,40,72,108,40,102,46,95,44,114,46,95,41,41,123,40,110,61,102,41,46,110,101,120,116,61,101,44,101,46,112,114,101,118,105,111,117,115,61,110,44,45,45,117,59,99,111,110,116,105,110,117,101,32,116,125,108,43,61,102,46,95,46,114,44,102,61,102,46,112,114,101,118,105,111,117,115,125,125,119,104,105,108,101,40,99,33,61,61,102,46,110,101,120,116,41,59,102,111,114,40,114,46,112,114,101,118,105,111,117,115,61,110,44,114,46,110,101,120,116,61,101,44,110,46,110,101,120,116,61,101,46,112,114,101,118,105,111,117,115,61,101,61,114,44,111,61,106,108,40,110,41,59,40,114,61,114,46,110,101,120,116,41,33,61,61,101,59,41,40,97,61,106,108,40,114,41,41,60,111,38,38,40,110,61,114,44,111,61,97,41,59,101,61,110,46,110,101,120,116,125,102,111,114,40,110,61,91,101,46,95,93,44,114,61,101,59,40,114,61,114,46,110,101,120,116,41,33,61,61,101,59,41,110,46,112,117,115,104,40,114,46,95,41,59,102,111,114,40,114,61,68,108,40,110,41,44,117,61,48,59,117,60,105,59,43,43,117,41,40,110,61,116,91,117,93,41,46,120,45,61,114,46,120,44,110,46,121,45,61,114,46,121,59,114,101,116,117,114,110,32,114,46,114,125,102,117,110,99,116,105,111,110,32,71,108,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,110,117,108,108,58,36,108,40,116,41,125,102,117,110,99,116,105,111,110,32,36,108,40,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,87,108,40,41,123,114,101,116,117,114,110,32,48,125,102,117,110,99,116,105,111,110,32,90,108,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,81,108,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,115,113,114,116,40,116,46,118,97,108,117,101,41,125,102,117,110,99,116,105,111,110,32,75,108,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,110,46,99,104,105,108,100,114,101,110,124,124,40,110,46,114,61,77,97,116,104,46,109,97,120,40,48,44,43,116,40,110,41,124,124,48,41,41,125,125,102,117,110,99,116,105,111,110,32,74,108,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,114,61,101,46,99,104,105,108,100,114,101,110,41,123,118,97,114,32,114,44,105,44,111,44,97,61,114,46,108,101,110,103,116,104,44,117,61,116,40,101,41,42,110,124,124,48,59,105,102,40,117,41,102,111,114,40,105,61,48,59,105,60,97,59,43,43,105,41,114,91,105,93,46,114,43,61,117,59,105,102,40,111,61,86,108,40,114,41,44,117,41,102,111,114,40,105,61,48,59,105,60,97,59,43,43,105,41,114,91,105,93,46,114,45,61,117,59,101,46,114,61,111,43,117,125,125,125,102,117,110,99,116,105,111,110,32,116,104,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,61,110,46,112,97,114,101,110,116,59,110,46,114,42,61,116,44,101,38,38,40,110,46,120,61,101,46,120,43,116,42,110,46,120,44,110,46,121,61,101,46,121,43,116,42,110,46,121,41,125,125,102,117,110,99,116,105,111,110,32,110,104,40,116,41,123,116,46,120,48,61,77,97,116,104,46,114,111,117,110,100,40,116,46,120,48,41,44,116,46,121,48,61,77,97,116,104,46,114,111,117,110,100,40,116,46,121,48,41,44,116,46,120,49,61,77,97,116,104,46,114,111,117,110,100,40,116,46,120,49,41,44,116,46,121,49,61,77,97,116,104,46,114,111,117,110,100,40,116,46,121,49,41,125,102,117,110,99,116,105,111,110,32,101,104,40,116,44,110,44,101,44,114,44,105,41,123,102,111,114,40,118,97,114,32,111,44,97,61,116,46,99,104,105,108,100,114,101,110,44,117,61,45,49,44,99,61,97,46,108,101,110,103,116,104,44,102,61,116,46,118,97,108,117,101,38,38,40,114,45,110,41,47,116,46,118,97,108,117,101,59,43,43,117,60,99,59,41,40,111,61,97,91,117,93,41,46,121,48,61,101,44,111,46,121,49,61,105,44,111,46,120,48,61,110,44,111,46,120,49,61,110,43,61,111,46,118,97,108,117,101,42,102,125,118,97,114,32,114,104,61,34,36,34,44,105,104,61,123,100,101,112,116,104,58,45,49,125,44,111,104,61,123,125,59,102,117,110,99,116,105,111,110,32,97,104,40,116,41,123,114,101,116,117,114,110,32,116,46,105,100,125,102,117,110,99,116,105,111,110,32,117,104,40,116,41,123,114,101,116,117,114,110,32,116,46,112,97,114,101,110,116,73,100,125,102,117,110,99,116,105,111,110,32,99,104,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,112,97,114,101,110,116,61,61,61,110,46,112,97,114,101,110,116,63,49,58,50,125,102,117,110,99,116,105,111,110,32,102,104,40,116,41,123,118,97,114,32,110,61,116,46,99,104,105,108,100,114,101,110,59,114,101,116,117,114,110,32,110,63,110,91,48,93,58,116,46,116,125,102,117,110,99,116,105,111,110,32,115,104,40,116,41,123,118,97,114,32,110,61,116,46,99,104,105,108,100,114,101,110,59,114,101,116,117,114,110,32,110,63,110,91,110,46,108,101,110,103,116,104,45,49,93,58,116,46,116,125,102,117,110,99,116,105,111,110,32,108,104,40,116,44,110,44,101,41,123,118,97,114,32,114,61,101,47,40,110,46,105,45,116,46,105,41,59,110,46,99,45,61,114,44,110,46,115,43,61,101,44,116,46,99,43,61,114,44,110,46,122,43,61,101,44,110,46,109,43,61,101,125,102,117,110,99,116,105,111,110,32,104,104,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,116,46,97,46,112,97,114,101,110,116,61,61,61,110,46,112,97,114,101,110,116,63,116,46,97,58,101,125,102,117,110,99,116,105,111,110,32,100,104,40,116,44,110,41,123,116,104,105,115,46,95,61,116,44,116,104,105,115,46,112,97,114,101,110,116,61,110,117,108,108,44,116,104,105,115,46,99,104,105,108,100,114,101,110,61,110,117,108,108,44,116,104,105,115,46,65,61,110,117,108,108,44,116,104,105,115,46,97,61,116,104,105,115,44,116,104,105,115,46,122,61,48,44,116,104,105,115,46,109,61,48,44,116,104,105,115,46,99,61,48,44,116,104,105,115,46,115,61,48,44,116,104,105,115,46,116,61,110,117,108,108,44,116,104,105,115,46,105,61,110,125,102,117,110,99,116,105,111,110,32,112,104,40,116,44,110,44,101,44,114,44,105,41,123,102,111,114,40,118,97,114,32,111,44,97,61,116,46,99,104,105,108,100,114,101,110,44,117,61,45,49,44,99,61,97,46,108,101,110,103,116,104,44,102,61,116,46,118,97,108,117,101,38,38,40,105,45,101,41,47,116,46,118,97,108,117,101,59,43,43,117,60,99,59,41,40,111,61,97,91,117,93,41,46,120,48,61,110,44,111,46,120,49,61,114,44,111,46,121,48,61,101,44,111,46,121,49,61,101,43,61,111,46,118,97,108,117,101,42,102,125,100,104,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,122,108,46,112,114,111,116,111,116,121,112,101,41,59,118,97,114,32,118,104,61,40,49,43,77,97,116,104,46,115,113,114,116,40,53,41,41,47,50,59,102,117,110,99,116,105,111,110,32,103,104,40,116,44,110,44,101,44,114,44,105,44,111,41,123,102,111,114,40,118,97,114,32,97,44,117,44,99,44,102,44,115,44,108,44,104,44,100,44,112,44,118,44,103,44,121,61,91,93,44,95,61,110,46,99,104,105,108,100,114,101,110,44,98,61,48,44,109,61,48,44,120,61,95,46,108,101,110,103,116,104,44,119,61,110,46,118,97,108,117,101,59,98,60,120,59,41,123,99,61,105,45,101,44,102,61,111,45,114,59,100,111,123,115,61,95,91,109,43,43,93,46,118,97,108,117,101,125,119,104,105,108,101,40,33,115,38,38,109,60,120,41,59,102,111,114,40,108,61,104,61,115,44,103,61,115,42,115,42,40,118,61,77,97,116,104,46,109,97,120,40,102,47,99,44,99,47,102,41,47,40,119,42,116,41,41,44,112,61,77,97,116,104,46,109,97,120,40,104,47,103,44,103,47,108,41,59,109,60,120,59,43,43,109,41,123,105,102,40,115,43,61,117,61,95,91,109,93,46,118,97,108,117,101,44,117,60,108,38,38,40,108,61,117,41,44,117,62,104,38,38,40,104,61,117,41,44,103,61,115,42,115,42,118,44,40,100,61,77,97,116,104,46,109,97,120,40,104,47,103,44,103,47,108,41,41,62,112,41,123,115,45,61,117,59,98,114,101,97,107,125,112,61,100,125,121,46,112,117,115,104,40,97,61,123,118,97,108,117,101,58,115,44,100,105,99,101,58,99,60,102,44,99,104,105,108,100,114,101,110,58,95,46,115,108,105,99,101,40,98,44,109,41,125,41,44,97,46,100,105,99,101,63,101,104,40,97,44,101,44,114,44,105,44,119,63,114,43,61,102,42,115,47,119,58,111,41,58,112,104,40,97,44,101,44,114,44,119,63,101,43,61,99,42,115,47,119,58,105,44,111,41,44,119,45,61,115,44,98,61,109,125,114,101,116,117,114,110,32,121,125,118,97,114,32,121,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,44,101,44,114,44,105,44,111,41,123,103,104,40,110,44,116,44,101,44,114,44,105,44,111,41,125,114,101,116,117,114,110,32,101,46,114,97,116,105,111,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,40,110,61,43,110,41,62,49,63,110,58,49,41,125,44,101,125,40,118,104,41,59,118,97,114,32,95,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,44,101,44,114,44,105,44,111,41,123,105,102,40,40,97,61,116,46,95,115,113,117,97,114,105,102,121,41,38,38,97,46,114,97,116,105,111,61,61,61,110,41,102,111,114,40,118,97,114,32,97,44,117,44,99,44,102,44,115,44,108,61,45,49,44,104,61,97,46,108,101,110,103,116,104,44,100,61,116,46,118,97,108,117,101,59,43,43,108,60,104,59,41,123,102,111,114,40,99,61,40,117,61,97,91,108,93,41,46,99,104,105,108,100,114,101,110,44,102,61,117,46,118,97,108,117,101,61,48,44,115,61,99,46,108,101,110,103,116,104,59,102,60,115,59,43,43,102,41,117,46,118,97,108,117,101,43,61,99,91,102,93,46,118,97,108,117,101,59,117,46,100,105,99,101,63,101,104,40,117,44,101,44,114,44,105,44,114,43,61,40,111,45,114,41,42,117,46,118,97,108,117,101,47,100,41,58,112,104,40,117,44,101,44,114,44,101,43,61,40,105,45,101,41,42,117,46,118,97,108,117,101,47,100,44,111,41,44,100,45,61,117,46,118,97,108,117,101,125,101,108,115,101,32,116,46,95,115,113,117,97,114,105,102,121,61,97,61,103,104,40,110,44,116,44,101,44,114,44,105,44,111,41,44,97,46,114,97,116,105,111,61,110,125,114,101,116,117,114,110,32,101,46,114,97,116,105,111,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,40,110,61,43,110,41,62,49,63,110,58,49,41,125,44,101,125,40,118,104,41,59,102,117,110,99,116,105,111,110,32,98,104,40,116,44,110,44,101,41,123,114,101,116,117,114,110,40,110,91,48,93,45,116,91,48,93,41,42,40,101,91,49,93,45,116,91,49,93,41,45,40,110,91,49,93,45,116,91,49,93,41,42,40,101,91,48,93,45,116,91,48,93,41,125,102,117,110,99,116,105,111,110,32,109,104,40,116,44,110,41,123,114,101,116,117,114,110,32,116,91,48,93,45,110,91,48,93,124,124,116,91,49,93,45,110,91,49,93,125,102,117,110,99,116,105,111,110,32,120,104,40,116,41,123,102,111,114,40,118,97,114,32,110,61,116,46,108,101,110,103,116,104,44,101,61,91,48,44,49,93,44,114,61,50,44,105,61,50,59,105,60,110,59,43,43,105,41,123,102,111,114,40,59,114,62,49,38,38,98,104,40,116,91,101,91,114,45,50,93,93,44,116,91,101,91,114,45,49,93,93,44,116,91,105,93,41,60,61,48,59,41,45,45,114,59,101,91,114,43,43,93,61,105,125,114,101,116,117,114,110,32,101,46,115,108,105,99,101,40,48,44,114,41,125,102,117,110,99,116,105,111,110,32,119,104,40,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,97,110,100,111,109,40,41,125,118,97,114,32,77,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,44,101,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,48,58,43,116,44,101,61,110,117,108,108,61,61,101,63,49,58,43,101,44,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,116,44,116,61,48,41,58,101,45,61,116,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,40,41,42,101,43,116,125,125,114,101,116,117,114,110,32,101,46,115,111,117,114,99,101,61,116,44,101,125,40,119,104,41,44,78,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,44,101,41,123,118,97,114,32,114,44,105,59,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,48,58,43,116,44,101,61,110,117,108,108,61,61,101,63,49,58,43,101,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,59,105,102,40,110,117,108,108,33,61,114,41,111,61,114,44,114,61,110,117,108,108,59,101,108,115,101,32,100,111,123,114,61,50,42,110,40,41,45,49,44,111,61,50,42,110,40,41,45,49,44,105,61,114,42,114,43,111,42,111,125,119,104,105,108,101,40,33,105,124,124,105,62,49,41,59,114,101,116,117,114,110,32,116,43,101,42,111,42,77,97,116,104,46,115,113,114,116,40,45,50,42,77,97,116,104,46,108,111,103,40,105,41,47,105,41,125,125,114,101,116,117,114,110,32,101,46,115,111,117,114,99,101,61,116,44,101,125,40,119,104,41,44,84,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,118,97,114,32,116,61,78,104,46,115,111,117,114,99,101,40,110,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,77,97,116,104,46,101,120,112,40,116,40,41,41,125,125,114,101,116,117,114,110,32,101,46,115,111,117,114,99,101,61,116,44,101,125,40,119,104,41,44,65,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,48,44,114,61,48,59,114,60,116,59,43,43,114,41,101,43,61,110,40,41,59,114,101,116,117,114,110,32,101,125,125,114,101,116,117,114,110,32,101,46,115,111,117,114,99,101,61,116,44,101,125,40,119,104,41,44,83,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,118,97,114,32,101,61,65,104,46,115,111,117,114,99,101,40,110,41,40,116,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,47,116,125,125,114,101,116,117,114,110,32,101,46,115,111,117,114,99,101,61,116,44,101,125,40,119,104,41,44,107,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,45,77,97,116,104,46,108,111,103,40,49,45,110,40,41,41,47,116,125,125,114,101,116,117,114,110,32,101,46,115,111,117,114,99,101,61,116,44,101,125,40,119,104,41,59,102,117,110,99,116,105,111,110,32,69,104,40,116,44,110,41,123,115,119,105,116,99,104,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,114,97,110,103,101,40,116,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,116,104,105,115,46,114,97,110,103,101,40,110,41,46,100,111,109,97,105,110,40,116,41,125,114,101,116,117,114,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,67,104,40,116,44,110,41,123,115,119,105,116,99,104,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,105,110,116,101,114,112,111,108,97,116,111,114,40,116,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,116,104,105,115,46,105,110,116,101,114,112,111,108,97,116,111,114,40,110,41,46,100,111,109,97,105,110,40,116,41,125,114,101,116,117,114,110,32,116,104,105,115,125,118,97,114,32,80,104,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,44,122,104,61,80,104,46,109,97,112,44,82,104,61,80,104,46,115,108,105,99,101,44,68,104,61,123,110,97,109,101,58,34,105,109,112,108,105,99,105,116,34,125,59,102,117,110,99,116,105,111,110,32,113,104,40,41,123,118,97,114,32,116,61,99,111,40,41,44,110,61,91,93,44,101,61,91,93,44,114,61,68,104,59,102,117,110,99,116,105,111,110,32,105,40,105,41,123,118,97,114,32,111,61,105,43,34,34,44,97,61,116,46,103,101,116,40,111,41,59,105,102,40,33,97,41,123,105,102,40,114,33,61,61,68,104,41,114,101,116,117,114,110,32,114,59,116,46,115,101,116,40,111,44,97,61,110,46,112,117,115,104,40,105,41,41,125,114,101,116,117,114,110,32,101,91,40,97,45,49,41,37,101,46,108,101,110,103,116,104,93,125,114,101,116,117,114,110,32,105,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,110,46,115,108,105,99,101,40,41,59,110,61,91,93,44,116,61,99,111,40,41,59,102,111,114,40,118,97,114,32,114,44,111,44,97,61,45,49,44,117,61,101,46,108,101,110,103,116,104,59,43,43,97,60,117,59,41,116,46,104,97,115,40,111,61,40,114,61,101,91,97,93,41,43,34,34,41,124,124,116,46,115,101,116,40,111,44,110,46,112,117,115,104,40,114,41,41,59,114,101,116,117,114,110,32,105,125,44,105,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,82,104,46,99,97,108,108,40,116,41,44,105,41,58,101,46,115,108,105,99,101,40,41,125,44,105,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,116,44,105,41,58,114,125,44,105,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,113,104,40,110,44,101,41,46,117,110,107,110,111,119,110,40,114,41,125,44,69,104,46,97,112,112,108,121,40,105,44,97,114,103,117,109,101,110,116,115,41,44,105,125,102,117,110,99,116,105,111,110,32,76,104,40,41,123,118,97,114,32,116,44,110,44,101,61,113,104,40,41,46,117,110,107,110,111,119,110,40,118,111,105,100,32,48,41,44,114,61,101,46,100,111,109,97,105,110,44,105,61,101,46,114,97,110,103,101,44,111,61,91,48,44,49,93,44,97,61,33,49,44,117,61,48,44,99,61,48,44,102,61,46,53,59,102,117,110,99,116,105,111,110,32,115,40,41,123,118,97,114,32,101,61,114,40,41,46,108,101,110,103,116,104,44,115,61,111,91,49,93,60,111,91,48,93,44,108,61,111,91,115,45,48,93,44,104,61,111,91,49,45,115,93,59,116,61,40,104,45,108,41,47,77,97,116,104,46,109,97,120,40,49,44,101,45,117,43,50,42,99,41,44,97,38,38,40,116,61,77,97,116,104,46,102,108,111,111,114,40,116,41,41,44,108,43,61,40,104,45,108,45,116,42,40,101,45,117,41,41,42,102,44,110,61,116,42,40,49,45,117,41,44,97,38,38,40,108,61,77,97,116,104,46,114,111,117,110,100,40,108,41,44,110,61,77,97,116,104,46,114,111,117,110,100,40,110,41,41,59,118,97,114,32,100,61,103,40,101,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,108,43,116,42,110,125,41,59,114,101,116,117,114,110,32,105,40,115,63,100,46,114,101,118,101,114,115,101,40,41,58,100,41,125,114,101,116,117,114,110,32,100,101,108,101,116,101,32,101,46,117,110,107,110,111,119,110,44,101,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,40,116,41,44,115,40,41,41,58,114,40,41,125,44,101,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,91,43,116,91,48,93,44,43,116,91,49,93,93,44,115,40,41,41,58,111,46,115,108,105,99,101,40,41,125,44,101,46,114,97,110,103,101,82,111,117,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,61,91,43,116,91,48,93,44,43,116,91,49,93,93,44,97,61,33,48,44,115,40,41,125,44,101,46,98,97,110,100,119,105,100,116,104,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,125,44,101,46,115,116,101,112,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,44,101,46,114,111,117,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,33,33,116,44,115,40,41,41,58,97,125,44,101,46,112,97,100,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,77,97,116,104,46,109,105,110,40,49,44,99,61,43,116,41,44,115,40,41,41,58,117,125,44,101,46,112,97,100,100,105,110,103,73,110,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,77,97,116,104,46,109,105,110,40,49,44,116,41,44,115,40,41,41,58,117,125,44,101,46,112,97,100,100,105,110,103,79,117,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,43,116,44,115,40,41,41,58,99,125,44,101,46,97,108,105,103,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,102,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,41,41,44,115,40,41,41,58,102,125,44,101,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,76,104,40,114,40,41,44,111,41,46,114,111,117,110,100,40,97,41,46,112,97,100,100,105,110,103,73,110,110,101,114,40,117,41,46,112,97,100,100,105,110,103,79,117,116,101,114,40,99,41,46,97,108,105,103,110,40,102,41,125,44,69,104,46,97,112,112,108,121,40,115,40,41,44,97,114,103,117,109,101,110,116,115,41,125,102,117,110,99,116,105,111,110,32,85,104,40,116,41,123,114,101,116,117,114,110,43,116,125,118,97,114,32,79,104,61,91,48,44,49,93,59,102,117,110,99,116,105,111,110,32,66,104,40,116,41,123,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,70,104,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,61,116,61,43,116,41,63,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,40,101,45,116,41,47,110,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,40,105,115,78,97,78,40,110,41,63,78,97,78,58,46,53,41,125,102,117,110,99,116,105,111,110,32,89,104,40,116,41,123,118,97,114,32,110,44,101,61,116,91,48,93,44,114,61,116,91,116,46,108,101,110,103,116,104,45,49,93,59,114,101,116,117,114,110,32,101,62,114,38,38,40,110,61,101,44,101,61,114,44,114,61,110,41,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,101,44,77,97,116,104,46,109,105,110,40,114,44,116,41,41,125,125,102,117,110,99,116,105,111,110,32,73,104,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,91,48,93,44,105,61,116,91,49,93,44,111,61,110,91,48,93,44,97,61,110,91,49,93,59,114,101,116,117,114,110,32,105,60,114,63,40,114,61,70,104,40,105,44,114,41,44,111,61,101,40,97,44,111,41,41,58,40,114,61,70,104,40,114,44,105,41,44,111,61,101,40,111,44,97,41,41,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,40,114,40,116,41,41,125,125,102,117,110,99,116,105,111,110,32,72,104,40,116,44,110,44,101,41,123,118,97,114,32,114,61,77,97,116,104,46,109,105,110,40,116,46,108,101,110,103,116,104,44,110,46,108,101,110,103,116,104,41,45,49,44,111,61,110,101,119,32,65,114,114,97,121,40,114,41,44,97,61,110,101,119,32,65,114,114,97,121,40,114,41,44,117,61,45,49,59,102,111,114,40,116,91,114,93,60,116,91,48,93,38,38,40,116,61,116,46,115,108,105,99,101,40,41,46,114,101,118,101,114,115,101,40,41,44,110,61,110,46,115,108,105,99,101,40,41,46,114,101,118,101,114,115,101,40,41,41,59,43,43,117,60,114,59,41,111,91,117,93,61,70,104,40,116,91,117,93,44,116,91,117,43,49,93,41,44,97,91,117,93,61,101,40,110,91,117,93,44,110,91,117,43,49,93,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,61,105,40,116,44,110,44,49,44,114,41,45,49,59,114,101,116,117,114,110,32,97,91,101,93,40,111,91,101,93,40,110,41,41,125,125,102,117,110,99,116,105,111,110,32,106,104,40,116,44,110,41,123,114,101,116,117,114,110,32,110,46,100,111,109,97,105,110,40,116,46,100,111,109,97,105,110,40,41,41,46,114,97,110,103,101,40,116,46,114,97,110,103,101,40,41,41,46,105,110,116,101,114,112,111,108,97,116,101,40,116,46,105,110,116,101,114,112,111,108,97,116,101,40,41,41,46,99,108,97,109,112,40,116,46,99,108,97,109,112,40,41,41,46,117,110,107,110,111,119,110,40,116,46,117,110,107,110,111,119,110,40,41,41,125,102,117,110,99,116,105,111,110,32,88,104,40,41,123,118,97,114,32,116,44,110,44,101,44,114,44,105,44,111,44,97,61,79,104,44,117,61,79,104,44,99,61,84,101,44,102,61,66,104,59,102,117,110,99,116,105,111,110,32,115,40,41,123,114,101,116,117,114,110,32,114,61,77,97,116,104,46,109,105,110,40,97,46,108,101,110,103,116,104,44,117,46,108,101,110,103,116,104,41,62,50,63,72,104,58,73,104,44,105,61,111,61,110,117,108,108,44,108,125,102,117,110,99,116,105,111,110,32,108,40,110,41,123,114,101,116,117,114,110,32,105,115,78,97,78,40,110,61,43,110,41,63,101,58,40,105,124,124,40,105,61,114,40,97,46,109,97,112,40,116,41,44,117,44,99,41,41,41,40,116,40,102,40,110,41,41,41,125,114,101,116,117,114,110,32,108,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,102,40,110,40,40,111,124,124,40,111,61,114,40,117,44,97,46,109,97,112,40,116,41,44,109,101,41,41,41,40,101,41,41,41,125,44,108,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,122,104,46,99,97,108,108,40,116,44,85,104,41,44,102,61,61,61,66,104,124,124,40,102,61,89,104,40,97,41,41,44,115,40,41,41,58,97,46,115,108,105,99,101,40,41,125,44,108,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,82,104,46,99,97,108,108,40,116,41,44,115,40,41,41,58,117,46,115,108,105,99,101,40,41,125,44,108,46,114,97,110,103,101,82,111,117,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,117,61,82,104,46,99,97,108,108,40,116,41,44,99,61,65,101,44,115,40,41,125,44,108,46,99,108,97,109,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,102,61,116,63,89,104,40,97,41,58,66,104,44,108,41,58,102,33,61,61,66,104,125,44,108,46,105,110,116,101,114,112,111,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,116,44,115,40,41,41,58,99,125,44,108,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,116,44,108,41,58,101,125,44,102,117,110,99,116,105,111,110,40,101,44,114,41,123,114,101,116,117,114,110,32,116,61,101,44,110,61,114,44,115,40,41,125,125,102,117,110,99,116,105,111,110,32,86,104,40,116,44,110,41,123,114,101,116,117,114,110,32,88,104,40,41,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,71,104,40,110,44,101,44,114,44,105,41,123,118,97,114,32,111,44,97,61,119,40,110,44,101,44,114,41,59,115,119,105,116,99,104,40,40,105,61,79,97,40,110,117,108,108,61,61,105,63,34,44,102,34,58,105,41,41,46,116,121,112,101,41,123,99,97,115,101,34,115,34,58,118,97,114,32,117,61,77,97,116,104,46,109,97,120,40,77,97,116,104,46,97,98,115,40,110,41,44,77,97,116,104,46,97,98,115,40,101,41,41,59,114,101,116,117,114,110,32,110,117,108,108,33,61,105,46,112,114,101,99,105,115,105,111,110,124,124,105,115,78,97,78,40,111,61,87,97,40,97,44,117,41,41,124,124,40,105,46,112,114,101,99,105,115,105,111,110,61,111,41,44,116,46,102,111,114,109,97,116,80,114,101,102,105,120,40,105,44,117,41,59,99,97,115,101,34,34,58,99,97,115,101,34,101,34,58,99,97,115,101,34,103,34,58,99,97,115,101,34,112,34,58,99,97,115,101,34,114,34,58,110,117,108,108,33,61,105,46,112,114,101,99,105,115,105,111,110,124,124,105,115,78,97,78,40,111,61,90,97,40,97,44,77,97,116,104,46,109,97,120,40,77,97,116,104,46,97,98,115,40,110,41,44,77,97,116,104,46,97,98,115,40,101,41,41,41,41,124,124,40,105,46,112,114,101,99,105,115,105,111,110,61,111,45,40,34,101,34,61,61,61,105,46,116,121,112,101,41,41,59,98,114,101,97,107,59,99,97,115,101,34,102,34,58,99,97,115,101,34,37,34,58,110,117,108,108,33,61,105,46,112,114,101,99,105,115,105,111,110,124,124,105,115,78,97,78,40,111,61,36,97,40,97,41,41,124,124,40,105,46,112,114,101,99,105,115,105,111,110,61,111,45,50,42,40,34,37,34,61,61,61,105,46,116,121,112,101,41,41,125,114,101,116,117,114,110,32,116,46,102,111,114,109,97,116,40,105,41,125,102,117,110,99,116,105,111,110,32,36,104,40,116,41,123,118,97,114,32,110,61,116,46,100,111,109,97,105,110,59,114,101,116,117,114,110,32,116,46,116,105,99,107,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,110,40,41,59,114,101,116,117,114,110,32,109,40,101,91,48,93,44,101,91,101,46,108,101,110,103,116,104,45,49,93,44,110,117,108,108,61,61,116,63,49,48,58,116,41,125,44,116,46,116,105,99,107,70,111,114,109,97,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,114,61,110,40,41,59,114,101,116,117,114,110,32,71,104,40,114,91,48,93,44,114,91,114,46,108,101,110,103,116,104,45,49,93,44,110,117,108,108,61,61,116,63,49,48,58,116,44,101,41,125,44,116,46,110,105,99,101,61,102,117,110,99,116,105,111,110,40,101,41,123,110,117,108,108,61,61,101,38,38,40,101,61,49,48,41,59,118,97,114,32,114,44,105,61,110,40,41,44,111,61,48,44,97,61,105,46,108,101,110,103,116,104,45,49,44,117,61,105,91,111,93,44,99,61,105,91,97,93,59,114,101,116,117,114,110,32,99,60,117,38,38,40,114,61,117,44,117,61,99,44,99,61,114,44,114,61,111,44,111,61,97,44,97,61,114,41,44,40,114,61,120,40,117,44,99,44,101,41,41,62,48,63,114,61,120,40,117,61,77,97,116,104,46,102,108,111,111,114,40,117,47,114,41,42,114,44,99,61,77,97,116,104,46,99,101,105,108,40,99,47,114,41,42,114,44,101,41,58,114,60,48,38,38,40,114,61,120,40,117,61,77,97,116,104,46,99,101,105,108,40,117,42,114,41,47,114,44,99,61,77,97,116,104,46,102,108,111,111,114,40,99,42,114,41,47,114,44,101,41,41,44,114,62,48,63,40,105,91,111,93,61,77,97,116,104,46,102,108,111,111,114,40,117,47,114,41,42,114,44,105,91,97,93,61,77,97,116,104,46,99,101,105,108,40,99,47,114,41,42,114,44,110,40,105,41,41,58,114,60,48,38,38,40,105,91,111,93,61,77,97,116,104,46,99,101,105,108,40,117,42,114,41,47,114,44,105,91,97,93,61,77,97,116,104,46,102,108,111,111,114,40,99,42,114,41,47,114,44,110,40,105,41,41,44,116,125,44,116,125,102,117,110,99,116,105,111,110,32,87,104,40,116,44,110,41,123,118,97,114,32,101,44,114,61,48,44,105,61,40,116,61,116,46,115,108,105,99,101,40,41,41,46,108,101,110,103,116,104,45,49,44,111,61,116,91,114,93,44,97,61,116,91,105,93,59,114,101,116,117,114,110,32,97,60,111,38,38,40,101,61,114,44,114,61,105,44,105,61,101,44,101,61,111,44,111,61,97,44,97,61,101,41,44,116,91,114,93,61,110,46,102,108,111,111,114,40,111,41,44,116,91,105,93,61,110,46,99,101,105,108,40,97,41,44,116,125,102,117,110,99,116,105,111,110,32,90,104,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,108,111,103,40,116,41,125,102,117,110,99,116,105,111,110,32,81,104,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,101,120,112,40,116,41,125,102,117,110,99,116,105,111,110,32,75,104,40,116,41,123,114,101,116,117,114,110,45,77,97,116,104,46,108,111,103,40,45,116,41,125,102,117,110,99,116,105,111,110,32,74,104,40,116,41,123,114,101,116,117,114,110,45,77,97,116,104,46,101,120,112,40,45,116,41,125,102,117,110,99,116,105,111,110,32,116,100,40,116,41,123,114,101,116,117,114,110,32,105,115,70,105,110,105,116,101,40,116,41,63,43,40,34,49,101,34,43,116,41,58,116,60,48,63,48,58,116,125,102,117,110,99,116,105,111,110,32,110,100,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,45,116,40,45,110,41,125,125,102,117,110,99,116,105,111,110,32,101,100,40,110,41,123,118,97,114,32,101,44,114,44,105,61,110,40,90,104,44,81,104,41,44,111,61,105,46,100,111,109,97,105,110,44,97,61,49,48,59,102,117,110,99,116,105,111,110,32,117,40,41,123,114,101,116,117,114,110,32,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,61,61,77,97,116,104,46,69,63,77,97,116,104,46,108,111,103,58,49,48,61,61,61,116,38,38,77,97,116,104,46,108,111,103,49,48,124,124,50,61,61,61,116,38,38,77,97,116,104,46,108,111,103,50,124,124,40,116,61,77,97,116,104,46,108,111,103,40,116,41,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,77,97,116,104,46,108,111,103,40,110,41,47,116,125,41,125,40,97,41,44,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,48,61,61,61,116,63,116,100,58,116,61,61,61,77,97,116,104,46,69,63,77,97,116,104,46,101,120,112,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,77,97,116,104,46,112,111,119,40,116,44,110,41,125,125,40,97,41,44,111,40,41,91,48,93,60,48,63,40,101,61,110,100,40,101,41,44,114,61,110,100,40,114,41,44,110,40,75,104,44,74,104,41,41,58,110,40,90,104,44,81,104,41,44,105,125,114,101,116,117,114,110,32,105,46,98,97,115,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,43,116,44,117,40,41,41,58,97,125,44,105,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,40,116,41,44,117,40,41,41,58,111,40,41,125,44,105,46,116,105,99,107,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,105,61,111,40,41,44,117,61,105,91,48,93,44,99,61,105,91,105,46,108,101,110,103,116,104,45,49,93,59,40,110,61,99,60,117,41,38,38,40,104,61,117,44,117,61,99,44,99,61,104,41,59,118,97,114,32,102,44,115,44,108,44,104,61,101,40,117,41,44,100,61,101,40,99,41,44,112,61,110,117,108,108,61,61,116,63,49,48,58,43,116,44,118,61,91,93,59,105,102,40,33,40,97,37,49,41,38,38,100,45,104,60,112,41,123,105,102,40,104,61,77,97,116,104,46,114,111,117,110,100,40,104,41,45,49,44,100,61,77,97,116,104,46,114,111,117,110,100,40,100,41,43,49,44,117,62,48,41,123,102,111,114,40,59,104,60,100,59,43,43,104,41,102,111,114,40,115,61,49,44,102,61,114,40,104,41,59,115,60,97,59,43,43,115,41,105,102,40,33,40,40,108,61,102,42,115,41,60,117,41,41,123,105,102,40,108,62,99,41,98,114,101,97,107,59,118,46,112,117,115,104,40,108,41,125,125,101,108,115,101,32,102,111,114,40,59,104,60,100,59,43,43,104,41,102,111,114,40,115,61,97,45,49,44,102,61,114,40,104,41,59,115,62,61,49,59,45,45,115,41,105,102,40,33,40,40,108,61,102,42,115,41,60,117,41,41,123,105,102,40,108,62,99,41,98,114,101,97,107,59,118,46,112,117,115,104,40,108,41,125,125,101,108,115,101,32,118,61,109,40,104,44,100,44,77,97,116,104,46,109,105,110,40,100,45,104,44,112,41,41,46,109,97,112,40,114,41,59,114,101,116,117,114,110,32,110,63,118,46,114,101,118,101,114,115,101,40,41,58,118,125,44,105,46,116,105,99,107,70,111,114,109,97,116,61,102,117,110,99,116,105,111,110,40,110,44,111,41,123,105,102,40,110,117,108,108,61,61,111,38,38,40,111,61,49,48,61,61,61,97,63,34,46,48,101,34,58,34,44,34,41,44,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,111,38,38,40,111,61,116,46,102,111,114,109,97,116,40,111,41,41,44,110,61,61,61,49,47,48,41,114,101,116,117,114,110,32,111,59,110,117,108,108,61,61,110,38,38,40,110,61,49,48,41,59,118,97,114,32,117,61,77,97,116,104,46,109,97,120,40,49,44,97,42,110,47,105,46,116,105,99,107,115,40,41,46,108,101,110,103,116,104,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,47,114,40,77,97,116,104,46,114,111,117,110,100,40,101,40,116,41,41,41,59,114,101,116,117,114,110,32,110,42,97,60,97,45,46,53,38,38,40,110,42,61,97,41,44,110,60,61,117,63,111,40,116,41,58,34,34,125,125,44,105,46,110,105,99,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,87,104,40,111,40,41,44,123,102,108,111,111,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,40,77,97,116,104,46,102,108,111,111,114,40,101,40,116,41,41,41,125,44,99,101,105,108,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,40,77,97,116,104,46,99,101,105,108,40,101,40,116,41,41,41,125,125,41,41,125,44,105,125,102,117,110,99,116,105,111,110,32,114,100,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,77,97,116,104,46,115,105,103,110,40,110,41,42,77,97,116,104,46,108,111,103,49,112,40,77,97,116,104,46,97,98,115,40,110,47,116,41,41,125,125,102,117,110,99,116,105,111,110,32,105,100,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,77,97,116,104,46,115,105,103,110,40,110,41,42,77,97,116,104,46,101,120,112,109,49,40,77,97,116,104,46,97,98,115,40,110,41,41,42,116,125,125,102,117,110,99,116,105,111,110,32,111,100,40,116,41,123,118,97,114,32,110,61,49,44,101,61,116,40,114,100,40,110,41,44,105,100,40,110,41,41,59,114,101,116,117,114,110,32,101,46,99,111,110,115,116,97,110,116,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,40,114,100,40,110,61,43,101,41,44,105,100,40,110,41,41,58,110,125,44,36,104,40,101,41,125,102,117,110,99,116,105,111,110,32,97,100,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,60,48,63,45,77,97,116,104,46,112,111,119,40,45,110,44,116,41,58,77,97,116,104,46,112,111,119,40,110,44,116,41,125,125,102,117,110,99,116,105,111,110,32,117,100,40,116,41,123,114,101,116,117,114,110,32,116,60,48,63,45,77,97,116,104,46,115,113,114,116,40,45,116,41,58,77,97,116,104,46,115,113,114,116,40,116,41,125,102,117,110,99,116,105,111,110,32,99,100,40,116,41,123,114,101,116,117,114,110,32,116,60,48,63,45,116,42,116,58,116,42,116,125,102,117,110,99,116,105,111,110,32,102,100,40,116,41,123,118,97,114,32,110,61,116,40,66,104,44,66,104,41,44,101,61,49,59,102,117,110,99,116,105,111,110,32,114,40,41,123,114,101,116,117,114,110,32,49,61,61,61,101,63,116,40,66,104,44,66,104,41,58,46,53,61,61,61,101,63,116,40,117,100,44,99,100,41,58,116,40,97,100,40,101,41,44,97,100,40,49,47,101,41,41,125,114,101,116,117,114,110,32,110,46,101,120,112,111,110,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,43,116,44,114,40,41,41,58,101,125,44,36,104,40,110,41,125,102,117,110,99,116,105,111,110,32,115,100,40,41,123,118,97,114,32,116,61,102,100,40,88,104,40,41,41,59,114,101,116,117,114,110,32,116,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,104,40,116,44,115,100,40,41,41,46,101,120,112,111,110,101,110,116,40,116,46,101,120,112,111,110,101,110,116,40,41,41,125,44,69,104,46,97,112,112,108,121,40,116,44,97,114,103,117,109,101,110,116,115,41,44,116,125,118,97,114,32,108,100,61,110,101,119,32,68,97,116,101,44,104,100,61,110,101,119,32,68,97,116,101,59,102,117,110,99,116,105,111,110,32,100,100,40,116,44,110,44,101,44,114,41,123,102,117,110,99,116,105,111,110,32,105,40,110,41,123,114,101,116,117,114,110,32,116,40,110,61,48,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,101,119,32,68,97,116,101,58,110,101,119,32,68,97,116,101,40,43,110,41,41,44,110,125,114,101,116,117,114,110,32,105,46,102,108,111,111,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,110,61,110,101,119,32,68,97,116,101,40,43,110,41,41,44,110,125,44,105,46,99,101,105,108,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,40,101,61,110,101,119,32,68,97,116,101,40,101,45,49,41,41,44,110,40,101,44,49,41,44,116,40,101,41,44,101,125,44,105,46,114,111,117,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,105,40,116,41,44,101,61,105,46,99,101,105,108,40,116,41,59,114,101,116,117,114,110,32,116,45,110,60,101,45,116,63,110,58,101,125,44,105,46,111,102,102,115,101,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,110,40,116,61,110,101,119,32,68,97,116,101,40,43,116,41,44,110,117,108,108,61,61,101,63,49,58,77,97,116,104,46,102,108,111,111,114,40,101,41,41,44,116,125,44,105,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,101,44,114,44,111,41,123,118,97,114,32,97,44,117,61,91,93,59,105,102,40,101,61,105,46,99,101,105,108,40,101,41,44,111,61,110,117,108,108,61,61,111,63,49,58,77,97,116,104,46,102,108,111,111,114,40,111,41,44,33,40,101,60,114,38,38,111,62,48,41,41,114,101,116,117,114,110,32,117,59,100,111,123,117,46,112,117,115,104,40,97,61,110,101,119,32,68,97,116,101,40,43,101,41,41,44,110,40,101,44,111,41,44,116,40,101,41,125,119,104,105,108,101,40,97,60,101,38,38,101,60,114,41,59,114,101,116,117,114,110,32,117,125,44,105,46,102,105,108,116,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,100,100,40,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,110,62,61,110,41,102,111,114,40,59,116,40,110,41,44,33,101,40,110,41,59,41,110,46,115,101,116,84,105,109,101,40,110,45,49,41,125,44,102,117,110,99,116,105,111,110,40,116,44,114,41,123,105,102,40,116,62,61,116,41,105,102,40,114,60,48,41,102,111,114,40,59,43,43,114,60,61,48,59,41,102,111,114,40,59,110,40,116,44,45,49,41,44,33,101,40,116,41,59,41,59,101,108,115,101,32,102,111,114,40,59,45,45,114,62,61,48,59,41,102,111,114,40,59,110,40,116,44,49,41,44,33,101,40,116,41,59,41,59,125,41,125,44,101,38,38,40,105,46,99,111,117,110,116,61,102,117,110,99,116,105,111,110,40,110,44,114,41,123,114,101,116,117,114,110,32,108,100,46,115,101,116,84,105,109,101,40,43,110,41,44,104,100,46,115,101,116,84,105,109,101,40,43,114,41,44,116,40,108,100,41,44,116,40,104,100,41,44,77,97,116,104,46,102,108,111,111,114,40,101,40,108,100,44,104,100,41,41,125,44,105,46,101,118,101,114,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,102,108,111,111,114,40,116,41,44,105,115,70,105,110,105,116,101,40,116,41,38,38,116,62,48,63,116,62,49,63,105,46,102,105,108,116,101,114,40,114,63,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,114,40,110,41,37,116,61,61,48,125,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,105,46,99,111,117,110,116,40,48,44,110,41,37,116,61,61,48,125,41,58,105,58,110,117,108,108,125,41,44,105,125,118,97,114,32,112,100,61,100,100,40,102,117,110,99,116,105,111,110,40,41,123,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,84,105,109,101,40,43,116,43,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,45,116,125,41,59,112,100,46,101,118,101,114,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,102,108,111,111,114,40,116,41,44,105,115,70,105,110,105,116,101,40,116,41,38,38,116,62,48,63,116,62,49,63,100,100,40,102,117,110,99,116,105,111,110,40,110,41,123,110,46,115,101,116,84,105,109,101,40,77,97,116,104,46,102,108,111,111,114,40,110,47,116,41,42,116,41,125,44,102,117,110,99,116,105,111,110,40,110,44,101,41,123,110,46,115,101,116,84,105,109,101,40,43,110,43,101,42,116,41,125,44,102,117,110,99,116,105,111,110,40,110,44,101,41,123,114,101,116,117,114,110,40,101,45,110,41,47,116,125,41,58,112,100,58,110,117,108,108,125,59,118,97,114,32,118,100,61,112,100,46,114,97,110,103,101,44,103,100,61,54,101,52,44,121,100,61,54,48,52,56,101,53,44,95,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,84,105,109,101,40,116,45,116,46,103,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,41,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,84,105,109,101,40,43,116,43,49,101,51,42,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,41,47,49,101,51,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,83,101,99,111,110,100,115,40,41,125,41,44,98,100,61,95,100,46,114,97,110,103,101,44,109,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,84,105,109,101,40,116,45,116,46,103,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,41,45,49,101,51,42,116,46,103,101,116,83,101,99,111,110,100,115,40,41,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,84,105,109,101,40,43,116,43,110,42,103,100,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,41,47,103,100,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,77,105,110,117,116,101,115,40,41,125,41,44,120,100,61,109,100,46,114,97,110,103,101,44,119,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,84,105,109,101,40,116,45,116,46,103,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,41,45,49,101,51,42,116,46,103,101,116,83,101,99,111,110,100,115,40,41,45,116,46,103,101,116,77,105,110,117,116,101,115,40,41,42,103,100,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,84,105,109,101,40,43,116,43,51,54,101,53,42,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,41,47,51,54,101,53,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,72,111,117,114,115,40,41,125,41,44,77,100,61,119,100,46,114,97,110,103,101,44,78,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,68,97,116,101,40,116,46,103,101,116,68,97,116,101,40,41,43,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,45,40,110,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,45,116,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,41,42,103,100,41,47,56,54,52,101,53,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,68,97,116,101,40,41,45,49,125,41,44,84,100,61,78,100,46,114,97,110,103,101,59,102,117,110,99,116,105,111,110,32,65,100,40,116,41,123,114,101,116,117,114,110,32,100,100,40,102,117,110,99,116,105,111,110,40,110,41,123,110,46,115,101,116,68,97,116,101,40,110,46,103,101,116,68,97,116,101,40,41,45,40,110,46,103,101,116,68,97,121,40,41,43,55,45,116,41,37,55,41,44,110,46,115,101,116,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,68,97,116,101,40,116,46,103,101,116,68,97,116,101,40,41,43,55,42,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,45,40,110,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,45,116,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,41,42,103,100,41,47,121,100,125,41,125,118,97,114,32,83,100,61,65,100,40,48,41,44,107,100,61,65,100,40,49,41,44,69,100,61,65,100,40,50,41,44,67,100,61,65,100,40,51,41,44,80,100,61,65,100,40,52,41,44,122,100,61,65,100,40,53,41,44,82,100,61,65,100,40,54,41,44,68,100,61,83,100,46,114,97,110,103,101,44,113,100,61,107,100,46,114,97,110,103,101,44,76,100,61,69,100,46,114,97,110,103,101,44,85,100,61,67,100,46,114,97,110,103,101,44,79,100,61,80,100,46,114,97,110,103,101,44,66,100,61,122,100,46,114,97,110,103,101,44,70,100,61,82,100,46,114,97,110,103,101,44,89,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,68,97,116,101,40,49,41,44,116,46,115,101,116,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,77,111,110,116,104,40,116,46,103,101,116,77,111,110,116,104,40,41,43,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,46,103,101,116,77,111,110,116,104,40,41,45,116,46,103,101,116,77,111,110,116,104,40,41,43,49,50,42,40,110,46,103,101,116,70,117,108,108,89,101,97,114,40,41,45,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,41,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,77,111,110,116,104,40,41,125,41,44,73,100,61,89,100,46,114,97,110,103,101,44,72,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,77,111,110,116,104,40,48,44,49,41,44,116,46,115,101,116,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,70,117,108,108,89,101,97,114,40,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,43,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,46,103,101,116,70,117,108,108,89,101,97,114,40,41,45,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,125,41,59,72,100,46,101,118,101,114,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,115,70,105,110,105,116,101,40,116,61,77,97,116,104,46,102,108,111,111,114,40,116,41,41,38,38,116,62,48,63,100,100,40,102,117,110,99,116,105,111,110,40,110,41,123,110,46,115,101,116,70,117,108,108,89,101,97,114,40,77,97,116,104,46,102,108,111,111,114,40,110,46,103,101,116,70,117,108,108,89,101,97,114,40,41,47,116,41,42,116,41,44,110,46,115,101,116,77,111,110,116,104,40,48,44,49,41,44,110,46,115,101,116,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,110,44,101,41,123,110,46,115,101,116,70,117,108,108,89,101,97,114,40,110,46,103,101,116,70,117,108,108,89,101,97,114,40,41,43,101,42,116,41,125,41,58,110,117,108,108,125,59,118,97,114,32,106,100,61,72,100,46,114,97,110,103,101,44,88,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,85,84,67,83,101,99,111,110,100,115,40,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,84,105,109,101,40,43,116,43,110,42,103,100,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,41,47,103,100,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,77,105,110,117,116,101,115,40,41,125,41,44,86,100,61,88,100,46,114,97,110,103,101,44,71,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,85,84,67,77,105,110,117,116,101,115,40,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,84,105,109,101,40,43,116,43,51,54,101,53,42,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,41,47,51,54,101,53,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,125,41,44,36,100,61,71,100,46,114,97,110,103,101,44,87,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,85,84,67,68,97,116,101,40,116,46,103,101,116,85,84,67,68,97,116,101,40,41,43,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,41,47,56,54,52,101,53,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,68,97,116,101,40,41,45,49,125,41,44,90,100,61,87,100,46,114,97,110,103,101,59,102,117,110,99,116,105,111,110,32,81,100,40,116,41,123,114,101,116,117,114,110,32,100,100,40,102,117,110,99,116,105,111,110,40,110,41,123,110,46,115,101,116,85,84,67,68,97,116,101,40,110,46,103,101,116,85,84,67,68,97,116,101,40,41,45,40,110,46,103,101,116,85,84,67,68,97,121,40,41,43,55,45,116,41,37,55,41,44,110,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,85,84,67,68,97,116,101,40,116,46,103,101,116,85,84,67,68,97,116,101,40,41,43,55,42,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,41,47,121,100,125,41,125,118,97,114,32,75,100,61,81,100,40,48,41,44,74,100,61,81,100,40,49,41,44,116,112,61,81,100,40,50,41,44,110,112,61,81,100,40,51,41,44,101,112,61,81,100,40,52,41,44,114,112,61,81,100,40,53,41,44,105,112,61,81,100,40,54,41,44,111,112,61,75,100,46,114,97,110,103,101,44,97,112,61,74,100,46,114,97,110,103,101,44,117,112,61,116,112,46,114,97,110,103,101,44,99,112,61,110,112,46,114,97,110,103,101,44,102,112,61,101,112,46,114,97,110,103,101,44,115,112,61,114,112,46,114,97,110,103,101,44,108,112,61,105,112,46,114,97,110,103,101,44,104,112,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,85,84,67,68,97,116,101,40,49,41,44,116,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,85,84,67,77,111,110,116,104,40,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,43,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,46,103,101,116,85,84,67,77,111,110,116,104,40,41,45,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,43,49,50,42,40,110,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,45,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,41,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,125,41,44,100,112,61,104,112,46,114,97,110,103,101,44,112,112,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,85,84,67,77,111,110,116,104,40,48,44,49,41,44,116,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,43,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,45,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,125,41,59,112,112,46,101,118,101,114,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,115,70,105,110,105,116,101,40,116,61,77,97,116,104,46,102,108,111,111,114,40,116,41,41,38,38,116,62,48,63,100,100,40,102,117,110,99,116,105,111,110,40,110,41,123,110,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,77,97,116,104,46,102,108,111,111,114,40,110,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,47,116,41,42,116,41,44,110,46,115,101,116,85,84,67,77,111,110,116,104,40,48,44,49,41,44,110,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,110,44,101,41,123,110,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,110,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,43,101,42,116,41,125,41,58,110,117,108,108,125,59,118,97,114,32,118,112,61,112,112,46,114,97,110,103,101,59,102,117,110,99,116,105,111,110,32,103,112,40,116,41,123,105,102,40,48,60,61,116,46,121,38,38,116,46,121,60,49,48,48,41,123,118,97,114,32,110,61,110,101,119,32,68,97,116,101,40,45,49,44,116,46,109,44,116,46,100,44,116,46,72,44,116,46,77,44,116,46,83,44,116,46,76,41,59,114,101,116,117,114,110,32,110,46,115,101,116,70,117,108,108,89,101,97,114,40,116,46,121,41,44,110,125,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,116,46,121,44,116,46,109,44,116,46,100,44,116,46,72,44,116,46,77,44,116,46,83,44,116,46,76,41,125,102,117,110,99,116,105,111,110,32,121,112,40,116,41,123,105,102,40,48,60,61,116,46,121,38,38,116,46,121,60,49,48,48,41,123,118,97,114,32,110,61,110,101,119,32,68,97,116,101,40,68,97,116,101,46,85,84,67,40,45,49,44,116,46,109,44,116,46,100,44,116,46,72,44,116,46,77,44,116,46,83,44,116,46,76,41,41,59,114,101,116,117,114,110,32,110,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,116,46,121,41,44,110,125,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,68,97,116,101,46,85,84,67,40,116,46,121,44,116,46,109,44,116,46,100,44,116,46,72,44,116,46,77,44,116,46,83,44,116,46,76,41,41,125,102,117,110,99,116,105,111,110,32,95,112,40,116,44,110,44,101,41,123,114,101,116,117,114,110,123,121,58,116,44,109,58,110,44,100,58,101,44,72,58,48,44,77,58,48,44,83,58,48,44,76,58,48,125,125,102,117,110,99,116,105,111,110,32,98,112,40,116,41,123,118,97,114,32,110,61,116,46,100,97,116,101,84,105,109,101,44,101,61,116,46,100,97,116,101,44,114,61,116,46,116,105,109,101,44,105,61,116,46,112,101,114,105,111,100,115,44,111,61,116,46,100,97,121,115,44,97,61,116,46,115,104,111,114,116,68,97,121,115,44,117,61,116,46,109,111,110,116,104,115,44,99,61,116,46,115,104,111,114,116,77,111,110,116,104,115,44,102,61,83,112,40,105,41,44,115,61,107,112,40,105,41,44,108,61,83,112,40,111,41,44,104,61,107,112,40,111,41,44,100,61,83,112,40,97,41,44,112,61,107,112,40,97,41,44,118,61,83,112,40,117,41,44,103,61,107,112,40,117,41,44,121,61,83,112,40,99,41,44,95,61,107,112,40,99,41,44,98,61,123,97,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,91,116,46,103,101,116,68,97,121,40,41,93,125,44,65,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,91,116,46,103,101,116,68,97,121,40,41,93,125,44,98,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,99,91,116,46,103,101,116,77,111,110,116,104,40,41,93,125,44,66,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,117,91,116,46,103,101,116,77,111,110,116,104,40,41,93,125,44,99,58,110,117,108,108,44,100,58,87,112,44,101,58,87,112,44,102,58,116,118,44,72,58,90,112,44,73,58,81,112,44,106,58,75,112,44,76,58,74,112,44,109,58,110,118,44,77,58,101,118,44,112,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,91,43,40,116,46,103,101,116,72,111,117,114,115,40,41,62,61,49,50,41,93,125,44,113,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,43,126,126,40,116,46,103,101,116,77,111,110,116,104,40,41,47,51,41,125,44,81,58,67,118,44,115,58,80,118,44,83,58,114,118,44,117,58,105,118,44,85,58,111,118,44,86,58,97,118,44,119,58,117,118,44,87,58,99,118,44,120,58,110,117,108,108,44,88,58,110,117,108,108,44,121,58,102,118,44,89,58,115,118,44,90,58,108,118,44,34,37,34,58,69,118,125,44,109,61,123,97,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,91,116,46,103,101,116,85,84,67,68,97,121,40,41,93,125,44,65,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,91,116,46,103,101,116,85,84,67,68,97,121,40,41,93,125,44,98,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,99,91,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,93,125,44,66,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,117,91,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,93,125,44,99,58,110,117,108,108,44,100,58,104,118,44,101,58,104,118,44,102,58,121,118,44,72,58,100,118,44,73,58,112,118,44,106,58,118,118,44,76,58,103,118,44,109,58,95,118,44,77,58,98,118,44,112,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,91,43,40,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,62,61,49,50,41,93,125,44,113,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,43,126,126,40,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,47,51,41,125,44,81,58,67,118,44,115,58,80,118,44,83,58,109,118,44,117,58,120,118,44,85,58,119,118,44,86,58,77,118,44,119,58,78,118,44,87,58,84,118,44,120,58,110,117,108,108,44,88,58,110,117,108,108,44,121,58,65,118,44,89,58,83,118,44,90,58,107,118,44,34,37,34,58,69,118,125,44,120,61,123,97,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,100,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,119,61,112,91,114,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,44,65,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,108,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,119,61,104,91,114,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,44,98,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,121,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,109,61,95,91,114,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,44,66,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,118,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,109,61,103,91,114,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,44,99,58,102,117,110,99,116,105,111,110,40,116,44,101,44,114,41,123,114,101,116,117,114,110,32,78,40,116,44,110,44,101,44,114,41,125,44,100,58,66,112,44,101,58,66,112,44,102,58,88,112,44,72,58,89,112,44,73,58,89,112,44,106,58,70,112,44,76,58,106,112,44,109,58,79,112,44,77,58,73,112,44,112,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,102,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,112,61,115,91,114,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,44,113,58,85,112,44,81,58,71,112,44,115,58,36,112,44,83,58,72,112,44,117,58,67,112,44,85,58,80,112,44,86,58,122,112,44,119,58,69,112,44,87,58,82,112,44,120,58,102,117,110,99,116,105,111,110,40,116,44,110,44,114,41,123,114,101,116,117,114,110,32,78,40,116,44,101,44,110,44,114,41,125,44,88,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,78,40,116,44,114,44,110,44,101,41,125,44,121,58,113,112,44,89,58,68,112,44,90,58,76,112,44,34,37,34,58,86,112,125,59,102,117,110,99,116,105,111,110,32,119,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,44,105,44,111,44,97,61,91,93,44,117,61,45,49,44,99,61,48,44,102,61,116,46,108,101,110,103,116,104,59,102,111,114,40,101,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,124,124,40,101,61,110,101,119,32,68,97,116,101,40,43,101,41,41,59,43,43,117,60,102,59,41,51,55,61,61,61,116,46,99,104,97,114,67,111,100,101,65,116,40,117,41,38,38,40,97,46,112,117,115,104,40,116,46,115,108,105,99,101,40,99,44,117,41,41,44,110,117,108,108,33,61,40,105,61,120,112,91,114,61,116,46,99,104,97,114,65,116,40,43,43,117,41,93,41,63,114,61,116,46,99,104,97,114,65,116,40,43,43,117,41,58,105,61,34,101,34,61,61,61,114,63,34,32,34,58,34,48,34,44,40,111,61,110,91,114,93,41,38,38,40,114,61,111,40,101,44,105,41,41,44,97,46,112,117,115,104,40,114,41,44,99,61,117,43,49,41,59,114,101,116,117,114,110,32,97,46,112,117,115,104,40,116,46,115,108,105,99,101,40,99,44,117,41,41,44,97,46,106,111,105,110,40,34,34,41,125,125,102,117,110,99,116,105,111,110,32,77,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,44,105,44,111,61,95,112,40,49,57,48,48,44,118,111,105,100,32,48,44,49,41,59,105,102,40,78,40,111,44,116,44,101,43,61,34,34,44,48,41,33,61,101,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,110,117,108,108,59,105,102,40,34,81,34,105,110,32,111,41,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,111,46,81,41,59,105,102,40,34,115,34,105,110,32,111,41,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,49,101,51,42,111,46,115,43,40,34,76,34,105,110,32,111,63,111,46,76,58,48,41,41,59,105,102,40,33,110,124,124,34,90,34,105,110,32,111,124,124,40,111,46,90,61,48,41,44,34,112,34,105,110,32,111,38,38,40,111,46,72,61,111,46,72,37,49,50,43,49,50,42,111,46,112,41,44,118,111,105,100,32,48,61,61,61,111,46,109,38,38,40,111,46,109,61,34,113,34,105,110,32,111,63,111,46,113,58,48,41,44,34,86,34,105,110,32,111,41,123,105,102,40,111,46,86,60,49,124,124,111,46,86,62,53,51,41,114,101,116,117,114,110,32,110,117,108,108,59,34,119,34,105,110,32,111,124,124,40,111,46,119,61,49,41,44,34,90,34,105,110,32,111,63,40,105,61,40,114,61,121,112,40,95,112,40,111,46,121,44,48,44,49,41,41,41,46,103,101,116,85,84,67,68,97,121,40,41,44,114,61,105,62,52,124,124,48,61,61,61,105,63,74,100,46,99,101,105,108,40,114,41,58,74,100,40,114,41,44,114,61,87,100,46,111,102,102,115,101,116,40,114,44,55,42,40,111,46,86,45,49,41,41,44,111,46,121,61,114,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,44,111,46,109,61,114,46,103,101,116,85,84,67,77,111,110,116,104,40,41,44,111,46,100,61,114,46,103,101,116,85,84,67,68,97,116,101,40,41,43,40,111,46,119,43,54,41,37,55,41,58,40,105,61,40,114,61,103,112,40,95,112,40,111,46,121,44,48,44,49,41,41,41,46,103,101,116,68,97,121,40,41,44,114,61,105,62,52,124,124,48,61,61,61,105,63,107,100,46,99,101,105,108,40,114,41,58,107,100,40,114,41,44,114,61,78,100,46,111,102,102,115,101,116,40,114,44,55,42,40,111,46,86,45,49,41,41,44,111,46,121,61,114,46,103,101,116,70,117,108,108,89,101,97,114,40,41,44,111,46,109,61,114,46,103,101,116,77,111,110,116,104,40,41,44,111,46,100,61,114,46,103,101,116,68,97,116,101,40,41,43,40,111,46,119,43,54,41,37,55,41,125,101,108,115,101,40,34,87,34,105,110,32,111,124,124,34,85,34,105,110,32,111,41,38,38,40,34,119,34,105,110,32,111,124,124,40,111,46,119,61,34,117,34,105,110,32,111,63,111,46,117,37,55,58,34,87,34,105,110,32,111,63,49,58,48,41,44,105,61,34,90,34,105,110,32,111,63,121,112,40,95,112,40,111,46,121,44,48,44,49,41,41,46,103,101,116,85,84,67,68,97,121,40,41,58,103,112,40,95,112,40,111,46,121,44,48,44,49,41,41,46,103,101,116,68,97,121,40,41,44,111,46,109,61,48,44,111,46,100,61,34,87,34,105,110,32,111,63,40,111,46,119,43,54,41,37,55,43,55,42,111,46,87,45,40,105,43,53,41,37,55,58,111,46,119,43,55,42,111,46,85,45,40,105,43,54,41,37,55,41,59,114,101,116,117,114,110,34,90,34,105,110,32,111,63,40,111,46,72,43,61,111,46,90,47,49,48,48,124,48,44,111,46,77,43,61,111,46,90,37,49,48,48,44,121,112,40,111,41,41,58,103,112,40,111,41,125,125,102,117,110,99,116,105,111,110,32,78,40,116,44,110,44,101,44,114,41,123,102,111,114,40,118,97,114,32,105,44,111,44,97,61,48,44,117,61,110,46,108,101,110,103,116,104,44,99,61,101,46,108,101,110,103,116,104,59,97,60,117,59,41,123,105,102,40,114,62,61,99,41,114,101,116,117,114,110,45,49,59,105,102,40,51,55,61,61,61,40,105,61,110,46,99,104,97,114,67,111,100,101,65,116,40,97,43,43,41,41,41,123,105,102,40,105,61,110,46,99,104,97,114,65,116,40,97,43,43,41,44,33,40,111,61,120,91,105,32,105,110,32,120,112,63,110,46,99,104,97,114,65,116,40,97,43,43,41,58,105,93,41,124,124,40,114,61,111,40,116,44,101,44,114,41,41,60,48,41,114,101,116,117,114,110,45,49,125,101,108,115,101,32,105,102,40,105,33,61,101,46,99,104,97,114,67,111,100,101,65,116,40,114,43,43,41,41,114,101,116,117,114,110,45,49,125,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,32,98,46,120,61,119,40,101,44,98,41,44,98,46,88,61,119,40,114,44,98,41,44,98,46,99,61,119,40,110,44,98,41,44,109,46,120,61,119,40,101,44,109,41,44,109,46,88,61,119,40,114,44,109,41,44,109,46,99,61,119,40,110,44,109,41,44,123,102,111,114,109,97,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,119,40,116,43,61,34,34,44,98,41,59,114,101,116,117,114,110,32,110,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,44,110,125,44,112,97,114,115,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,77,40,116,43,61,34,34,44,33,49,41,59,114,101,116,117,114,110,32,110,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,44,110,125,44,117,116,99,70,111,114,109,97,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,119,40,116,43,61,34,34,44,109,41,59,114,101,116,117,114,110,32,110,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,44,110,125,44,117,116,99,80,97,114,115,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,77,40,116,43,61,34,34,44,33,48,41,59,114,101,116,117,114,110,32,110,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,44,110,125,125,125,118,97,114,32,109,112,44,120,112,61,123,34,45,34,58,34,34,44,95,58,34,32,34,44,48,58,34,48,34,125,44,119,112,61,47,94,92,115,42,92,100,43,47,44,77,112,61,47,94,37,47,44,78,112,61,47,91,92,92,94,36,42,43,63,124,91,92,93,40,41,46,123,125,93,47,103,59,102,117,110,99,116,105,111,110,32,84,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,60,48,63,34,45,34,58,34,34,44,105,61,40,114,63,45,116,58,116,41,43,34,34,44,111,61,105,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,114,43,40,111,60,101,63,110,101,119,32,65,114,114,97,121,40,101,45,111,43,49,41,46,106,111,105,110,40,110,41,43,105,58,105,41,125,102,117,110,99,116,105,111,110,32,65,112,40,116,41,123,114,101,116,117,114,110,32,116,46,114,101,112,108,97,99,101,40,78,112,44,34,92,92,36,38,34,41,125,102,117,110,99,116,105,111,110,32,83,112,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,82,101,103,69,120,112,40,34,94,40,63,58,34,43,116,46,109,97,112,40,65,112,41,46,106,111,105,110,40,34,124,34,41,43,34,41,34,44,34,105,34,41,125,102,117,110,99,116,105,111,110,32,107,112,40,116,41,123,102,111,114,40,118,97,114,32,110,61,123,125,44,101,61,45,49,44,114,61,116,46,108,101,110,103,116,104,59,43,43,101,60,114,59,41,110,91,116,91,101,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,61,101,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,69,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,49,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,119,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,67,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,49,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,117,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,80,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,85,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,122,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,86,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,82,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,87,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,68,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,52,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,121,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,113,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,121,61,43,114,91,48,93,43,40,43,114,91,48,93,62,54,56,63,49,57,48,48,58,50,101,51,41,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,76,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,47,94,40,90,41,124,40,91,43,45,93,92,100,92,100,41,40,63,58,58,63,40,92,100,92,100,41,41,63,47,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,54,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,90,61,114,91,49,93,63,48,58,45,40,114,91,50,93,43,40,114,91,51,93,124,124,34,48,48,34,41,41,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,85,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,49,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,113,61,51,42,114,91,48,93,45,51,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,79,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,109,61,114,91,48,93,45,49,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,66,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,100,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,70,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,51,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,109,61,48,44,116,46,100,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,89,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,72,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,73,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,77,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,72,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,83,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,106,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,51,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,76,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,88,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,54,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,76,61,77,97,116,104,46,102,108,111,111,114,40,114,91,48,93,47,49,101,51,41,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,86,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,77,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,49,41,41,59,114,101,116,117,114,110,32,114,63,101,43,114,91,48,93,46,108,101,110,103,116,104,58,45,49,125,102,117,110,99,116,105,111,110,32,71,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,81,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,36,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,115,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,87,112,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,68,97,116,101,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,90,112,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,72,111,117,114,115,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,81,112,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,72,111,117,114,115,40,41,37,49,50,124,124,49,50,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,75,112,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,49,43,78,100,46,99,111,117,110,116,40,72,100,40,116,41,44,116,41,44,110,44,51,41,125,102,117,110,99,116,105,111,110,32,74,112,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,41,44,110,44,51,41,125,102,117,110,99,116,105,111,110,32,116,118,40,116,44,110,41,123,114,101,116,117,114,110,32,74,112,40,116,44,110,41,43,34,48,48,48,34,125,102,117,110,99,116,105,111,110,32,110,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,77,111,110,116,104,40,41,43,49,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,101,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,77,105,110,117,116,101,115,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,114,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,83,101,99,111,110,100,115,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,105,118,40,116,41,123,118,97,114,32,110,61,116,46,103,101,116,68,97,121,40,41,59,114,101,116,117,114,110,32,48,61,61,61,110,63,55,58,110,125,102,117,110,99,116,105,111,110,32,111,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,83,100,46,99,111,117,110,116,40,72,100,40,116,41,45,49,44,116,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,97,118,40,116,44,110,41,123,118,97,114,32,101,61,116,46,103,101,116,68,97,121,40,41,59,114,101,116,117,114,110,32,116,61,101,62,61,52,124,124,48,61,61,61,101,63,80,100,40,116,41,58,80,100,46,99,101,105,108,40,116,41,44,84,112,40,80,100,46,99,111,117,110,116,40,72,100,40,116,41,44,116,41,43,40,52,61,61,61,72,100,40,116,41,46,103,101,116,68,97,121,40,41,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,117,118,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,68,97,121,40,41,125,102,117,110,99,116,105,111,110,32,99,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,107,100,46,99,111,117,110,116,40,72,100,40,116,41,45,49,44,116,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,102,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,37,49,48,48,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,115,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,37,49,101,52,44,110,44,52,41,125,102,117,110,99,116,105,111,110,32,108,118,40,116,41,123,118,97,114,32,110,61,116,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,59,114,101,116,117,114,110,40,110,62,48,63,34,45,34,58,40,110,42,61,45,49,44,34,43,34,41,41,43,84,112,40,110,47,54,48,124,48,44,34,48,34,44,50,41,43,84,112,40,110,37,54,48,44,34,48,34,44,50,41,125,102,117,110,99,116,105,111,110,32,104,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,68,97,116,101,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,100,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,112,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,37,49,50,124,124,49,50,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,118,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,49,43,87,100,46,99,111,117,110,116,40,112,112,40,116,41,44,116,41,44,110,44,51,41,125,102,117,110,99,116,105,111,110,32,103,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,77,105,108,108,105,115,101,99,111,110,100,115,40,41,44,110,44,51,41,125,102,117,110,99,116,105,111,110,32,121,118,40,116,44,110,41,123,114,101,116,117,114,110,32,103,118,40,116,44,110,41,43,34,48,48,48,34,125,102,117,110,99,116,105,111,110,32,95,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,43,49,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,98,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,77,105,110,117,116,101,115,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,109,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,83,101,99,111,110,100,115,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,120,118,40,116,41,123,118,97,114,32,110,61,116,46,103,101,116,85,84,67,68,97,121,40,41,59,114,101,116,117,114,110,32,48,61,61,61,110,63,55,58,110,125,102,117,110,99,116,105,111,110,32,119,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,75,100,46,99,111,117,110,116,40,112,112,40,116,41,45,49,44,116,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,77,118,40,116,44,110,41,123,118,97,114,32,101,61,116,46,103,101,116,85,84,67,68,97,121,40,41,59,114,101,116,117,114,110,32,116,61,101,62,61,52,124,124,48,61,61,61,101,63,101,112,40,116,41,58,101,112,46,99,101,105,108,40,116,41,44,84,112,40,101,112,46,99,111,117,110,116,40,112,112,40,116,41,44,116,41,43,40,52,61,61,61,112,112,40,116,41,46,103,101,116,85,84,67,68,97,121,40,41,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,78,118,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,68,97,121,40,41,125,102,117,110,99,116,105,111,110,32,84,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,74,100,46,99,111,117,110,116,40,112,112,40,116,41,45,49,44,116,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,65,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,37,49,48,48,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,83,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,37,49,101,52,44,110,44,52,41,125,102,117,110,99,116,105,111,110,32,107,118,40,41,123,114,101,116,117,114,110,34,43,48,48,48,48,34,125,102,117,110,99,116,105,111,110,32,69,118,40,41,123,114,101,116,117,114,110,34,37,34,125,102,117,110,99,116,105,111,110,32,67,118,40,116,41,123,114,101,116,117,114,110,43,116,125,102,117,110,99,116,105,111,110,32,80,118,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,102,108,111,111,114,40,43,116,47,49,101,51,41,125,102,117,110,99,116,105,111,110,32,122,118,40,110,41,123,114,101,116,117,114,110,32,109,112,61,98,112,40,110,41,44,116,46,116,105,109,101,70,111,114,109,97,116,61,109,112,46,102,111,114,109,97,116,44,116,46,116,105,109,101,80,97,114,115,101,61,109,112,46,112,97,114,115,101,44,116,46,117,116,99,70,111,114,109,97,116,61,109,112,46,117,116,99,70,111,114,109,97,116,44,116,46,117,116,99,80,97,114,115,101,61,109,112,46,117,116,99,80,97,114,115,101,44,109,112,125,122,118,40,123,100,97,116,101,84,105,109,101,58,34,37,120,44,32,37,88,34,44,100,97,116,101,58,34,37,45,109,47,37,45,100,47,37,89,34,44,116,105,109,101,58,34,37,45,73,58,37,77,58,37,83,32,37,112,34,44,112,101,114,105,111,100,115,58,91,34,65,77,34,44,34,80,77,34,93,44,100,97,121,115,58,91,34,83,117,110,100,97,121,34,44,34,77,111,110,100,97,121,34,44,34,84,117,101,115,100,97,121,34,44,34,87,101,100,110,101,115,100,97,121,34,44,34,84,104,117,114,115,100,97,121,34,44,34,70,114,105,100,97,121,34,44,34,83,97,116,117,114,100,97,121,34,93,44,115,104,111,114,116,68,97,121,115,58,91,34,83,117,110,34,44,34,77,111,110,34,44,34,84,117,101,34,44,34,87,101,100,34,44,34,84,104,117,34,44,34,70,114,105,34,44,34,83,97,116,34,93,44,109,111,110,116,104,115,58,91,34,74,97,110,117,97,114,121,34,44,34,70,101,98,114,117,97,114,121,34,44,34,77,97,114,99,104,34,44,34,65,112,114,105,108,34,44,34,77,97,121,34,44,34,74,117,110,101,34,44,34,74,117,108,121,34,44,34,65,117,103,117,115,116,34,44,34,83,101,112,116,101,109,98,101,114,34,44,34,79,99,116,111,98,101,114,34,44,34,78,111,118,101,109,98,101,114,34,44,34,68,101,99,101,109,98,101,114,34,93,44,115,104,111,114,116,77,111,110,116,104,115,58,91,34,74,97,110,34,44,34,70,101,98,34,44,34,77,97,114,34,44,34,65,112,114,34,44,34,77,97,121,34,44,34,74,117,110,34,44,34,74,117,108,34,44,34,65,117,103,34,44,34,83,101,112,34,44,34,79,99,116,34,44,34,78,111,118,34,44,34,68,101,99,34,93,125,41,59,118,97,114,32,82,118,61,68,97,116,101,46,112,114,111,116,111,116,121,112,101,46,116,111,73,83,79,83,116,114,105,110,103,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,111,73,83,79,83,116,114,105,110,103,40,41,125,58,116,46,117,116,99,70,111,114,109,97,116,40,34,37,89,45,37,109,45,37,100,84,37,72,58,37,77,58,37,83,46,37,76,90,34,41,59,118,97,114,32,68,118,61,43,110,101,119,32,68,97,116,101,40,34,50,48,48,48,45,48,49,45,48,49,84,48,48,58,48,48,58,48,48,46,48,48,48,90,34,41,63,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,110,101,119,32,68,97,116,101,40,116,41,59,114,101,116,117,114,110,32,105,115,78,97,78,40,110,41,63,110,117,108,108,58,110,125,58,116,46,117,116,99,80,97,114,115,101,40,34,37,89,45,37,109,45,37,100,84,37,72,58,37,77,58,37,83,46,37,76,90,34,41,44,113,118,61,49,101,51,44,76,118,61,54,48,42,113,118,44,85,118,61,54,48,42,76,118,44,79,118,61,50,52,42,85,118,44,66,118,61,55,42,79,118,44,70,118,61,51,48,42,79,118,44,89,118,61,51,54,53,42,79,118,59,102,117,110,99,116,105,111,110,32,73,118,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,116,41,125,102,117,110,99,116,105,111,110,32,72,118,40,116,41,123,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,63,43,116,58,43,110,101,119,32,68,97,116,101,40,43,116,41,125,102,117,110,99,116,105,111,110,32,106,118,40,116,44,110,44,114,44,105,44,111,44,97,44,117,44,99,44,102,41,123,118,97,114,32,115,61,86,104,40,66,104,44,66,104,41,44,108,61,115,46,105,110,118,101,114,116,44,104,61,115,46,100,111,109,97,105,110,44,100,61,102,40,34,46,37,76,34,41,44,112,61,102,40,34,58,37,83,34,41,44,118,61,102,40,34,37,73,58,37,77,34,41,44,103,61,102,40,34,37,73,32,37,112,34,41,44,121,61,102,40,34,37,97,32,37,100,34,41,44,95,61,102,40,34,37,98,32,37,100,34,41,44,98,61,102,40,34,37,66,34,41,44,109,61,102,40,34,37,89,34,41,44,120,61,91,91,117,44,49,44,113,118,93,44,91,117,44,53,44,53,42,113,118,93,44,91,117,44,49,53,44,49,53,42,113,118,93,44,91,117,44,51,48,44,51,48,42,113,118,93,44,91,97,44,49,44,76,118,93,44,91,97,44,53,44,53,42,76,118,93,44,91,97,44,49,53,44,49,53,42,76,118,93,44,91,97,44,51,48,44,51,48,42,76,118,93,44,91,111,44,49,44,85,118,93,44,91,111,44,51,44,51,42,85,118,93,44,91,111,44,54,44,54,42,85,118,93,44,91,111,44,49,50,44,49,50,42,85,118,93,44,91,105,44,49,44,79,118,93,44,91,105,44,50,44,50,42,79,118,93,44,91,114,44,49,44,66,118,93,44,91,110,44,49,44,70,118,93,44,91,110,44,51,44,51,42,70,118,93,44,91,116,44,49,44,89,118,93,93,59,102,117,110,99,116,105,111,110,32,77,40,101,41,123,114,101,116,117,114,110,40,117,40,101,41,60,101,63,100,58,97,40,101,41,60,101,63,112,58,111,40,101,41,60,101,63,118,58,105,40,101,41,60,101,63,103,58,110,40,101,41,60,101,63,114,40,101,41,60,101,63,121,58,95,58,116,40,101,41,60,101,63,98,58,109,41,40,101,41,125,102,117,110,99,116,105,111,110,32,78,40,110,44,114,44,105,44,111,41,123,105,102,40,110,117,108,108,61,61,110,38,38,40,110,61,49,48,41,44,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,110,41,123,118,97,114,32,97,61,77,97,116,104,46,97,98,115,40,105,45,114,41,47,110,44,117,61,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,91,50,93,125,41,46,114,105,103,104,116,40,120,44,97,41,59,117,61,61,61,120,46,108,101,110,103,116,104,63,40,111,61,119,40,114,47,89,118,44,105,47,89,118,44,110,41,44,110,61,116,41,58,117,63,40,111,61,40,117,61,120,91,97,47,120,91,117,45,49,93,91,50,93,60,120,91,117,93,91,50,93,47,97,63,117,45,49,58,117,93,41,91,49,93,44,110,61,117,91,48,93,41,58,40,111,61,77,97,116,104,46,109,97,120,40,119,40,114,44,105,44,110,41,44,49,41,44,110,61,99,41,125,114,101,116,117,114,110,32,110,117,108,108,61,61,111,63,110,58,110,46,101,118,101,114,121,40,111,41,125,114,101,116,117,114,110,32,115,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,108,40,116,41,41,125,44,115,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,104,40,122,104,46,99,97,108,108,40,116,44,72,118,41,41,58,104,40,41,46,109,97,112,40,73,118,41,125,44,115,46,116,105,99,107,115,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,61,104,40,41,44,105,61,114,91,48,93,44,111,61,114,91,114,46,108,101,110,103,116,104,45,49,93,44,97,61,111,60,105,59,114,101,116,117,114,110,32,97,38,38,40,101,61,105,44,105,61,111,44,111,61,101,41,44,101,61,40,101,61,78,40,116,44,105,44,111,44,110,41,41,63,101,46,114,97,110,103,101,40,105,44,111,43,49,41,58,91,93,44,97,63,101,46,114,101,118,101,114,115,101,40,41,58,101,125,44,115,46,116,105,99,107,70,111,114,109,97,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,77,58,102,40,110,41,125,44,115,46,110,105,99,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,104,40,41,59,114,101,116,117,114,110,40,116,61,78,40,116,44,101,91,48,93,44,101,91,101,46,108,101,110,103,116,104,45,49,93,44,110,41,41,63,104,40,87,104,40,101,44,116,41,41,58,115,125,44,115,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,104,40,115,44,106,118,40,116,44,110,44,114,44,105,44,111,44,97,44,117,44,99,44,102,41,41,125,44,115,125,102,117,110,99,116,105,111,110,32,88,118,40,41,123,118,97,114,32,116,44,110,44,101,44,114,44,105,44,111,61,48,44,97,61,49,44,117,61,66,104,44,99,61,33,49,59,102,117,110,99,116,105,111,110,32,102,40,110,41,123,114,101,116,117,114,110,32,105,115,78,97,78,40,110,61,43,110,41,63,105,58,117,40,48,61,61,61,101,63,46,53,58,40,110,61,40,114,40,110,41,45,116,41,42,101,44,99,63,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,110,41,41,58,110,41,41,125,114,101,116,117,114,110,32,102,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,105,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,114,40,111,61,43,105,91,48,93,41,44,110,61,114,40,97,61,43,105,91,49,93,41,44,101,61,116,61,61,61,110,63,48,58,49,47,40,110,45,116,41,44,102,41,58,91,111,44,97,93,125,44,102,46,99,108,97,109,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,33,33,116,44,102,41,58,99,125,44,102,46,105,110,116,101,114,112,111,108,97,116,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,116,44,102,41,58,117,125,44,102,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,116,44,102,41,58,105,125,44,102,117,110,99,116,105,111,110,40,105,41,123,114,101,116,117,114,110,32,114,61,105,44,116,61,105,40,111,41,44,110,61,105,40,97,41,44,101,61,116,61,61,61,110,63,48,58,49,47,40,110,45,116,41,44,102,125,125,102,117,110,99,116,105,111,110,32,86,118,40,116,44,110,41,123,114,101,116,117,114,110,32,110,46,100,111,109,97,105,110,40,116,46,100,111,109,97,105,110,40,41,41,46,105,110,116,101,114,112,111,108,97,116,111,114,40,116,46,105,110,116,101,114,112,111,108,97,116,111,114,40,41,41,46,99,108,97,109,112,40,116,46,99,108,97,109,112,40,41,41,46,117,110,107,110,111,119,110,40,116,46,117,110,107,110,111,119,110,40,41,41,125,102,117,110,99,116,105,111,110,32,71,118,40,41,123,118,97,114,32,116,61,102,100,40,88,118,40,41,41,59,114,101,116,117,114,110,32,116,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,116,44,71,118,40,41,41,46,101,120,112,111,110,101,110,116,40,116,46,101,120,112,111,110,101,110,116,40,41,41,125,44,67,104,46,97,112,112,108,121,40,116,44,97,114,103,117,109,101,110,116,115,41,125,102,117,110,99,116,105,111,110,32,36,118,40,41,123,118,97,114,32,116,44,110,44,101,44,114,44,105,44,111,44,97,44,117,61,48,44,99,61,46,53,44,102,61,49,44,115,61,66,104,44,108,61,33,49,59,102,117,110,99,116,105,111,110,32,104,40,116,41,123,114,101,116,117,114,110,32,105,115,78,97,78,40,116,61,43,116,41,63,97,58,40,116,61,46,53,43,40,40,116,61,43,111,40,116,41,41,45,110,41,42,40,116,60,110,63,114,58,105,41,44,115,40,108,63,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,41,41,58,116,41,41,125,114,101,116,117,114,110,32,104,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,111,40,117,61,43,97,91,48,93,41,44,110,61,111,40,99,61,43,97,91,49,93,41,44,101,61,111,40,102,61,43,97,91,50,93,41,44,114,61,116,61,61,61,110,63,48,58,46,53,47,40,110,45,116,41,44,105,61,110,61,61,61,101,63,48,58,46,53,47,40,101,45,110,41,44,104,41,58,91,117,44,99,44,102,93,125,44,104,46,99,108,97,109,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,108,61,33,33,116,44,104,41,58,108,125,44,104,46,105,110,116,101,114,112,111,108,97,116,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,115,61,116,44,104,41,58,115,125,44,104,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,116,44,104,41,58,97,125,44,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,111,61,97,44,116,61,97,40,117,41,44,110,61,97,40,99,41,44,101,61,97,40,102,41,44,114,61,116,61,61,61,110,63,48,58,46,53,47,40,110,45,116,41,44,105,61,110,61,61,61,101,63,48,58,46,53,47,40,101,45,110,41,44,104,125,125,102,117,110,99,116,105,111,110,32,87,118,40,41,123,118,97,114,32,116,61,102,100,40,36,118,40,41,41,59,114,101,116,117,114,110,32,116,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,116,44,87,118,40,41,41,46,101,120,112,111,110,101,110,116,40,116,46,101,120,112,111,110,101,110,116,40,41,41,125,44,67,104,46,97,112,112,108,121,40,116,44,97,114,103,117,109,101,110,116,115,41,125,102,117,110,99,116,105,111,110,32,90,118,40,116,41,123,102,111,114,40,118,97,114,32,110,61,116,46,108,101,110,103,116,104,47,54,124,48,44,101,61,110,101,119,32,65,114,114,97,121,40,110,41,44,114,61,48,59,114,60,110,59,41,101,91,114,93,61,34,35,34,43,116,46,115,108,105,99,101,40,54,42,114,44,54,42,43,43,114,41,59,114,101,116,117,114,110,32,101,125,118,97,114,32,81,118,61,90,118,40,34,49,102,55,55,98,52,102,102,55,102,48,101,50,99,97,48,50,99,100,54,50,55,50,56,57,52,54,55,98,100,56,99,53,54,52,98,101,51,55,55,99,50,55,102,55,102,55,102,98,99,98,100,50,50,49,55,98,101,99,102,34,41,44,75,118,61,90,118,40,34,55,102,99,57,55,102,98,101,97,101,100,52,102,100,99,48,56,54,102,102,102,102,57,57,51,56,54,99,98,48,102,48,48,50,55,102,98,102,53,98,49,55,54,54,54,54,54,54,34,41,44,74,118,61,90,118,40,34,49,98,57,101,55,55,100,57,53,102,48,50,55,53,55,48,98,51,101,55,50,57,56,97,54,54,97,54,49,101,101,54,97,98,48,50,97,54,55,54,49,100,54,54,54,54,54,54,34,41,44,116,103,61,90,118,40,34,97,54,99,101,101,51,49,102,55,56,98,52,98,50,100,102,56,97,51,51,97,48,50,99,102,98,57,97,57,57,101,51,49,97,49,99,102,100,98,102,54,102,102,102,55,102,48,48,99,97,98,50,100,54,54,97,51,100,57,97,102,102,102,102,57,57,98,49,53,57,50,56,34,41,44,110,103,61,90,118,40,34,102,98,98,52,97,101,98,51,99,100,101,51,99,99,101,98,99,53,100,101,99,98,101,52,102,101,100,57,97,54,102,102,102,102,99,99,101,53,100,56,98,100,102,100,100,97,101,99,102,50,102,50,102,50,34,41,44,101,103,61,90,118,40,34,98,51,101,50,99,100,102,100,99,100,97,99,99,98,100,53,101,56,102,52,99,97,101,52,101,54,102,53,99,57,102,102,102,50,97,101,102,49,101,50,99,99,99,99,99,99,99,99,34,41,44,114,103,61,90,118,40,34,101,52,49,97,49,99,51,55,55,101,98,56,52,100,97,102,52,97,57,56,52,101,97,51,102,102,55,102,48,48,102,102,102,102,51,51,97,54,53,54,50,56,102,55,56,49,98,102,57,57,57,57,57,57,34,41,44,105,103,61,90,118,40,34,54,54,99,50,97,53,102,99,56,100,54,50,56,100,97,48,99,98,101,55,56,97,99,51,97,54,100,56,53,52,102,102,100,57,50,102,101,53,99,52,57,52,98,51,98,51,98,51,34,41,44,111,103,61,90,118,40,34,56,100,100,51,99,55,102,102,102,102,98,51,98,101,98,97,100,97,102,98,56,48,55,50,56,48,98,49,100,51,102,100,98,52,54,50,98,51,100,101,54,57,102,99,99,100,101,53,100,57,100,57,100,57,98,99,56,48,98,100,99,99,101,98,99,53,102,102,101,100,54,102,34,41,44,97,103,61,90,118,40,34,52,101,55,57,97,55,102,50,56,101,50,99,101,49,53,55,53,57,55,54,98,55,98,50,53,57,97,49,52,102,101,100,99,57,52,57,97,102,55,97,97,49,102,102,57,100,97,55,57,99,55,53,53,102,98,97,98,48,97,98,34,41,59,102,117,110,99,116,105,111,110,32,117,103,40,116,41,123,114,101,116,117,114,110,32,112,101,40,116,91,116,46,108,101,110,103,116,104,45,49,93,41,125,118,97,114,32,99,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,100,56,98,51,54,53,102,53,102,53,102,53,53,97,98,52,97,99,34,44,34,97,54,54,49,49,97,100,102,99,50,55,100,56,48,99,100,99,49,48,49,56,53,55,49,34,44,34,97,54,54,49,49,97,100,102,99,50,55,100,102,53,102,53,102,53,56,48,99,100,99,49,48,49,56,53,55,49,34,44,34,56,99,53,49,48,97,100,56,98,51,54,53,102,54,101,56,99,51,99,55,101,97,101,53,53,97,98,52,97,99,48,49,54,54,53,101,34,44,34,56,99,53,49,48,97,100,56,98,51,54,53,102,54,101,56,99,51,102,53,102,53,102,53,99,55,101,97,101,53,53,97,98,52,97,99,48,49,54,54,53,101,34,44,34,56,99,53,49,48,97,98,102,56,49,50,100,100,102,99,50,55,100,102,54,101,56,99,51,99,55,101,97,101,53,56,48,99,100,99,49,51,53,57,55,56,102,48,49,54,54,53,101,34,44,34,56,99,53,49,48,97,98,102,56,49,50,100,100,102,99,50,55,100,102,54,101,56,99,51,102,53,102,53,102,53,99,55,101,97,101,53,56,48,99,100,99,49,51,53,57,55,56,102,48,49,54,54,53,101,34,44,34,53,52,51,48,48,53,56,99,53,49,48,97,98,102,56,49,50,100,100,102,99,50,55,100,102,54,101,56,99,51,99,55,101,97,101,53,56,48,99,100,99,49,51,53,57,55,56,102,48,49,54,54,53,101,48,48,51,99,51,48,34,44,34,53,52,51,48,48,53,56,99,53,49,48,97,98,102,56,49,50,100,100,102,99,50,55,100,102,54,101,56,99,51,102,53,102,53,102,53,99,55,101,97,101,53,56,48,99,100,99,49,51,53,57,55,56,102,48,49,54,54,53,101,48,48,51,99,51,48,34,41,46,109,97,112,40,90,118,41,44,102,103,61,117,103,40,99,103,41,44,115,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,97,102,56,100,99,51,102,55,102,55,102,55,55,102,98,102,55,98,34,44,34,55,98,51,50,57,52,99,50,97,53,99,102,97,54,100,98,97,48,48,48,56,56,51,55,34,44,34,55,98,51,50,57,52,99,50,97,53,99,102,102,55,102,55,102,55,97,54,100,98,97,48,48,48,56,56,51,55,34,44,34,55,54,50,97,56,51,97,102,56,100,99,51,101,55,100,52,101,56,100,57,102,48,100,51,55,102,98,102,55,98,49,98,55,56,51,55,34,44,34,55,54,50,97,56,51,97,102,56,100,99,51,101,55,100,52,101,56,102,55,102,55,102,55,100,57,102,48,100,51,55,102,98,102,55,98,49,98,55,56,51,55,34,44,34,55,54,50,97,56,51,57,57,55,48,97,98,99,50,97,53,99,102,101,55,100,52,101,56,100,57,102,48,100,51,97,54,100,98,97,48,53,97,97,101,54,49,49,98,55,56,51,55,34,44,34,55,54,50,97,56,51,57,57,55,48,97,98,99,50,97,53,99,102,101,55,100,52,101,56,102,55,102,55,102,55,100,57,102,48,100,51,97,54,100,98,97,48,53,97,97,101,54,49,49,98,55,56,51,55,34,44,34,52,48,48,48,52,98,55,54,50,97,56,51,57,57,55,48,97,98,99,50,97,53,99,102,101,55,100,52,101,56,100,57,102,48,100,51,97,54,100,98,97,48,53,97,97,101,54,49,49,98,55,56,51,55,48,48,52,52,49,98,34,44,34,52,48,48,48,52,98,55,54,50,97,56,51,57,57,55,48,97,98,99,50,97,53,99,102,101,55,100,52,101,56,102,55,102,55,102,55,100,57,102,48,100,51,97,54,100,98,97,48,53,97,97,101,54,49,49,98,55,56,51,55,48,48,52,52,49,98,34,41,46,109,97,112,40,90,118,41,44,108,103,61,117,103,40,115,103,41,44,104,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,57,97,51,99,57,102,55,102,55,102,55,97,49,100,55,54,97,34,44,34,100,48,49,99,56,98,102,49,98,54,100,97,98,56,101,49,56,54,52,100,97,99,50,54,34,44,34,100,48,49,99,56,98,102,49,98,54,100,97,102,55,102,55,102,55,98,56,101,49,56,54,52,100,97,99,50,54,34,44,34,99,53,49,98,55,100,101,57,97,51,99,57,102,100,101,48,101,102,101,54,102,53,100,48,97,49,100,55,54,97,52,100,57,50,50,49,34,44,34,99,53,49,98,55,100,101,57,97,51,99,57,102,100,101,48,101,102,102,55,102,55,102,55,101,54,102,53,100,48,97,49,100,55,54,97,52,100,57,50,50,49,34,44,34,99,53,49,98,55,100,100,101,55,55,97,101,102,49,98,54,100,97,102,100,101,48,101,102,101,54,102,53,100,48,98,56,101,49,56,54,55,102,98,99,52,49,52,100,57,50,50,49,34,44,34,99,53,49,98,55,100,100,101,55,55,97,101,102,49,98,54,100,97,102,100,101,48,101,102,102,55,102,55,102,55,101,54,102,53,100,48,98,56,101,49,56,54,55,102,98,99,52,49,52,100,57,50,50,49,34,44,34,56,101,48,49,53,50,99,53,49,98,55,100,100,101,55,55,97,101,102,49,98,54,100,97,102,100,101,48,101,102,101,54,102,53,100,48,98,56,101,49,56,54,55,102,98,99,52,49,52,100,57,50,50,49,50,55,54,52,49,57,34,44,34,56,101,48,49,53,50,99,53,49,98,55,100,100,101,55,55,97,101,102,49,98,54,100,97,102,100,101,48,101,102,102,55,102,55,102,55,101,54,102,53,100,48,98,56,101,49,56,54,55,102,98,99,52,49,52,100,57,50,50,49,50,55,54,52,49,57,34,41,46,109,97,112,40,90,118,41,44,100,103,61,117,103,40,104,103,41,44,112,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,57,57,56,101,99,51,102,55,102,55,102,55,102,49,97,51,52,48,34,44,34,53,101,51,99,57,57,98,50,97,98,100,50,102,100,98,56,54,51,101,54,54,49,48,49,34,44,34,53,101,51,99,57,57,98,50,97,98,100,50,102,55,102,55,102,55,102,100,98,56,54,51,101,54,54,49,48,49,34,44,34,53,52,50,55,56,56,57,57,56,101,99,51,100,56,100,97,101,98,102,101,101,48,98,54,102,49,97,51,52,48,98,51,53,56,48,54,34,44,34,53,52,50,55,56,56,57,57,56,101,99,51,100,56,100,97,101,98,102,55,102,55,102,55,102,101,101,48,98,54,102,49,97,51,52,48,98,51,53,56,48,54,34,44,34,53,52,50,55,56,56,56,48,55,51,97,99,98,50,97,98,100,50,100,56,100,97,101,98,102,101,101,48,98,54,102,100,98,56,54,51,101,48,56,50,49,52,98,51,53,56,48,54,34,44,34,53,52,50,55,56,56,56,48,55,51,97,99,98,50,97,98,100,50,100,56,100,97,101,98,102,55,102,55,102,55,102,101,101,48,98,54,102,100,98,56,54,51,101,48,56,50,49,52,98,51,53,56,48,54,34,44,34,50,100,48,48,52,98,53,52,50,55,56,56,56,48,55,51,97,99,98,50,97,98,100,50,100,56,100,97,101,98,102,101,101,48,98,54,102,100,98,56,54,51,101,48,56,50,49,52,98,51,53,56,48,54,55,102,51,98,48,56,34,44,34,50,100,48,48,52,98,53,52,50,55,56,56,56,48,55,51,97,99,98,50,97,98,100,50,100,56,100,97,101,98,102,55,102,55,102,55,102,101,101,48,98,54,102,100,98,56,54,51,101,48,56,50,49,52,98,51,53,56,48,54,55,102,51,98,48,56,34,41,46,109,97,112,40,90,118,41,44,118,103,61,117,103,40,112,103,41,44,103,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,102,56,97,54,50,102,55,102,55,102,55,54,55,97,57,99,102,34,44,34,99,97,48,48,50,48,102,52,97,53,56,50,57,50,99,53,100,101,48,53,55,49,98,48,34,44,34,99,97,48,48,50,48,102,52,97,53,56,50,102,55,102,55,102,55,57,50,99,53,100,101,48,53,55,49,98,48,34,44,34,98,50,49,56,50,98,101,102,56,97,54,50,102,100,100,98,99,55,100,49,101,53,102,48,54,55,97,57,99,102,50,49,54,54,97,99,34,44,34,98,50,49,56,50,98,101,102,56,97,54,50,102,100,100,98,99,55,102,55,102,55,102,55,100,49,101,53,102,48,54,55,97,57,99,102,50,49,54,54,97,99,34,44,34,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,100,49,101,53,102,48,57,50,99,53,100,101,52,51,57,51,99,51,50,49,54,54,97,99,34,44,34,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,102,55,102,55,102,55,100,49,101,53,102,48,57,50,99,53,100,101,52,51,57,51,99,51,50,49,54,54,97,99,34,44,34,54,55,48,48,49,102,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,100,49,101,53,102,48,57,50,99,53,100,101,52,51,57,51,99,51,50,49,54,54,97,99,48,53,51,48,54,49,34,44,34,54,55,48,48,49,102,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,102,55,102,55,102,55,100,49,101,53,102,48,57,50,99,53,100,101,52,51,57,51,99,51,50,49,54,54,97,99,48,53,51,48,54,49,34,41,46,109,97,112,40,90,118,41,44,121,103,61,117,103,40,103,103,41,44,95,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,102,56,97,54,50,102,102,102,102,102,102,57,57,57,57,57,57,34,44,34,99,97,48,48,50,48,102,52,97,53,56,50,98,97,98,97,98,97,52,48,52,48,52,48,34,44,34,99,97,48,48,50,48,102,52,97,53,56,50,102,102,102,102,102,102,98,97,98,97,98,97,52,48,52,48,52,48,34,44,34,98,50,49,56,50,98,101,102,56,97,54,50,102,100,100,98,99,55,101,48,101,48,101,48,57,57,57,57,57,57,52,100,52,100,52,100,34,44,34,98,50,49,56,50,98,101,102,56,97,54,50,102,100,100,98,99,55,102,102,102,102,102,102,101,48,101,48,101,48,57,57,57,57,57,57,52,100,52,100,52,100,34,44,34,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,101,48,101,48,101,48,98,97,98,97,98,97,56,55,56,55,56,55,52,100,52,100,52,100,34,44,34,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,102,102,102,102,102,102,101,48,101,48,101,48,98,97,98,97,98,97,56,55,56,55,56,55,52,100,52,100,52,100,34,44,34,54,55,48,48,49,102,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,101,48,101,48,101,48,98,97,98,97,98,97,56,55,56,55,56,55,52,100,52,100,52,100,49,97,49,97,49,97,34,44,34,54,55,48,48,49,102,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,102,102,102,102,102,102,101,48,101,48,101,48,98,97,98,97,98,97,56,55,56,55,56,55,52,100,52,100,52,100,49,97,49,97,49,97,34,41,46,109,97,112,40,90,118,41,44,98,103,61,117,103,40,95,103,41,44,109,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,99,56,100,53,57,102,102,102,102,98,102,57,49,98,102,100,98,34,44,34,100,55,49,57,49,99,102,100,97,101,54,49,97,98,100,57,101,57,50,99,55,98,98,54,34,44,34,100,55,49,57,49,99,102,100,97,101,54,49,102,102,102,102,98,102,97,98,100,57,101,57,50,99,55,98,98,54,34,44,34,100,55,51,48,50,55,102,99,56,100,53,57,102,101,101,48,57,48,101,48,102,51,102,56,57,49,98,102,100,98,52,53,55,53,98,52,34,44,34,100,55,51,48,50,55,102,99,56,100,53,57,102,101,101,48,57,48,102,102,102,102,98,102,101,48,102,51,102,56,57,49,98,102,100,98,52,53,55,53,98,52,34,44,34,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,57,48,101,48,102,51,102,56,97,98,100,57,101,57,55,52,97,100,100,49,52,53,55,53,98,52,34,44,34,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,57,48,102,102,102,102,98,102,101,48,102,51,102,56,97,98,100,57,101,57,55,52,97,100,100,49,52,53,55,53,98,52,34,44,34,97,53,48,48,50,54,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,57,48,101,48,102,51,102,56,97,98,100,57,101,57,55,52,97,100,100,49,52,53,55,53,98,52,51,49,51,54,57,53,34,44,34,97,53,48,48,50,54,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,57,48,102,102,102,102,98,102,101,48,102,51,102,56,97,98,100,57,101,57,55,52,97,100,100,49,52,53,55,53,98,52,51,49,51,54,57,53,34,41,46,109,97,112,40,90,118,41,44,120,103,61,117,103,40,109,103,41,44,119,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,99,56,100,53,57,102,102,102,102,98,102,57,49,99,102,54,48,34,44,34,100,55,49,57,49,99,102,100,97,101,54,49,97,54,100,57,54,97,49,97,57,54,52,49,34,44,34,100,55,49,57,49,99,102,100,97,101,54,49,102,102,102,102,98,102,97,54,100,57,54,97,49,97,57,54,52,49,34,44,34,100,55,51,48,50,55,102,99,56,100,53,57,102,101,101,48,56,98,100,57,101,102,56,98,57,49,99,102,54,48,49,97,57,56,53,48,34,44,34,100,55,51,48,50,55,102,99,56,100,53,57,102,101,101,48,56,98,102,102,102,102,98,102,100,57,101,102,56,98,57,49,99,102,54,48,49,97,57,56,53,48,34,44,34,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,100,57,101,102,56,98,97,54,100,57,54,97,54,54,98,100,54,51,49,97,57,56,53,48,34,44,34,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,102,102,102,102,98,102,100,57,101,102,56,98,97,54,100,57,54,97,54,54,98,100,54,51,49,97,57,56,53,48,34,44,34,97,53,48,48,50,54,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,100,57,101,102,56,98,97,54,100,57,54,97,54,54,98,100,54,51,49,97,57,56,53,48,48,48,54,56,51,55,34,44,34,97,53,48,48,50,54,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,102,102,102,102,98,102,100,57,101,102,56,98,97,54,100,57,54,97,54,54,98,100,54,51,49,97,57,56,53,48,48,48,54,56,51,55,34,41,46,109,97,112,40,90,118,41,44,77,103,61,117,103,40,119,103,41,44,78,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,99,56,100,53,57,102,102,102,102,98,102,57,57,100,53,57,52,34,44,34,100,55,49,57,49,99,102,100,97,101,54,49,97,98,100,100,97,52,50,98,56,51,98,97,34,44,34,100,55,49,57,49,99,102,100,97,101,54,49,102,102,102,102,98,102,97,98,100,100,97,52,50,98,56,51,98,97,34,44,34,100,53,51,101,52,102,102,99,56,100,53,57,102,101,101,48,56,98,101,54,102,53,57,56,57,57,100,53,57,52,51,50,56,56,98,100,34,44,34,100,53,51,101,52,102,102,99,56,100,53,57,102,101,101,48,56,98,102,102,102,102,98,102,101,54,102,53,57,56,57,57,100,53,57,52,51,50,56,56,98,100,34,44,34,100,53,51,101,52,102,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,101,54,102,53,57,56,97,98,100,100,97,52,54,54,99,50,97,53,51,50,56,56,98,100,34,44,34,100,53,51,101,52,102,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,102,102,102,102,98,102,101,54,102,53,57,56,97,98,100,100,97,52,54,54,99,50,97,53,51,50,56,56,98,100,34,44,34,57,101,48,49,52,50,100,53,51,101,52,102,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,101,54,102,53,57,56,97,98,100,100,97,52,54,54,99,50,97,53,51,50,56,56,98,100,53,101,52,102,97,50,34,44,34,57,101,48,49,52,50,100,53,51,101,52,102,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,102,102,102,102,98,102,101,54,102,53,57,56,97,98,100,100,97,52,54,54,99,50,97,53,51,50,56,56,98,100,53,101,52,102,97,50,34,41,46,109,97,112,40,90,118,41,44,84,103,61,117,103,40,78,103,41,44,65,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,53,102,53,102,57,57,57,100,56,99,57,50,99,97,50,53,102,34,44,34,101,100,102,56,102,98,98,50,101,50,101,50,54,54,99,50,97,52,50,51,56,98,52,53,34,44,34,101,100,102,56,102,98,98,50,101,50,101,50,54,54,99,50,97,52,50,99,97,50,53,102,48,48,54,100,50,99,34,44,34,101,100,102,56,102,98,99,99,101,99,101,54,57,57,100,56,99,57,54,54,99,50,97,52,50,99,97,50,53,102,48,48,54,100,50,99,34,44,34,101,100,102,56,102,98,99,99,101,99,101,54,57,57,100,56,99,57,54,54,99,50,97,52,52,49,97,101,55,54,50,51,56,98,52,53,48,48,53,56,50,52,34,44,34,102,55,102,99,102,100,101,53,102,53,102,57,99,99,101,99,101,54,57,57,100,56,99,57,54,54,99,50,97,52,52,49,97,101,55,54,50,51,56,98,52,53,48,48,53,56,50,52,34,44,34,102,55,102,99,102,100,101,53,102,53,102,57,99,99,101,99,101,54,57,57,100,56,99,57,54,54,99,50,97,52,52,49,97,101,55,54,50,51,56,98,52,53,48,48,54,100,50,99,48,48,52,52,49,98,34,41,46,109,97,112,40,90,118,41,44,83,103,61,117,103,40,65,103,41,44,107,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,48,101,99,102,52,57,101,98,99,100,97,56,56,53,54,97,55,34,44,34,101,100,102,56,102,98,98,51,99,100,101,51,56,99,57,54,99,54,56,56,52,49,57,100,34,44,34,101,100,102,56,102,98,98,51,99,100,101,51,56,99,57,54,99,54,56,56,53,54,97,55,56,49,48,102,55,99,34,44,34,101,100,102,56,102,98,98,102,100,51,101,54,57,101,98,99,100,97,56,99,57,54,99,54,56,56,53,54,97,55,56,49,48,102,55,99,34,44,34,101,100,102,56,102,98,98,102,100,51,101,54,57,101,98,99,100,97,56,99,57,54,99,54,56,99,54,98,98,49,56,56,52,49,57,100,54,101,48,49,54,98,34,44,34,102,55,102,99,102,100,101,48,101,99,102,52,98,102,100,51,101,54,57,101,98,99,100,97,56,99,57,54,99,54,56,99,54,98,98,49,56,56,52,49,57,100,54,101,48,49,54,98,34,44,34,102,55,102,99,102,100,101,48,101,99,102,52,98,102,100,51,101,54,57,101,98,99,100,97,56,99,57,54,99,54,56,99,54,98,98,49,56,56,52,49,57,100,56,49,48,102,55,99,52,100,48,48,52,98,34,41,46,109,97,112,40,90,118,41,44,69,103,61,117,103,40,107,103,41,44,67,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,48,102,51,100,98,97,56,100,100,98,53,52,51,97,50,99,97,34,44,34,102,48,102,57,101,56,98,97,101,52,98,99,55,98,99,99,99,52,50,98,56,99,98,101,34,44,34,102,48,102,57,101,56,98,97,101,52,98,99,55,98,99,99,99,52,52,51,97,50,99,97,48,56,54,56,97,99,34,44,34,102,48,102,57,101,56,99,99,101,98,99,53,97,56,100,100,98,53,55,98,99,99,99,52,52,51,97,50,99,97,48,56,54,56,97,99,34,44,34,102,48,102,57,101,56,99,99,101,98,99,53,97,56,100,100,98,53,55,98,99,99,99,52,52,101,98,51,100,51,50,98,56,99,98,101,48,56,53,56,57,101,34,44,34,102,55,102,99,102,48,101,48,102,51,100,98,99,99,101,98,99,53,97,56,100,100,98,53,55,98,99,99,99,52,52,101,98,51,100,51,50,98,56,99,98,101,48,56,53,56,57,101,34,44,34,102,55,102,99,102,48,101,48,102,51,100,98,99,99,101,98,99,53,97,56,100,100,98,53,55,98,99,99,99,52,52,101,98,51,100,51,50,98,56,99,98,101,48,56,54,56,97,99,48,56,52,48,56,49,34,41,46,109,97,112,40,90,118,41,44,80,103,61,117,103,40,67,103,41,44,122,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,101,101,56,99,56,102,100,98,98,56,52,101,51,52,97,51,51,34,44,34,102,101,102,48,100,57,102,100,99,99,56,97,102,99,56,100,53,57,100,55,51,48,49,102,34,44,34,102,101,102,48,100,57,102,100,99,99,56,97,102,99,56,100,53,57,101,51,52,97,51,51,98,51,48,48,48,48,34,44,34,102,101,102,48,100,57,102,100,100,52,57,101,102,100,98,98,56,52,102,99,56,100,53,57,101,51,52,97,51,51,98,51,48,48,48,48,34,44,34,102,101,102,48,100,57,102,100,100,52,57,101,102,100,98,98,56,52,102,99,56,100,53,57,101,102,54,53,52,56,100,55,51,48,49,102,57,57,48,48,48,48,34,44,34,102,102,102,55,101,99,102,101,101,56,99,56,102,100,100,52,57,101,102,100,98,98,56,52,102,99,56,100,53,57,101,102,54,53,52,56,100,55,51,48,49,102,57,57,48,48,48,48,34,44,34,102,102,102,55,101,99,102,101,101,56,99,56,102,100,100,52,57,101,102,100,98,98,56,52,102,99,56,100,53,57,101,102,54,53,52,56,100,55,51,48,49,102,98,51,48,48,48,48,55,102,48,48,48,48,34,41,46,109,97,112,40,90,118,41,44,82,103,61,117,103,40,122,103,41,44,68,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,99,101,50,102,48,97,54,98,100,100,98,49,99,57,48,57,57,34,44,34,102,54,101,102,102,55,98,100,99,57,101,49,54,55,97,57,99,102,48,50,56,49,56,97,34,44,34,102,54,101,102,102,55,98,100,99,57,101,49,54,55,97,57,99,102,49,99,57,48,57,57,48,49,54,99,53,57,34,44,34,102,54,101,102,102,55,100,48,100,49,101,54,97,54,98,100,100,98,54,55,97,57,99,102,49,99,57,48,57,57,48,49,54,99,53,57,34,44,34,102,54,101,102,102,55,100,48,100,49,101,54,97,54,98,100,100,98,54,55,97,57,99,102,51,54,57,48,99,48,48,50,56,49,56,97,48,49,54,52,53,48,34,44,34,102,102,102,55,102,98,101,99,101,50,102,48,100,48,100,49,101,54,97,54,98,100,100,98,54,55,97,57,99,102,51,54,57,48,99,48,48,50,56,49,56,97,48,49,54,52,53,48,34,44,34,102,102,102,55,102,98,101,99,101,50,102,48,100,48,100,49,101,54,97,54,98,100,100,98,54,55,97,57,99,102,51,54,57,48,99,48,48,50,56,49,56,97,48,49,54,99,53,57,48,49,52,54,51,54,34,41,46,109,97,112,40,90,118,41,44,113,103,61,117,103,40,68,103,41,44,76,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,99,101,55,102,50,97,54,98,100,100,98,50,98,56,99,98,101,34,44,34,102,49,101,101,102,54,98,100,99,57,101,49,55,52,97,57,99,102,48,53,55,48,98,48,34,44,34,102,49,101,101,102,54,98,100,99,57,101,49,55,52,97,57,99,102,50,98,56,99,98,101,48,52,53,97,56,100,34,44,34,102,49,101,101,102,54,100,48,100,49,101,54,97,54,98,100,100,98,55,52,97,57,99,102,50,98,56,99,98,101,48,52,53,97,56,100,34,44,34,102,49,101,101,102,54,100,48,100,49,101,54,97,54,98,100,100,98,55,52,97,57,99,102,51,54,57,48,99,48,48,53,55,48,98,48,48,51,52,101,55,98,34,44,34,102,102,102,55,102,98,101,99,101,55,102,50,100,48,100,49,101,54,97,54,98,100,100,98,55,52,97,57,99,102,51,54,57,48,99,48,48,53,55,48,98,48,48,51,52,101,55,98,34,44,34,102,102,102,55,102,98,101,99,101,55,102,50,100,48,100,49,101,54,97,54,98,100,100,98,55,52,97,57,99,102,51,54,57,48,99,48,48,53,55,48,98,48,48,52,53,97,56,100,48,50,51,56,53,56,34,41,46,109,97,112,40,90,118,41,44,85,103,61,117,103,40,76,103,41,44,79,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,55,101,49,101,102,99,57,57,52,99,55,100,100,49,99,55,55,34,44,34,102,49,101,101,102,54,100,55,98,53,100,56,100,102,54,53,98,48,99,101,49,50,53,54,34,44,34,102,49,101,101,102,54,100,55,98,53,100,56,100,102,54,53,98,48,100,100,49,99,55,55,57,56,48,48,52,51,34,44,34,102,49,101,101,102,54,100,52,98,57,100,97,99,57,57,52,99,55,100,102,54,53,98,48,100,100,49,99,55,55,57,56,48,48,52,51,34,44,34,102,49,101,101,102,54,100,52,98,57,100,97,99,57,57,52,99,55,100,102,54,53,98,48,101,55,50,57,56,97,99,101,49,50,53,54,57,49,48,48,51,102,34,44,34,102,55,102,52,102,57,101,55,101,49,101,102,100,52,98,57,100,97,99,57,57,52,99,55,100,102,54,53,98,48,101,55,50,57,56,97,99,101,49,50,53,54,57,49,48,48,51,102,34,44,34,102,55,102,52,102,57,101,55,101,49,101,102,100,52,98,57,100,97,99,57,57,52,99,55,100,102,54,53,98,48,101,55,50,57,56,97,99,101,49,50,53,54,57,56,48,48,52,51,54,55,48,48,49,102,34,41,46,109,97,112,40,90,118,41,44,66,103,61,117,103,40,79,103,41,44,70,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,100,101,48,100,100,102,97,57,102,98,53,99,53,49,98,56,97,34,44,34,102,101,101,98,101,50,102,98,98,52,98,57,102,55,54,56,97,49,97,101,48,49,55,101,34,44,34,102,101,101,98,101,50,102,98,98,52,98,57,102,55,54,56,97,49,99,53,49,98,56,97,55,97,48,49,55,55,34,44,34,102,101,101,98,101,50,102,99,99,53,99,48,102,97,57,102,98,53,102,55,54,56,97,49,99,53,49,98,56,97,55,97,48,49,55,55,34,44,34,102,101,101,98,101,50,102,99,99,53,99,48,102,97,57,102,98,53,102,55,54,56,97,49,100,100,51,52,57,55,97,101,48,49,55,101,55,97,48,49,55,55,34,44,34,102,102,102,55,102,51,102,100,101,48,100,100,102,99,99,53,99,48,102,97,57,102,98,53,102,55,54,56,97,49,100,100,51,52,57,55,97,101,48,49,55,101,55,97,48,49,55,55,34,44,34,102,102,102,55,102,51,102,100,101,48,100,100,102,99,99,53,99,48,102,97,57,102,98,53,102,55,54,56,97,49,100,100,51,52,57,55,97,101,48,49,55,101,55,97,48,49,55,55,52,57,48,48,54,97,34,41,46,109,97,112,40,90,118,41,44,89,103,61,117,103,40,70,103,41,44,73,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,100,102,56,98,49,55,102,99,100,98,98,50,99,55,102,98,56,34,44,34,102,102,102,102,99,99,97,49,100,97,98,52,52,49,98,54,99,52,50,50,53,101,97,56,34,44,34,102,102,102,102,99,99,97,49,100,97,98,52,52,49,98,54,99,52,50,99,55,102,98,56,50,53,51,52,57,52,34,44,34,102,102,102,102,99,99,99,55,101,57,98,52,55,102,99,100,98,98,52,49,98,54,99,52,50,99,55,102,98,56,50,53,51,52,57,52,34,44,34,102,102,102,102,99,99,99,55,101,57,98,52,55,102,99,100,98,98,52,49,98,54,99,52,49,100,57,49,99,48,50,50,53,101,97,56,48,99,50,99,56,52,34,44,34,102,102,102,102,100,57,101,100,102,56,98,49,99,55,101,57,98,52,55,102,99,100,98,98,52,49,98,54,99,52,49,100,57,49,99,48,50,50,53,101,97,56,48,99,50,99,56,52,34,44,34,102,102,102,102,100,57,101,100,102,56,98,49,99,55,101,57,98,52,55,102,99,100,98,98,52,49,98,54,99,52,49,100,57,49,99,48,50,50,53,101,97,56,50,53,51,52,57,52,48,56,49,100,53,56,34,41,46,109,97,112,40,90,118,41,44,72,103,61,117,103,40,73,103,41,44,106,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,55,102,99,98,57,97,100,100,100,56,101,51,49,97,51,53,52,34,44,34,102,102,102,102,99,99,99,50,101,54,57,57,55,56,99,54,55,57,50,51,56,52,52,51,34,44,34,102,102,102,102,99,99,99,50,101,54,57,57,55,56,99,54,55,57,51,49,97,51,53,52,48,48,54,56,51,55,34,44,34,102,102,102,102,99,99,100,57,102,48,97,51,97,100,100,100,56,101,55,56,99,54,55,57,51,49,97,51,53,52,48,48,54,56,51,55,34,44,34,102,102,102,102,99,99,100,57,102,48,97,51,97,100,100,100,56,101,55,56,99,54,55,57,52,49,97,98,53,100,50,51,56,52,52,51,48,48,53,97,51,50,34,44,34,102,102,102,102,101,53,102,55,102,99,98,57,100,57,102,48,97,51,97,100,100,100,56,101,55,56,99,54,55,57,52,49,97,98,53,100,50,51,56,52,52,51,48,48,53,97,51,50,34,44,34,102,102,102,102,101,53,102,55,102,99,98,57,100,57,102,48,97,51,97,100,100,100,56,101,55,56,99,54,55,57,52,49,97,98,53,100,50,51,56,52,52,51,48,48,54,56,51,55,48,48,52,53,50,57,34,41,46,109,97,112,40,90,118,41,44,88,103,61,117,103,40,106,103,41,44,86,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,102,102,55,98,99,102,101,99,52,52,102,100,57,53,102,48,101,34,44,34,102,102,102,102,100,52,102,101,100,57,56,101,102,101,57,57,50,57,99,99,52,99,48,50,34,44,34,102,102,102,102,100,52,102,101,100,57,56,101,102,101,57,57,50,57,100,57,53,102,48,101,57,57,51,52,48,52,34,44,34,102,102,102,102,100,52,102,101,101,51,57,49,102,101,99,52,52,102,102,101,57,57,50,57,100,57,53,102,48,101,57,57,51,52,48,52,34,44,34,102,102,102,102,100,52,102,101,101,51,57,49,102,101,99,52,52,102,102,101,57,57,50,57,101,99,55,48,49,52,99,99,52,99,48,50,56,99,50,100,48,52,34,44,34,102,102,102,102,101,53,102,102,102,55,98,99,102,101,101,51,57,49,102,101,99,52,52,102,102,101,57,57,50,57,101,99,55,48,49,52,99,99,52,99,48,50,56,99,50,100,48,52,34,44,34,102,102,102,102,101,53,102,102,102,55,98,99,102,101,101,51,57,49,102,101,99,52,52,102,102,101,57,57,50,57,101,99,55,48,49,52,99,99,52,99,48,50,57,57,51,52,48,52,54,54,50,53,48,54,34,41,46,109,97,112,40,90,118,41,44,71,103,61,117,103,40,86,103,41,44,36,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,102,101,100,97,48,102,101,98,50,52,99,102,48,51,98,50,48,34,44,34,102,102,102,102,98,50,102,101,99,99,53,99,102,100,56,100,51,99,101,51,49,97,49,99,34,44,34,102,102,102,102,98,50,102,101,99,99,53,99,102,100,56,100,51,99,102,48,51,98,50,48,98,100,48,48,50,54,34,44,34,102,102,102,102,98,50,102,101,100,57,55,54,102,101,98,50,52,99,102,100,56,100,51,99,102,48,51,98,50,48,98,100,48,48,50,54,34,44,34,102,102,102,102,98,50,102,101,100,57,55,54,102,101,98,50,52,99,102,100,56,100,51,99,102,99,52,101,50,97,101,51,49,97,49,99,98,49,48,48,50,54,34,44,34,102,102,102,102,99,99,102,102,101,100,97,48,102,101,100,57,55,54,102,101,98,50,52,99,102,100,56,100,51,99,102,99,52,101,50,97,101,51,49,97,49,99,98,49,48,48,50,54,34,44,34,102,102,102,102,99,99,102,102,101,100,97,48,102,101,100,57,55,54,102,101,98,50,52,99,102,100,56,100,51,99,102,99,52,101,50,97,101,51,49,97,49,99,98,100,48,48,50,54,56,48,48,48,50,54,34,41,46,109,97,112,40,90,118,41,44,87,103,61,117,103,40,36,103,41,44,90,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,100,101,101,98,102,55,57,101,99,97,101,49,51,49,56,50,98,100,34,44,34,101,102,102,51,102,102,98,100,100,55,101,55,54,98,97,101,100,54,50,49,55,49,98,53,34,44,34,101,102,102,51,102,102,98,100,100,55,101,55,54,98,97,101,100,54,51,49,56,50,98,100,48,56,53,49,57,99,34,44,34,101,102,102,51,102,102,99,54,100,98,101,102,57,101,99,97,101,49,54,98,97,101,100,54,51,49,56,50,98,100,48,56,53,49,57,99,34,44,34,101,102,102,51,102,102,99,54,100,98,101,102,57,101,99,97,101,49,54,98,97,101,100,54,52,50,57,50,99,54,50,49,55,49,98,53,48,56,52,53,57,52,34,44,34,102,55,102,98,102,102,100,101,101,98,102,55,99,54,100,98,101,102,57,101,99,97,101,49,54,98,97,101,100,54,52,50,57,50,99,54,50,49,55,49,98,53,48,56,52,53,57,52,34,44,34,102,55,102,98,102,102,100,101,101,98,102,55,99,54,100,98,101,102,57,101,99,97,101,49,54,98,97,101,100,54,52,50,57,50,99,54,50,49,55,49,98,53,48,56,53,49,57,99,48,56,51,48,54,98,34,41,46,109,97,112,40,90,118,41,44,81,103,61,117,103,40,90,103,41,44,75,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,53,102,53,101,48,97,49,100,57,57,98,51,49,97,51,53,52,34,44,34,101,100,102,56,101,57,98,97,101,52,98,51,55,52,99,52,55,54,50,51,56,98,52,53,34,44,34,101,100,102,56,101,57,98,97,101,52,98,51,55,52,99,52,55,54,51,49,97,51,53,52,48,48,54,100,50,99,34,44,34,101,100,102,56,101,57,99,55,101,57,99,48,97,49,100,57,57,98,55,52,99,52,55,54,51,49,97,51,53,52,48,48,54,100,50,99,34,44,34,101,100,102,56,101,57,99,55,101,57,99,48,97,49,100,57,57,98,55,52,99,52,55,54,52,49,97,98,53,100,50,51,56,98,52,53,48,48,53,97,51,50,34,44,34,102,55,102,99,102,53,101,53,102,53,101,48,99,55,101,57,99,48,97,49,100,57,57,98,55,52,99,52,55,54,52,49,97,98,53,100,50,51,56,98,52,53,48,48,53,97,51,50,34,44,34,102,55,102,99,102,53,101,53,102,53,101,48,99,55,101,57,99,48,97,49,100,57,57,98,55,52,99,52,55,54,52,49,97,98,53,100,50,51,56,98,52,53,48,48,54,100,50,99,48,48,52,52,49,98,34,41,46,109,97,112,40,90,118,41,44,74,103,61,117,103,40,75,103,41,44,116,121,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,48,102,48,102,48,98,100,98,100,98,100,54,51,54,51,54,51,34,44,34,102,55,102,55,102,55,99,99,99,99,99,99,57,54,57,54,57,54,53,50,53,50,53,50,34,44,34,102,55,102,55,102,55,99,99,99,99,99,99,57,54,57,54,57,54,54,51,54,51,54,51,50,53,50,53,50,53,34,44,34,102,55,102,55,102,55,100,57,100,57,100,57,98,100,98,100,98,100,57,54,57,54,57,54,54,51,54,51,54,51,50,53,50,53,50,53,34,44,34,102,55,102,55,102,55,100,57,100,57,100,57,98,100,98,100,98,100,57,54,57,54,57,54,55,51,55,51,55,51,53,50,53,50,53,50,50,53,50,53,50,53,34,44,34,102,102,102,102,102,102,102,48,102,48,102,48,100,57,100,57,100,57,98,100,98,100,98,100,57,54,57,54,57,54,55,51,55,51,55,51,53,50,53,50,53,50,50,53,50,53,50,53,34,44,34,102,102,102,102,102,102,102,48,102,48,102,48,100,57,100,57,100,57,98,100,98,100,98,100,57,54,57,54,57,54,55,51,55,51,55,51,53,50,53,50,53,50,50,53,50,53,50,53,48,48,48,48,48,48,34,41,46,109,97,112,40,90,118,41,44,110,121,61,117,103,40,116,121,41,44,101,121,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,102,101,100,102,53,98,99,98,100,100,99,55,53,54,98,98,49,34,44,34,102,50,102,48,102,55,99,98,99,57,101,50,57,101,57,97,99,56,54,97,53,49,97,51,34,44,34,102,50,102,48,102,55,99,98,99,57,101,50,57,101,57,97,99,56,55,53,54,98,98,49,53,52,50,55,56,102,34,44,34,102,50,102,48,102,55,100,97,100,97,101,98,98,99,98,100,100,99,57,101,57,97,99,56,55,53,54,98,98,49,53,52,50,55,56,102,34,44,34,102,50,102,48,102,55,100,97,100,97,101,98,98,99,98,100,100,99,57,101,57,97,99,56,56,48,55,100,98,97,54,97,53,49,97,51,52,97,49,52,56,54,34,44,34,102,99,102,98,102,100,101,102,101,100,102,53,100,97,100,97,101,98,98,99,98,100,100,99,57,101,57,97,99,56,56,48,55,100,98,97,54,97,53,49,97,51,52,97,49,52,56,54,34,44,34,102,99,102,98,102,100,101,102,101,100,102,53,100,97,100,97,101,98,98,99,98,100,100,99,57,101,57,97,99,56,56,48,55,100,98,97,54,97,53,49,97,51,53,52,50,55,56,102,51,102,48,48,55,100,34,41,46,109,97,112,40,90,118,41,44,114,121,61,117,103,40,101,121,41,44,105,121,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,101,101,48,100,50,102,99,57,50,55,50,100,101,50,100,50,54,34,44,34,102,101,101,53,100,57,102,99,97,101,57,49,102,98,54,97,52,97,99,98,49,56,49,100,34,44,34,102,101,101,53,100,57,102,99,97,101,57,49,102,98,54,97,52,97,100,101,50,100,50,54,97,53,48,102,49,53,34,44,34,102,101,101,53,100,57,102,99,98,98,97,49,102,99,57,50,55,50,102,98,54,97,52,97,100,101,50,100,50,54,97,53,48,102,49,53,34,44,34,102,101,101,53,100,57,102,99,98,98,97,49,102,99,57,50,55,50,102,98,54,97,52,97,101,102,51,98,50,99,99,98,49,56,49,100,57,57,48,48,48,100,34,44,34,102,102,102,53,102,48,102,101,101,48,100,50,102,99,98,98,97,49,102,99,57,50,55,50,102,98,54,97,52,97,101,102,51,98,50,99,99,98,49,56,49,100,57,57,48,48,48,100,34,44,34,102,102,102,53,102,48,102,101,101,48,100,50,102,99,98,98,97,49,102,99,57,50,55,50,102,98,54,97,52,97,101,102,51,98,50,99,99,98,49,56,49,100,97,53,48,102,49,53,54,55,48,48,48,100,34,41,46,109,97,112,40,90,118,41,44,111,121,61,117,103,40,105,121,41,44,97,121,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,101,101,54,99,101,102,100,97,101,54,98,101,54,53,53,48,100,34,44,34,102,101,101,100,100,101,102,100,98,101,56,53,102,100,56,100,51,99,100,57,52,55,48,49,34,44,34,102,101,101,100,100,101,102,100,98,101,56,53,102,100,56,100,51,99,101,54,53,53,48,100,97,54,51,54,48,51,34,44,34,102,101,101,100,100,101,102,100,100,48,97,50,102,100,97,101,54,98,102,100,56,100,51,99,101,54,53,53,48,100,97,54,51,54,48,51,34,44,34,102,101,101,100,100,101,102,100,100,48,97,50,102,100,97,101,54,98,102,100,56,100,51,99,102,49,54,57,49,51,100,57,52,56,48,49,56,99,50,100,48,52,34,44,34,102,102,102,53,101,98,102,101,101,54,99,101,102,100,100,48,97,50,102,100,97,101,54,98,102,100,56,100,51,99,102,49,54,57,49,51,100,57,52,56,48,49,56,99,50,100,48,52,34,44,34,102,102,102,53,101,98,102,101,101,54,99,101,102,100,100,48,97,50,102,100,97,101,54,98,102,100,56,100,51,99,102,49,54,57,49,51,100,57,52,56,48,49,97,54,51,54,48,51,55,102,50,55,48,52,34,41,46,109,97,112,40,90,118,41,44,117,121,61,117,103,40,97,121,41,59,118,97,114,32,99,121,61,81,101,40,101,101,40,51,48,48,44,46,53,44,48,41,44,101,101,40,45,50,52,48,44,46,53,44,49,41,41,44,102,121,61,81,101,40,101,101,40,45,49,48,48,44,46,55,53,44,46,51,53,41,44,101,101,40,56,48,44,49,46,53,44,46,56,41,41,44,115,121,61,81,101,40,101,101,40,50,54,48,44,46,55,53,44,46,51,53,41,44,101,101,40,56,48,44,49,46,53,44,46,56,41,41,44,108,121,61,101,101,40,41,59,118,97,114,32,104,121,61,95,110,40,41,44,100,121,61,77,97,116,104,46,80,73,47,51,44,112,121,61,50,42,77,97,116,104,46,80,73,47,51,59,102,117,110,99,116,105,111,110,32,118,121,40,116,41,123,118,97,114,32,110,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,91,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,110,45,49,44,77,97,116,104,46,102,108,111,111,114,40,101,42,110,41,41,41,93,125,125,118,97,114,32,103,121,61,118,121,40,90,118,40,34,52,52,48,49,53,52,52,52,48,50,53,54,52,53,48,52,53,55,52,53,48,53,53,57,52,54,48,55,53,97,52,54,48,56,53,99,52,54,48,97,53,100,52,54,48,98,53,101,52,55,48,100,54,48,52,55,48,101,54,49,52,55,49,48,54,51,52,55,49,49,54,52,52,55,49,51,54,53,52,56,49,52,54,55,52,56,49,54,54,56,52,56,49,55,54,57,52,56,49,56,54,97,52,56,49,97,54,99,52,56,49,98,54,100,52,56,49,99,54,101,52,56,49,100,54,102,52,56,49,102,55,48,52,56,50,48,55,49,52,56,50,49,55,51,52,56,50,51,55,52,52,56,50,52,55,53,52,56,50,53,55,54,52,56,50,54,55,55,52,56,50,56,55,56,52,56,50,57,55,57,52,55,50,97,55,97,52,55,50,99,55,97,52,55,50,100,55,98,52,55,50,101,55,99,52,55,50,102,55,100,52,54,51,48,55,101,52,54,51,50,55,101,52,54,51,51,55,102,52,54,51,52,56,48,52,53,51,53,56,49,52,53,51,55,56,49,52,53,51,56,56,50,52,52,51,57,56,51,52,52,51,97,56,51,52,52,51,98,56,52,52,51,51,100,56,52,52,51,51,101,56,53,52,50,51,102,56,53,52,50,52,48,56,54,52,50,52,49,56,54,52,49,52,50,56,55,52,49,52,52,56,55,52,48,52,53,56,56,52,48,52,54,56,56,51,102,52,55,56,56,51,102,52,56,56,57,51,101,52,57,56,57,51,101,52,97,56,57,51,101,52,99,56,97,51,100,52,100,56,97,51,100,52,101,56,97,51,99,52,102,56,97,51,99,53,48,56,98,51,98,53,49,56,98,51,98,53,50,56,98,51,97,53,51,56,98,51,97,53,52,56,99,51,57,53,53,56,99,51,57,53,54,56,99,51,56,53,56,56,99,51,56,53,57,56,99,51,55,53,97,56,99,51,55,53,98,56,100,51,54,53,99,56,100,51,54,53,100,56,100,51,53,53,101,56,100,51,53,53,102,56,100,51,52,54,48,56,100,51,52,54,49,56,100,51,51,54,50,56,100,51,51,54,51,56,100,51,50,54,52,56,101,51,50,54,53,56,101,51,49,54,54,56,101,51,49,54,55,56,101,51,49,54,56,56,101,51,48,54,57,56,101,51,48,54,97,56,101,50,102,54,98,56,101,50,102,54,99,56,101,50,101,54,100,56,101,50,101,54,101,56,101,50,101,54,102,56,101,50,100,55,48,56,101,50,100,55,49,56,101,50,99,55,49,56,101,50,99,55,50,56,101,50,99,55,51,56,101,50,98,55,52,56,101,50,98,55,53,56,101,50,97,55,54,56,101,50,97,55,55,56,101,50,97,55,56,56,101,50,57,55,57,56,101,50,57,55,97,56,101,50,57,55,98,56,101,50,56,55,99,56,101,50,56,55,100,56,101,50,55,55,101,56,101,50,55,55,102,56,101,50,55,56,48,56,101,50,54,56,49,56,101,50,54,56,50,56,101,50,54,56,50,56,101,50,53,56,51,56,101,50,53,56,52,56,101,50,53,56,53,56,101,50,52,56,54,56,101,50,52,56,55,56,101,50,51,56,56,56,101,50,51,56,57,56,101,50,51,56,97,56,100,50,50,56,98,56,100,50,50,56,99,56,100,50,50,56,100,56,100,50,49,56,101,56,100,50,49,56,102,56,100,50,49,57,48,56,100,50,49,57,49,56,99,50,48,57,50,56,99,50,48,57,50,56,99,50,48,57,51,56,99,49,102,57,52,56,99,49,102,57,53,56,98,49,102,57,54,56,98,49,102,57,55,56,98,49,102,57,56,56,98,49,102,57,57,56,97,49,102,57,97,56,97,49,101,57,98,56,97,49,101,57,99,56,57,49,101,57,100,56,57,49,102,57,101,56,57,49,102,57,102,56,56,49,102,97,48,56,56,49,102,97,49,56,56,49,102,97,49,56,55,49,102,97,50,56,55,50,48,97,51,56,54,50,48,97,52,56,54,50,49,97,53,56,53,50,49,97,54,56,53,50,50,97,55,56,53,50,50,97,56,56,52,50,51,97,57,56,51,50,52,97,97,56,51,50,53,97,98,56,50,50,53,97,99,56,50,50,54,97,100,56,49,50,55,97,100,56,49,50,56,97,101,56,48,50,57,97,102,55,102,50,97,98,48,55,102,50,99,98,49,55,101,50,100,98,50,55,100,50,101,98,51,55,99,50,102,98,52,55,99,51,49,98,53,55,98,51,50,98,54,55,97,51,52,98,54,55,57,51,53,98,55,55,57,51,55,98,56,55,56,51,56,98,57,55,55,51,97,98,97,55,54,51,98,98,98,55,53,51,100,98,99,55,52,51,102,98,99,55,51,52,48,98,100,55,50,52,50,98,101,55,49,52,52,98,102,55,48,52,54,99,48,54,102,52,56,99,49,54,101,52,97,99,49,54,100,52,99,99,50,54,99,52,101,99,51,54,98,53,48,99,52,54,97,53,50,99,53,54,57,53,52,99,53,54,56,53,54,99,54,54,55,53,56,99,55,54,53,53,97,99,56,54,52,53,99,99,56,54,51,53,101,99,57,54,50,54,48,99,97,54,48,54,51,99,98,53,102,54,53,99,98,53,101,54,55,99,99,53,99,54,57,99,100,53,98,54,99,99,100,53,97,54,101,99,101,53,56,55,48,99,102,53,55,55,51,100,48,53,54,55,53,100,48,53,52,55,55,100,49,53,51,55,97,100,49,53,49,55,99,100,50,53,48,55,102,100,51,52,101,56,49,100,51,52,100,56,52,100,52,52,98,56,54,100,53,52,57,56,57,100,53,52,56,56,98,100,54,52,54,56,101,100,54,52,53,57,48,100,55,52,51,57,51,100,55,52,49,57,53,100,56,52,48,57,56,100,56,51,101,57,98,100,57,51,99,57,100,100,57,51,98,97,48,100,97,51,57,97,50,100,97,51,55,97,53,100,98,51,54,97,56,100,98,51,52,97,97,100,99,51,50,97,100,100,99,51,48,98,48,100,100,50,102,98,50,100,100,50,100,98,53,100,101,50,98,98,56,100,101,50,57,98,97,100,101,50,56,98,100,100,102,50,54,99,48,100,102,50,53,99,50,100,102,50,51,99,53,101,48,50,49,99,56,101,48,50,48,99,97,101,49,49,102,99,100,101,49,49,100,100,48,101,49,49,99,100,50,101,50,49,98,100,53,101,50,49,97,100,56,101,50,49,57,100,97,101,51,49,57,100,100,101,51,49,56,100,102,101,51,49,56,101,50,101,52,49,56,101,53,101,52,49,57,101,55,101,52,49,57,101,97,101,53,49,97,101,99,101,53,49,98,101,102,101,53,49,99,102,49,101,53,49,100,102,52,101,54,49,101,102,54,101,54,50,48,102,56,101,54,50,49,102,98,101,55,50,51,102,100,101,55,50,53,34,41,41,44,121,121,61,118,121,40,90,118,40,34,48,48,48,48,48,52,48,49,48,48,48,53,48,49,48,49,48,54,48,49,48,49,48,56,48,50,48,49,48,57,48,50,48,50,48,98,48,50,48,50,48,100,48,51,48,51,48,102,48,51,48,51,49,50,48,52,48,52,49,52,48,53,48,52,49,54,48,54,48,53,49,56,48,54,48,53,49,97,48,55,48,54,49,99,48,56,48,55,49,101,48,57,48,55,50,48,48,97,48,56,50,50,48,98,48,57,50,52,48,99,48,57,50,54,48,100,48,97,50,57,48,101,48,98,50,98,49,48,48,98,50,100,49,49,48,99,50,102,49,50,48,100,51,49,49,51,48,100,51,52,49,52,48,101,51,54,49,53,48,101,51,56,49,54,48,102,51,98,49,56,48,102,51,100,49,57,49,48,51,102,49,97,49,48,52,50,49,99,49,48,52,52,49,100,49,49,52,55,49,101,49,49,52,57,50,48,49,49,52,98,50,49,49,49,52,101,50,50,49,49,53,48,50,52,49,50,53,51,50,53,49,50,53,53,50,55,49,50,53,56,50,57,49,49,53,97,50,97,49,49,53,99,50,99,49,49,53,102,50,100,49,49,54,49,50,102,49,49,54,51,51,49,49,49,54,53,51,51,49,48,54,55,51,52,49,48,54,57,51,54,49,48,54,98,51,56,49,48,54,99,51,57,48,102,54,101,51,98,48,102,55,48,51,100,48,102,55,49,51,102,48,102,55,50,52,48,48,102,55,52,52,50,48,102,55,53,52,52,48,102,55,54,52,53,49,48,55,55,52,55,49,48,55,56,52,57,49,48,55,56,52,97,49,48,55,57,52,99,49,49,55,97,52,101,49,49,55,98,52,102,49,50,55,98,53,49,49,50,55,99,53,50,49,51,55,99,53,52,49,51,55,100,53,54,49,52,55,100,53,55,49,53,55,101,53,57,49,53,55,101,53,97,49,54,55,101,53,99,49,54,55,102,53,100,49,55,55,102,53,102,49,56,55,102,54,48,49,56,56,48,54,50,49,57,56,48,54,52,49,97,56,48,54,53,49,97,56,48,54,55,49,98,56,48,54,56,49,99,56,49,54,97,49,99,56,49,54,98,49,100,56,49,54,100,49,100,56,49,54,101,49,101,56,49,55,48,49,102,56,49,55,50,49,102,56,49,55,51,50,48,56,49,55,53,50,49,56,49,55,54,50,49,56,49,55,56,50,50,56,49,55,57,50,50,56,50,55,98,50,51,56,50,55,99,50,51,56,50,55,101,50,52,56,50,56,48,50,53,56,50,56,49,50,53,56,49,56,51,50,54,56,49,56,52,50,54,56,49,56,54,50,55,56,49,56,56,50,55,56,49,56,57,50,56,56,49,56,98,50,57,56,49,56,99,50,57,56,49,56,101,50,97,56,49,57,48,50,97,56,49,57,49,50,98,56,49,57,51,50,98,56,48,57,52,50,99,56,48,57,54,50,99,56,48,57,56,50,100,56,48,57,57,50,100,56,48,57,98,50,101,55,102,57,99,50,101,55,102,57,101,50,102,55,102,97,48,50,102,55,102,97,49,51,48,55,101,97,51,51,48,55,101,97,53,51,49,55,101,97,54,51,49,55,100,97,56,51,50,55,100,97,97,51,51,55,100,97,98,51,51,55,99,97,100,51,52,55,99,97,101,51,52,55,98,98,48,51,53,55,98,98,50,51,53,55,98,98,51,51,54,55,97,98,53,51,54,55,97,98,55,51,55,55,57,98,56,51,55,55,57,98,97,51,56,55,56,98,99,51,57,55,56,98,100,51,57,55,55,98,102,51,97,55,55,99,48,51,97,55,54,99,50,51,98,55,53,99,52,51,99,55,53,99,53,51,99,55,52,99,55,51,100,55,51,99,56,51,101,55,51,99,97,51,101,55,50,99,99,51,102,55,49,99,100,52,48,55,49,99,102,52,48,55,48,100,48,52,49,54,102,100,50,52,50,54,102,100,51,52,51,54,101,100,53,52,52,54,100,100,54,52,53,54,99,100,56,52,53,54,99,100,57,52,54,54,98,100,98,52,55,54,97,100,99,52,56,54,57,100,101,52,57,54,56,100,102,52,97,54,56,101,48,52,99,54,55,101,50,52,100,54,54,101,51,52,101,54,53,101,52,52,102,54,52,101,53,53,48,54,52,101,55,53,50,54,51,101,56,53,51,54,50,101,57,53,52,54,50,101,97,53,54,54,49,101,98,53,55,54,48,101,99,53,56,54,48,101,100,53,97,53,102,101,101,53,98,53,101,101,102,53,100,53,101,102,48,53,102,53,101,102,49,54,48,53,100,102,50,54,50,53,100,102,50,54,52,53,99,102,51,54,53,53,99,102,52,54,55,53,99,102,52,54,57,53,99,102,53,54,98,53,99,102,54,54,99,53,99,102,54,54,101,53,99,102,55,55,48,53,99,102,55,55,50,53,99,102,56,55,52,53,99,102,56,55,54,53,99,102,57,55,56,53,100,102,57,55,57,53,100,102,57,55,98,53,100,102,97,55,100,53,101,102,97,55,102,53,101,102,97,56,49,53,102,102,98,56,51,53,102,102,98,56,53,54,48,102,98,56,55,54,49,102,99,56,57,54,49,102,99,56,97,54,50,102,99,56,99,54,51,102,99,56,101,54,52,102,99,57,48,54,53,102,100,57,50,54,54,102,100,57,52,54,55,102,100,57,54,54,56,102,100,57,56,54,57,102,100,57,97,54,97,102,100,57,98,54,98,102,101,57,100,54,99,102,101,57,102,54,100,102,101,97,49,54,101,102,101,97,51,54,102,102,101,97,53,55,49,102,101,97,55,55,50,102,101,97,57,55,51,102,101,97,97,55,52,102,101,97,99,55,54,102,101,97,101,55,55,102,101,98,48,55,56,102,101,98,50,55,97,102,101,98,52,55,98,102,101,98,54,55,99,102,101,98,55,55,101,102,101,98,57,55,102,102,101,98,98,56,49,102,101,98,100,56,50,102,101,98,102,56,52,102,101,99,49,56,53,102,101,99,50,56,55,102,101,99,52,56,56,102,101,99,54,56,97,102,101,99,56,56,99,102,101,99,97,56,100,102,101,99,99,56,102,102,101,99,100,57,48,102,101,99,102,57,50,102,101,100,49,57,52,102,101,100,51,57,53,102,101,100,53,57,55,102,101,100,55,57,57,102,101,100,56,57,97,102,100,100,97,57,99,102,100,100,99,57,101,102,100,100,101,97,48,102,100,101,48,97,49,102,100,101,50,97,51,102,100,101,51,97,53,102,100,101,53,97,55,102,100,101,55,97,57,102,100,101,57,97,97,102,100,101,98,97,99,102,99,101,99,97,101,102,99,101,101,98,48,102,99,102,48,98,50,102,99,102,50,98,52,102,99,102,52,98,54,102,99,102,54,98,56,102,99,102,55,98,57,102,99,102,57,98,98,102,99,102,98,98,100,102,99,102,100,98,102,34,41,41,44,95,121,61,118,121,40,90,118,40,34,48,48,48,48,48,52,48,49,48,48,48,53,48,49,48,49,48,54,48,49,48,49,48,56,48,50,48,49,48,97,48,50,48,50,48,99,48,50,48,50,48,101,48,51,48,50,49,48,48,52,48,51,49,50,48,52,48,51,49,52,48,53,48,52,49,55,48,54,48,52,49,57,48,55,48,53,49,98,48,56,48,53,49,100,48,57,48,54,49,102,48,97,48,55,50,50,48,98,48,55,50,52,48,99,48,56,50,54,48,100,48,56,50,57,48,101,48,57,50,98,49,48,48,57,50,100,49,49,48,97,51,48,49,50,48,97,51,50,49,52,48,98,51,52,49,53,48,98,51,55,49,54,48,98,51,57,49,56,48,99,51,99,49,57,48,99,51,101,49,98,48,99,52,49,49,99,48,99,52,51,49,101,48,99,52,53,49,102,48,99,52,56,50,49,48,99,52,97,50,51,48,99,52,99,50,52,48,99,52,102,50,54,48,99,53,49,50,56,48,98,53,51,50,57,48,98,53,53,50,98,48,98,53,55,50,100,48,98,53,57,50,102,48,97,53,98,51,49,48,97,53,99,51,50,48,97,53,101,51,52,48,97,53,102,51,54,48,57,54,49,51,56,48,57,54,50,51,57,48,57,54,51,51,98,48,57,54,52,51,100,48,57,54,53,51,101,48,57,54,54,52,48,48,97,54,55,52,50,48,97,54,56,52,52,48,97,54,56,52,53,48,97,54,57,52,55,48,98,54,97,52,57,48,98,54,97,52,97,48,99,54,98,52,99,48,99,54,98,52,100,48,100,54,99,52,102,48,100,54,99,53,49,48,101,54,99,53,50,48,101,54,100,53,52,48,102,54,100,53,53,48,102,54,100,53,55,49,48,54,101,53,57,49,48,54,101,53,97,49,49,54,101,53,99,49,50,54,101,53,100,49,50,54,101,53,102,49,51,54,101,54,49,49,51,54,101,54,50,49,52,54,101,54,52,49,53,54,101,54,53,49,53,54,101,54,55,49,54,54,101,54,57,49,54,54,101,54,97,49,55,54,101,54,99,49,56,54,101,54,100,49,56,54,101,54,102,49,57,54,101,55,49,49,57,54,101,55,50,49,97,54,101,55,52,49,97,54,101,55,53,49,98,54,101,55,55,49,99,54,100,55,56,49,99,54,100,55,97,49,100,54,100,55,99,49,100,54,100,55,100,49,101,54,100,55,102,49,101,54,99,56,48,49,102,54,99,56,50,50,48,54,99,56,52,50,48,54,98,56,53,50,49,54,98,56,55,50,49,54,98,56,56,50,50,54,97,56,97,50,50,54,97,56,99,50,51,54,57,56,100,50,51,54,57,56,102,50,52,54,57,57,48,50,53,54,56,57,50,50,53,54,56,57,51,50,54,54,55,57,53,50,54,54,55,57,55,50,55,54,54,57,56,50,55,54,54,57,97,50,56,54,53,57,98,50,57,54,52,57,100,50,57,54,52,57,102,50,97,54,51,97,48,50,97,54,51,97,50,50,98,54,50,97,51,50,99,54,49,97,53,50,99,54,48,97,54,50,100,54,48,97,56,50,101,53,102,97,57,50,101,53,101,97,98,50,102,53,101,97,100,51,48,53,100,97,101,51,48,53,99,98,48,51,49,53,98,98,49,51,50,53,97,98,51,51,50,53,97,98,52,51,51,53,57,98,54,51,52,53,56,98,55,51,53,53,55,98,57,51,53,53,54,98,97,51,54,53,53,98,99,51,55,53,52,98,100,51,56,53,51,98,102,51,57,53,50,99,48,51,97,53,49,99,49,51,97,53,48,99,51,51,98,52,102,99,52,51,99,52,101,99,54,51,100,52,100,99,55,51,101,52,99,99,56,51,102,52,98,99,97,52,48,52,97,99,98,52,49,52,57,99,99,52,50,52,56,99,101,52,51,52,55,99,102,52,52,52,54,100,48,52,53,52,53,100,50,52,54,52,52,100,51,52,55,52,51,100,52,52,56,52,50,100,53,52,97,52,49,100,55,52,98,51,102,100,56,52,99,51,101,100,57,52,100,51,100,100,97,52,101,51,99,100,98,53,48,51,98,100,100,53,49,51,97,100,101,53,50,51,56,100,102,53,51,51,55,101,48,53,53,51,54,101,49,53,54,51,53,101,50,53,55,51,52,101,51,53,57,51,51,101,52,53,97,51,49,101,53,53,99,51,48,101,54,53,100,50,102,101,55,53,101,50,101,101,56,54,48,50,100,101,57,54,49,50,98,101,97,54,51,50,97,101,98,54,52,50,57,101,98,54,54,50,56,101,99,54,55,50,54,101,100,54,57,50,53,101,101,54,97,50,52,101,102,54,99,50,51,101,102,54,101,50,49,102,48,54,102,50,48,102,49,55,49,49,102,102,49,55,51,49,100,102,50,55,52,49,99,102,51,55,54,49,98,102,51,55,56,49,57,102,52,55,57,49,56,102,53,55,98,49,55,102,53,55,100,49,53,102,54,55,101,49,52,102,54,56,48,49,51,102,55,56,50,49,50,102,55,56,52,49,48,102,56,56,53,48,102,102,56,56,55,48,101,102,56,56,57,48,99,102,57,56,98,48,98,102,57,56,99,48,97,102,57,56,101,48,57,102,97,57,48,48,56,102,97,57,50,48,55,102,97,57,52,48,55,102,98,57,54,48,54,102,98,57,55,48,54,102,98,57,57,48,54,102,98,57,98,48,54,102,98,57,100,48,55,102,99,57,102,48,55,102,99,97,49,48,56,102,99,97,51,48,57,102,99,97,53,48,97,102,99,97,54,48,99,102,99,97,56,48,100,102,99,97,97,48,102,102,99,97,99,49,49,102,99,97,101,49,50,102,99,98,48,49,52,102,99,98,50,49,54,102,99,98,52,49,56,102,98,98,54,49,97,102,98,98,56,49,100,102,98,98,97,49,102,102,98,98,99,50,49,102,98,98,101,50,51,102,97,99,48,50,54,102,97,99,50,50,56,102,97,99,52,50,97,102,97,99,54,50,100,102,57,99,55,50,102,102,57,99,57,51,50,102,57,99,98,51,53,102,56,99,100,51,55,102,56,99,102,51,97,102,55,100,49,51,100,102,55,100,51,52,48,102,54,100,53,52,51,102,54,100,55,52,54,102,53,100,57,52,57,102,53,100,98,52,99,102,52,100,100,52,102,102,52,100,102,53,51,102,52,101,49,53,54,102,51,101,51,53,97,102,51,101,53,53,100,102,50,101,54,54,49,102,50,101,56,54,53,102,50,101,97,54,57,102,49,101,99,54,100,102,49,101,100,55,49,102,49,101,102,55,53,102,49,102,49,55,57,102,50,102,50,55,100,102,50,102,52,56,50,102,51,102,53,56,54,102,51,102,54,56,97,102,52,102,56,56,101,102,53,102,57,57,50,102,54,102,97,57,54,102,56,102,98,57,97,102,57,102,99,57,100,102,97,102,100,97,49,102,99,102,102,97,52,34,41,41,44,98,121,61,118,121,40,90,118,40,34,48,100,48,56,56,55,49,48,48,55,56,56,49,51,48,55,56,57,49,54,48,55,56,97,49,57,48,54,56,99,49,98,48,54,56,100,49,100,48,54,56,101,50,48,48,54,56,102,50,50,48,54,57,48,50,52,48,54,57,49,50,54,48,53,57,49,50,56,48,53,57,50,50,97,48,53,57,51,50,99,48,53,57,52,50,101,48,53,57,53,50,102,48,53,57,54,51,49,48,53,57,55,51,51,48,53,57,55,51,53,48,52,57,56,51,55,48,52,57,57,51,56,48,52,57,97,51,97,48,52,57,97,51,99,48,52,57,98,51,101,48,52,57,99,51,102,48,52,57,99,52,49,48,52,57,100,52,51,48,51,57,101,52,52,48,51,57,101,52,54,48,51,57,102,52,56,48,51,57,102,52,57,48,51,97,48,52,98,48,51,97,49,52,99,48,50,97,49,52,101,48,50,97,50,53,48,48,50,97,50,53,49,48,50,97,51,53,51,48,50,97,51,53,53,48,50,97,52,53,54,48,49,97,52,53,56,48,49,97,52,53,57,48,49,97,53,53,98,48,49,97,53,53,99,48,49,97,54,53,101,48,49,97,54,54,48,48,49,97,54,54,49,48,48,97,55,54,51,48,48,97,55,54,52,48,48,97,55,54,54,48,48,97,55,54,55,48,48,97,56,54,57,48,48,97,56,54,97,48,48,97,56,54,99,48,48,97,56,54,101,48,48,97,56,54,102,48,48,97,56,55,49,48,48,97,56,55,50,48,49,97,56,55,52,48,49,97,56,55,53,48,49,97,56,55,55,48,49,97,56,55,56,48,49,97,56,55,97,48,50,97,56,55,98,48,50,97,56,55,100,48,51,97,56,55,101,48,51,97,56,56,48,48,52,97,56,56,49,48,52,97,55,56,51,48,53,97,55,56,52,48,53,97,55,56,54,48,54,97,54,56,55,48,55,97,54,56,56,48,56,97,54,56,97,48,57,97,53,56,98,48,97,97,53,56,100,48,98,97,53,56,101,48,99,97,52,56,102,48,100,97,52,57,49,48,101,97,51,57,50,48,102,97,51,57,52,49,48,97,50,57,53,49,49,97,49,57,54,49,51,97,49,57,56,49,52,97,48,57,57,49,53,57,102,57,97,49,54,57,102,57,99,49,55,57,101,57,100,49,56,57,100,57,101,49,57,57,100,97,48,49,97,57,99,97,49,49,98,57,98,97,50,49,100,57,97,97,51,49,101,57,97,97,53,49,102,57,57,97,54,50,48,57,56,97,55,50,49,57,55,97,56,50,50,57,54,97,97,50,51,57,53,97,98,50,52,57,52,97,99,50,54,57,52,97,100,50,55,57,51,97,101,50,56,57,50,98,48,50,57,57,49,98,49,50,97,57,48,98,50,50,98,56,102,98,51,50,99,56,101,98,52,50,101,56,100,98,53,50,102,56,99,98,54,51,48,56,98,98,55,51,49,56,97,98,56,51,50,56,57,98,97,51,51,56,56,98,98,51,52,56,56,98,99,51,53,56,55,98,100,51,55,56,54,98,101,51,56,56,53,98,102,51,57,56,52,99,48,51,97,56,51,99,49,51,98,56,50,99,50,51,99,56,49,99,51,51,100,56,48,99,52,51,101,55,102,99,53,52,48,55,101,99,54,52,49,55,100,99,55,52,50,55,99,99,56,52,51,55,98,99,57,52,52,55,97,99,97,52,53,55,97,99,98,52,54,55,57,99,99,52,55,55,56,99,99,52,57,55,55,99,100,52,97,55,54,99,101,52,98,55,53,99,102,52,99,55,52,100,48,52,100,55,51,100,49,52,101,55,50,100,50,52,102,55,49,100,51,53,49,55,49,100,52,53,50,55,48,100,53,53,51,54,102,100,53,53,52,54,101,100,54,53,53,54,100,100,55,53,54,54,99,100,56,53,55,54,98,100,57,53,56,54,97,100,97,53,97,54,97,100,97,53,98,54,57,100,98,53,99,54,56,100,99,53,100,54,55,100,100,53,101,54,54,100,101,53,102,54,53,100,101,54,49,54,52,100,102,54,50,54,51,101,48,54,51,54,51,101,49,54,52,54,50,101,50,54,53,54,49,101,50,54,54,54,48,101,51,54,56,53,102,101,52,54,57,53,101,101,53,54,97,53,100,101,53,54,98,53,100,101,54,54,99,53,99,101,55,54,101,53,98,101,55,54,102,53,97,101,56,55,48,53,57,101,57,55,49,53,56,101,57,55,50,53,55,101,97,55,52,53,55,101,98,55,53,53,54,101,98,55,54,53,53,101,99,55,55,53,52,101,100,55,57,53,51,101,100,55,97,53,50,101,101,55,98,53,49,101,102,55,99,53,49,101,102,55,101,53,48,102,48,55,102,52,102,102,48,56,48,52,101,102,49,56,49,52,100,102,49,56,51,52,99,102,50,56,52,52,98,102,51,56,53,52,98,102,51,56,55,52,97,102,52,56,56,52,57,102,52,56,57,52,56,102,53,56,98,52,55,102,53,56,99,52,54,102,54,56,100,52,53,102,54,56,102,52,52,102,55,57,48,52,52,102,55,57,49,52,51,102,55,57,51,52,50,102,56,57,52,52,49,102,56,57,53,52,48,102,57,57,55,51,102,102,57,57,56,51,101,102,57,57,97,51,101,102,97,57,98,51,100,102,97,57,99,51,99,102,97,57,101,51,98,102,98,57,102,51,97,102,98,97,49,51,57,102,98,97,50,51,56,102,99,97,51,51,56,102,99,97,53,51,55,102,99,97,54,51,54,102,99,97,56,51,53,102,99,97,57,51,52,102,100,97,98,51,51,102,100,97,99,51,51,102,100,97,101,51,50,102,100,97,102,51,49,102,100,98,49,51,48,102,100,98,50,50,102,102,100,98,52,50,102,102,100,98,53,50,101,102,101,98,55,50,100,102,101,98,56,50,99,102,101,98,97,50,99,102,101,98,98,50,98,102,101,98,100,50,97,102,101,98,101,50,97,102,101,99,48,50,57,102,100,99,50,50,57,102,100,99,51,50,56,102,100,99,53,50,55,102,100,99,54,50,55,102,100,99,56,50,55,102,100,99,97,50,54,102,100,99,98,50,54,102,99,99,100,50,53,102,99,99,101,50,53,102,99,100,48,50,53,102,99,100,50,50,53,102,98,100,51,50,52,102,98,100,53,50,52,102,98,100,55,50,52,102,97,100,56,50,52,102,97,100,97,50,52,102,57,100,99,50,52,102,57,100,100,50,53,102,56,100,102,50,53,102,56,101,49,50,53,102,55,101,50,50,53,102,55,101,52,50,53,102,54,101,54,50,54,102,54,101,56,50,54,102,53,101,57,50,54,102,53,101,98,50,55,102,52,101,100,50,55,102,51,101,101,50,55,102,51,102,48,50,55,102,50,102,50,50,55,102,49,102,52,50,54,102,49,102,53,50,53,102,48,102,55,50,52,102,48,102,57,50,49,34,41,41,59,102,117,110,99,116,105,111,110,32,109,121,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,118,97,114,32,120,121,61,77,97,116,104,46,97,98,115,44,119,121,61,77,97,116,104,46,97,116,97,110,50,44,77,121,61,77,97,116,104,46,99,111,115,44,78,121,61,77,97,116,104,46,109,97,120,44,84,121,61,77,97,116,104,46,109,105,110,44,65,121,61,77,97,116,104,46,115,105,110,44,83,121,61,77,97,116,104,46,115,113,114,116,44,107,121,61,49,101,45,49,50,44,69,121,61,77,97,116,104,46,80,73,44,67,121,61,69,121,47,50,44,80,121,61,50,42,69,121,59,102,117,110,99,116,105,111,110,32,122,121,40,116,41,123,114,101,116,117,114,110,32,116,62,61,49,63,67,121,58,116,60,61,45,49,63,45,67,121,58,77,97,116,104,46,97,115,105,110,40,116,41,125,102,117,110,99,116,105,111,110,32,82,121,40,116,41,123,114,101,116,117,114,110,32,116,46,105,110,110,101,114,82,97,100,105,117,115,125,102,117,110,99,116,105,111,110,32,68,121,40,116,41,123,114,101,116,117,114,110,32,116,46,111,117,116,101,114,82,97,100,105,117,115,125,102,117,110,99,116,105,111,110,32,113,121,40,116,41,123,114,101,116,117,114,110,32,116,46,115,116,97,114,116,65,110,103,108,101,125,102,117,110,99,116,105,111,110,32,76,121,40,116,41,123,114,101,116,117,114,110,32,116,46,101,110,100,65,110,103,108,101,125,102,117,110,99,116,105,111,110,32,85,121,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,112,97,100,65,110,103,108,101,125,102,117,110,99,116,105,111,110,32,79,121,40,116,44,110,44,101,44,114,44,105,44,111,44,97,41,123,118,97,114,32,117,61,116,45,101,44,99,61,110,45,114,44,102,61,40,97,63,111,58,45,111,41,47,83,121,40,117,42,117,43,99,42,99,41,44,115,61,102,42,99,44,108,61,45,102,42,117,44,104,61,116,43,115,44,100,61,110,43,108,44,112,61,101,43,115,44,118,61,114,43,108,44,103,61,40,104,43,112,41,47,50,44,121,61,40,100,43,118,41,47,50,44,95,61,112,45,104,44,98,61,118,45,100,44,109,61,95,42,95,43,98,42,98,44,120,61,105,45,111,44,119,61,104,42,118,45,112,42,100,44,77,61,40,98,60,48,63,45,49,58,49,41,42,83,121,40,78,121,40,48,44,120,42,120,42,109,45,119,42,119,41,41,44,78,61,40,119,42,98,45,95,42,77,41,47,109,44,84,61,40,45,119,42,95,45,98,42,77,41,47,109,44,65,61,40,119,42,98,43,95,42,77,41,47,109,44,83,61,40,45,119,42,95,43,98,42,77,41,47,109,44,107,61,78,45,103,44,69,61,84,45,121,44,67,61,65,45,103,44,80,61,83,45,121,59,114,101,116,117,114,110,32,107,42,107,43,69,42,69,62,67,42,67,43,80,42,80,38,38,40,78,61,65,44,84,61,83,41,44,123,99,120,58,78,44,99,121,58,84,44,120,48,49,58,45,115,44,121,48,49,58,45,108,44,120,49,49,58,78,42,40,105,47,120,45,49,41,44,121,49,49,58,84,42,40,105,47,120,45,49,41,125,125,102,117,110,99,116,105,111,110,32,66,121,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,70,121,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,66,121,40,116,41,125,102,117,110,99,116,105,111,110,32,89,121,40,116,41,123,114,101,116,117,114,110,32,116,91,48,93,125,102,117,110,99,116,105,111,110,32,73,121,40,116,41,123,114,101,116,117,114,110,32,116,91,49,93,125,102,117,110,99,116,105,111,110,32,72,121,40,41,123,118,97,114,32,116,61,89,121,44,110,61,73,121,44,101,61,109,121,40,33,48,41,44,114,61,110,117,108,108,44,105,61,70,121,44,111,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,97,40,97,41,123,118,97,114,32,117,44,99,44,102,44,115,61,97,46,108,101,110,103,116,104,44,108,61,33,49,59,102,111,114,40,110,117,108,108,61,61,114,38,38,40,111,61,105,40,102,61,110,111,40,41,41,41,44,117,61,48,59,117,60,61,115,59,43,43,117,41,33,40,117,60,115,38,38,101,40,99,61,97,91,117,93,44,117,44,97,41,41,61,61,61,108,38,38,40,40,108,61,33,108,41,63,111,46,108,105,110,101,83,116,97,114,116,40,41,58,111,46,108,105,110,101,69,110,100,40,41,41,44,108,38,38,111,46,112,111,105,110,116,40,43,116,40,99,44,117,44,97,41,44,43,110,40,99,44,117,44,97,41,41,59,105,102,40,102,41,114,101,116,117,114,110,32,111,61,110,117,108,108,44,102,43,34,34,124,124,110,117,108,108,125,114,101,116,117,114,110,32,97,46,120,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,109,121,40,43,110,41,44,97,41,58,116,125,44,97,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,97,41,58,110,125,44,97,46,100,101,102,105,110,101,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,33,33,116,41,44,97,41,58,101,125,44,97,46,99,117,114,118,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,116,44,110,117,108,108,33,61,114,38,38,40,111,61,105,40,114,41,41,44,97,41,58,105,125,44,97,46,99,111,110,116,101,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,117,108,108,61,61,116,63,114,61,111,61,110,117,108,108,58,111,61,105,40,114,61,116,41,44,97,41,58,114,125,44,97,125,102,117,110,99,116,105,111,110,32,106,121,40,41,123,118,97,114,32,116,61,89,121,44,110,61,110,117,108,108,44,101,61,109,121,40,48,41,44,114,61,73,121,44,105,61,109,121,40,33,48,41,44,111,61,110,117,108,108,44,97,61,70,121,44,117,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,99,40,99,41,123,118,97,114,32,102,44,115,44,108,44,104,44,100,44,112,61,99,46,108,101,110,103,116,104,44,118,61,33,49,44,103,61,110,101,119,32,65,114,114,97,121,40,112,41,44,121,61,110,101,119,32,65,114,114,97,121,40,112,41,59,102,111,114,40,110,117,108,108,61,61,111,38,38,40,117,61,97,40,100,61,110,111,40,41,41,41,44,102,61,48,59,102,60,61,112,59,43,43,102,41,123,105,102,40,33,40,102,60,112,38,38,105,40,104,61,99,91,102,93,44,102,44,99,41,41,61,61,61,118,41,105,102,40,118,61,33,118,41,115,61,102,44,117,46,97,114,101,97,83,116,97,114,116,40,41,44,117,46,108,105,110,101,83,116,97,114,116,40,41,59,101,108,115,101,123,102,111,114,40,117,46,108,105,110,101,69,110,100,40,41,44,117,46,108,105,110,101,83,116,97,114,116,40,41,44,108,61,102,45,49,59,108,62,61,115,59,45,45,108,41,117,46,112,111,105,110,116,40,103,91,108,93,44,121,91,108,93,41,59,117,46,108,105,110,101,69,110,100,40,41,44,117,46,97,114,101,97,69,110,100,40,41,125,118,38,38,40,103,91,102,93,61,43,116,40,104,44,102,44,99,41,44,121,91,102,93,61,43,101,40,104,44,102,44,99,41,44,117,46,112,111,105,110,116,40,110,63,43,110,40,104,44,102,44,99,41,58,103,91,102,93,44,114,63,43,114,40,104,44,102,44,99,41,58,121,91,102,93,41,41,125,105,102,40,100,41,114,101,116,117,114,110,32,117,61,110,117,108,108,44,100,43,34,34,124,124,110,117,108,108,125,102,117,110,99,116,105,111,110,32,102,40,41,123,114,101,116,117,114,110,32,72,121,40,41,46,100,101,102,105,110,101,100,40,105,41,46,99,117,114,118,101,40,97,41,46,99,111,110,116,101,120,116,40,111,41,125,114,101,116,117,114,110,32,99,46,120,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,58,109,121,40,43,101,41,44,110,61,110,117,108,108,44,99,41,58,116,125,44,99,46,120,48,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,109,121,40,43,110,41,44,99,41,58,116,125,44,99,46,120,49,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,110,117,108,108,61,61,116,63,110,117,108,108,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,110,125,44,99,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,114,61,110,117,108,108,44,99,41,58,101,125,44,99,46,121,48,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,101,125,44,99,46,121,49,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,110,117,108,108,61,61,116,63,110,117,108,108,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,114,125,44,99,46,108,105,110,101,88,48,61,99,46,108,105,110,101,89,48,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,40,41,46,120,40,116,41,46,121,40,101,41,125,44,99,46,108,105,110,101,89,49,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,40,41,46,120,40,116,41,46,121,40,114,41,125,44,99,46,108,105,110,101,88,49,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,40,41,46,120,40,110,41,46,121,40,101,41,125,44,99,46,100,101,102,105,110,101,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,33,33,116,41,44,99,41,58,105,125,44,99,46,99,117,114,118,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,116,44,110,117,108,108,33,61,111,38,38,40,117,61,97,40,111,41,41,44,99,41,58,97,125,44,99,46,99,111,110,116,101,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,117,108,108,61,61,116,63,111,61,117,61,110,117,108,108,58,117,61,97,40,111,61,116,41,44,99,41,58,111,125,44,99,125,102,117,110,99,116,105,111,110,32,88,121,40,116,44,110,41,123,114,101,116,117,114,110,32,110,60,116,63,45,49,58,110,62,116,63,49,58,110,62,61,116,63,48,58,78,97,78,125,102,117,110,99,116,105,111,110,32,86,121,40,116,41,123,114,101,116,117,114,110,32,116,125,66,121,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,49,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,100,101,102,97,117,108,116,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,125,125,125,59,118,97,114,32,71,121,61,87,121,40,70,121,41,59,102,117,110,99,116,105,111,110,32,36,121,40,116,41,123,116,104,105,115,46,95,99,117,114,118,101,61,116,125,102,117,110,99,116,105,111,110,32,87,121,40,116,41,123,102,117,110,99,116,105,111,110,32,110,40,110,41,123,114,101,116,117,114,110,32,110,101,119,32,36,121,40,116,40,110,41,41,125,114,101,116,117,114,110,32,110,46,95,99,117,114,118,101,61,116,44,110,125,102,117,110,99,116,105,111,110,32,90,121,40,116,41,123,118,97,114,32,110,61,116,46,99,117,114,118,101,59,114,101,116,117,114,110,32,116,46,97,110,103,108,101,61,116,46,120,44,100,101,108,101,116,101,32,116,46,120,44,116,46,114,97,100,105,117,115,61,116,46,121,44,100,101,108,101,116,101,32,116,46,121,44,116,46,99,117,114,118,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,40,87,121,40,116,41,41,58,110,40,41,46,95,99,117,114,118,101,125,44,116,125,102,117,110,99,116,105,111,110,32,81,121,40,41,123,114,101,116,117,114,110,32,90,121,40,72,121,40,41,46,99,117,114,118,101,40,71,121,41,41,125,102,117,110,99,116,105,111,110,32,75,121,40,41,123,118,97,114,32,116,61,106,121,40,41,46,99,117,114,118,101,40,71,121,41,44,110,61,116,46,99,117,114,118,101,44,101,61,116,46,108,105,110,101,88,48,44,114,61,116,46,108,105,110,101,88,49,44,105,61,116,46,108,105,110,101,89,48,44,111,61,116,46,108,105,110,101,89,49,59,114,101,116,117,114,110,32,116,46,97,110,103,108,101,61,116,46,120,44,100,101,108,101,116,101,32,116,46,120,44,116,46,115,116,97,114,116,65,110,103,108,101,61,116,46,120,48,44,100,101,108,101,116,101,32,116,46,120,48,44,116,46,101,110,100,65,110,103,108,101,61,116,46,120,49,44,100,101,108,101,116,101,32,116,46,120,49,44,116,46,114,97,100,105,117,115,61,116,46,121,44,100,101,108,101,116,101,32,116,46,121,44,116,46,105,110,110,101,114,82,97,100,105,117,115,61,116,46,121,48,44,100,101,108,101,116,101,32,116,46,121,48,44,116,46,111,117,116,101,114,82,97,100,105,117,115,61,116,46,121,49,44,100,101,108,101,116,101,32,116,46,121,49,44,116,46,108,105,110,101,83,116,97,114,116,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,90,121,40,101,40,41,41,125,44,100,101,108,101,116,101,32,116,46,108,105,110,101,88,48,44,116,46,108,105,110,101,69,110,100,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,90,121,40,114,40,41,41,125,44,100,101,108,101,116,101,32,116,46,108,105,110,101,88,49,44,116,46,108,105,110,101,73,110,110,101,114,82,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,90,121,40,105,40,41,41,125,44,100,101,108,101,116,101,32,116,46,108,105,110,101,89,48,44,116,46,108,105,110,101,79,117,116,101,114,82,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,90,121,40,111,40,41,41,125,44,100,101,108,101,116,101,32,116,46,108,105,110,101,89,49,44,116,46,99,117,114,118,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,40,87,121,40,116,41,41,58,110,40,41,46,95,99,117,114,118,101,125,44,116,125,102,117,110,99,116,105,111,110,32,74,121,40,116,44,110,41,123,114,101,116,117,114,110,91,40,110,61,43,110,41,42,77,97,116,104,46,99,111,115,40,116,45,61,77,97,116,104,46,80,73,47,50,41,44,110,42,77,97,116,104,46,115,105,110,40,116,41,93,125,36,121,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,99,117,114,118,101,46,97,114,101,97,83,116,97,114,116,40,41,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,99,117,114,118,101,46,97,114,101,97,69,110,100,40,41,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,99,117,114,118,101,46,108,105,110,101,83,116,97,114,116,40,41,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,99,117,114,118,101,46,108,105,110,101,69,110,100,40,41,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,95,99,117,114,118,101,46,112,111,105,110,116,40,110,42,77,97,116,104,46,115,105,110,40,116,41,44,110,42,45,77,97,116,104,46,99,111,115,40,116,41,41,125,125,59,118,97,114,32,116,95,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,59,102,117,110,99,116,105,111,110,32,110,95,40,116,41,123,114,101,116,117,114,110,32,116,46,115,111,117,114,99,101,125,102,117,110,99,116,105,111,110,32,101,95,40,116,41,123,114,101,116,117,114,110,32,116,46,116,97,114,103,101,116,125,102,117,110,99,116,105,111,110,32,114,95,40,116,41,123,118,97,114,32,110,61,110,95,44,101,61,101,95,44,114,61,89,121,44,105,61,73,121,44,111,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,97,40,41,123,118,97,114,32,97,44,117,61,116,95,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,99,61,110,46,97,112,112,108,121,40,116,104,105,115,44,117,41,44,102,61,101,46,97,112,112,108,121,40,116,104,105,115,44,117,41,59,105,102,40,111,124,124,40,111,61,97,61,110,111,40,41,41,44,116,40,111,44,43,114,46,97,112,112,108,121,40,116,104,105,115,44,40,117,91,48,93,61,99,44,117,41,41,44,43,105,46,97,112,112,108,121,40,116,104,105,115,44,117,41,44,43,114,46,97,112,112,108,121,40,116,104,105,115,44,40,117,91,48,93,61,102,44,117,41,41,44,43,105,46,97,112,112,108,121,40,116,104,105,115,44,117,41,41,44,97,41,114,101,116,117,114,110,32,111,61,110,117,108,108,44,97,43,34,34,124,124,110,117,108,108,125,114,101,116,117,114,110,32,97,46,115,111,117,114,99,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,116,44,97,41,58,110,125,44,97,46,116,97,114,103,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,116,44,97,41,58,101,125,44,97,46,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,97,41,58,114,125,44,97,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,97,41,58,105,125,44,97,46,99,111,110,116,101,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,110,117,108,108,61,61,116,63,110,117,108,108,58,116,44,97,41,58,111,125,44,97,125,102,117,110,99,116,105,111,110,32,105,95,40,116,44,110,44,101,44,114,44,105,41,123,116,46,109,111,118,101,84,111,40,110,44,101,41,44,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,110,61,40,110,43,114,41,47,50,44,101,44,110,44,105,44,114,44,105,41,125,102,117,110,99,116,105,111,110,32,111,95,40,116,44,110,44,101,44,114,44,105,41,123,116,46,109,111,118,101,84,111,40,110,44,101,41,44,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,110,44,101,61,40,101,43,105,41,47,50,44,114,44,101,44,114,44,105,41,125,102,117,110,99,116,105,111,110,32,97,95,40,116,44,110,44,101,44,114,44,105,41,123,118,97,114,32,111,61,74,121,40,110,44,101,41,44,97,61,74,121,40,110,44,101,61,40,101,43,105,41,47,50,41,44,117,61,74,121,40,114,44,101,41,44,99,61,74,121,40,114,44,105,41,59,116,46,109,111,118,101,84,111,40,111,91,48,93,44,111,91,49,93,41,44,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,97,91,48,93,44,97,91,49,93,44,117,91,48,93,44,117,91,49,93,44,99,91,48,93,44,99,91,49,93,41,125,118,97,114,32,117,95,61,123,100,114,97,119,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,77,97,116,104,46,115,113,114,116,40,110,47,69,121,41,59,116,46,109,111,118,101,84,111,40,101,44,48,41,44,116,46,97,114,99,40,48,44,48,44,101,44,48,44,80,121,41,125,125,44,99,95,61,123,100,114,97,119,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,77,97,116,104,46,115,113,114,116,40,110,47,53,41,47,50,59,116,46,109,111,118,101,84,111,40,45,51,42,101,44,45,101,41,44,116,46,108,105,110,101,84,111,40,45,101,44,45,101,41,44,116,46,108,105,110,101,84,111,40,45,101,44,45,51,42,101,41,44,116,46,108,105,110,101,84,111,40,101,44,45,51,42,101,41,44,116,46,108,105,110,101,84,111,40,101,44,45,101,41,44,116,46,108,105,110,101,84,111,40,51,42,101,44,45,101,41,44,116,46,108,105,110,101,84,111,40,51,42,101,44,101,41,44,116,46,108,105,110,101,84,111,40,101,44,101,41,44,116,46,108,105,110,101,84,111,40,101,44,51,42,101,41,44,116,46,108,105,110,101,84,111,40,45,101,44,51,42,101,41,44,116,46,108,105,110,101,84,111,40,45,101,44,101,41,44,116,46,108,105,110,101,84,111,40,45,51,42,101,44,101,41,44,116,46,99,108,111,115,101,80,97,116,104,40,41,125,125,44,102,95,61,77,97,116,104,46,115,113,114,116,40,49,47,51,41,44,115,95,61,50,42,102,95,44,108,95,61,123,100,114,97,119,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,77,97,116,104,46,115,113,114,116,40,110,47,115,95,41,44,114,61,101,42,102,95,59,116,46,109,111,118,101,84,111,40,48,44,45,101,41,44,116,46,108,105,110,101,84,111,40,114,44,48,41,44,116,46,108,105,110,101,84,111,40,48,44,101,41,44,116,46,108,105,110,101,84,111,40,45,114,44,48,41,44,116,46,99,108,111,115,101,80,97,116,104,40,41,125,125,44,104,95,61,77,97,116,104,46,115,105,110,40,69,121,47,49,48,41,47,77,97,116,104,46,115,105,110,40,55,42,69,121,47,49,48,41,44,100,95,61,77,97,116,104,46,115,105,110,40,80,121,47,49,48,41,42,104,95,44,112,95,61,45,77,97,116,104,46,99,111,115,40,80,121,47,49,48,41,42,104,95,44,118,95,61,123,100,114,97,119,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,77,97,116,104,46,115,113,114,116,40,46,56,57,48,56,49,51,48,57,49,53,50,57,50,56,53,50,42,110,41,44,114,61,100,95,42,101,44,105,61,112,95,42,101,59,116,46,109,111,118,101,84,111,40,48,44,45,101,41,44,116,46,108,105,110,101,84,111,40,114,44,105,41,59,102,111,114,40,118,97,114,32,111,61,49,59,111,60,53,59,43,43,111,41,123,118,97,114,32,97,61,80,121,42,111,47,53,44,117,61,77,97,116,104,46,99,111,115,40,97,41,44,99,61,77,97,116,104,46,115,105,110,40,97,41,59,116,46,108,105,110,101,84,111,40,99,42,101,44,45,117,42,101,41,44,116,46,108,105,110,101,84,111,40,117,42,114,45,99,42,105,44,99,42,114,43,117,42,105,41,125,116,46,99,108,111,115,101,80,97,116,104,40,41,125,125,44,103,95,61,123,100,114,97,119,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,77,97,116,104,46,115,113,114,116,40,110,41,44,114,61,45,101,47,50,59,116,46,114,101,99,116,40,114,44,114,44,101,44,101,41,125,125,44,121,95,61,77,97,116,104,46,115,113,114,116,40,51,41,44,95,95,61,123,100,114,97,119,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,45,77,97,116,104,46,115,113,114,116,40,110,47,40,51,42,121,95,41,41,59,116,46,109,111,118,101,84,111,40,48,44,50,42,101,41,44,116,46,108,105,110,101,84,111,40,45,121,95,42,101,44,45,101,41,44,116,46,108,105,110,101,84,111,40,121,95,42,101,44,45,101,41,44,116,46,99,108,111,115,101,80,97,116,104,40,41,125,125,44,98,95,61,77,97,116,104,46,115,113,114,116,40,51,41,47,50,44,109,95,61,49,47,77,97,116,104,46,115,113,114,116,40,49,50,41,44,120,95,61,51,42,40,109,95,47,50,43,49,41,44,119,95,61,123,100,114,97,119,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,77,97,116,104,46,115,113,114,116,40,110,47,120,95,41,44,114,61,101,47,50,44,105,61,101,42,109,95,44,111,61,114,44,97,61,101,42,109,95,43,101,44,117,61,45,111,44,99,61,97,59,116,46,109,111,118,101,84,111,40,114,44,105,41,44,116,46,108,105,110,101,84,111,40,111,44,97,41,44,116,46,108,105,110,101,84,111,40,117,44,99,41,44,116,46,108,105,110,101,84,111,40,45,46,53,42,114,45,98,95,42,105,44,98,95,42,114,43,45,46,53,42,105,41,44,116,46,108,105,110,101,84,111,40,45,46,53,42,111,45,98,95,42,97,44,98,95,42,111,43,45,46,53,42,97,41,44,116,46,108,105,110,101,84,111,40,45,46,53,42,117,45,98,95,42,99,44,98,95,42,117,43,45,46,53,42,99,41,44,116,46,108,105,110,101,84,111,40,45,46,53,42,114,43,98,95,42,105,44,45,46,53,42,105,45,98,95,42,114,41,44,116,46,108,105,110,101,84,111,40,45,46,53,42,111,43,98,95,42,97,44,45,46,53,42,97,45,98,95,42,111,41,44,116,46,108,105,110,101,84,111,40,45,46,53,42,117,43,98,95,42,99,44,45,46,53,42,99,45,98,95,42,117,41,44,116,46,99,108,111,115,101,80,97,116,104,40,41,125,125,44,77,95,61,91,117,95,44,99,95,44,108,95,44,103,95,44,118,95,44,95,95,44,119,95,93,59,102,117,110,99,116,105,111,110,32,78,95,40,41,123,125,102,117,110,99,116,105,111,110,32,84,95,40,116,44,110,44,101,41,123,116,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,40,50,42,116,46,95,120,48,43,116,46,95,120,49,41,47,51,44,40,50,42,116,46,95,121,48,43,116,46,95,121,49,41,47,51,44,40,116,46,95,120,48,43,50,42,116,46,95,120,49,41,47,51,44,40,116,46,95,121,48,43,50,42,116,46,95,121,49,41,47,51,44,40,116,46,95,120,48,43,52,42,116,46,95,120,49,43,110,41,47,54,44,40,116,46,95,121,48,43,52,42,116,46,95,121,49,43,101,41,47,54,41,125,102,117,110,99,116,105,111,110,32,65,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,83,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,107,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,69,95,40,116,44,110,41,123,116,104,105,115,46,95,98,97,115,105,115,61,110,101,119,32,65,95,40,116,41,44,116,104,105,115,46,95,98,101,116,97,61,110,125,65,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,51,58,84,95,40,116,104,105,115,44,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,41,59,99,97,115,101,32,50,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,41,125,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,49,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,40,53,42,116,104,105,115,46,95,120,48,43,116,104,105,115,46,95,120,49,41,47,54,44,40,53,42,116,104,105,115,46,95,121,48,43,116,104,105,115,46,95,121,49,41,47,54,41,59,100,101,102,97,117,108,116,58,84,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,110,125,125,44,83,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,78,95,44,97,114,101,97,69,110,100,58,78,95,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,61,116,104,105,115,46,95,120,51,61,116,104,105,115,46,95,120,52,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,61,116,104,105,115,46,95,121,51,61,116,104,105,115,46,95,121,52,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,49,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,40,116,104,105,115,46,95,120,50,43,50,42,116,104,105,115,46,95,120,51,41,47,51,44,40,116,104,105,115,46,95,121,50,43,50,42,116,104,105,115,46,95,121,51,41,47,51,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,40,116,104,105,115,46,95,120,51,43,50,42,116,104,105,115,46,95,120,50,41,47,51,44,40,116,104,105,115,46,95,121,51,43,50,42,116,104,105,115,46,95,121,50,41,47,51,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,44,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,51,44,116,104,105,115,46,95,121,51,41,44,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,52,44,116,104,105,115,46,95,121,52,41,125,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,120,50,61,116,44,116,104,105,115,46,95,121,50,61,110,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,44,116,104,105,115,46,95,120,51,61,116,44,116,104,105,115,46,95,121,51,61,110,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,44,116,104,105,115,46,95,120,52,61,116,44,116,104,105,115,46,95,121,52,61,110,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,40,116,104,105,115,46,95,120,48,43,52,42,116,104,105,115,46,95,120,49,43,116,41,47,54,44,40,116,104,105,115,46,95,121,48,43,52,42,116,104,105,115,46,95,121,49,43,110,41,47,54,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,84,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,110,125,125,44,107,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,51,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,59,118,97,114,32,101,61,40,116,104,105,115,46,95,120,48,43,52,42,116,104,105,115,46,95,120,49,43,116,41,47,54,44,114,61,40,116,104,105,115,46,95,121,48,43,52,42,116,104,105,115,46,95,121,49,43,110,41,47,54,59,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,101,44,114,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,101,44,114,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,116,104,105,115,46,95,112,111,105,110,116,61,52,59,100,101,102,97,117,108,116,58,84,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,110,125,125,44,69,95,46,112,114,111,116,111,116,121,112,101,61,123,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,61,91,93,44,116,104,105,115,46,95,121,61,91,93,44,116,104,105,115,46,95,98,97,115,105,115,46,108,105,110,101,83,116,97,114,116,40,41,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,120,44,110,61,116,104,105,115,46,95,121,44,101,61,116,46,108,101,110,103,116,104,45,49,59,105,102,40,101,62,48,41,102,111,114,40,118,97,114,32,114,44,105,61,116,91,48,93,44,111,61,110,91,48,93,44,97,61,116,91,101,93,45,105,44,117,61,110,91,101,93,45,111,44,99,61,45,49,59,43,43,99,60,61,101,59,41,114,61,99,47,101,44,116,104,105,115,46,95,98,97,115,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,98,101,116,97,42,116,91,99,93,43,40,49,45,116,104,105,115,46,95,98,101,116,97,41,42,40,105,43,114,42,97,41,44,116,104,105,115,46,95,98,101,116,97,42,110,91,99,93,43,40,49,45,116,104,105,115,46,95,98,101,116,97,41,42,40,111,43,114,42,117,41,41,59,116,104,105,115,46,95,120,61,116,104,105,115,46,95,121,61,110,117,108,108,44,116,104,105,115,46,95,98,97,115,105,115,46,108,105,110,101,69,110,100,40,41,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,95,120,46,112,117,115,104,40,43,116,41,44,116,104,105,115,46,95,121,46,112,117,115,104,40,43,110,41,125,125,59,118,97,114,32,67,95,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,49,61,61,61,110,63,110,101,119,32,65,95,40,116,41,58,110,101,119,32,69,95,40,116,44,110,41,125,114,101,116,117,114,110,32,101,46,98,101,116,97,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,43,110,41,125,44,101,125,40,46,56,53,41,59,102,117,110,99,116,105,111,110,32,80,95,40,116,44,110,44,101,41,123,116,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,116,46,95,120,49,43,116,46,95,107,42,40,116,46,95,120,50,45,116,46,95,120,48,41,44,116,46,95,121,49,43,116,46,95,107,42,40,116,46,95,121,50,45,116,46,95,121,48,41,44,116,46,95,120,50,43,116,46,95,107,42,40,116,46,95,120,49,45,110,41,44,116,46,95,121,50,43,116,46,95,107,42,40,116,46,95,121,49,45,101,41,44,116,46,95,120,50,44,116,46,95,121,50,41,125,102,117,110,99,116,105,111,110,32,122,95,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,44,116,104,105,115,46,95,107,61,40,49,45,110,41,47,54,125,122,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,50,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,80,95,40,116,104,105,115,44,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,41,125,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,49,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,44,116,104,105,115,46,95,120,49,61,116,44,116,104,105,115,46,95,121,49,61,110,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,59,100,101,102,97,117,108,116,58,80,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,120,50,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,44,116,104,105,115,46,95,121,50,61,110,125,125,59,118,97,114,32,82,95,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,122,95,40,116,44,110,41,125,114,101,116,117,114,110,32,101,46,116,101,110,115,105,111,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,43,110,41,125,44,101,125,40,48,41,59,102,117,110,99,116,105,111,110,32,68,95,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,44,116,104,105,115,46,95,107,61,40,49,45,110,41,47,54,125,68,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,78,95,44,97,114,101,97,69,110,100,58,78,95,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,61,116,104,105,115,46,95,120,51,61,116,104,105,115,46,95,120,52,61,116,104,105,115,46,95,120,53,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,61,116,104,105,115,46,95,121,51,61,116,104,105,115,46,95,121,52,61,116,104,105,115,46,95,121,53,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,49,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,51,44,116,104,105,115,46,95,121,51,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,51,44,116,104,105,115,46,95,121,51,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,51,44,116,104,105,115,46,95,121,51,41,44,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,52,44,116,104,105,115,46,95,121,52,41,44,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,53,44,116,104,105,115,46,95,121,53,41,125,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,120,51,61,116,44,116,104,105,115,46,95,121,51,61,110,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,52,61,116,44,116,104,105,115,46,95,121,52,61,110,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,44,116,104,105,115,46,95,120,53,61,116,44,116,104,105,115,46,95,121,53,61,110,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,80,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,120,50,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,44,116,104,105,115,46,95,121,50,61,110,125,125,59,118,97,114,32,113,95,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,68,95,40,116,44,110,41,125,114,101,116,117,114,110,32,101,46,116,101,110,115,105,111,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,43,110,41,125,44,101,125,40,48,41,59,102,117,110,99,116,105,111,110,32,76,95,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,44,116,104,105,115,46,95,107,61,40,49,45,110,41,47,54,125,76,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,51,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,116,104,105,115,46,95,112,111,105,110,116,61,52,59,100,101,102,97,117,108,116,58,80,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,120,50,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,44,116,104,105,115,46,95,121,50,61,110,125,125,59,118,97,114,32,85,95,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,76,95,40,116,44,110,41,125,114,101,116,117,114,110,32,101,46,116,101,110,115,105,111,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,43,110,41,125,44,101,125,40,48,41,59,102,117,110,99,116,105,111,110,32,79,95,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,95,120,49,44,105,61,116,46,95,121,49,44,111,61,116,46,95,120,50,44,97,61,116,46,95,121,50,59,105,102,40,116,46,95,108,48,49,95,97,62,107,121,41,123,118,97,114,32,117,61,50,42,116,46,95,108,48,49,95,50,97,43,51,42,116,46,95,108,48,49,95,97,42,116,46,95,108,49,50,95,97,43,116,46,95,108,49,50,95,50,97,44,99,61,51,42,116,46,95,108,48,49,95,97,42,40,116,46,95,108,48,49,95,97,43,116,46,95,108,49,50,95,97,41,59,114,61,40,114,42,117,45,116,46,95,120,48,42,116,46,95,108,49,50,95,50,97,43,116,46,95,120,50,42,116,46,95,108,48,49,95,50,97,41,47,99,44,105,61,40,105,42,117,45,116,46,95,121,48,42,116,46,95,108,49,50,95,50,97,43,116,46,95,121,50,42,116,46,95,108,48,49,95,50,97,41,47,99,125,105,102,40,116,46,95,108,50,51,95,97,62,107,121,41,123,118,97,114,32,102,61,50,42,116,46,95,108,50,51,95,50,97,43,51,42,116,46,95,108,50,51,95,97,42,116,46,95,108,49,50,95,97,43,116,46,95,108,49,50,95,50,97,44,115,61,51,42,116,46,95,108,50,51,95,97,42,40,116,46,95,108,50,51,95,97,43,116,46,95,108,49,50,95,97,41,59,111,61,40,111,42,102,43,116,46,95,120,49,42,116,46,95,108,50,51,95,50,97,45,110,42,116,46,95,108,49,50,95,50,97,41,47,115,44,97,61,40,97,42,102,43,116,46,95,121,49,42,116,46,95,108,50,51,95,50,97,45,101,42,116,46,95,108,49,50,95,50,97,41,47,115,125,116,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,114,44,105,44,111,44,97,44,116,46,95,120,50,44,116,46,95,121,50,41,125,102,117,110,99,116,105,111,110,32,66,95,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,44,116,104,105,115,46,95,97,108,112,104,97,61,110,125,66,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,61,78,97,78,44,116,104,105,115,46,95,108,48,49,95,97,61,116,104,105,115,46,95,108,49,50,95,97,61,116,104,105,115,46,95,108,50,51,95,97,61,116,104,105,115,46,95,108,48,49,95,50,97,61,116,104,105,115,46,95,108,49,50,95,50,97,61,116,104,105,115,46,95,108,50,51,95,50,97,61,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,50,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,125,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,49,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,120,50,45,116,44,114,61,116,104,105,115,46,95,121,50,45,110,59,116,104,105,115,46,95,108,50,51,95,97,61,77,97,116,104,46,115,113,114,116,40,116,104,105,115,46,95,108,50,51,95,50,97,61,77,97,116,104,46,112,111,119,40,101,42,101,43,114,42,114,44,116,104,105,115,46,95,97,108,112,104,97,41,41,125,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,59,100,101,102,97,117,108,116,58,79,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,108,48,49,95,97,61,116,104,105,115,46,95,108,49,50,95,97,44,116,104,105,115,46,95,108,49,50,95,97,61,116,104,105,115,46,95,108,50,51,95,97,44,116,104,105,115,46,95,108,48,49,95,50,97,61,116,104,105,115,46,95,108,49,50,95,50,97,44,116,104,105,115,46,95,108,49,50,95,50,97,61,116,104,105,115,46,95,108,50,51,95,50,97,44,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,120,50,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,44,116,104,105,115,46,95,121,50,61,110,125,125,59,118,97,114,32,70,95,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,110,63,110,101,119,32,66,95,40,116,44,110,41,58,110,101,119,32,122,95,40,116,44,48,41,125,114,101,116,117,114,110,32,101,46,97,108,112,104,97,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,43,110,41,125,44,101,125,40,46,53,41,59,102,117,110,99,116,105,111,110,32,89,95,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,44,116,104,105,115,46,95,97,108,112,104,97,61,110,125,89,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,78,95,44,97,114,101,97,69,110,100,58,78,95,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,61,116,104,105,115,46,95,120,51,61,116,104,105,115,46,95,120,52,61,116,104,105,115,46,95,120,53,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,61,116,104,105,115,46,95,121,51,61,116,104,105,115,46,95,121,52,61,116,104,105,115,46,95,121,53,61,78,97,78,44,116,104,105,115,46,95,108,48,49,95,97,61,116,104,105,115,46,95,108,49,50,95,97,61,116,104,105,115,46,95,108,50,51,95,97,61,116,104,105,115,46,95,108,48,49,95,50,97,61,116,104,105,115,46,95,108,49,50,95,50,97,61,116,104,105,115,46,95,108,50,51,95,50,97,61,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,49,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,51,44,116,104,105,115,46,95,121,51,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,51,44,116,104,105,115,46,95,121,51,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,51,44,116,104,105,115,46,95,121,51,41,44,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,52,44,116,104,105,115,46,95,121,52,41,44,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,53,44,116,104,105,115,46,95,121,53,41,125,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,120,50,45,116,44,114,61,116,104,105,115,46,95,121,50,45,110,59,116,104,105,115,46,95,108,50,51,95,97,61,77,97,116,104,46,115,113,114,116,40,116,104,105,115,46,95,108,50,51,95,50,97,61,77,97,116,104,46,112,111,119,40,101,42,101,43,114,42,114,44,116,104,105,115,46,95,97,108,112,104,97,41,41,125,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,120,51,61,116,44,116,104,105,115,46,95,121,51,61,110,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,52,61,116,44,116,104,105,115,46,95,121,52,61,110,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,44,116,104,105,115,46,95,120,53,61,116,44,116,104,105,115,46,95,121,53,61,110,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,79,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,108,48,49,95,97,61,116,104,105,115,46,95,108,49,50,95,97,44,116,104,105,115,46,95,108,49,50,95,97,61,116,104,105,115,46,95,108,50,51,95,97,44,116,104,105,115,46,95,108,48,49,95,50,97,61,116,104,105,115,46,95,108,49,50,95,50,97,44,116,104,105,115,46,95,108,49,50,95,50,97,61,116,104,105,115,46,95,108,50,51,95,50,97,44,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,120,50,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,44,116,104,105,115,46,95,121,50,61,110,125,125,59,118,97,114,32,73,95,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,110,63,110,101,119,32,89,95,40,116,44,110,41,58,110,101,119,32,68,95,40,116,44,48,41,125,114,101,116,117,114,110,32,101,46,97,108,112,104,97,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,43,110,41,125,44,101,125,40,46,53,41,59,102,117,110,99,116,105,111,110,32,72,95,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,44,116,104,105,115,46,95,97,108,112,104,97,61,110,125,72,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,61,78,97,78,44,116,104,105,115,46,95,108,48,49,95,97,61,116,104,105,115,46,95,108,49,50,95,97,61,116,104,105,115,46,95,108,50,51,95,97,61,116,104,105,115,46,95,108,48,49,95,50,97,61,116,104,105,115,46,95,108,49,50,95,50,97,61,116,104,105,115,46,95,108,50,51,95,50,97,61,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,51,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,120,50,45,116,44,114,61,116,104,105,115,46,95,121,50,45,110,59,116,104,105,115,46,95,108,50,51,95,97,61,77,97,116,104,46,115,113,114,116,40,116,104,105,115,46,95,108,50,51,95,50,97,61,77,97,116,104,46,112,111,119,40,101,42,101,43,114,42,114,44,116,104,105,115,46,95,97,108,112,104,97,41,41,125,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,116,104,105,115,46,95,112,111,105,110,116,61,52,59,100,101,102,97,117,108,116,58,79,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,108,48,49,95,97,61,116,104,105,115,46,95,108,49,50,95,97,44,116,104,105,115,46,95,108,49,50,95,97,61,116,104,105,115,46,95,108,50,51,95,97,44,116,104,105,115,46,95,108,48,49,95,50,97,61,116,104,105,115,46,95,108,49,50,95,50,97,44,116,104,105,115,46,95,108,49,50,95,50,97,61,116,104,105,115,46,95,108,50,51,95,50,97,44,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,120,50,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,44,116,104,105,115,46,95,121,50,61,110,125,125,59,118,97,114,32,106,95,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,110,63,110,101,119,32,72,95,40,116,44,110,41,58,110,101,119,32,76,95,40,116,44,48,41,125,114,101,116,117,114,110,32,101,46,97,108,112,104,97,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,43,110,41,125,44,101,125,40,46,53,41,59,102,117,110,99,116,105,111,110,32,88,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,86,95,40,116,41,123,114,101,116,117,114,110,32,116,60,48,63,45,49,58,49,125,102,117,110,99,116,105,111,110,32,71,95,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,95,120,49,45,116,46,95,120,48,44,105,61,110,45,116,46,95,120,49,44,111,61,40,116,46,95,121,49,45,116,46,95,121,48,41,47,40,114,124,124,105,60,48,38,38,45,48,41,44,97,61,40,101,45,116,46,95,121,49,41,47,40,105,124,124,114,60,48,38,38,45,48,41,44,117,61,40,111,42,105,43,97,42,114,41,47,40,114,43,105,41,59,114,101,116,117,114,110,40,86,95,40,111,41,43,86,95,40,97,41,41,42,77,97,116,104,46,109,105,110,40,77,97,116,104,46,97,98,115,40,111,41,44,77,97,116,104,46,97,98,115,40,97,41,44,46,53,42,77,97,116,104,46,97,98,115,40,117,41,41,124,124,48,125,102,117,110,99,116,105,111,110,32,36,95,40,116,44,110,41,123,118,97,114,32,101,61,116,46,95,120,49,45,116,46,95,120,48,59,114,101,116,117,114,110,32,101,63,40,51,42,40,116,46,95,121,49,45,116,46,95,121,48,41,47,101,45,110,41,47,50,58,110,125,102,117,110,99,116,105,111,110,32,87,95,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,95,120,48,44,105,61,116,46,95,121,48,44,111,61,116,46,95,120,49,44,97,61,116,46,95,121,49,44,117,61,40,111,45,114,41,47,51,59,116,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,114,43,117,44,105,43,117,42,110,44,111,45,117,44,97,45,117,42,101,44,111,44,97,41,125,102,117,110,99,116,105,111,110,32,90,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,81,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,110,101,119,32,75,95,40,116,41,125,102,117,110,99,116,105,111,110,32,75,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,74,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,116,98,40,116,41,123,118,97,114,32,110,44,101,44,114,61,116,46,108,101,110,103,116,104,45,49,44,105,61,110,101,119,32,65,114,114,97,121,40,114,41,44,111,61,110,101,119,32,65,114,114,97,121,40,114,41,44,97,61,110,101,119,32,65,114,114,97,121,40,114,41,59,102,111,114,40,105,91,48,93,61,48,44,111,91,48,93,61,50,44,97,91,48,93,61,116,91,48,93,43,50,42,116,91,49,93,44,110,61,49,59,110,60,114,45,49,59,43,43,110,41,105,91,110,93,61,49,44,111,91,110,93,61,52,44,97,91,110,93,61,52,42,116,91,110,93,43,50,42,116,91,110,43,49,93,59,102,111,114,40,105,91,114,45,49,93,61,50,44,111,91,114,45,49,93,61,55,44,97,91,114,45,49,93,61,56,42,116,91,114,45,49,93,43,116,91,114,93,44,110,61,49,59,110,60,114,59,43,43,110,41,101,61,105,91,110,93,47,111,91,110,45,49,93,44,111,91,110,93,45,61,101,44,97,91,110,93,45,61,101,42,97,91,110,45,49,93,59,102,111,114,40,105,91,114,45,49,93,61,97,91,114,45,49,93,47,111,91,114,45,49,93,44,110,61,114,45,50,59,110,62,61,48,59,45,45,110,41,105,91,110,93,61,40,97,91,110,93,45,105,91,110,43,49,93,41,47,111,91,110,93,59,102,111,114,40,111,91,114,45,49,93,61,40,116,91,114,93,43,105,91,114,45,49,93,41,47,50,44,110,61,48,59,110,60,114,45,49,59,43,43,110,41,111,91,110,93,61,50,42,116,91,110,43,49,93,45,105,91,110,43,49,93,59,114,101,116,117,114,110,91,105,44,111,93,125,102,117,110,99,116,105,111,110,32,110,98,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,44,116,104,105,115,46,95,116,61,110,125,102,117,110,99,116,105,111,110,32,101,98,40,116,44,110,41,123,105,102,40,40,105,61,116,46,108,101,110,103,116,104,41,62,49,41,102,111,114,40,118,97,114,32,101,44,114,44,105,44,111,61,49,44,97,61,116,91,110,91,48,93,93,44,117,61,97,46,108,101,110,103,116,104,59,111,60,105,59,43,43,111,41,102,111,114,40,114,61,97,44,97,61,116,91,110,91,111,93,93,44,101,61,48,59,101,60,117,59,43,43,101,41,97,91,101,93,91,49,93,43,61,97,91,101,93,91,48,93,61,105,115,78,97,78,40,114,91,101,93,91,49,93,41,63,114,91,101,93,91,48,93,58,114,91,101,93,91,49,93,125,102,117,110,99,116,105,111,110,32,114,98,40,116,41,123,102,111,114,40,118,97,114,32,110,61,116,46,108,101,110,103,116,104,44,101,61,110,101,119,32,65,114,114,97,121,40,110,41,59,45,45,110,62,61,48,59,41,101,91,110,93,61,110,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,105,98,40,116,44,110,41,123,114,101,116,117,114,110,32,116,91,110,93,125,102,117,110,99,116,105,111,110,32,111,98,40,116,41,123,118,97,114,32,110,61,116,46,109,97,112,40,97,98,41,59,114,101,116,117,114,110,32,114,98,40,116,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,110,91,116,93,45,110,91,101,93,125,41,125,102,117,110,99,116,105,111,110,32,97,98,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,61,45,49,44,114,61,48,44,105,61,116,46,108,101,110,103,116,104,44,111,61,45,49,47,48,59,43,43,101,60,105,59,41,40,110,61,43,116,91,101,93,91,49,93,41,62,111,38,38,40,111,61,110,44,114,61,101,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,117,98,40,116,41,123,118,97,114,32,110,61,116,46,109,97,112,40,99,98,41,59,114,101,116,117,114,110,32,114,98,40,116,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,110,91,116,93,45,110,91,101,93,125,41,125,102,117,110,99,116,105,111,110,32,99,98,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,61,48,44,114,61,45,49,44,105,61,116,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,40,110,61,43,116,91,114,93,91,49,93,41,38,38,40,101,43,61,110,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,102,98,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,115,98,40,116,41,123,114,101,116,117,114,110,32,116,91,48,93,125,102,117,110,99,116,105,111,110,32,108,98,40,116,41,123,114,101,116,117,114,110,32,116,91,49,93,125,102,117,110,99,116,105,111,110,32,104,98,40,41,123,116,104,105,115,46,95,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,100,98,40,116,41,123,116,46,85,61,116,46,67,61,116,46,76,61,116,46,82,61,116,46,80,61,116,46,78,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,112,98,40,116,44,110,41,123,118,97,114,32,101,61,110,44,114,61,110,46,82,44,105,61,101,46,85,59,105,63,105,46,76,61,61,61,101,63,105,46,76,61,114,58,105,46,82,61,114,58,116,46,95,61,114,44,114,46,85,61,105,44,101,46,85,61,114,44,101,46,82,61,114,46,76,44,101,46,82,38,38,40,101,46,82,46,85,61,101,41,44,114,46,76,61,101,125,102,117,110,99,116,105,111,110,32,118,98,40,116,44,110,41,123,118,97,114,32,101,61,110,44,114,61,110,46,76,44,105,61,101,46,85,59,105,63,105,46,76,61,61,61,101,63,105,46,76,61,114,58,105,46,82,61,114,58,116,46,95,61,114,44,114,46,85,61,105,44,101,46,85,61,114,44,101,46,76,61,114,46,82,44,101,46,76,38,38,40,101,46,76,46,85,61,101,41,44,114,46,82,61,101,125,102,117,110,99,116,105,111,110,32,103,98,40,116,41,123,102,111,114,40,59,116,46,76,59,41,116,61,116,46,76,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,121,98,40,116,44,110,44,101,44,114,41,123,118,97,114,32,105,61,91,110,117,108,108,44,110,117,108,108,93,44,111,61,89,98,46,112,117,115,104,40,105,41,45,49,59,114,101,116,117,114,110,32,105,46,108,101,102,116,61,116,44,105,46,114,105,103,104,116,61,110,44,101,38,38,98,98,40,105,44,116,44,110,44,101,41,44,114,38,38,98,98,40,105,44,110,44,116,44,114,41,44,66,98,91,116,46,105,110,100,101,120,93,46,104,97,108,102,101,100,103,101,115,46,112,117,115,104,40,111,41,44,66,98,91,110,46,105,110,100,101,120,93,46,104,97,108,102,101,100,103,101,115,46,112,117,115,104,40,111,41,44,105,125,102,117,110,99,116,105,111,110,32,95,98,40,116,44,110,44,101,41,123,118,97,114,32,114,61,91,110,44,101,93,59,114,101,116,117,114,110,32,114,46,108,101,102,116,61,116,44,114,125,102,117,110,99,116,105,111,110,32,98,98,40,116,44,110,44,101,44,114,41,123,116,91,48,93,124,124,116,91,49,93,63,116,46,108,101,102,116,61,61,61,101,63,116,91,49,93,61,114,58,116,91,48,93,61,114,58,40,116,91,48,93,61,114,44,116,46,108,101,102,116,61,110,44,116,46,114,105,103,104,116,61,101,41,125,102,117,110,99,116,105,111,110,32,109,98,40,116,44,110,44,101,44,114,44,105,41,123,118,97,114,32,111,44,97,61,116,91,48,93,44,117,61,116,91,49,93,44,99,61,97,91,48,93,44,102,61,97,91,49,93,44,115,61,48,44,108,61,49,44,104,61,117,91,48,93,45,99,44,100,61,117,91,49,93,45,102,59,105,102,40,111,61,110,45,99,44,104,124,124,33,40,111,62,48,41,41,123,105,102,40,111,47,61,104,44,104,60,48,41,123,105,102,40,111,60,115,41,114,101,116,117,114,110,59,111,60,108,38,38,40,108,61,111,41,125,101,108,115,101,32,105,102,40,104,62,48,41,123,105,102,40,111,62,108,41,114,101,116,117,114,110,59,111,62,115,38,38,40,115,61,111,41,125,105,102,40,111,61,114,45,99,44,104,124,124,33,40,111,60,48,41,41,123,105,102,40,111,47,61,104,44,104,60,48,41,123,105,102,40,111,62,108,41,114,101,116,117,114,110,59,111,62,115,38,38,40,115,61,111,41,125,101,108,115,101,32,105,102,40,104,62,48,41,123,105,102,40,111,60,115,41,114,101,116,117,114,110,59,111,60,108,38,38,40,108,61,111,41,125,105,102,40,111,61,101,45,102,44,100,124,124,33,40,111,62,48,41,41,123,105,102,40,111,47,61,100,44,100,60,48,41,123,105,102,40,111,60,115,41,114,101,116,117,114,110,59,111,60,108,38,38,40,108,61,111,41,125,101,108,115,101,32,105,102,40,100,62,48,41,123,105,102,40,111,62,108,41,114,101,116,117,114,110,59,111,62,115,38,38,40,115,61,111,41,125,105,102,40,111,61,105,45,102,44,100,124,124,33,40,111,60,48,41,41,123,105,102,40,111,47,61,100,44,100,60,48,41,123,105,102,40,111,62,108,41,114,101,116,117,114,110,59,111,62,115,38,38,40,115,61,111,41,125,101,108,115,101,32,105,102,40,100,62,48,41,123,105,102,40,111,60,115,41,114,101,116,117,114,110,59,111,60,108,38,38,40,108,61,111,41,125,114,101,116,117,114,110,33,40,115,62,48,124,124,108,60,49,41,124,124,40,115,62,48,38,38,40,116,91,48,93,61,91,99,43,115,42,104,44,102,43,115,42,100,93,41,44,108,60,49,38,38,40,116,91,49,93,61,91,99,43,108,42,104,44,102,43,108,42,100,93,41,44,33,48,41,125,125,125,125,125,102,117,110,99,116,105,111,110,32,120,98,40,116,44,110,44,101,44,114,44,105,41,123,118,97,114,32,111,61,116,91,49,93,59,105,102,40,111,41,114,101,116,117,114,110,33,48,59,118,97,114,32,97,44,117,44,99,61,116,91,48,93,44,102,61,116,46,108,101,102,116,44,115,61,116,46,114,105,103,104,116,44,108,61,102,91,48,93,44,104,61,102,91,49,93,44,100,61,115,91,48,93,44,112,61,115,91,49,93,44,118,61,40,108,43,100,41,47,50,44,103,61,40,104,43,112,41,47,50,59,105,102,40,112,61,61,61,104,41,123,105,102,40,118,60,110,124,124,118,62,61,114,41,114,101,116,117,114,110,59,105,102,40,108,62,100,41,123,105,102,40,99,41,123,105,102,40,99,91,49,93,62,61,105,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,118,44,101,93,59,111,61,91,118,44,105,93,125,101,108,115,101,123,105,102,40,99,41,123,105,102,40,99,91,49,93,60,101,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,118,44,105,93,59,111,61,91,118,44,101,93,125,125,101,108,115,101,32,105,102,40,117,61,103,45,40,97,61,40,108,45,100,41,47,40,112,45,104,41,41,42,118,44,97,60,45,49,124,124,97,62,49,41,105,102,40,108,62,100,41,123,105,102,40,99,41,123,105,102,40,99,91,49,93,62,61,105,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,40,101,45,117,41,47,97,44,101,93,59,111,61,91,40,105,45,117,41,47,97,44,105,93,125,101,108,115,101,123,105,102,40,99,41,123,105,102,40,99,91,49,93,60,101,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,40,105,45,117,41,47,97,44,105,93,59,111,61,91,40,101,45,117,41,47,97,44,101,93,125,101,108,115,101,32,105,102,40,104,60,112,41,123,105,102,40,99,41,123,105,102,40,99,91,48,93,62,61,114,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,110,44,97,42,110,43,117,93,59,111,61,91,114,44,97,42,114,43,117,93,125,101,108,115,101,123,105,102,40,99,41,123,105,102,40,99,91,48,93,60,110,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,114,44,97,42,114,43,117,93,59,111,61,91,110,44,97,42,110,43,117,93,125,114,101,116,117,114,110,32,116,91,48,93,61,99,44,116,91,49,93,61,111,44,33,48,125,102,117,110,99,116,105,111,110,32,119,98,40,116,44,110,41,123,118,97,114,32,101,61,116,46,115,105,116,101,44,114,61,110,46,108,101,102,116,44,105,61,110,46,114,105,103,104,116,59,114,101,116,117,114,110,32,101,61,61,61,105,38,38,40,105,61,114,44,114,61,101,41,44,105,63,77,97,116,104,46,97,116,97,110,50,40,105,91,49,93,45,114,91,49,93,44,105,91,48,93,45,114,91,48,93,41,58,40,101,61,61,61,114,63,40,114,61,110,91,49,93,44,105,61,110,91,48,93,41,58,40,114,61,110,91,48,93,44,105,61,110,91,49,93,41,44,77,97,116,104,46,97,116,97,110,50,40,114,91,48,93,45,105,91,48,93,44,105,91,49,93,45,114,91,49,93,41,41,125,102,117,110,99,116,105,111,110,32,77,98,40,116,44,110,41,123,114,101,116,117,114,110,32,110,91,43,40,110,46,108,101,102,116,33,61,61,116,46,115,105,116,101,41,93,125,102,117,110,99,116,105,111,110,32,78,98,40,116,44,110,41,123,114,101,116,117,114,110,32,110,91,43,40,110,46,108,101,102,116,61,61,61,116,46,115,105,116,101,41,93,125,88,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,78,95,44,97,114,101,97,69,110,100,58,78,95,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,112,111,105,110,116,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,58,40,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,41,125,125,44,90,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,116,48,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,50,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,87,95,40,116,104,105,115,44,116,104,105,115,46,95,116,48,44,36,95,40,116,104,105,115,44,116,104,105,115,46,95,116,48,41,41,125,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,49,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,78,97,78,59,105,102,40,110,61,43,110,44,40,116,61,43,116,41,33,61,61,116,104,105,115,46,95,120,49,124,124,110,33,61,61,116,104,105,115,46,95,121,49,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,44,87,95,40,116,104,105,115,44,36,95,40,116,104,105,115,44,101,61,71,95,40,116,104,105,115,44,116,44,110,41,41,44,101,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,87,95,40,116,104,105,115,44,116,104,105,115,46,95,116,48,44,101,61,71,95,40,116,104,105,115,44,116,44,110,41,41,125,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,110,44,116,104,105,115,46,95,116,48,61,101,125,125,125,44,40,81,95,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,90,95,46,112,114,111,116,111,116,121,112,101,41,41,46,112,111,105,110,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,90,95,46,112,114,111,116,111,116,121,112,101,46,112,111,105,110,116,46,99,97,108,108,40,116,104,105,115,44,110,44,116,41,125,44,75,95,46,112,114,111,116,111,116,121,112,101,61,123,109,111,118,101,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,110,44,116,41,125,44,99,108,111,115,101,80,97,116,104,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,125,44,108,105,110,101,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,110,44,116,41,125,44,98,101,122,105,101,114,67,117,114,118,101,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,44,111,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,110,44,116,44,114,44,101,44,111,44,105,41,125,125,44,74,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,61,91,93,44,116,104,105,115,46,95,121,61,91,93,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,120,44,110,61,116,104,105,115,46,95,121,44,101,61,116,46,108,101,110,103,116,104,59,105,102,40,101,41,105,102,40,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,91,48,93,44,110,91,48,93,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,91,48,93,44,110,91,48,93,41,44,50,61,61,61,101,41,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,91,49,93,44,110,91,49,93,41,59,101,108,115,101,32,102,111,114,40,118,97,114,32,114,61,116,98,40,116,41,44,105,61,116,98,40,110,41,44,111,61,48,44,97,61,49,59,97,60,101,59,43,43,111,44,43,43,97,41,116,104,105,115,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,114,91,48,93,91,111,93,44,105,91,48,93,91,111,93,44,114,91,49,93,91,111,93,44,105,91,49,93,91,111,93,44,116,91,97,93,44,110,91,97,93,41,59,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,49,61,61,61,101,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,44,116,104,105,115,46,95,120,61,116,104,105,115,46,95,121,61,110,117,108,108,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,95,120,46,112,117,115,104,40,43,116,41,44,116,104,105,115,46,95,121,46,112,117,115,104,40,43,110,41,125,125,44,110,98,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,61,116,104,105,115,46,95,121,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,48,60,116,104,105,115,46,95,116,38,38,116,104,105,115,46,95,116,60,49,38,38,50,61,61,61,116,104,105,115,46,95,112,111,105,110,116,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,44,116,104,105,115,46,95,121,41,44,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,49,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,62,61,48,38,38,40,116,104,105,115,46,95,116,61,49,45,116,104,105,115,46,95,116,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,41,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,100,101,102,97,117,108,116,58,105,102,40,116,104,105,115,46,95,116,60,61,48,41,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,44,110,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,59,101,108,115,101,123,118,97,114,32,101,61,116,104,105,115,46,95,120,42,40,49,45,116,104,105,115,46,95,116,41,43,116,42,116,104,105,115,46,95,116,59,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,101,44,116,104,105,115,46,95,121,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,101,44,110,41,125,125,116,104,105,115,46,95,120,61,116,44,116,104,105,115,46,95,121,61,110,125,125,44,104,98,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,104,98,44,105,110,115,101,114,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,59,105,102,40,116,41,123,105,102,40,110,46,80,61,116,44,110,46,78,61,116,46,78,44,116,46,78,38,38,40,116,46,78,46,80,61,110,41,44,116,46,78,61,110,44,116,46,82,41,123,102,111,114,40,116,61,116,46,82,59,116,46,76,59,41,116,61,116,46,76,59,116,46,76,61,110,125,101,108,115,101,32,116,46,82,61,110,59,101,61,116,125,101,108,115,101,32,116,104,105,115,46,95,63,40,116,61,103,98,40,116,104,105,115,46,95,41,44,110,46,80,61,110,117,108,108,44,110,46,78,61,116,44,116,46,80,61,116,46,76,61,110,44,101,61,116,41,58,40,110,46,80,61,110,46,78,61,110,117,108,108,44,116,104,105,115,46,95,61,110,44,101,61,110,117,108,108,41,59,102,111,114,40,110,46,76,61,110,46,82,61,110,117,108,108,44,110,46,85,61,101,44,110,46,67,61,33,48,44,116,61,110,59,101,38,38,101,46,67,59,41,101,61,61,61,40,114,61,101,46,85,41,46,76,63,40,105,61,114,46,82,41,38,38,105,46,67,63,40,101,46,67,61,105,46,67,61,33,49,44,114,46,67,61,33,48,44,116,61,114,41,58,40,116,61,61,61,101,46,82,38,38,40,112,98,40,116,104,105,115,44,101,41,44,101,61,40,116,61,101,41,46,85,41,44,101,46,67,61,33,49,44,114,46,67,61,33,48,44,118,98,40,116,104,105,115,44,114,41,41,58,40,105,61,114,46,76,41,38,38,105,46,67,63,40,101,46,67,61,105,46,67,61,33,49,44,114,46,67,61,33,48,44,116,61,114,41,58,40,116,61,61,61,101,46,76,38,38,40,118,98,40,116,104,105,115,44,101,41,44,101,61,40,116,61,101,41,46,85,41,44,101,46,67,61,33,49,44,114,46,67,61,33,48,44,112,98,40,116,104,105,115,44,114,41,41,44,101,61,116,46,85,59,116,104,105,115,46,95,46,67,61,33,49,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,78,38,38,40,116,46,78,46,80,61,116,46,80,41,44,116,46,80,38,38,40,116,46,80,46,78,61,116,46,78,41,44,116,46,78,61,116,46,80,61,110,117,108,108,59,118,97,114,32,110,44,101,44,114,44,105,61,116,46,85,44,111,61,116,46,76,44,97,61,116,46,82,59,105,102,40,101,61,111,63,97,63,103,98,40,97,41,58,111,58,97,44,105,63,105,46,76,61,61,61,116,63,105,46,76,61,101,58,105,46,82,61,101,58,116,104,105,115,46,95,61,101,44,111,38,38,97,63,40,114,61,101,46,67,44,101,46,67,61,116,46,67,44,101,46,76,61,111,44,111,46,85,61,101,44,101,33,61,61,97,63,40,105,61,101,46,85,44,101,46,85,61,116,46,85,44,116,61,101,46,82,44,105,46,76,61,116,44,101,46,82,61,97,44,97,46,85,61,101,41,58,40,101,46,85,61,105,44,105,61,101,44,116,61,101,46,82,41,41,58,40,114,61,116,46,67,44,116,61,101,41,44,116,38,38,40,116,46,85,61,105,41,44,33,114,41,105,102,40,116,38,38,116,46,67,41,116,46,67,61,33,49,59,101,108,115,101,123,100,111,123,105,102,40,116,61,61,61,116,104,105,115,46,95,41,98,114,101,97,107,59,105,102,40,116,61,61,61,105,46,76,41,123,105,102,40,40,110,61,105,46,82,41,46,67,38,38,40,110,46,67,61,33,49,44,105,46,67,61,33,48,44,112,98,40,116,104,105,115,44,105,41,44,110,61,105,46,82,41,44,110,46,76,38,38,110,46,76,46,67,124,124,110,46,82,38,38,110,46,82,46,67,41,123,110,46,82,38,38,110,46,82,46,67,124,124,40,110,46,76,46,67,61,33,49,44,110,46,67,61,33,48,44,118,98,40,116,104,105,115,44,110,41,44,110,61,105,46,82,41,44,110,46,67,61,105,46,67,44,105,46,67,61,110,46,82,46,67,61,33,49,44,112,98,40,116,104,105,115,44,105,41,44,116,61,116,104,105,115,46,95,59,98,114,101,97,107,125,125,101,108,115,101,32,105,102,40,40,110,61,105,46,76,41,46,67,38,38,40,110,46,67,61,33,49,44,105,46,67,61,33,48,44,118,98,40,116,104,105,115,44,105,41,44,110,61,105,46,76,41,44,110,46,76,38,38,110,46,76,46,67,124,124,110,46,82,38,38,110,46,82,46,67,41,123,110,46,76,38,38,110,46,76,46,67,124,124,40,110,46,82,46,67,61,33,49,44,110,46,67,61,33,48,44,112,98,40,116,104,105,115,44,110,41,44,110,61,105,46,76,41,44,110,46,67,61,105,46,67,44,105,46,67,61,110,46,76,46,67,61,33,49,44,118,98,40,116,104,105,115,44,105,41,44,116,61,116,104,105,115,46,95,59,98,114,101,97,107,125,110,46,67,61,33,48,44,116,61,105,44,105,61,105,46,85,125,119,104,105,108,101,40,33,116,46,67,41,59,116,38,38,40,116,46,67,61,33,49,41,125,125,125,59,118,97,114,32,84,98,44,65,98,61,91,93,59,102,117,110,99,116,105,111,110,32,83,98,40,41,123,100,98,40,116,104,105,115,41,44,116,104,105,115,46,120,61,116,104,105,115,46,121,61,116,104,105,115,46,97,114,99,61,116,104,105,115,46,115,105,116,101,61,116,104,105,115,46,99,121,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,107,98,40,116,41,123,118,97,114,32,110,61,116,46,80,44,101,61,116,46,78,59,105,102,40,110,38,38,101,41,123,118,97,114,32,114,61,110,46,115,105,116,101,44,105,61,116,46,115,105,116,101,44,111,61,101,46,115,105,116,101,59,105,102,40,114,33,61,61,111,41,123,118,97,114,32,97,61,105,91,48,93,44,117,61,105,91,49,93,44,99,61,114,91,48,93,45,97,44,102,61,114,91,49,93,45,117,44,115,61,111,91,48,93,45,97,44,108,61,111,91,49,93,45,117,44,104,61,50,42,40,99,42,108,45,102,42,115,41,59,105,102,40,33,40,104,62,61,45,72,98,41,41,123,118,97,114,32,100,61,99,42,99,43,102,42,102,44,112,61,115,42,115,43,108,42,108,44,118,61,40,108,42,100,45,102,42,112,41,47,104,44,103,61,40,99,42,112,45,115,42,100,41,47,104,44,121,61,65,98,46,112,111,112,40,41,124,124,110,101,119,32,83,98,59,121,46,97,114,99,61,116,44,121,46,115,105,116,101,61,105,44,121,46,120,61,118,43,97,44,121,46,121,61,40,121,46,99,121,61,103,43,117,41,43,77,97,116,104,46,115,113,114,116,40,118,42,118,43,103,42,103,41,44,116,46,99,105,114,99,108,101,61,121,59,102,111,114,40,118,97,114,32,95,61,110,117,108,108,44,98,61,70,98,46,95,59,98,59,41,105,102,40,121,46,121,60,98,46,121,124,124,121,46,121,61,61,61,98,46,121,38,38,121,46,120,60,61,98,46,120,41,123,105,102,40,33,98,46,76,41,123,95,61,98,46,80,59,98,114,101,97,107,125,98,61,98,46,76,125,101,108,115,101,123,105,102,40,33,98,46,82,41,123,95,61,98,59,98,114,101,97,107,125,98,61,98,46,82,125,70,98,46,105,110,115,101,114,116,40,95,44,121,41,44,95,124,124,40,84,98,61,121,41,125,125,125,125,102,117,110,99,116,105,111,110,32,69,98,40,116,41,123,118,97,114,32,110,61,116,46,99,105,114,99,108,101,59,110,38,38,40,110,46,80,124,124,40,84,98,61,110,46,78,41,44,70,98,46,114,101,109,111,118,101,40,110,41,44,65,98,46,112,117,115,104,40,110,41,44,100,98,40,110,41,44,116,46,99,105,114,99,108,101,61,110,117,108,108,41,125,118,97,114,32,67,98,61,91,93,59,102,117,110,99,116,105,111,110,32,80,98,40,41,123,100,98,40,116,104,105,115,41,44,116,104,105,115,46,101,100,103,101,61,116,104,105,115,46,115,105,116,101,61,116,104,105,115,46,99,105,114,99,108,101,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,122,98,40,116,41,123,118,97,114,32,110,61,67,98,46,112,111,112,40,41,124,124,110,101,119,32,80,98,59,114,101,116,117,114,110,32,110,46,115,105,116,101,61,116,44,110,125,102,117,110,99,116,105,111,110,32,82,98,40,116,41,123,69,98,40,116,41,44,79,98,46,114,101,109,111,118,101,40,116,41,44,67,98,46,112,117,115,104,40,116,41,44,100,98,40,116,41,125,102,117,110,99,116,105,111,110,32,68,98,40,116,41,123,118,97,114,32,110,61,116,46,99,105,114,99,108,101,44,101,61,110,46,120,44,114,61,110,46,99,121,44,105,61,91,101,44,114,93,44,111,61,116,46,80,44,97,61,116,46,78,44,117,61,91,116,93,59,82,98,40,116,41,59,102,111,114,40,118,97,114,32,99,61,111,59,99,46,99,105,114,99,108,101,38,38,77,97,116,104,46,97,98,115,40,101,45,99,46,99,105,114,99,108,101,46,120,41,60,73,98,38,38,77,97,116,104,46,97,98,115,40,114,45,99,46,99,105,114,99,108,101,46,99,121,41,60,73,98,59,41,111,61,99,46,80,44,117,46,117,110,115,104,105,102,116,40,99,41,44,82,98,40,99,41,44,99,61,111,59,117,46,117,110,115,104,105,102,116,40,99,41,44,69,98,40,99,41,59,102,111,114,40,118,97,114,32,102,61,97,59,102,46,99,105,114,99,108,101,38,38,77,97,116,104,46,97,98,115,40,101,45,102,46,99,105,114,99,108,101,46,120,41,60,73,98,38,38,77,97,116,104,46,97,98,115,40,114,45,102,46,99,105,114,99,108,101,46,99,121,41,60,73,98,59,41,97,61,102,46,78,44,117,46,112,117,115,104,40,102,41,44,82,98,40,102,41,44,102,61,97,59,117,46,112,117,115,104,40,102,41,44,69,98,40,102,41,59,118,97,114,32,115,44,108,61,117,46,108,101,110,103,116,104,59,102,111,114,40,115,61,49,59,115,60,108,59,43,43,115,41,102,61,117,91,115,93,44,99,61,117,91,115,45,49,93,44,98,98,40,102,46,101,100,103,101,44,99,46,115,105,116,101,44,102,46,115,105,116,101,44,105,41,59,99,61,117,91,48,93,44,40,102,61,117,91,108,45,49,93,41,46,101,100,103,101,61,121,98,40,99,46,115,105,116,101,44,102,46,115,105,116,101,44,110,117,108,108,44,105,41,44,107,98,40,99,41,44,107,98,40,102,41,125,102,117,110,99,116,105,111,110,32,113,98,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,44,105,44,111,61,116,91,48,93,44,97,61,116,91,49,93,44,117,61,79,98,46,95,59,117,59,41,105,102,40,40,114,61,76,98,40,117,44,97,41,45,111,41,62,73,98,41,117,61,117,46,76,59,101,108,115,101,123,105,102,40,33,40,40,105,61,111,45,85,98,40,117,44,97,41,41,62,73,98,41,41,123,114,62,45,73,98,63,40,110,61,117,46,80,44,101,61,117,41,58,105,62,45,73,98,63,40,110,61,117,44,101,61,117,46,78,41,58,110,61,101,61,117,59,98,114,101,97,107,125,105,102,40,33,117,46,82,41,123,110,61,117,59,98,114,101,97,107,125,117,61,117,46,82,125,33,102,117,110,99,116,105,111,110,40,116,41,123,66,98,91,116,46,105,110,100,101,120,93,61,123,115,105,116,101,58,116,44,104,97,108,102,101,100,103,101,115,58,91,93,125,125,40,116,41,59,118,97,114,32,99,61,122,98,40,116,41,59,105,102,40,79,98,46,105,110,115,101,114,116,40,110,44,99,41,44,110,124,124,101,41,123,105,102,40,110,61,61,61,101,41,114,101,116,117,114,110,32,69,98,40,110,41,44,101,61,122,98,40,110,46,115,105,116,101,41,44,79,98,46,105,110,115,101,114,116,40,99,44,101,41,44,99,46,101,100,103,101,61,101,46,101,100,103,101,61,121,98,40,110,46,115,105,116,101,44,99,46,115,105,116,101,41,44,107,98,40,110,41,44,118,111,105,100,32,107,98,40,101,41,59,105,102,40,101,41,123,69,98,40,110,41,44,69,98,40,101,41,59,118,97,114,32,102,61,110,46,115,105,116,101,44,115,61,102,91,48,93,44,108,61,102,91,49,93,44,104,61,116,91,48,93,45,115,44,100,61,116,91,49,93,45,108,44,112,61,101,46,115,105,116,101,44,118,61,112,91,48,93,45,115,44,103,61,112,91,49,93,45,108,44,121,61,50,42,40,104,42,103,45,100,42,118,41,44,95,61,104,42,104,43,100,42,100,44,98,61,118,42,118,43,103,42,103,44,109,61,91,40,103,42,95,45,100,42,98,41,47,121,43,115,44,40,104,42,98,45,118,42,95,41,47,121,43,108,93,59,98,98,40,101,46,101,100,103,101,44,102,44,112,44,109,41,44,99,46,101,100,103,101,61,121,98,40,102,44,116,44,110,117,108,108,44,109,41,44,101,46,101,100,103,101,61,121,98,40,116,44,112,44,110,117,108,108,44,109,41,44,107,98,40,110,41,44,107,98,40,101,41,125,101,108,115,101,32,99,46,101,100,103,101,61,121,98,40,110,46,115,105,116,101,44,99,46,115,105,116,101,41,125,125,102,117,110,99,116,105,111,110,32,76,98,40,116,44,110,41,123,118,97,114,32,101,61,116,46,115,105,116,101,44,114,61,101,91,48,93,44,105,61,101,91,49,93,44,111,61,105,45,110,59,105,102,40,33,111,41,114,101,116,117,114,110,32,114,59,118,97,114,32,97,61,116,46,80,59,105,102,40,33,97,41,114,101,116,117,114,110,45,49,47,48,59,118,97,114,32,117,61,40,101,61,97,46,115,105,116,101,41,91,48,93,44,99,61,101,91,49,93,44,102,61,99,45,110,59,105,102,40,33,102,41,114,101,116,117,114,110,32,117,59,118,97,114,32,115,61,117,45,114,44,108,61,49,47,111,45,49,47,102,44,104,61,115,47,102,59,114,101,116,117,114,110,32,108,63,40,45,104,43,77,97,116,104,46,115,113,114,116,40,104,42,104,45,50,42,108,42,40,115,42,115,47,40,45,50,42,102,41,45,99,43,102,47,50,43,105,45,111,47,50,41,41,41,47,108,43,114,58,40,114,43,117,41,47,50,125,102,117,110,99,116,105,111,110,32,85,98,40,116,44,110,41,123,118,97,114,32,101,61,116,46,78,59,105,102,40,101,41,114,101,116,117,114,110,32,76,98,40,101,44,110,41,59,118,97,114,32,114,61,116,46,115,105,116,101,59,114,101,116,117,114,110,32,114,91,49,93,61,61,61,110,63,114,91,48,93,58,49,47,48,125,118,97,114,32,79,98,44,66,98,44,70,98,44,89,98,44,73,98,61,49,101,45,54,44,72,98,61,49,101,45,49,50,59,102,117,110,99,116,105,111,110,32,106,98,40,116,44,110,44,101,41,123,114,101,116,117,114,110,40,116,91,48,93,45,101,91,48,93,41,42,40,110,91,49,93,45,116,91,49,93,41,45,40,116,91,48,93,45,110,91,48,93,41,42,40,101,91,49,93,45,116,91,49,93,41,125,102,117,110,99,116,105,111,110,32,88,98,40,116,44,110,41,123,114,101,116,117,114,110,32,110,91,49,93,45,116,91,49,93,124,124,110,91,48,93,45,116,91,48,93,125,102,117,110,99,116,105,111,110,32,86,98,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,44,111,61,116,46,115,111,114,116,40,88,98,41,46,112,111,112,40,41,59,102,111,114,40,89,98,61,91,93,44,66,98,61,110,101,119,32,65,114,114,97,121,40,116,46,108,101,110,103,116,104,41,44,79,98,61,110,101,119,32,104,98,44,70,98,61,110,101,119,32,104,98,59,59,41,105,102,40,105,61,84,98,44,111,38,38,40,33,105,124,124,111,91,49,93,60,105,46,121,124,124,111,91,49,93,61,61,61,105,46,121,38,38,111,91,48,93,60,105,46,120,41,41,111,91,48,93,61,61,61,101,38,38,111,91,49,93,61,61,61,114,124,124,40,113,98,40,111,41,44,101,61,111,91,48,93,44,114,61,111,91,49,93,41,44,111,61,116,46,112,111,112,40,41,59,101,108,115,101,123,105,102,40,33,105,41,98,114,101,97,107,59,68,98,40,105,46,97,114,99,41,125,105,102,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,44,110,44,101,44,114,44,105,61,48,44,111,61,66,98,46,108,101,110,103,116,104,59,105,60,111,59,43,43,105,41,105,102,40,40,116,61,66,98,91,105,93,41,38,38,40,114,61,40,110,61,116,46,104,97,108,102,101,100,103,101,115,41,46,108,101,110,103,116,104,41,41,123,118,97,114,32,97,61,110,101,119,32,65,114,114,97,121,40,114,41,44,117,61,110,101,119,32,65,114,114,97,121,40,114,41,59,102,111,114,40,101,61,48,59,101,60,114,59,43,43,101,41,97,91,101,93,61,101,44,117,91,101,93,61,119,98,40,116,44,89,98,91,110,91,101,93,93,41,59,102,111,114,40,97,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,117,91,110,93,45,117,91,116,93,125,41,44,101,61,48,59,101,60,114,59,43,43,101,41,117,91,101,93,61,110,91,97,91,101,93,93,59,102,111,114,40,101,61,48,59,101,60,114,59,43,43,101,41,110,91,101,93,61,117,91,101,93,125,125,40,41,44,110,41,123,118,97,114,32,97,61,43,110,91,48,93,91,48,93,44,117,61,43,110,91,48,93,91,49,93,44,99,61,43,110,91,49,93,91,48,93,44,102,61,43,110,91,49,93,91,49,93,59,33,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,102,111,114,40,118,97,114,32,105,44,111,61,89,98,46,108,101,110,103,116,104,59,111,45,45,59,41,120,98,40,105,61,89,98,91,111,93,44,116,44,110,44,101,44,114,41,38,38,109,98,40,105,44,116,44,110,44,101,44,114,41,38,38,40,77,97,116,104,46,97,98,115,40,105,91,48,93,91,48,93,45,105,91,49,93,91,48,93,41,62,73,98,124,124,77,97,116,104,46,97,98,115,40,105,91,48,93,91,49,93,45,105,91,49,93,91,49,93,41,62,73,98,41,124,124,100,101,108,101,116,101,32,89,98,91,111,93,125,40,97,44,117,44,99,44,102,41,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,118,97,114,32,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,44,104,44,100,44,112,44,118,44,103,61,66,98,46,108,101,110,103,116,104,44,121,61,33,48,59,102,111,114,40,105,61,48,59,105,60,103,59,43,43,105,41,105,102,40,111,61,66,98,91,105,93,41,123,102,111,114,40,97,61,111,46,115,105,116,101,44,117,61,40,99,61,111,46,104,97,108,102,101,100,103,101,115,41,46,108,101,110,103,116,104,59,117,45,45,59,41,89,98,91,99,91,117,93,93,124,124,99,46,115,112,108,105,99,101,40,117,44,49,41,59,102,111,114,40,117,61,48,44,102,61,99,46,108,101,110,103,116,104,59,117,60,102,59,41,112,61,40,100,61,78,98,40,111,44,89,98,91,99,91,117,93,93,41,41,91,48,93,44,118,61,100,91,49,93,44,108,61,40,115,61,77,98,40,111,44,89,98,91,99,91,43,43,117,37,102,93,93,41,41,91,48,93,44,104,61,115,91,49,93,44,40,77,97,116,104,46,97,98,115,40,112,45,108,41,62,73,98,124,124,77,97,116,104,46,97,98,115,40,118,45,104,41,62,73,98,41,38,38,40,99,46,115,112,108,105,99,101,40,117,44,48,44,89,98,46,112,117,115,104,40,95,98,40,97,44,100,44,77,97,116,104,46,97,98,115,40,112,45,116,41,60,73,98,38,38,114,45,118,62,73,98,63,91,116,44,77,97,116,104,46,97,98,115,40,108,45,116,41,60,73,98,63,104,58,114,93,58,77,97,116,104,46,97,98,115,40,118,45,114,41,60,73,98,38,38,101,45,112,62,73,98,63,91,77,97,116,104,46,97,98,115,40,104,45,114,41,60,73,98,63,108,58,101,44,114,93,58,77,97,116,104,46,97,98,115,40,112,45,101,41,60,73,98,38,38,118,45,110,62,73,98,63,91,101,44,77,97,116,104,46,97,98,115,40,108,45,101,41,60,73,98,63,104,58,110,93,58,77,97,116,104,46,97,98,115,40,118,45,110,41,60,73,98,38,38,112,45,116,62,73,98,63,91,77,97,116,104,46,97,98,115,40,104,45,110,41,60,73,98,63,108,58,116,44,110,93,58,110,117,108,108,41,41,45,49,41,44,43,43,102,41,59,102,38,38,40,121,61,33,49,41,125,105,102,40,121,41,123,118,97,114,32,95,44,98,44,109,44,120,61,49,47,48,59,102,111,114,40,105,61,48,44,121,61,110,117,108,108,59,105,60,103,59,43,43,105,41,40,111,61,66,98,91,105,93,41,38,38,40,109,61,40,95,61,40,97,61,111,46,115,105,116,101,41,91,48,93,45,116,41,42,95,43,40,98,61,97,91,49,93,45,110,41,42,98,41,60,120,38,38,40,120,61,109,44,121,61,111,41,59,105,102,40,121,41,123,118,97,114,32,119,61,91,116,44,110,93,44,77,61,91,116,44,114,93,44,78,61,91,101,44,114,93,44,84,61,91,101,44,110,93,59,121,46,104,97,108,102,101,100,103,101,115,46,112,117,115,104,40,89,98,46,112,117,115,104,40,95,98,40,97,61,121,46,115,105,116,101,44,119,44,77,41,41,45,49,44,89,98,46,112,117,115,104,40,95,98,40,97,44,77,44,78,41,41,45,49,44,89,98,46,112,117,115,104,40,95,98,40,97,44,78,44,84,41,41,45,49,44,89,98,46,112,117,115,104,40,95,98,40,97,44,84,44,119,41,41,45,49,41,125,125,102,111,114,40,105,61,48,59,105,60,103,59,43,43,105,41,40,111,61,66,98,91,105,93,41,38,38,40,111,46,104,97,108,102,101,100,103,101,115,46,108,101,110,103,116,104,124,124,100,101,108,101,116,101,32,66,98,91,105,93,41,125,40,97,44,117,44,99,44,102,41,125,116,104,105,115,46,101,100,103,101,115,61,89,98,44,116,104,105,115,46,99,101,108,108,115,61,66,98,44,79,98,61,70,98,61,89,98,61,66,98,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,71,98,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,36,98,40,116,44,110,44,101,41,123,116,104,105,115,46,116,97,114,103,101,116,61,116,44,116,104,105,115,46,116,121,112,101,61,110,44,116,104,105,115,46,116,114,97,110,115,102,111,114,109,61,101,125,102,117,110,99,116,105,111,110,32,87,98,40,116,44,110,44,101,41,123,116,104,105,115,46,107,61,116,44,116,104,105,115,46,120,61,110,44,116,104,105,115,46,121,61,101,125,86,98,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,86,98,44,112,111,108,121,103,111,110,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,101,100,103,101,115,59,114,101,116,117,114,110,32,116,104,105,115,46,99,101,108,108,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,61,110,46,104,97,108,102,101,100,103,101,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,77,98,40,110,44,116,91,101,93,41,125,41,59,114,101,116,117,114,110,32,101,46,100,97,116,97,61,110,46,115,105,116,101,46,100,97,116,97,44,101,125,41,125,44,116,114,105,97,110,103,108,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,44,110,61,116,104,105,115,46,101,100,103,101,115,59,114,101,116,117,114,110,32,116,104,105,115,46,99,101,108,108,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,101,44,114,41,123,105,102,40,111,61,40,105,61,101,46,104,97,108,102,101,100,103,101,115,41,46,108,101,110,103,116,104,41,102,111,114,40,118,97,114,32,105,44,111,44,97,44,117,61,101,46,115,105,116,101,44,99,61,45,49,44,102,61,110,91,105,91,111,45,49,93,93,44,115,61,102,46,108,101,102,116,61,61,61,117,63,102,46,114,105,103,104,116,58,102,46,108,101,102,116,59,43,43,99,60,111,59,41,97,61,115,44,115,61,40,102,61,110,91,105,91,99,93,93,41,46,108,101,102,116,61,61,61,117,63,102,46,114,105,103,104,116,58,102,46,108,101,102,116,44,97,38,38,115,38,38,114,60,97,46,105,110,100,101,120,38,38,114,60,115,46,105,110,100,101,120,38,38,106,98,40,117,44,97,44,115,41,60,48,38,38,116,46,112,117,115,104,40,91,117,46,100,97,116,97,44,97,46,100,97,116,97,44,115,46,100,97,116,97,93,41,125,41,44,116,125,44,108,105,110,107,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,100,103,101,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,114,105,103,104,116,125,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,123,115,111,117,114,99,101,58,116,46,108,101,102,116,46,100,97,116,97,44,116,97,114,103,101,116,58,116,46,114,105,103,104,116,46,100,97,116,97,125,125,41,125,44,102,105,110,100,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,102,111,114,40,118,97,114,32,114,44,105,44,111,61,116,104,105,115,44,97,61,111,46,95,102,111,117,110,100,124,124,48,44,117,61,111,46,99,101,108,108,115,46,108,101,110,103,116,104,59,33,40,105,61,111,46,99,101,108,108,115,91,97,93,41,59,41,105,102,40,43,43,97,62,61,117,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,99,61,116,45,105,46,115,105,116,101,91,48,93,44,102,61,110,45,105,46,115,105,116,101,91,49,93,44,115,61,99,42,99,43,102,42,102,59,100,111,123,105,61,111,46,99,101,108,108,115,91,114,61,97,93,44,97,61,110,117,108,108,44,105,46,104,97,108,102,101,100,103,101,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,111,46,101,100,103,101,115,91,101,93,44,117,61,114,46,108,101,102,116,59,105,102,40,117,33,61,61,105,46,115,105,116,101,38,38,117,124,124,40,117,61,114,46,114,105,103,104,116,41,41,123,118,97,114,32,99,61,116,45,117,91,48,93,44,102,61,110,45,117,91,49,93,44,108,61,99,42,99,43,102,42,102,59,108,60,115,38,38,40,115,61,108,44,97,61,117,46,105,110,100,101,120,41,125,125,41,125,119,104,105,108,101,40,110,117,108,108,33,61,61,97,41,59,114,101,116,117,114,110,32,111,46,95,102,111,117,110,100,61,114,44,110,117,108,108,61,61,101,124,124,115,60,61,101,42,101,63,105,46,115,105,116,101,58,110,117,108,108,125,125,44,87,98,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,87,98,44,115,99,97,108,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,61,61,61,116,63,116,104,105,115,58,110,101,119,32,87,98,40,116,104,105,115,46,107,42,116,44,116,104,105,115,46,120,44,116,104,105,115,46,121,41,125,44,116,114,97,110,115,108,97,116,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,48,61,61,61,116,38,48,61,61,61,110,63,116,104,105,115,58,110,101,119,32,87,98,40,116,104,105,115,46,107,44,116,104,105,115,46,120,43,116,104,105,115,46,107,42,116,44,116,104,105,115,46,121,43,116,104,105,115,46,107,42,110,41,125,44,97,112,112,108,121,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,91,116,91,48,93,42,116,104,105,115,46,107,43,116,104,105,115,46,120,44,116,91,49,93,42,116,104,105,115,46,107,43,116,104,105,115,46,121,93,125,44,97,112,112,108,121,88,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,42,116,104,105,115,46,107,43,116,104,105,115,46,120,125,44,97,112,112,108,121,89,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,42,116,104,105,115,46,107,43,116,104,105,115,46,121,125,44,105,110,118,101,114,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,91,40,116,91,48,93,45,116,104,105,115,46,120,41,47,116,104,105,115,46,107,44,40,116,91,49,93,45,116,104,105,115,46,121,41,47,116,104,105,115,46,107,93,125,44,105,110,118,101,114,116,88,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,45,116,104,105,115,46,120,41,47,116,104,105,115,46,107,125,44,105,110,118,101,114,116,89,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,45,116,104,105,115,46,121,41,47,116,104,105,115,46,107,125,44,114,101,115,99,97,108,101,88,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,99,111,112,121,40,41,46,100,111,109,97,105,110,40,116,46,114,97,110,103,101,40,41,46,109,97,112,40,116,104,105,115,46,105,110,118,101,114,116,88,44,116,104,105,115,41,46,109,97,112,40,116,46,105,110,118,101,114,116,44,116,41,41,125,44,114,101,115,99,97,108,101,89,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,99,111,112,121,40,41,46,100,111,109,97,105,110,40,116,46,114,97,110,103,101,40,41,46,109,97,112,40,116,104,105,115,46,105,110,118,101,114,116,89,44,116,104,105,115,41,46,109,97,112,40,116,46,105,110,118,101,114,116,44,116,41,41,125,44,116,111,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,116,114,97,110,115,108,97,116,101,40,34,43,116,104,105,115,46,120,43,34,44,34,43,116,104,105,115,46,121,43,34,41,32,115,99,97,108,101,40,34,43,116,104,105,115,46,107,43,34,41,34,125,125,59,118,97,114,32,90,98,61,110,101,119,32,87,98,40,49,44,48,44,48,41,59,102,117,110,99,116,105,111,110,32,81,98,40,116,41,123,102,111,114,40,59,33,116,46,95,95,122,111,111,109,59,41,105,102,40,33,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,41,114,101,116,117,114,110,32,90,98,59,114,101,116,117,114,110,32,116,46,95,95,122,111,111,109,125,102,117,110,99,116,105,111,110,32,75,98,40,41,123,116,46,101,118,101,110,116,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,74,98,40,41,123,116,46,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,101,118,101,110,116,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,116,109,40,41,123,114,101,116,117,114,110,33,116,46,101,118,101,110,116,46,99,116,114,108,75,101,121,38,38,33,116,46,101,118,101,110,116,46,98,117,116,116,111,110,125,102,117,110,99,116,105,111,110,32,110,109,40,41,123,118,97,114,32,116,61,116,104,105,115,59,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,83,86,71,69,108,101,109,101,110,116,63,40,116,61,116,46,111,119,110,101,114,83,86,71,69,108,101,109,101,110,116,124,124,116,41,46,104,97,115,65,116,116,114,105,98,117,116,101,40,34,118,105,101,119,66,111,120,34,41,63,91,91,40,116,61,116,46,118,105,101,119,66,111,120,46,98,97,115,101,86,97,108,41,46,120,44,116,46,121,93,44,91,116,46,120,43,116,46,119,105,100,116,104,44,116,46,121,43,116,46,104,101,105,103,104,116,93,93,58,91,91,48,44,48,93,44,91,116,46,119,105,100,116,104,46,98,97,115,101,86,97,108,46,118,97,108,117,101,44,116,46,104,101,105,103,104,116,46,98,97,115,101,86,97,108,46,118,97,108,117,101,93,93,58,91,91,48,44,48,93,44,91,116,46,99,108,105,101,110,116,87,105,100,116,104,44,116,46,99,108,105,101,110,116,72,101,105,103,104,116,93,93,125,102,117,110,99,116,105,111,110,32,101,109,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,95,122,111,111,109,124,124,90,98,125,102,117,110,99,116,105,111,110,32,114,109,40,41,123,114,101,116,117,114,110,45,116,46,101,118,101,110,116,46,100,101,108,116,97,89,42,40,49,61,61,61,116,46,101,118,101,110,116,46,100,101,108,116,97,77,111,100,101,63,46,48,53,58,116,46,101,118,101,110,116,46,100,101,108,116,97,77,111,100,101,63,49,58,46,48,48,50,41,125,102,117,110,99,116,105,111,110,32,105,109,40,41,123,114,101,116,117,114,110,32,110,97,118,105,103,97,116,111,114,46,109,97,120,84,111,117,99,104,80,111,105,110,116,115,124,124,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,111,109,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,105,110,118,101,114,116,88,40,110,91,48,93,91,48,93,41,45,101,91,48,93,91,48,93,44,105,61,116,46,105,110,118,101,114,116,88,40,110,91,49,93,91,48,93,41,45,101,91,49,93,91,48,93,44,111,61,116,46,105,110,118,101,114,116,89,40,110,91,48,93,91,49,93,41,45,101,91,48,93,91,49,93,44,97,61,116,46,105,110,118,101,114,116,89,40,110,91,49,93,91,49,93,41,45,101,91,49,93,91,49,93,59,114,101,116,117,114,110,32,116,46,116,114,97,110,115,108,97,116,101,40,105,62,114,63,40,114,43,105,41,47,50,58,77,97,116,104,46,109,105,110,40,48,44,114,41,124,124,77,97,116,104,46,109,97,120,40,48,44,105,41,44,97,62,111,63,40,111,43,97,41,47,50,58,77,97,116,104,46,109,105,110,40,48,44,111,41,124,124,77,97,116,104,46,109,97,120,40,48,44,97,41,41,125,81,98,46,112,114,111,116,111,116,121,112,101,61,87,98,46,112,114,111,116,111,116,121,112,101,44,116,46,70,111,114,109,97,116,83,112,101,99,105,102,105,101,114,61,66,97,44,116,46,97,99,116,105,118,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,61,116,46,95,95,116,114,97,110,115,105,116,105,111,110,59,105,102,40,105,41,102,111,114,40,114,32,105,110,32,110,61,110,117,108,108,61,61,110,63,110,117,108,108,58,110,43,34,34,44,105,41,105,102,40,40,101,61,105,91,114,93,41,46,115,116,97,116,101,62,120,114,38,38,101,46,110,97,109,101,61,61,61,110,41,114,101,116,117,114,110,32,110,101,119,32,85,114,40,91,91,116,93,93,44,121,105,44,110,44,43,114,41,59,114,101,116,117,114,110,32,110,117,108,108,125,44,116,46,97,114,99,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,82,121,44,110,61,68,121,44,101,61,109,121,40,48,41,44,114,61,110,117,108,108,44,105,61,113,121,44,111,61,76,121,44,97,61,85,121,44,117,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,99,40,41,123,118,97,114,32,99,44,102,44,115,61,43,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,108,61,43,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,104,61,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,45,67,121,44,100,61,111,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,45,67,121,44,112,61,120,121,40,100,45,104,41,44,118,61,100,62,104,59,105,102,40,117,124,124,40,117,61,99,61,110,111,40,41,41,44,108,60,115,38,38,40,102,61,108,44,108,61,115,44,115,61,102,41,44,108,62,107,121,41,105,102,40,112,62,80,121,45,107,121,41,117,46,109,111,118,101,84,111,40,108,42,77,121,40,104,41,44,108,42,65,121,40,104,41,41,44,117,46,97,114,99,40,48,44,48,44,108,44,104,44,100,44,33,118,41,44,115,62,107,121,38,38,40,117,46,109,111,118,101,84,111,40,115,42,77,121,40,100,41,44,115,42,65,121,40,100,41,41,44,117,46,97,114,99,40,48,44,48,44,115,44,100,44,104,44,118,41,41,59,101,108,115,101,123,118,97,114,32,103,44,121,44,95,61,104,44,98,61,100,44,109,61,104,44,120,61,100,44,119,61,112,44,77,61,112,44,78,61,97,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,47,50,44,84,61,78,62,107,121,38,38,40,114,63,43,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,83,121,40,115,42,115,43,108,42,108,41,41,44,65,61,84,121,40,120,121,40,108,45,115,41,47,50,44,43,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,44,83,61,65,44,107,61,65,59,105,102,40,84,62,107,121,41,123,118,97,114,32,69,61,122,121,40,84,47,115,42,65,121,40,78,41,41,44,67,61,122,121,40,84,47,108,42,65,121,40,78,41,41,59,40,119,45,61,50,42,69,41,62,107,121,63,40,109,43,61,69,42,61,118,63,49,58,45,49,44,120,45,61,69,41,58,40,119,61,48,44,109,61,120,61,40,104,43,100,41,47,50,41,44,40,77,45,61,50,42,67,41,62,107,121,63,40,95,43,61,67,42,61,118,63,49,58,45,49,44,98,45,61,67,41,58,40,77,61,48,44,95,61,98,61,40,104,43,100,41,47,50,41,125,118,97,114,32,80,61,108,42,77,121,40,95,41,44,122,61,108,42,65,121,40,95,41,44,82,61,115,42,77,121,40,120,41,44,68,61,115,42,65,121,40,120,41,59,105,102,40,65,62,107,121,41,123,118,97,114,32,113,44,76,61,108,42,77,121,40,98,41,44,85,61,108,42,65,121,40,98,41,44,79,61,115,42,77,121,40,109,41,44,66,61,115,42,65,121,40,109,41,59,105,102,40,112,60,69,121,38,38,40,113,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,44,111,44,97,44,117,41,123,118,97,114,32,99,61,101,45,116,44,102,61,114,45,110,44,115,61,97,45,105,44,108,61,117,45,111,44,104,61,108,42,99,45,115,42,102,59,105,102,40,33,40,104,42,104,60,107,121,41,41,114,101,116,117,114,110,91,116,43,40,104,61,40,115,42,40,110,45,111,41,45,108,42,40,116,45,105,41,41,47,104,41,42,99,44,110,43,104,42,102,93,125,40,80,44,122,44,79,44,66,44,76,44,85,44,82,44,68,41,41,41,123,118,97,114,32,70,61,80,45,113,91,48,93,44,89,61,122,45,113,91,49,93,44,73,61,76,45,113,91,48,93,44,72,61,85,45,113,91,49,93,44,106,61,49,47,65,121,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,62,49,63,48,58,116,60,45,49,63,69,121,58,77,97,116,104,46,97,99,111,115,40,116,41,125,40,40,70,42,73,43,89,42,72,41,47,40,83,121,40,70,42,70,43,89,42,89,41,42,83,121,40,73,42,73,43,72,42,72,41,41,41,47,50,41,44,88,61,83,121,40,113,91,48,93,42,113,91,48,93,43,113,91,49,93,42,113,91,49,93,41,59,83,61,84,121,40,65,44,40,115,45,88,41,47,40,106,45,49,41,41,44,107,61,84,121,40,65,44,40,108,45,88,41,47,40,106,43,49,41,41,125,125,77,62,107,121,63,107,62,107,121,63,40,103,61,79,121,40,79,44,66,44,80,44,122,44,108,44,107,44,118,41,44,121,61,79,121,40,76,44,85,44,82,44,68,44,108,44,107,44,118,41,44,117,46,109,111,118,101,84,111,40,103,46,99,120,43,103,46,120,48,49,44,103,46,99,121,43,103,46,121,48,49,41,44,107,60,65,63,117,46,97,114,99,40,103,46,99,120,44,103,46,99,121,44,107,44,119,121,40,103,46,121,48,49,44,103,46,120,48,49,41,44,119,121,40,121,46,121,48,49,44,121,46,120,48,49,41,44,33,118,41,58,40,117,46,97,114,99,40,103,46,99,120,44,103,46,99,121,44,107,44,119,121,40,103,46,121,48,49,44,103,46,120,48,49,41,44,119,121,40,103,46,121,49,49,44,103,46,120,49,49,41,44,33,118,41,44,117,46,97,114,99,40,48,44,48,44,108,44,119,121,40,103,46,99,121,43,103,46,121,49,49,44,103,46,99,120,43,103,46,120,49,49,41,44,119,121,40,121,46,99,121,43,121,46,121,49,49,44,121,46,99,120,43,121,46,120,49,49,41,44,33,118,41,44,117,46,97,114,99,40,121,46,99,120,44,121,46,99,121,44,107,44,119,121,40,121,46,121,49,49,44,121,46,120,49,49,41,44,119,121,40,121,46,121,48,49,44,121,46,120,48,49,41,44,33,118,41,41,41,58,40,117,46,109,111,118,101,84,111,40,80,44,122,41,44,117,46,97,114,99,40,48,44,48,44,108,44,95,44,98,44,33,118,41,41,58,117,46,109,111,118,101,84,111,40,80,44,122,41,44,115,62,107,121,38,38,119,62,107,121,63,83,62,107,121,63,40,103,61,79,121,40,82,44,68,44,76,44,85,44,115,44,45,83,44,118,41,44,121,61,79,121,40,80,44,122,44,79,44,66,44,115,44,45,83,44,118,41,44,117,46,108,105,110,101,84,111,40,103,46,99,120,43,103,46,120,48,49,44,103,46,99,121,43,103,46,121,48,49,41,44,83,60,65,63,117,46,97,114,99,40,103,46,99,120,44,103,46,99,121,44,83,44,119,121,40,103,46,121,48,49,44,103,46,120,48,49,41,44,119,121,40,121,46,121,48,49,44,121,46,120,48,49,41,44,33,118,41,58,40,117,46,97,114,99,40,103,46,99,120,44,103,46,99,121,44,83,44,119,121,40,103,46,121,48,49,44,103,46,120,48,49,41,44,119,121,40,103,46,121,49,49,44,103,46,120,49,49,41,44,33,118,41,44,117,46,97,114,99,40,48,44,48,44,115,44,119,121,40,103,46,99,121,43,103,46,121,49,49,44,103,46,99,120,43,103,46,120,49,49,41,44,119,121,40,121,46,99,121,43,121,46,121,49,49,44,121,46,99,120,43,121,46,120,49,49,41,44,118,41,44,117,46,97,114,99,40,121,46,99,120,44,121,46,99,121,44,83,44,119,121,40,121,46,121,49,49,44,121,46,120,49,49,41,44,119,121,40,121,46,121,48,49,44,121,46,120,48,49,41,44,33,118,41,41,41,58,117,46,97,114,99,40,48,44,48,44,115,44,120,44,109,44,118,41,58,117,46,108,105,110,101,84,111,40,82,44,68,41,125,101,108,115,101,32,117,46,109,111,118,101,84,111,40,48,44,48,41,59,105,102,40,117,46,99,108,111,115,101,80,97,116,104,40,41,44,99,41,114,101,116,117,114,110,32,117,61,110,117,108,108,44,99,43,34,34,124,124,110,117,108,108,125,114,101,116,117,114,110,32,99,46,99,101,110,116,114,111,105,100,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,40,43,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,43,32,43,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,47,50,44,114,61,40,43,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,43,32,43,111,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,47,50,45,69,121,47,50,59,114,101,116,117,114,110,91,77,121,40,114,41,42,101,44,65,121,40,114,41,42,101,93,125,44,99,46,105,110,110,101,114,82,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,109,121,40,43,110,41,44,99,41,58,116,125,44,99,46,111,117,116,101,114,82,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,110,125,44,99,46,99,111,114,110,101,114,82,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,101,125,44,99,46,112,97,100,82,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,110,117,108,108,61,61,116,63,110,117,108,108,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,114,125,44,99,46,115,116,97,114,116,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,105,125,44,99,46,101,110,100,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,111,125,44,99,46,112,97,100,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,97,125,44,99,46,99,111,110,116,101,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,110,117,108,108,61,61,116,63,110,117,108,108,58,116,44,99,41,58,117,125,44,99,125,44,116,46,97,114,101,97,61,106,121,44,116,46,97,114,101,97,82,97,100,105,97,108,61,75,121,44,116,46,97,115,99,101,110,100,105,110,103,61,110,44,116,46,97,117,116,111,84,121,112,101,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,32,105,110,32,116,41,123,118,97,114,32,101,44,114,44,105,61,116,91,110,93,46,116,114,105,109,40,41,59,105,102,40,105,41,105,102,40,34,116,114,117,101,34,61,61,61,105,41,105,61,33,48,59,101,108,115,101,32,105,102,40,34,102,97,108,115,101,34,61,61,61,105,41,105,61,33,49,59,101,108,115,101,32,105,102,40,34,78,97,78,34,61,61,61,105,41,105,61,78,97,78,59,101,108,115,101,32,105,102,40,105,115,78,97,78,40,101,61,43,105,41,41,123,105,102,40,33,40,114,61,105,46,109,97,116,99,104,40,47,94,40,91,45,43,93,92,100,123,50,125,41,63,92,100,123,52,125,40,45,92,100,123,50,125,40,45,92,100,123,50,125,41,63,41,63,40,84,92,100,123,50,125,58,92,100,123,50,125,40,58,92,100,123,50,125,40,92,46,92,100,123,51,125,41,63,41,63,40,90,124,91,45,43,93,92,100,123,50,125,58,92,100,123,50,125,41,63,41,63,36,47,41,41,41,99,111,110,116,105,110,117,101,59,114,97,38,38,114,91,52,93,38,38,33,114,91,55,93,38,38,40,105,61,105,46,114,101,112,108,97,99,101,40,47,45,47,103,44,34,47,34,41,46,114,101,112,108,97,99,101,40,47,84,47,44,34,32,34,41,41,44,105,61,110,101,119,32,68,97,116,101,40,105,41,125,101,108,115,101,32,105,61,101,59,101,108,115,101,32,105,61,110,117,108,108,59,116,91,110,93,61,105,125,114,101,116,117,114,110,32,116,125,44,116,46,97,120,105,115,66,111,116,116,111,109,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,70,40,68,44,116,41,125,44,116,46,97,120,105,115,76,101,102,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,70,40,113,44,116,41,125,44,116,46,97,120,105,115,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,70,40,82,44,116,41,125,44,116,46,97,120,105,115,84,111,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,70,40,122,44,116,41,125,44,116,46,98,105,115,101,99,116,61,105,44,116,46,98,105,115,101,99,116,76,101,102,116,61,111,44,116,46,98,105,115,101,99,116,82,105,103,104,116,61,105,44,116,46,98,105,115,101,99,116,111,114,61,101,44,116,46,98,108,111,98,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,101,116,99,104,40,116,44,110,41,46,116,104,101,110,40,105,97,41,125,44,116,46,98,114,117,115,104,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,105,40,67,105,41,125,44,116,46,98,114,117,115,104,83,101,108,101,99,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,46,95,95,98,114,117,115,104,59,114,101,116,117,114,110,32,110,63,110,46,100,105,109,46,111,117,116,112,117,116,40,110,46,115,101,108,101,99,116,105,111,110,41,58,110,117,108,108,125,44,116,46,98,114,117,115,104,88,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,105,40,107,105,41,125,44,116,46,98,114,117,115,104,89,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,105,40,69,105,41,125,44,116,46,98,117,102,102,101,114,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,101,116,99,104,40,116,44,110,41,46,116,104,101,110,40,111,97,41,125,44,116,46,99,104,111,114,100,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,48,44,110,61,110,117,108,108,44,101,61,110,117,108,108,44,114,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,105,40,105,41,123,118,97,114,32,111,44,97,44,117,44,99,44,102,44,115,44,108,61,105,46,108,101,110,103,116,104,44,104,61,91,93,44,100,61,103,40,108,41,44,112,61,91,93,44,118,61,91,93,44,121,61,118,46,103,114,111,117,112,115,61,110,101,119,32,65,114,114,97,121,40,108,41,44,95,61,110,101,119,32,65,114,114,97,121,40,108,42,108,41,59,102,111,114,40,111,61,48,44,102,61,45,49,59,43,43,102,60,108,59,41,123,102,111,114,40,97,61,48,44,115,61,45,49,59,43,43,115,60,108,59,41,97,43,61,105,91,102,93,91,115,93,59,104,46,112,117,115,104,40,97,41,44,112,46,112,117,115,104,40,103,40,108,41,41,44,111,43,61,97,125,102,111,114,40,110,38,38,100,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,110,40,104,91,116,93,44,104,91,101,93,41,125,41,44,101,38,38,112,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,101,116,117,114,110,32,101,40,105,91,110,93,91,116,93,44,105,91,110,93,91,114,93,41,125,41,125,41,44,99,61,40,111,61,71,105,40,48,44,86,105,45,116,42,108,41,47,111,41,63,116,58,86,105,47,108,44,97,61,48,44,102,61,45,49,59,43,43,102,60,108,59,41,123,102,111,114,40,117,61,97,44,115,61,45,49,59,43,43,115,60,108,59,41,123,118,97,114,32,98,61,100,91,102,93,44,109,61,112,91,98,93,91,115,93,44,120,61,105,91,98,93,91,109,93,44,119,61,97,44,77,61,97,43,61,120,42,111,59,95,91,109,42,108,43,98,93,61,123,105,110,100,101,120,58,98,44,115,117,98,105,110,100,101,120,58,109,44,115,116,97,114,116,65,110,103,108,101,58,119,44,101,110,100,65,110,103,108,101,58,77,44,118,97,108,117,101,58,120,125,125,121,91,98,93,61,123,105,110,100,101,120,58,98,44,115,116,97,114,116,65,110,103,108,101,58,117,44,101,110,100,65,110,103,108,101,58,97,44,118,97,108,117,101,58,104,91,98,93,125,44,97,43,61,99,125,102,111,114,40,102,61,45,49,59,43,43,102,60,108,59,41,102,111,114,40,115,61,102,45,49,59,43,43,115,60,108,59,41,123,118,97,114,32,78,61,95,91,115,42,108,43,102,93,44,84,61,95,91,102,42,108,43,115,93,59,40,78,46,118,97,108,117,101,124,124,84,46,118,97,108,117,101,41,38,38,118,46,112,117,115,104,40,78,46,118,97,108,117,101,60,84,46,118,97,108,117,101,63,123,115,111,117,114,99,101,58,84,44,116,97,114,103,101,116,58,78,125,58,123,115,111,117,114,99,101,58,78,44,116,97,114,103,101,116,58,84,125,41,125,114,101,116,117,114,110,32,114,63,118,46,115,111,114,116,40,114,41,58,118,125,114,101,116,117,114,110,32,105,46,112,97,100,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,71,105,40,48,44,110,41,44,105,41,58,116,125,44,105,46,115,111,114,116,71,114,111,117,112,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,116,44,105,41,58,110,125,44,105,46,115,111,114,116,83,117,98,103,114,111,117,112,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,116,44,105,41,58,101,125,44,105,46,115,111,114,116,67,104,111,114,100,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,117,108,108,61,61,116,63,114,61,110,117,108,108,58,40,114,61,36,105,40,116,41,41,46,95,61,116,44,105,41,58,114,38,38,114,46,95,125,44,105,125,44,116,46,99,108,105,101,110,116,80,111,105,110,116,61,79,116,44,116,46,99,108,117,115,116,101,114,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,78,108,44,110,61,49,44,101,61,49,44,114,61,33,49,59,102,117,110,99,116,105,111,110,32,105,40,105,41,123,118,97,114,32,111,44,97,61,48,59,105,46,101,97,99,104,65,102,116,101,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,61,110,46,99,104,105,108,100,114,101,110,59,101,63,40,110,46,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,114,101,100,117,99,101,40,84,108,44,48,41,47,116,46,108,101,110,103,116,104,125,40,101,41,44,110,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,43,116,46,114,101,100,117,99,101,40,65,108,44,48,41,125,40,101,41,41,58,40,110,46,120,61,111,63,97,43,61,116,40,110,44,111,41,58,48,44,110,46,121,61,48,44,111,61,110,41,125,41,59,118,97,114,32,117,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,59,110,61,116,46,99,104,105,108,100,114,101,110,59,41,116,61,110,91,48,93,59,114,101,116,117,114,110,32,116,125,40,105,41,44,99,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,59,110,61,116,46,99,104,105,108,100,114,101,110,59,41,116,61,110,91,110,46,108,101,110,103,116,104,45,49,93,59,114,101,116,117,114,110,32,116,125,40,105,41,44,102,61,117,46,120,45,116,40,117,44,99,41,47,50,44,115,61,99,46,120,43,116,40,99,44,117,41,47,50,59,114,101,116,117,114,110,32,105,46,101,97,99,104,65,102,116,101,114,40,114,63,102,117,110,99,116,105,111,110,40,116,41,123,116,46,120,61,40,116,46,120,45,105,46,120,41,42,110,44,116,46,121,61,40,105,46,121,45,116,46,121,41,42,101,125,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,120,61,40,116,46,120,45,102,41,47,40,115,45,102,41,42,110,44,116,46,121,61,40,49,45,40,105,46,121,63,116,46,121,47,105,46,121,58,49,41,41,42,101,125,41,125,114,101,116,117,114,110,32,105,46,115,101,112,97,114,97,116,105,111,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,110,44,105,41,58,116,125,44,105,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,33,49,44,110,61,43,116,91,48,93,44,101,61,43,116,91,49,93,44,105,41,58,114,63,110,117,108,108,58,91,110,44,101,93,125,44,105,46,110,111,100,101,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,33,48,44,110,61,43,116,91,48,93,44,101,61,43,116,91,49,93,44,105,41,58,114,63,91,110,44,101,93,58,110,117,108,108,125,44,105,125,44,116,46,99,111,108,111,114,61,112,110,44,116,46,99,111,110,116,111,117,114,68,101,110,115,105,116,121,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,107,111,44,110,61,69,111,44,101,61,67,111,44,114,61,57,54,48,44,105,61,53,48,48,44,111,61,50,48,44,97,61,50,44,117,61,51,42,111,44,99,61,114,43,50,42,117,62,62,97,44,102,61,105,43,50,42,117,62,62,97,44,115,61,98,111,40,50,48,41,59,102,117,110,99,116,105,111,110,32,108,40,114,41,123,118,97,114,32,105,61,110,101,119,32,70,108,111,97,116,51,50,65,114,114,97,121,40,99,42,102,41,44,108,61,110,101,119,32,70,108,111,97,116,51,50,65,114,114,97,121,40,99,42,102,41,59,114,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,114,44,111,44,115,41,123,118,97,114,32,108,61,43,116,40,114,44,111,44,115,41,43,117,62,62,97,44,104,61,43,110,40,114,44,111,44,115,41,43,117,62,62,97,44,100,61,43,101,40,114,44,111,44,115,41,59,108,62,61,48,38,38,108,60,99,38,38,104,62,61,48,38,38,104,60,102,38,38,40,105,91,108,43,104,42,99,93,43,61,100,41,125,41,44,65,111,40,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,105,125,44,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,108,125,44,111,62,62,97,41,44,83,111,40,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,108,125,44,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,105,125,44,111,62,62,97,41,44,65,111,40,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,105,125,44,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,108,125,44,111,62,62,97,41,44,83,111,40,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,108,125,44,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,105,125,44,111,62,62,97,41,44,65,111,40,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,105,125,44,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,108,125,44,111,62,62,97,41,44,83,111,40,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,108,125,44,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,105,125,44,111,62,62,97,41,59,118,97,114,32,100,61,115,40,105,41,59,105,102,40,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,100,41,41,123,118,97,114,32,112,61,84,40,105,41,59,100,61,119,40,48,44,112,44,100,41,44,40,100,61,103,40,48,44,77,97,116,104,46,102,108,111,111,114,40,112,47,100,41,42,100,44,100,41,41,46,115,104,105,102,116,40,41,125,114,101,116,117,114,110,32,84,111,40,41,46,116,104,114,101,115,104,111,108,100,115,40,100,41,46,115,105,122,101,40,91,99,44,102,93,41,40,105,41,46,109,97,112,40,104,41,125,102,117,110,99,116,105,111,110,32,104,40,116,41,123,114,101,116,117,114,110,32,116,46,118,97,108,117,101,42,61,77,97,116,104,46,112,111,119,40,50,44,45,50,42,97,41,44,116,46,99,111,111,114,100,105,110,97,116,101,115,46,102,111,114,69,97,99,104,40,100,41,44,116,125,102,117,110,99,116,105,111,110,32,100,40,116,41,123,116,46,102,111,114,69,97,99,104,40,112,41,125,102,117,110,99,116,105,111,110,32,112,40,116,41,123,116,46,102,111,114,69,97,99,104,40,118,41,125,102,117,110,99,116,105,111,110,32,118,40,116,41,123,116,91,48,93,61,116,91,48,93,42,77,97,116,104,46,112,111,119,40,50,44,97,41,45,117,44,116,91,49,93,61,116,91,49,93,42,77,97,116,104,46,112,111,119,40,50,44,97,41,45,117,125,102,117,110,99,116,105,111,110,32,121,40,41,123,114,101,116,117,114,110,32,99,61,114,43,50,42,40,117,61,51,42,111,41,62,62,97,44,102,61,105,43,50,42,117,62,62,97,44,108,125,114,101,116,117,114,110,32,108,46,120,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,98,111,40,43,110,41,44,108,41,58,116,125,44,108,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,98,111,40,43,116,41,44,108,41,58,110,125,44,108,46,119,101,105,103,104,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,98,111,40,43,116,41,44,108,41,58,101,125,44,108,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,91,114,44,105,93,59,118,97,114,32,110,61,77,97,116,104,46,99,101,105,108,40,116,91,48,93,41,44,101,61,77,97,116,104,46,99,101,105,108,40,116,91,49,93,41,59,105,102,40,33,40,110,62,61,48,124,124,110,62,61,48,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,110,118,97,108,105,100,32,115,105,122,101,34,41,59,114,101,116,117,114,110,32,114,61,110,44,105,61,101,44,121,40,41,125,44,108,46,99,101,108,108,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,49,60,60,97,59,105,102,40,33,40,40,116,61,43,116,41,62,61,49,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,110,118,97,108,105,100,32,99,101,108,108,32,115,105,122,101,34,41,59,114,101,116,117,114,110,32,97,61,77,97,116,104,46,102,108,111,111,114,40,77,97,116,104,46,108,111,103,40,116,41,47,77,97,116,104,46,76,78,50,41,44,121,40,41,125,44,108,46,116,104,114,101,115,104,111,108,100,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,115,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,98,111,40,121,111,46,99,97,108,108,40,116,41,41,58,98,111,40,116,41,44,108,41,58,115,125,44,108,46,98,97,110,100,119,105,100,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,77,97,116,104,46,115,113,114,116,40,111,42,40,111,43,49,41,41,59,105,102,40,33,40,40,116,61,43,116,41,62,61,48,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,110,118,97,108,105,100,32,98,97,110,100,119,105,100,116,104,34,41,59,114,101,116,117,114,110,32,111,61,77,97,116,104,46,114,111,117,110,100,40,40,77,97,116,104,46,115,113,114,116,40,52,42,116,42,116,43,49,41,45,49,41,47,50,41,44,121,40,41,125,44,108,125,44,116,46,99,111,110,116,111,117,114,115,61,84,111,44,116,46,99,114,101,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,82,116,40,90,40,116,41,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,41,41,125,44,116,46,99,114,101,97,116,111,114,61,90,44,116,46,99,114,111,115,115,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,44,117,44,99,61,116,46,108,101,110,103,116,104,44,102,61,110,46,108,101,110,103,116,104,44,115,61,110,101,119,32,65,114,114,97,121,40,99,42,102,41,59,102,111,114,40,110,117,108,108,61,61,101,38,38,40,101,61,97,41,44,114,61,111,61,48,59,114,60,99,59,43,43,114,41,102,111,114,40,117,61,116,91,114,93,44,105,61,48,59,105,60,102,59,43,43,105,44,43,43,111,41,115,91,111,93,61,101,40,117,44,110,91,105,93,41,59,114,101,116,117,114,110,32,115,125,44,116,46,99,115,118,61,102,97,44,116,46,99,115,118,70,111,114,109,97,116,61,106,111,44,116,46,99,115,118,70,111,114,109,97,116,66,111,100,121,61,88,111,44,116,46,99,115,118,70,111,114,109,97,116,82,111,119,61,71,111,44,116,46,99,115,118,70,111,114,109,97,116,82,111,119,115,61,86,111,44,116,46,99,115,118,70,111,114,109,97,116,86,97,108,117,101,61,36,111,44,116,46,99,115,118,80,97,114,115,101,61,73,111,44,116,46,99,115,118,80,97,114,115,101,82,111,119,115,61,72,111,44,116,46,99,117,98,101,104,101,108,105,120,61,101,101,44,116,46,99,117,114,118,101,66,97,115,105,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,65,95,40,116,41,125,44,116,46,99,117,114,118,101,66,97,115,105,115,67,108,111,115,101,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,83,95,40,116,41,125,44,116,46,99,117,114,118,101,66,97,115,105,115,79,112,101,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,107,95,40,116,41,125,44,116,46,99,117,114,118,101,66,117,110,100,108,101,61,67,95,44,116,46,99,117,114,118,101,67,97,114,100,105,110,97,108,61,82,95,44,116,46,99,117,114,118,101,67,97,114,100,105,110,97,108,67,108,111,115,101,100,61,113,95,44,116,46,99,117,114,118,101,67,97,114,100,105,110,97,108,79,112,101,110,61,85,95,44,116,46,99,117,114,118,101,67,97,116,109,117,108,108,82,111,109,61,70,95,44,116,46,99,117,114,118,101,67,97,116,109,117,108,108,82,111,109,67,108,111,115,101,100,61,73,95,44,116,46,99,117,114,118,101,67,97,116,109,117,108,108,82,111,109,79,112,101,110,61,106,95,44,116,46,99,117,114,118,101,76,105,110,101,97,114,61,70,121,44,116,46,99,117,114,118,101,76,105,110,101,97,114,67,108,111,115,101,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,88,95,40,116,41,125,44,116,46,99,117,114,118,101,77,111,110,111,116,111,110,101,88,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,90,95,40,116,41,125,44,116,46,99,117,114,118,101,77,111,110,111,116,111,110,101,89,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,81,95,40,116,41,125,44,116,46,99,117,114,118,101,78,97,116,117,114,97,108,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,74,95,40,116,41,125,44,116,46,99,117,114,118,101,83,116,101,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,110,98,40,116,44,46,53,41,125,44,116,46,99,117,114,118,101,83,116,101,112,65,102,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,110,98,40,116,44,49,41,125,44,116,46,99,117,114,118,101,83,116,101,112,66,101,102,111,114,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,110,98,40,116,44,48,41,125,44,116,46,99,117,115,116,111,109,69,118,101,110,116,61,107,116,44,116,46,100,101,115,99,101,110,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,60,116,63,45,49,58,110,62,116,63,49,58,110,62,61,116,63,48,58,78,97,78,125,44,116,46,100,101,118,105,97,116,105,111,110,61,102,44,116,46,100,105,115,112,97,116,99,104,61,73,44,116,46,100,114,97,103,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,44,101,44,114,44,105,44,111,61,71,116,44,97,61,36,116,44,117,61,87,116,44,99,61,90,116,44,102,61,123,125,44,115,61,73,40,34,115,116,97,114,116,34,44,34,100,114,97,103,34,44,34,101,110,100,34,41,44,108,61,48,44,104,61,48,59,102,117,110,99,116,105,111,110,32,100,40,116,41,123,116,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,100,114,97,103,34,44,112,41,46,102,105,108,116,101,114,40,99,41,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,100,114,97,103,34,44,121,41,46,111,110,40,34,116,111,117,99,104,109,111,118,101,46,100,114,97,103,34,44,95,41,46,111,110,40,34,116,111,117,99,104,101,110,100,46,100,114,97,103,32,116,111,117,99,104,99,97,110,99,101,108,46,100,114,97,103,34,44,98,41,46,115,116,121,108,101,40,34,116,111,117,99,104,45,97,99,116,105,111,110,34,44,34,110,111,110,101,34,41,46,115,116,121,108,101,40,34,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,34,44,34,114,103,98,97,40,48,44,48,44,48,44,48,41,34,41,125,102,117,110,99,116,105,111,110,32,112,40,41,123,105,102,40,33,105,38,38,111,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,123,118,97,114,32,117,61,109,40,34,109,111,117,115,101,34,44,97,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,66,116,44,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,117,38,38,40,82,116,40,116,46,101,118,101,110,116,46,118,105,101,119,41,46,111,110,40,34,109,111,117,115,101,109,111,118,101,46,100,114,97,103,34,44,118,44,33,48,41,46,111,110,40,34,109,111,117,115,101,117,112,46,100,114,97,103,34,44,103,44,33,48,41,44,72,116,40,116,46,101,118,101,110,116,46,118,105,101,119,41,44,89,116,40,41,44,114,61,33,49,44,110,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,88,44,101,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,89,44,117,40,34,115,116,97,114,116,34,41,41,125,125,102,117,110,99,116,105,111,110,32,118,40,41,123,105,102,40,73,116,40,41,44,33,114,41,123,118,97,114,32,105,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,88,45,110,44,111,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,89,45,101,59,114,61,105,42,105,43,111,42,111,62,104,125,102,46,109,111,117,115,101,40,34,100,114,97,103,34,41,125,102,117,110,99,116,105,111,110,32,103,40,41,123,82,116,40,116,46,101,118,101,110,116,46,118,105,101,119,41,46,111,110,40,34,109,111,117,115,101,109,111,118,101,46,100,114,97,103,32,109,111,117,115,101,117,112,46,100,114,97,103,34,44,110,117,108,108,41,44,106,116,40,116,46,101,118,101,110,116,46,118,105,101,119,44,114,41,44,73,116,40,41,44,102,46,109,111,117,115,101,40,34,101,110,100,34,41,125,102,117,110,99,116,105,111,110,32,121,40,41,123,105,102,40,111,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,123,118,97,114,32,110,44,101,44,114,61,116,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,44,105,61,97,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,117,61,114,46,108,101,110,103,116,104,59,102,111,114,40,110,61,48,59,110,60,117,59,43,43,110,41,40,101,61,109,40,114,91,110,93,46,105,100,101,110,116,105,102,105,101,114,44,105,44,70,116,44,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,38,38,40,89,116,40,41,44,101,40,34,115,116,97,114,116,34,41,41,125,125,102,117,110,99,116,105,111,110,32,95,40,41,123,118,97,114,32,110,44,101,44,114,61,116,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,44,105,61,114,46,108,101,110,103,116,104,59,102,111,114,40,110,61,48,59,110,60,105,59,43,43,110,41,40,101,61,102,91,114,91,110,93,46,105,100,101,110,116,105,102,105,101,114,93,41,38,38,40,73,116,40,41,44,101,40,34,100,114,97,103,34,41,41,125,102,117,110,99,116,105,111,110,32,98,40,41,123,118,97,114,32,110,44,101,44,114,61,116,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,44,111,61,114,46,108,101,110,103,116,104,59,102,111,114,40,105,38,38,99,108,101,97,114,84,105,109,101,111,117,116,40,105,41,44,105,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,105,61,110,117,108,108,125,44,53,48,48,41,44,110,61,48,59,110,60,111,59,43,43,110,41,40,101,61,102,91,114,91,110,93,46,105,100,101,110,116,105,102,105,101,114,93,41,38,38,40,89,116,40,41,44,101,40,34,101,110,100,34,41,41,125,102,117,110,99,116,105,111,110,32,109,40,110,44,101,44,114,44,105,44,111,41,123,118,97,114,32,97,44,99,44,104,44,112,61,114,40,101,44,110,41,44,118,61,115,46,99,111,112,121,40,41,59,105,102,40,107,116,40,110,101,119,32,86,116,40,100,44,34,98,101,102,111,114,101,115,116,97,114,116,34,44,97,44,110,44,108,44,112,91,48,93,44,112,91,49,93,44,48,44,48,44,118,41,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,40,116,46,101,118,101,110,116,46,115,117,98,106,101,99,116,61,97,61,117,46,97,112,112,108,121,40,105,44,111,41,41,38,38,40,99,61,97,46,120,45,112,91,48,93,124,124,48,44,104,61,97,46,121,45,112,91,49,93,124,124,48,44,33,48,41,125,41,41,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,116,40,117,41,123,118,97,114,32,115,44,103,61,112,59,115,119,105,116,99,104,40,117,41,123,99,97,115,101,34,115,116,97,114,116,34,58,102,91,110,93,61,116,44,115,61,108,43,43,59,98,114,101,97,107,59,99,97,115,101,34,101,110,100,34,58,100,101,108,101,116,101,32,102,91,110,93,44,45,45,108,59,99,97,115,101,34,100,114,97,103,34,58,112,61,114,40,101,44,110,41,44,115,61,108,125,107,116,40,110,101,119,32,86,116,40,100,44,117,44,97,44,110,44,115,44,112,91,48,93,43,99,44,112,91,49,93,43,104,44,112,91,48,93,45,103,91,48,93,44,112,91,49,93,45,103,91,49,93,44,118,41,44,118,46,97,112,112,108,121,44,118,44,91,117,44,105,44,111,93,41,125,125,114,101,116,117,114,110,32,100,46,102,105,108,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,88,116,40,33,33,116,41,44,100,41,58,111,125,44,100,46,99,111,110,116,97,105,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,88,116,40,116,41,44,100,41,58,97,125,44,100,46,115,117,98,106,101,99,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,88,116,40,116,41,44,100,41,58,117,125,44,100,46,116,111,117,99,104,97,98,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,88,116,40,33,33,116,41,44,100,41,58,99,125,44,100,46,111,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,115,46,111,110,46,97,112,112,108,121,40,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,116,61,61,61,115,63,100,58,116,125,44,100,46,99,108,105,99,107,68,105,115,116,97,110,99,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,104,61,40,116,61,43,116,41,42,116,44,100,41,58,77,97,116,104,46,115,113,114,116,40,104,41,125,44,100,125,44,116,46,100,114,97,103,68,105,115,97,98,108,101,61,72,116,44,116,46,100,114,97,103,69,110,97,98,108,101,61,106,116,44,116,46,100,115,118,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,51,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,38,38,40,114,61,101,44,101,61,118,111,105,100,32,48,41,59,118,97,114,32,105,61,70,111,40,116,41,59,114,101,116,117,114,110,32,117,97,40,110,44,101,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,46,112,97,114,115,101,40,116,44,114,41,125,41,125,44,116,46,100,115,118,70,111,114,109,97,116,61,70,111,44,116,46,101,97,115,101,66,97,99,107,61,115,105,44,116,46,101,97,115,101,66,97,99,107,73,110,61,99,105,44,116,46,101,97,115,101,66,97,99,107,73,110,79,117,116,61,115,105,44,116,46,101,97,115,101,66,97,99,107,79,117,116,61,102,105,44,116,46,101,97,115,101,66,111,117,110,99,101,61,117,105,44,116,46,101,97,115,101,66,111,117,110,99,101,73,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,45,117,105,40,49,45,116,41,125,44,116,46,101,97,115,101,66,111,117,110,99,101,73,110,79,117,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,40,116,42,61,50,41,60,61,49,63,49,45,117,105,40,49,45,116,41,58,117,105,40,116,45,49,41,43,49,41,47,50,125,44,116,46,101,97,115,101,66,111,117,110,99,101,79,117,116,61,117,105,44,116,46,101,97,115,101,67,105,114,99,108,101,61,90,114,44,116,46,101,97,115,101,67,105,114,99,108,101,73,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,45,77,97,116,104,46,115,113,114,116,40,49,45,116,42,116,41,125,44,116,46,101,97,115,101,67,105,114,99,108,101,73,110,79,117,116,61,90,114,44,116,46,101,97,115,101,67,105,114,99,108,101,79,117,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,115,113,114,116,40,49,45,32,45,45,116,42,116,41,125,44,116,46,101,97,115,101,67,117,98,105,99,61,73,114,44,116,46,101,97,115,101,67,117,98,105,99,73,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,42,116,42,116,125,44,116,46,101,97,115,101,67,117,98,105,99,73,110,79,117,116,61,73,114,44,116,46,101,97,115,101,67,117,98,105,99,79,117,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,45,45,116,42,116,42,116,43,49,125,44,116,46,101,97,115,101,69,108,97,115,116,105,99,61,100,105,44,116,46,101,97,115,101,69,108,97,115,116,105,99,73,110,61,104,105,44,116,46,101,97,115,101,69,108,97,115,116,105,99,73,110,79,117,116,61,112,105,44,116,46,101,97,115,101,69,108,97,115,116,105,99,79,117,116,61,100,105,44,116,46,101,97,115,101,69,120,112,61,87,114,44,116,46,101,97,115,101,69,120,112,73,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,112,111,119,40,50,44,49,48,42,116,45,49,48,41,125,44,116,46,101,97,115,101,69,120,112,73,110,79,117,116,61,87,114,44,116,46,101,97,115,101,69,120,112,79,117,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,45,77,97,116,104,46,112,111,119,40,50,44,45,49,48,42,116,41,125,44,116,46,101,97,115,101,76,105,110,101,97,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,43,116,125,44,116,46,101,97,115,101,80,111,108,121,61,88,114,44,116,46,101,97,115,101,80,111,108,121,73,110,61,72,114,44,116,46,101,97,115,101,80,111,108,121,73,110,79,117,116,61,88,114,44,116,46,101,97,115,101,80,111,108,121,79,117,116,61,106,114,44,116,46,101,97,115,101,81,117,97,100,61,89,114,44,116,46,101,97,115,101,81,117,97,100,73,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,42,116,125,44,116,46,101,97,115,101,81,117,97,100,73,110,79,117,116,61,89,114,44,116,46,101,97,115,101,81,117,97,100,79,117,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,42,40,50,45,116,41,125,44,116,46,101,97,115,101,83,105,110,61,36,114,44,116,46,101,97,115,101,83,105,110,73,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,45,77,97,116,104,46,99,111,115,40,116,42,71,114,41,125,44,116,46,101,97,115,101,83,105,110,73,110,79,117,116,61,36,114,44,116,46,101,97,115,101,83,105,110,79,117,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,115,105,110,40,116,42,71,114,41,125,44,116,46,101,110,116,114,105,101,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,91,93,59,102,111,114,40,118,97,114,32,101,32,105,110,32,116,41,110,46,112,117,115,104,40,123,107,101,121,58,101,44,118,97,108,117,101,58,116,91,101,93,125,41,59,114,101,116,117,114,110,32,110,125,44,116,46,101,120,116,101,110,116,61,115,44,116,46,102,111,114,99,101,67,101,110,116,101,114,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,59,102,117,110,99,116,105,111,110,32,114,40,41,123,118,97,114,32,114,44,105,44,111,61,101,46,108,101,110,103,116,104,44,97,61,48,44,117,61,48,59,102,111,114,40,114,61,48,59,114,60,111,59,43,43,114,41,97,43,61,40,105,61,101,91,114,93,41,46,120,44,117,43,61,105,46,121,59,102,111,114,40,97,61,97,47,111,45,116,44,117,61,117,47,111,45,110,44,114,61,48,59,114,60,111,59,43,43,114,41,40,105,61,101,91,114,93,41,46,120,45,61,97,44,105,46,121,45,61,117,125,114,101,116,117,114,110,32,110,117,108,108,61,61,116,38,38,40,116,61,48,41,44,110,117,108,108,61,61,110,38,38,40,110,61,48,41,44,114,46,105,110,105,116,105,97,108,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,101,61,116,125,44,114,46,120,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,43,110,44,114,41,58,116,125,44,114,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,43,116,44,114,41,58,110,125,44,114,125,44,116,46,102,111,114,99,101,67,111,108,108,105,100,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,61,49,44,105,61,49,59,102,117,110,99,116,105,111,110,32,111,40,41,123,102,111,114,40,118,97,114,32,116,44,111,44,117,44,99,44,102,44,115,44,108,44,104,61,110,46,108,101,110,103,116,104,44,100,61,48,59,100,60,105,59,43,43,100,41,102,111,114,40,111,61,119,97,40,110,44,65,97,44,83,97,41,46,118,105,115,105,116,65,102,116,101,114,40,97,41,44,116,61,48,59,116,60,104,59,43,43,116,41,117,61,110,91,116,93,44,115,61,101,91,117,46,105,110,100,101,120,93,44,108,61,115,42,115,44,99,61,117,46,120,43,117,46,118,120,44,102,61,117,46,121,43,117,46,118,121,44,111,46,118,105,115,105,116,40,112,41,59,102,117,110,99,116,105,111,110,32,112,40,116,44,110,44,101,44,105,44,111,41,123,118,97,114,32,97,61,116,46,100,97,116,97,44,104,61,116,46,114,44,100,61,115,43,104,59,105,102,40,33,97,41,114,101,116,117,114,110,32,110,62,99,43,100,124,124,105,60,99,45,100,124,124,101,62,102,43,100,124,124,111,60,102,45,100,59,105,102,40,97,46,105,110,100,101,120,62,117,46,105,110,100,101,120,41,123,118,97,114,32,112,61,99,45,97,46,120,45,97,46,118,120,44,118,61,102,45,97,46,121,45,97,46,118,121,44,103,61,112,42,112,43,118,42,118,59,103,60,100,42,100,38,38,40,48,61,61,61,112,38,38,40,103,43,61,40,112,61,121,97,40,41,41,42,112,41,44,48,61,61,61,118,38,38,40,103,43,61,40,118,61,121,97,40,41,41,42,118,41,44,103,61,40,100,45,40,103,61,77,97,116,104,46,115,113,114,116,40,103,41,41,41,47,103,42,114,44,117,46,118,120,43,61,40,112,42,61,103,41,42,40,100,61,40,104,42,61,104,41,47,40,108,43,104,41,41,44,117,46,118,121,43,61,40,118,42,61,103,41,42,100,44,97,46,118,120,45,61,112,42,40,100,61,49,45,100,41,44,97,46,118,121,45,61,118,42,100,41,125,125,125,102,117,110,99,116,105,111,110,32,97,40,116,41,123,105,102,40,116,46,100,97,116,97,41,114,101,116,117,114,110,32,116,46,114,61,101,91,116,46,100,97,116,97,46,105,110,100,101,120,93,59,102,111,114,40,118,97,114,32,110,61,116,46,114,61,48,59,110,60,52,59,43,43,110,41,116,91,110,93,38,38,116,91,110,93,46,114,62,116,46,114,38,38,40,116,46,114,61,116,91,110,93,46,114,41,125,102,117,110,99,116,105,111,110,32,117,40,41,123,105,102,40,110,41,123,118,97,114,32,114,44,105,44,111,61,110,46,108,101,110,103,116,104,59,102,111,114,40,101,61,110,101,119,32,65,114,114,97,121,40,111,41,44,114,61,48,59,114,60,111,59,43,43,114,41,105,61,110,91,114,93,44,101,91,105,46,105,110,100,101,120,93,61,43,116,40,105,44,114,44,110,41,125,125,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,103,97,40,110,117,108,108,61,61,116,63,49,58,43,116,41,41,44,111,46,105,110,105,116,105,97,108,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,110,61,116,44,117,40,41,125,44,111,46,105,116,101,114,97,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,43,116,44,111,41,58,105,125,44,111,46,115,116,114,101,110,103,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,43,116,44,111,41,58,114,125,44,111,46,114,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,103,97,40,43,110,41,44,117,40,41,44,111,41,58,116,125,44,111,125,44,116,46,102,111,114,99,101,76,105,110,107,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,44,111,44,97,61,107,97,44,117,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,47,77,97,116,104,46,109,105,110,40,105,91,116,46,115,111,117,114,99,101,46,105,110,100,101,120,93,44,105,91,116,46,116,97,114,103,101,116,46,105,110,100,101,120,93,41,125,44,99,61,103,97,40,51,48,41,44,102,61,49,59,102,117,110,99,116,105,111,110,32,115,40,114,41,123,102,111,114,40,118,97,114,32,105,61,48,44,97,61,116,46,108,101,110,103,116,104,59,105,60,102,59,43,43,105,41,102,111,114,40,118,97,114,32,117,44,99,44,115,44,108,44,104,44,100,44,112,44,118,61,48,59,118,60,97,59,43,43,118,41,99,61,40,117,61,116,91,118,93,41,46,115,111,117,114,99,101,44,108,61,40,115,61,117,46,116,97,114,103,101,116,41,46,120,43,115,46,118,120,45,99,46,120,45,99,46,118,120,124,124,121,97,40,41,44,104,61,115,46,121,43,115,46,118,121,45,99,46,121,45,99,46,118,121,124,124,121,97,40,41,44,108,42,61,100,61,40,40,100,61,77,97,116,104,46,115,113,114,116,40,108,42,108,43,104,42,104,41,41,45,101,91,118,93,41,47,100,42,114,42,110,91,118,93,44,104,42,61,100,44,115,46,118,120,45,61,108,42,40,112,61,111,91,118,93,41,44,115,46,118,121,45,61,104,42,112,44,99,46,118,120,43,61,108,42,40,112,61,49,45,112,41,44,99,46,118,121,43,61,104,42,112,125,102,117,110,99,116,105,111,110,32,108,40,41,123,105,102,40,114,41,123,118,97,114,32,117,44,99,44,102,61,114,46,108,101,110,103,116,104,44,115,61,116,46,108,101,110,103,116,104,44,108,61,99,111,40,114,44,97,41,59,102,111,114,40,117,61,48,44,105,61,110,101,119,32,65,114,114,97,121,40,102,41,59,117,60,115,59,43,43,117,41,40,99,61,116,91,117,93,41,46,105,110,100,101,120,61,117,44,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,99,46,115,111,117,114,99,101,38,38,40,99,46,115,111,117,114,99,101,61,69,97,40,108,44,99,46,115,111,117,114,99,101,41,41,44,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,99,46,116,97,114,103,101,116,38,38,40,99,46,116,97,114,103,101,116,61,69,97,40,108,44,99,46,116,97,114,103,101,116,41,41,44,105,91,99,46,115,111,117,114,99,101,46,105,110,100,101,120,93,61,40,105,91,99,46,115,111,117,114,99,101,46,105,110,100,101,120,93,124,124,48,41,43,49,44,105,91,99,46,116,97,114,103,101,116,46,105,110,100,101,120,93,61,40,105,91,99,46,116,97,114,103,101,116,46,105,110,100,101,120,93,124,124,48,41,43,49,59,102,111,114,40,117,61,48,44,111,61,110,101,119,32,65,114,114,97,121,40,115,41,59,117,60,115,59,43,43,117,41,99,61,116,91,117,93,44,111,91,117,93,61,105,91,99,46,115,111,117,114,99,101,46,105,110,100,101,120,93,47,40,105,91,99,46,115,111,117,114,99,101,46,105,110,100,101,120,93,43,105,91,99,46,116,97,114,103,101,116,46,105,110,100,101,120,93,41,59,110,61,110,101,119,32,65,114,114,97,121,40,115,41,44,104,40,41,44,101,61,110,101,119,32,65,114,114,97,121,40,115,41,44,100,40,41,125,125,102,117,110,99,116,105,111,110,32,104,40,41,123,105,102,40,114,41,102,111,114,40,118,97,114,32,101,61,48,44,105,61,116,46,108,101,110,103,116,104,59,101,60,105,59,43,43,101,41,110,91,101,93,61,43,117,40,116,91,101,93,44,101,44,116,41,125,102,117,110,99,116,105,111,110,32,100,40,41,123,105,102,40,114,41,102,111,114,40,118,97,114,32,110,61,48,44,105,61,116,46,108,101,110,103,116,104,59,110,60,105,59,43,43,110,41,101,91,110,93,61,43,99,40,116,91,110,93,44,110,44,116,41,125,114,101,116,117,114,110,32,110,117,108,108,61,61,116,38,38,40,116,61,91,93,41,44,115,46,105,110,105,116,105,97,108,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,61,116,44,108,40,41,125,44,115,46,108,105,110,107,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,110,44,108,40,41,44,115,41,58,116,125,44,115,46,105,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,116,44,115,41,58,97,125,44,115,46,105,116,101,114,97,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,102,61,43,116,44,115,41,58,102,125,44,115,46,115,116,114,101,110,103,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,103,97,40,43,116,41,44,104,40,41,44,115,41,58,117,125,44,115,46,100,105,115,116,97,110,99,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,103,97,40,43,116,41,44,100,40,41,44,115,41,58,99,125,44,115,125,44,116,46,102,111,114,99,101,77,97,110,121,66,111,100,121,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,44,114,44,105,61,103,97,40,45,51,48,41,44,111,61,49,44,97,61,49,47,48,44,117,61,46,56,49,59,102,117,110,99,116,105,111,110,32,99,40,114,41,123,118,97,114,32,105,44,111,61,116,46,108,101,110,103,116,104,44,97,61,119,97,40,116,44,67,97,44,80,97,41,46,118,105,115,105,116,65,102,116,101,114,40,115,41,59,102,111,114,40,101,61,114,44,105,61,48,59,105,60,111,59,43,43,105,41,110,61,116,91,105,93,44,97,46,118,105,115,105,116,40,108,41,125,102,117,110,99,116,105,111,110,32,102,40,41,123,105,102,40,116,41,123,118,97,114,32,110,44,101,44,111,61,116,46,108,101,110,103,116,104,59,102,111,114,40,114,61,110,101,119,32,65,114,114,97,121,40,111,41,44,110,61,48,59,110,60,111,59,43,43,110,41,101,61,116,91,110,93,44,114,91,101,46,105,110,100,101,120,93,61,43,105,40,101,44,110,44,116,41,125,125,102,117,110,99,116,105,111,110,32,115,40,116,41,123,118,97,114,32,110,44,101,44,105,44,111,44,97,44,117,61,48,44,99,61,48,59,105,102,40,116,46,108,101,110,103,116,104,41,123,102,111,114,40,105,61,111,61,97,61,48,59,97,60,52,59,43,43,97,41,40,110,61,116,91,97,93,41,38,38,40,101,61,77,97,116,104,46,97,98,115,40,110,46,118,97,108,117,101,41,41,38,38,40,117,43,61,110,46,118,97,108,117,101,44,99,43,61,101,44,105,43,61,101,42,110,46,120,44,111,43,61,101,42,110,46,121,41,59,116,46,120,61,105,47,99,44,116,46,121,61,111,47,99,125,101,108,115,101,123,40,110,61,116,41,46,120,61,110,46,100,97,116,97,46,120,44,110,46,121,61,110,46,100,97,116,97,46,121,59,100,111,123,117,43,61,114,91,110,46,100,97,116,97,46,105,110,100,101,120,93,125,119,104,105,108,101,40,110,61,110,46,110,101,120,116,41,125,116,46,118,97,108,117,101,61,117,125,102,117,110,99,116,105,111,110,32,108,40,116,44,105,44,99,44,102,41,123,105,102,40,33,116,46,118,97,108,117,101,41,114,101,116,117,114,110,33,48,59,118,97,114,32,115,61,116,46,120,45,110,46,120,44,108,61,116,46,121,45,110,46,121,44,104,61,102,45,105,44,100,61,115,42,115,43,108,42,108,59,105,102,40,104,42,104,47,117,60,100,41,114,101,116,117,114,110,32,100,60,97,38,38,40,48,61,61,61,115,38,38,40,100,43,61,40,115,61,121,97,40,41,41,42,115,41,44,48,61,61,61,108,38,38,40,100,43,61,40,108,61,121,97,40,41,41,42,108,41,44,100,60,111,38,38,40,100,61,77,97,116,104,46,115,113,114,116,40,111,42,100,41,41,44,110,46,118,120,43,61,115,42,116,46,118,97,108,117,101,42,101,47,100,44,110,46,118,121,43,61,108,42,116,46,118,97,108,117,101,42,101,47,100,41,44,33,48,59,105,102,40,33,40,116,46,108,101,110,103,116,104,124,124,100,62,61,97,41,41,123,40,116,46,100,97,116,97,33,61,61,110,124,124,116,46,110,101,120,116,41,38,38,40,48,61,61,61,115,38,38,40,100,43,61,40,115,61,121,97,40,41,41,42,115,41,44,48,61,61,61,108,38,38,40,100,43,61,40,108,61,121,97,40,41,41,42,108,41,44,100,60,111,38,38,40,100,61,77,97,116,104,46,115,113,114,116,40,111,42,100,41,41,41,59,100,111,123,116,46,100,97,116,97,33,61,61,110,38,38,40,104,61,114,91,116,46,100,97,116,97,46,105,110,100,101,120,93,42,101,47,100,44,110,46,118,120,43,61,115,42,104,44,110,46,118,121,43,61,108,42,104,41,125,119,104,105,108,101,40,116,61,116,46,110,101,120,116,41,125,125,114,101,116,117,114,110,32,99,46,105,110,105,116,105,97,108,105,122,101,61,102,117,110,99,116,105,111,110,40,110,41,123,116,61,110,44,102,40,41,125,44,99,46,115,116,114,101,110,103,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,103,97,40,43,116,41,44,102,40,41,44,99,41,58,105,125,44,99,46,100,105,115,116,97,110,99,101,77,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,116,42,116,44,99,41,58,77,97,116,104,46,115,113,114,116,40,111,41,125,44,99,46,100,105,115,116,97,110,99,101,77,97,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,116,42,116,44,99,41,58,77,97,116,104,46,115,113,114,116,40,97,41,125,44,99,46,116,104,101,116,97,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,116,42,116,44,99,41,58,77,97,116,104,46,115,113,114,116,40,117,41,125,44,99,125,44,116,46,102,111,114,99,101,82,97,100,105,97,108,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,44,97,61,103,97,40,46,49,41,59,102,117,110,99,116,105,111,110,32,117,40,116,41,123,102,111,114,40,118,97,114,32,97,61,48,44,117,61,114,46,108,101,110,103,116,104,59,97,60,117,59,43,43,97,41,123,118,97,114,32,99,61,114,91,97,93,44,102,61,99,46,120,45,110,124,124,49,101,45,54,44,115,61,99,46,121,45,101,124,124,49,101,45,54,44,108,61,77,97,116,104,46,115,113,114,116,40,102,42,102,43,115,42,115,41,44,104,61,40,111,91,97,93,45,108,41,42,105,91,97,93,42,116,47,108,59,99,46,118,120,43,61,102,42,104,44,99,46,118,121,43,61,115,42,104,125,125,102,117,110,99,116,105,111,110,32,99,40,41,123,105,102,40,114,41,123,118,97,114,32,110,44,101,61,114,46,108,101,110,103,116,104,59,102,111,114,40,105,61,110,101,119,32,65,114,114,97,121,40,101,41,44,111,61,110,101,119,32,65,114,114,97,121,40,101,41,44,110,61,48,59,110,60,101,59,43,43,110,41,111,91,110,93,61,43,116,40,114,91,110,93,44,110,44,114,41,44,105,91,110,93,61,105,115,78,97,78,40,111,91,110,93,41,63,48,58,43,97,40,114,91,110,93,44,110,44,114,41,125,125,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,103,97,40,43,116,41,41,44,110,117,108,108,61,61,110,38,38,40,110,61,48,41,44,110,117,108,108,61,61,101,38,38,40,101,61,48,41,44,117,46,105,110,105,116,105,97,108,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,61,116,44,99,40,41,125,44,117,46,115,116,114,101,110,103,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,103,97,40,43,116,41,44,99,40,41,44,117,41,58,97,125,44,117,46,114,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,103,97,40,43,110,41,44,99,40,41,44,117,41,58,116,125,44,117,46,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,43,116,44,117,41,58,110,125,44,117,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,43,116,44,117,41,58,101,125,44,117,125,44,116,46,102,111,114,99,101,83,105,109,117,108,97,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,61,49,44,114,61,46,48,48,49,44,105,61,49,45,77,97,116,104,46,112,111,119,40,114,44,49,47,51,48,48,41,44,111,61,48,44,97,61,46,54,44,117,61,99,111,40,41,44,99,61,104,114,40,115,41,44,102,61,73,40,34,116,105,99,107,34,44,34,101,110,100,34,41,59,102,117,110,99,116,105,111,110,32,115,40,41,123,108,40,41,44,102,46,99,97,108,108,40,34,116,105,99,107,34,44,110,41,44,101,60,114,38,38,40,99,46,115,116,111,112,40,41,44,102,46,99,97,108,108,40,34,101,110,100,34,44,110,41,41,125,102,117,110,99,116,105,111,110,32,108,40,114,41,123,118,97,114,32,99,44,102,44,115,61,116,46,108,101,110,103,116,104,59,118,111,105,100,32,48,61,61,61,114,38,38,40,114,61,49,41,59,102,111,114,40,118,97,114,32,108,61,48,59,108,60,114,59,43,43,108,41,102,111,114,40,101,43,61,40,111,45,101,41,42,105,44,117,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,116,40,101,41,125,41,44,99,61,48,59,99,60,115,59,43,43,99,41,110,117,108,108,61,61,40,102,61,116,91,99,93,41,46,102,120,63,102,46,120,43,61,102,46,118,120,42,61,97,58,40,102,46,120,61,102,46,102,120,44,102,46,118,120,61,48,41,44,110,117,108,108,61,61,102,46,102,121,63,102,46,121,43,61,102,46,118,121,42,61,97,58,40,102,46,121,61,102,46,102,121,44,102,46,118,121,61,48,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,104,40,41,123,102,111,114,40,118,97,114,32,110,44,101,61,48,44,114,61,116,46,108,101,110,103,116,104,59,101,60,114,59,43,43,101,41,123,105,102,40,40,110,61,116,91,101,93,41,46,105,110,100,101,120,61,101,44,110,117,108,108,33,61,110,46,102,120,38,38,40,110,46,120,61,110,46,102,120,41,44,110,117,108,108,33,61,110,46,102,121,38,38,40,110,46,121,61,110,46,102,121,41,44,105,115,78,97,78,40,110,46,120,41,124,124,105,115,78,97,78,40,110,46,121,41,41,123,118,97,114,32,105,61,122,97,42,77,97,116,104,46,115,113,114,116,40,101,41,44,111,61,101,42,82,97,59,110,46,120,61,105,42,77,97,116,104,46,99,111,115,40,111,41,44,110,46,121,61,105,42,77,97,116,104,46,115,105,110,40,111,41,125,40,105,115,78,97,78,40,110,46,118,120,41,124,124,105,115,78,97,78,40,110,46,118,121,41,41,38,38,40,110,46,118,120,61,110,46,118,121,61,48,41,125,125,102,117,110,99,116,105,111,110,32,100,40,110,41,123,114,101,116,117,114,110,32,110,46,105,110,105,116,105,97,108,105,122,101,38,38,110,46,105,110,105,116,105,97,108,105,122,101,40,116,41,44,110,125,114,101,116,117,114,110,32,110,117,108,108,61,61,116,38,38,40,116,61,91,93,41,44,104,40,41,44,110,61,123,116,105,99,107,58,108,44,114,101,115,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,114,101,115,116,97,114,116,40,115,41,44,110,125,44,115,116,111,112,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,115,116,111,112,40,41,44,110,125,44,110,111,100,101,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,101,44,104,40,41,44,117,46,101,97,99,104,40,100,41,44,110,41,58,116,125,44,97,108,112,104,97,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,43,116,44,110,41,58,101,125,44,97,108,112,104,97,77,105,110,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,43,116,44,110,41,58,114,125,44,97,108,112,104,97,68,101,99,97,121,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,43,116,44,110,41,58,43,105,125,44,97,108,112,104,97,84,97,114,103,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,43,116,44,110,41,58,111,125,44,118,101,108,111,99,105,116,121,68,101,99,97,121,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,49,45,116,44,110,41,58,49,45,97,125,44,102,111,114,99,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,40,110,117,108,108,61,61,101,63,117,46,114,101,109,111,118,101,40,116,41,58,117,46,115,101,116,40,116,44,100,40,101,41,41,44,110,41,58,117,46,103,101,116,40,116,41,125,44,102,105,110,100,58,102,117,110,99,116,105,111,110,40,110,44,101,44,114,41,123,118,97,114,32,105,44,111,44,97,44,117,44,99,44,102,61,48,44,115,61,116,46,108,101,110,103,116,104,59,102,111,114,40,110,117,108,108,61,61,114,63,114,61,49,47,48,58,114,42,61,114,44,102,61,48,59,102,60,115,59,43,43,102,41,40,97,61,40,105,61,110,45,40,117,61,116,91,102,93,41,46,120,41,42,105,43,40,111,61,101,45,117,46,121,41,42,111,41,60,114,38,38,40,99,61,117,44,114,61,97,41,59,114,101,116,117,114,110,32,99,125,44,111,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,40,102,46,111,110,40,116,44,101,41,44,110,41,58,102,46,111,110,40,116,41,125,125,125,44,116,46,102,111,114,99,101,88,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,61,103,97,40,46,49,41,59,102,117,110,99,116,105,111,110,32,111,40,116,41,123,102,111,114,40,118,97,114,32,105,44,111,61,48,44,97,61,110,46,108,101,110,103,116,104,59,111,60,97,59,43,43,111,41,40,105,61,110,91,111,93,41,46,118,120,43,61,40,114,91,111,93,45,105,46,120,41,42,101,91,111,93,42,116,125,102,117,110,99,116,105,111,110,32,97,40,41,123,105,102,40,110,41,123,118,97,114,32,111,44,97,61,110,46,108,101,110,103,116,104,59,102,111,114,40,101,61,110,101,119,32,65,114,114,97,121,40,97,41,44,114,61,110,101,119,32,65,114,114,97,121,40,97,41,44,111,61,48,59,111,60,97,59,43,43,111,41,101,91,111,93,61,105,115,78,97,78,40,114,91,111,93,61,43,116,40,110,91,111,93,44,111,44,110,41,41,63,48,58,43,105,40,110,91,111,93,44,111,44,110,41,125,125,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,103,97,40,110,117,108,108,61,61,116,63,48,58,43,116,41,41,44,111,46,105,110,105,116,105,97,108,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,110,61,116,44,97,40,41,125,44,111,46,115,116,114,101,110,103,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,103,97,40,43,116,41,44,97,40,41,44,111,41,58,105,125,44,111,46,120,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,103,97,40,43,110,41,44,97,40,41,44,111,41,58,116,125,44,111,125,44,116,46,102,111,114,99,101,89,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,61,103,97,40,46,49,41,59,102,117,110,99,116,105,111,110,32,111,40,116,41,123,102,111,114,40,118,97,114,32,105,44,111,61,48,44,97,61,110,46,108,101,110,103,116,104,59,111,60,97,59,43,43,111,41,40,105,61,110,91,111,93,41,46,118,121,43,61,40,114,91,111,93,45,105,46,121,41,42,101,91,111,93,42,116,125,102,117,110,99,116,105,111,110,32,97,40,41,123,105,102,40,110,41,123,118,97,114,32,111,44,97,61,110,46,108,101,110,103,116,104,59,102,111,114,40,101,61,110,101,119,32,65,114,114,97,121,40,97,41,44,114,61,110,101,119,32,65,114,114,97,121,40,97,41,44,111,61,48,59,111,60,97,59,43,43,111,41,101,91,111,93,61,105,115,78,97,78,40,114,91,111,93,61,43,116,40,110,91,111,93,44,111,44,110,41,41,63,48,58,43,105,40,110,91,111,93,44,111,44,110,41,125,125,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,103,97,40,110,117,108,108,61,61,116,63,48,58,43,116,41,41,44,111,46,105,110,105,116,105,97,108,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,110,61,116,44,97,40,41,125,44,111,46,115,116,114,101,110,103,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,103,97,40,43,116,41,44,97,40,41,44,111,41,58,105,125,44,111,46,121,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,103,97,40,43,110,41,44,97,40,41,44,111,41,58,116,125,44,111,125,44,116,46,102,111,114,109,97,116,68,101,102,97,117,108,116,76,111,99,97,108,101,61,71,97,44,116,46,102,111,114,109,97,116,76,111,99,97,108,101,61,86,97,44,116,46,102,111,114,109,97,116,83,112,101,99,105,102,105,101,114,61,79,97,44,116,46,103,101,111,65,108,98,101,114,115,61,101,108,44,116,46,103,101,111,65,108,98,101,114,115,85,115,97,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,44,114,44,105,44,111,44,97,61,101,108,40,41,44,117,61,110,108,40,41,46,114,111,116,97,116,101,40,91,49,53,52,44,48,93,41,46,99,101,110,116,101,114,40,91,45,50,44,53,56,46,53,93,41,46,112,97,114,97,108,108,101,108,115,40,91,53,53,44,54,53,93,41,44,99,61,110,108,40,41,46,114,111,116,97,116,101,40,91,49,53,55,44,48,93,41,46,99,101,110,116,101,114,40,91,45,51,44,49,57,46,57,93,41,46,112,97,114,97,108,108,101,108,115,40,91,56,44,49,56,93,41,44,102,61,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,111,61,91,116,44,110,93,125,125,59,102,117,110,99,116,105,111,110,32,115,40,116,41,123,118,97,114,32,110,61,116,91,48,93,44,97,61,116,91,49,93,59,114,101,116,117,114,110,32,111,61,110,117,108,108,44,101,46,112,111,105,110,116,40,110,44,97,41,44,111,124,124,40,114,46,112,111,105,110,116,40,110,44,97,41,44,111,41,124,124,40,105,46,112,111,105,110,116,40,110,44,97,41,44,111,41,125,102,117,110,99,116,105,111,110,32,108,40,41,123,114,101,116,117,114,110,32,116,61,110,61,110,117,108,108,44,115,125,114,101,116,117,114,110,32,115,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,97,46,115,99,97,108,101,40,41,44,101,61,97,46,116,114,97,110,115,108,97,116,101,40,41,44,114,61,40,116,91,48,93,45,101,91,48,93,41,47,110,44,105,61,40,116,91,49,93,45,101,91,49,93,41,47,110,59,114,101,116,117,114,110,40,105,62,61,46,49,50,38,38,105,60,46,50,51,52,38,38,114,62,61,45,46,52,50,53,38,38,114,60,45,46,50,49,52,63,117,58,105,62,61,46,49,54,54,38,38,105,60,46,50,51,52,38,38,114,62,61,45,46,50,49,52,38,38,114,60,45,46,49,49,53,63,99,58,97,41,46,105,110,118,101,114,116,40,116,41,125,44,115,46,115,116,114,101,97,109,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,38,38,110,61,61,61,101,63,116,58,40,114,61,91,97,46,115,116,114,101,97,109,40,110,61,101,41,44,117,46,115,116,114,101,97,109,40,101,41,44,99,46,115,116,114,101,97,109,40,101,41,93,44,105,61,114,46,108,101,110,103,116,104,44,116,61,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,45,49,59,43,43,101,60,105,59,41,114,91,101,93,46,112,111,105,110,116,40,116,44,110,41,125,44,115,112,104,101,114,101,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,45,49,59,43,43,116,60,105,59,41,114,91,116,93,46,115,112,104,101,114,101,40,41,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,45,49,59,43,43,116,60,105,59,41,114,91,116,93,46,108,105,110,101,83,116,97,114,116,40,41,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,45,49,59,43,43,116,60,105,59,41,114,91,116,93,46,108,105,110,101,69,110,100,40,41,125,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,45,49,59,43,43,116,60,105,59,41,114,91,116,93,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,45,49,59,43,43,116,60,105,59,41,114,91,116,93,46,112,111,108,121,103,111,110,69,110,100,40,41,125,125,41,59,118,97,114,32,114,44,105,125,44,115,46,112,114,101,99,105,115,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,46,112,114,101,99,105,115,105,111,110,40,116,41,44,117,46,112,114,101,99,105,115,105,111,110,40,116,41,44,99,46,112,114,101,99,105,115,105,111,110,40,116,41,44,108,40,41,41,58,97,46,112,114,101,99,105,115,105,111,110,40,41,125,44,115,46,115,99,97,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,46,115,99,97,108,101,40,116,41,44,117,46,115,99,97,108,101,40,46,51,53,42,116,41,44,99,46,115,99,97,108,101,40,116,41,44,115,46,116,114,97,110,115,108,97,116,101,40,97,46,116,114,97,110,115,108,97,116,101,40,41,41,41,58,97,46,115,99,97,108,101,40,41,125,44,115,46,116,114,97,110,115,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,97,46,116,114,97,110,115,108,97,116,101,40,41,59,118,97,114,32,110,61,97,46,115,99,97,108,101,40,41,44,111,61,43,116,91,48,93,44,115,61,43,116,91,49,93,59,114,101,116,117,114,110,32,101,61,97,46,116,114,97,110,115,108,97,116,101,40,116,41,46,99,108,105,112,69,120,116,101,110,116,40,91,91,111,45,46,52,53,53,42,110,44,115,45,46,50,51,56,42,110,93,44,91,111,43,46,52,53,53,42,110,44,115,43,46,50,51,56,42,110,93,93,41,46,115,116,114,101,97,109,40,102,41,44,114,61,117,46,116,114,97,110,115,108,97,116,101,40,91,111,45,46,51,48,55,42,110,44,115,43,46,50,48,49,42,110,93,41,46,99,108,105,112,69,120,116,101,110,116,40,91,91,111,45,46,52,50,53,42,110,43,110,117,44,115,43,46,49,50,42,110,43,110,117,93,44,91,111,45,46,50,49,52,42,110,45,110,117,44,115,43,46,50,51,52,42,110,45,110,117,93,93,41,46,115,116,114,101,97,109,40,102,41,44,105,61,99,46,116,114,97,110,115,108,97,116,101,40,91,111,45,46,50,48,53,42,110,44,115,43,46,50,49,50,42,110,93,41,46,99,108,105,112,69,120,116,101,110,116,40,91,91,111,45,46,50,49,52,42,110,43,110,117,44,115,43,46,49,54,54,42,110,43,110,117,93,44,91,111,45,46,49,49,53,42,110,45,110,117,44,115,43,46,50,51,52,42,110,45,110,117,93,93,41,46,115,116,114,101,97,109,40,102,41,44,108,40,41,125,44,115,46,102,105,116,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,73,115,40,115,44,116,44,110,41,125,44,115,46,102,105,116,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,72,115,40,115,44,116,44,110,41,125,44,115,46,102,105,116,87,105,100,116,104,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,106,115,40,115,44,116,44,110,41,125,44,115,46,102,105,116,72,101,105,103,104,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,88,115,40,115,44,116,44,110,41,125,44,115,46,115,99,97,108,101,40,49,48,55,48,41,125,44,116,46,103,101,111,65,114,101,97,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,85,117,46,114,101,115,101,116,40,41,44,67,117,40,116,44,79,117,41,44,50,42,85,117,125,44,116,46,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,111,108,41,46,115,99,97,108,101,40,49,50,52,46,55,53,41,46,99,108,105,112,65,110,103,108,101,40,49,55,57,46,57,57,57,41,125,44,116,46,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,82,97,119,61,111,108,44,116,46,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,97,108,41,46,115,99,97,108,101,40,55,57,46,52,49,56,56,41,46,99,108,105,112,65,110,103,108,101,40,49,55,57,46,57,57,57,41,125,44,116,46,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,82,97,119,61,97,108,44,116,46,103,101,111,66,111,117,110,100,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,44,111,44,97,44,117,59,105,102,40,74,117,61,75,117,61,45,40,90,117,61,81,117,61,49,47,48,41,44,105,99,61,91,93,44,67,117,40,116,44,77,99,41,44,101,61,105,99,46,108,101,110,103,116,104,41,123,102,111,114,40,105,99,46,115,111,114,116,40,122,99,41,44,110,61,49,44,111,61,91,114,61,105,99,91,48,93,93,59,110,60,101,59,43,43,110,41,82,99,40,114,44,40,105,61,105,99,91,110,93,41,91,48,93,41,124,124,82,99,40,114,44,105,91,49,93,41,63,40,80,99,40,114,91,48,93,44,105,91,49,93,41,62,80,99,40,114,91,48,93,44,114,91,49,93,41,38,38,40,114,91,49,93,61,105,91,49,93,41,44,80,99,40,105,91,48,93,44,114,91,49,93,41,62,80,99,40,114,91,48,93,44,114,91,49,93,41,38,38,40,114,91,48,93,61,105,91,48,93,41,41,58,111,46,112,117,115,104,40,114,61,105,41,59,102,111,114,40,97,61,45,49,47,48,44,110,61,48,44,114,61,111,91,101,61,111,46,108,101,110,103,116,104,45,49,93,59,110,60,61,101,59,114,61,105,44,43,43,110,41,105,61,111,91,110,93,44,40,117,61,80,99,40,114,91,49,93,44,105,91,48,93,41,41,62,97,38,38,40,97,61,117,44,90,117,61,105,91,48,93,44,75,117,61,114,91,49,93,41,125,114,101,116,117,114,110,32,105,99,61,111,99,61,110,117,108,108,44,90,117,61,61,61,49,47,48,124,124,81,117,61,61,61,49,47,48,63,91,91,78,97,78,44,78,97,78,93,44,91,78,97,78,44,78,97,78,93,93,58,91,91,90,117,44,81,117,93,44,91,75,117,44,74,117,93,93,125,44,116,46,103,101,111,67,101,110,116,114,111,105,100,61,102,117,110,99,116,105,111,110,40,116,41,123,97,99,61,117,99,61,99,99,61,102,99,61,115,99,61,108,99,61,104,99,61,100,99,61,112,99,61,118,99,61,103,99,61,48,44,67,117,40,116,44,68,99,41,59,118,97,114,32,110,61,112,99,44,101,61,118,99,44,114,61,103,99,44,105,61,110,42,110,43,101,42,101,43,114,42,114,59,114,101,116,117,114,110,32,105,60,101,117,38,38,40,110,61,108,99,44,101,61,104,99,44,114,61,100,99,44,117,99,60,110,117,38,38,40,110,61,99,99,44,101,61,102,99,44,114,61,115,99,41,44,40,105,61,110,42,110,43,101,42,101,43,114,42,114,41,60,101,117,41,63,91,78,97,78,44,78,97,78,93,58,91,108,117,40,101,44,110,41,42,117,117,44,119,117,40,114,47,98,117,40,105,41,41,42,117,117,93,125,44,116,46,103,101,111,67,105,114,99,108,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,61,88,99,40,91,48,44,48,93,41,44,114,61,88,99,40,57,48,41,44,105,61,88,99,40,54,41,44,111,61,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,101,44,114,41,123,116,46,112,117,115,104,40,101,61,110,40,101,44,114,41,41,44,101,91,48,93,42,61,117,117,44,101,91,49,93,42,61,117,117,125,125,59,102,117,110,99,116,105,111,110,32,97,40,41,123,118,97,114,32,97,61,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,117,61,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,42,99,117,44,99,61,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,42,99,117,59,114,101,116,117,114,110,32,116,61,91,93,44,110,61,36,99,40,45,97,91,48,93,42,99,117,44,45,97,91,49,93,42,99,117,44,48,41,46,105,110,118,101,114,116,44,74,99,40,111,44,117,44,99,44,49,41,44,97,61,123,116,121,112,101,58,34,80,111,108,121,103,111,110,34,44,99,111,111,114,100,105,110,97,116,101,115,58,91,116,93,125,44,116,61,110,61,110,117,108,108,44,97,125,114,101,116,117,114,110,32,97,46,99,101,110,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,88,99,40,91,43,116,91,48,93,44,43,116,91,49,93,93,41,44,97,41,58,101,125,44,97,46,114,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,88,99,40,43,116,41,44,97,41,58,114,125,44,97,46,112,114,101,99,105,115,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,88,99,40,43,116,41,44,97,41,58,105,125,44,97,125,44,116,46,103,101,111,67,108,105,112,65,110,116,105,109,101,114,105,100,105,97,110,61,100,102,44,116,46,103,101,111,67,108,105,112,67,105,114,99,108,101,61,112,102,44,116,46,103,101,111,67,108,105,112,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,44,114,61,48,44,105,61,48,44,111,61,57,54,48,44,97,61,53,48,48,59,114,101,116,117,114,110,32,101,61,123,115,116,114,101,97,109,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,38,38,110,61,61,61,101,63,116,58,116,61,121,102,40,114,44,105,44,111,44,97,41,40,110,61,101,41,125,44,101,120,116,101,110,116,58,102,117,110,99,116,105,111,110,40,117,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,43,117,91,48,93,91,48,93,44,105,61,43,117,91,48,93,91,49,93,44,111,61,43,117,91,49,93,91,48,93,44,97,61,43,117,91,49,93,91,49,93,44,116,61,110,61,110,117,108,108,44,101,41,58,91,91,114,44,105,93,44,91,111,44,97,93,93,125,125,125,44,116,46,103,101,111,67,108,105,112,82,101,99,116,97,110,103,108,101,61,121,102,44,116,46,103,101,111,67,111,110,105,99,67,111,110,102,111,114,109,97,108,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,74,115,40,115,108,41,46,115,99,97,108,101,40,49,48,57,46,53,41,46,112,97,114,97,108,108,101,108,115,40,91,51,48,44,51,48,93,41,125,44,116,46,103,101,111,67,111,110,105,99,67,111,110,102,111,114,109,97,108,82,97,119,61,115,108,44,116,46,103,101,111,67,111,110,105,99,69,113,117,97,108,65,114,101,97,61,110,108,44,116,46,103,101,111,67,111,110,105,99,69,113,117,97,108,65,114,101,97,82,97,119,61,116,108,44,116,46,103,101,111,67,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,74,115,40,104,108,41,46,115,99,97,108,101,40,49,51,49,46,49,53,52,41,46,99,101,110,116,101,114,40,91,48,44,49,51,46,57,51,56,57,93,41,125,44,116,46,103,101,111,67,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,82,97,119,61,104,108,44,116,46,103,101,111,67,111,110,116,97,105,110,115,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,116,38,38,67,102,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,46,116,121,112,101,41,63,67,102,91,116,46,116,121,112,101,93,58,122,102,41,40,116,44,110,41,125,44,116,46,103,101,111,68,105,115,116,97,110,99,101,61,69,102,44,116,46,103,101,111,69,113,117,97,108,69,97,114,116,104,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,95,108,41,46,115,99,97,108,101,40,49,55,55,46,49,53,56,41,125,44,116,46,103,101,111,69,113,117,97,108,69,97,114,116,104,82,97,119,61,95,108,44,116,46,103,101,111,69,113,117,105,114,101,99,116,97,110,103,117,108,97,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,108,108,41,46,115,99,97,108,101,40,49,53,50,46,54,51,41,125,44,116,46,103,101,111,69,113,117,105,114,101,99,116,97,110,103,117,108,97,114,82,97,119,61,108,108,44,116,46,103,101,111,71,110,111,109,111,110,105,99,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,98,108,41,46,115,99,97,108,101,40,49,52,52,46,48,52,57,41,46,99,108,105,112,65,110,103,108,101,40,54,48,41,125,44,116,46,103,101,111,71,110,111,109,111,110,105,99,82,97,119,61,98,108,44,116,46,103,101,111,71,114,97,116,105,99,117,108,101,61,70,102,44,116,46,103,101,111,71,114,97,116,105,99,117,108,101,49,48,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,70,102,40,41,40,41,125,44,116,46,103,101,111,73,100,101,110,116,105,116,121,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,44,114,44,105,44,111,44,97,44,117,61,49,44,99,61,48,44,102,61,48,44,115,61,49,44,108,61,49,44,104,61,48,44,100,61,110,117,108,108,44,112,61,49,44,118,61,49,44,103,61,66,115,40,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,98,40,91,116,44,110,93,41,59,116,104,105,115,46,115,116,114,101,97,109,46,112,111,105,110,116,40,101,91,48,93,44,101,91,49,93,41,125,125,41,44,121,61,89,102,59,102,117,110,99,116,105,111,110,32,95,40,41,123,114,101,116,117,114,110,32,112,61,117,42,115,44,118,61,117,42,108,44,111,61,97,61,110,117,108,108,44,98,125,102,117,110,99,116,105,111,110,32,98,40,101,41,123,118,97,114,32,114,61,101,91,48,93,42,112,44,105,61,101,91,49,93,42,118,59,105,102,40,104,41,123,118,97,114,32,111,61,105,42,116,45,114,42,110,59,114,61,114,42,116,43,105,42,110,44,105,61,111,125,114,101,116,117,114,110,91,114,43,99,44,105,43,102,93,125,114,101,116,117,114,110,32,98,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,101,91,48,93,45,99,44,105,61,101,91,49,93,45,102,59,105,102,40,104,41,123,118,97,114,32,111,61,105,42,116,43,114,42,110,59,114,61,114,42,116,45,105,42,110,44,105,61,111,125,114,101,116,117,114,110,91,114,47,112,44,105,47,118,93,125,44,98,46,115,116,114,101,97,109,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,38,38,97,61,61,61,116,63,111,58,111,61,103,40,121,40,97,61,116,41,41,125,44,98,46,112,111,115,116,99,108,105,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,121,61,116,44,100,61,101,61,114,61,105,61,110,117,108,108,44,95,40,41,41,58,121,125,44,98,46,99,108,105,112,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,121,61,110,117,108,108,61,61,116,63,40,100,61,101,61,114,61,105,61,110,117,108,108,44,89,102,41,58,121,102,40,100,61,43,116,91,48,93,91,48,93,44,101,61,43,116,91,48,93,91,49,93,44,114,61,43,116,91,49,93,91,48,93,44,105,61,43,116,91,49,93,91,49,93,41,44,95,40,41,41,58,110,117,108,108,61,61,100,63,110,117,108,108,58,91,91,100,44,101,93,44,91,114,44,105,93,93,125,44,98,46,115,99,97,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,43,116,44,95,40,41,41,58,117,125,44,98,46,116,114,97,110,115,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,43,116,91,48,93,44,102,61,43,116,91,49,93,44,95,40,41,41,58,91,99,44,102,93,125,44,98,46,97,110,103,108,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,121,117,40,104,61,101,37,51,54,48,42,99,117,41,44,116,61,104,117,40,104,41,44,95,40,41,41,58,104,42,117,117,125,44,98,46,114,101,102,108,101,99,116,88,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,115,61,116,63,45,49,58,49,44,95,40,41,41,58,115,60,48,125,44,98,46,114,101,102,108,101,99,116,89,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,108,61,116,63,45,49,58,49,44,95,40,41,41,58,108,60,48,125,44,98,46,102,105,116,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,73,115,40,98,44,116,44,110,41,125,44,98,46,102,105,116,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,72,115,40,98,44,116,44,110,41,125,44,98,46,102,105,116,87,105,100,116,104,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,106,115,40,98,44,116,44,110,41,125,44,98,46,102,105,116,72,101,105,103,104,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,88,115,40,98,44,116,44,110,41,125,44,98,125,44,116,46,103,101,111,73,110,116,101,114,112,111,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,116,91,48,93,42,99,117,44,114,61,116,91,49,93,42,99,117,44,105,61,110,91,48,93,42,99,117,44,111,61,110,91,49,93,42,99,117,44,97,61,104,117,40,114,41,44,117,61,121,117,40,114,41,44,99,61,104,117,40,111,41,44,102,61,121,117,40,111,41,44,115,61,97,42,104,117,40,101,41,44,108,61,97,42,121,117,40,101,41,44,104,61,99,42,104,117,40,105,41,44,100,61,99,42,121,117,40,105,41,44,112,61,50,42,119,117,40,98,117,40,77,117,40,111,45,114,41,43,97,42,99,42,77,117,40,105,45,101,41,41,41,44,118,61,121,117,40,112,41,44,103,61,112,63,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,121,117,40,116,42,61,112,41,47,118,44,101,61,121,117,40,112,45,116,41,47,118,44,114,61,101,42,115,43,110,42,104,44,105,61,101,42,108,43,110,42,100,44,111,61,101,42,117,43,110,42,102,59,114,101,116,117,114,110,91,108,117,40,105,44,114,41,42,117,117,44,108,117,40,111,44,98,117,40,114,42,114,43,105,42,105,41,41,42,117,117,93,125,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,101,42,117,117,44,114,42,117,117,93,125,59,114,101,116,117,114,110,32,103,46,100,105,115,116,97,110,99,101,61,112,44,103,125,44,116,46,103,101,111,76,101,110,103,116,104,61,65,102,44,116,46,103,101,111,77,101,114,99,97,116,111,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,108,40,117,108,41,46,115,99,97,108,101,40,57,54,49,47,97,117,41,125,44,116,46,103,101,111,77,101,114,99,97,116,111,114,82,97,119,61,117,108,44,116,46,103,101,111,78,97,116,117,114,97,108,69,97,114,116,104,49,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,109,108,41,46,115,99,97,108,101,40,49,55,53,46,50,57,53,41,125,44,116,46,103,101,111,78,97,116,117,114,97,108,69,97,114,116,104,49,82,97,119,61,109,108,44,116,46,103,101,111,79,114,116,104,111,103,114,97,112,104,105,99,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,120,108,41,46,115,99,97,108,101,40,50,52,57,46,53,41,46,99,108,105,112,65,110,103,108,101,40,57,48,43,110,117,41,125,44,116,46,103,101,111,79,114,116,104,111,103,114,97,112,104,105,99,82,97,119,61,120,108,44,116,46,103,101,111,80,97,116,104,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,61,52,46,53,59,102,117,110,99,116,105,111,110,32,111,40,116,41,123,114,101,116,117,114,110,32,116,38,38,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,105,38,38,114,46,112,111,105,110,116,82,97,100,105,117,115,40,43,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,44,67,117,40,116,44,101,40,114,41,41,41,44,114,46,114,101,115,117,108,116,40,41,125,114,101,116,117,114,110,32,111,46,97,114,101,97,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,67,117,40,116,44,101,40,36,102,41,41,44,36,102,46,114,101,115,117,108,116,40,41,125,44,111,46,109,101,97,115,117,114,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,67,117,40,116,44,101,40,68,115,41,41,44,68,115,46,114,101,115,117,108,116,40,41,125,44,111,46,98,111,117,110,100,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,67,117,40,116,44,101,40,114,115,41,41,44,114,115,46,114,101,115,117,108,116,40,41,125,44,111,46,99,101,110,116,114,111,105,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,67,117,40,116,44,101,40,121,115,41,41,44,121,115,46,114,101,115,117,108,116,40,41,125,44,111,46,112,114,111,106,101,99,116,105,111,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,110,117,108,108,61,61,110,63,40,116,61,110,117,108,108,44,89,102,41,58,40,116,61,110,41,46,115,116,114,101,97,109,44,111,41,58,116,125,44,111,46,99,111,110,116,101,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,110,117,108,108,61,61,116,63,40,110,61,110,117,108,108,44,110,101,119,32,85,115,41,58,110,101,119,32,83,115,40,110,61,116,41,44,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,105,38,38,114,46,112,111,105,110,116,82,97,100,105,117,115,40,105,41,44,111,41,58,110,125,44,111,46,112,111,105,110,116,82,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,40,114,46,112,111,105,110,116,82,97,100,105,117,115,40,43,116,41,44,43,116,41,44,111,41,58,105,125,44,111,46,112,114,111,106,101,99,116,105,111,110,40,116,41,46,99,111,110,116,101,120,116,40,110,41,125,44,116,46,103,101,111,80,114,111,106,101,99,116,105,111,110,61,81,115,44,116,46,103,101,111,80,114,111,106,101,99,116,105,111,110,77,117,116,97,116,111,114,61,75,115,44,116,46,103,101,111,82,111,116,97,116,105,111,110,61,75,99,44,116,46,103,101,111,83,116,101,114,101,111,103,114,97,112,104,105,99,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,119,108,41,46,115,99,97,108,101,40,50,53,48,41,46,99,108,105,112,65,110,103,108,101,40,49,52,50,41,125,44,116,46,103,101,111,83,116,101,114,101,111,103,114,97,112,104,105,99,82,97,119,61,119,108,44,116,46,103,101,111,83,116,114,101,97,109,61,67,117,44,116,46,103,101,111,84,114,97,110,115,102,111,114,109,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,123,115,116,114,101,97,109,58,66,115,40,116,41,125,125,44,116,46,103,101,111,84,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,99,108,40,77,108,41,44,110,61,116,46,99,101,110,116,101,114,44,101,61,116,46,114,111,116,97,116,101,59,114,101,116,117,114,110,32,116,46,99,101,110,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,40,91,45,116,91,49,93,44,116,91,48,93,93,41,58,91,40,116,61,110,40,41,41,91,49,93,44,45,116,91,48,93,93,125,44,116,46,114,111,116,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,101,40,91,116,91,48,93,44,116,91,49,93,44,116,46,108,101,110,103,116,104,62,50,63,116,91,50,93,43,57,48,58,57,48,93,41,58,91,40,116,61,101,40,41,41,91,48,93,44,116,91,49,93,44,116,91,50,93,45,57,48,93,125,44,101,40,91,48,44,48,44,57,48,93,41,46,115,99,97,108,101,40,49,53,57,46,49,53,53,41,125,44,116,46,103,101,111,84,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,82,97,119,61,77,108,44,116,46,103,114,97,121,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,101,119,32,66,110,40,116,44,48,44,48,44,110,117,108,108,61,61,110,63,49,58,110,41,125,44,116,46,104,99,108,61,88,110,44,116,46,104,105,101,114,97,114,99,104,121,61,107,108,44,116,46,104,105,115,116,111,103,114,97,109,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,118,44,110,61,115,44,101,61,77,59,102,117,110,99,116,105,111,110,32,114,40,114,41,123,118,97,114,32,111,44,97,44,117,61,114,46,108,101,110,103,116,104,44,99,61,110,101,119,32,65,114,114,97,121,40,117,41,59,102,111,114,40,111,61,48,59,111,60,117,59,43,43,111,41,99,91,111,93,61,116,40,114,91,111,93,44,111,44,114,41,59,118,97,114,32,102,61,110,40,99,41,44,115,61,102,91,48,93,44,108,61,102,91,49,93,44,104,61,101,40,99,44,115,44,108,41,59,65,114,114,97,121,46,105,115,65,114,114,97,121,40,104,41,124,124,40,104,61,119,40,115,44,108,44,104,41,44,104,61,103,40,77,97,116,104,46,99,101,105,108,40,115,47,104,41,42,104,44,108,44,104,41,41,59,102,111,114,40,118,97,114,32,100,61,104,46,108,101,110,103,116,104,59,104,91,48,93,60,61,115,59,41,104,46,115,104,105,102,116,40,41,44,45,45,100,59,102,111,114,40,59,104,91,100,45,49,93,62,108,59,41,104,46,112,111,112,40,41,44,45,45,100,59,118,97,114,32,112,44,118,61,110,101,119,32,65,114,114,97,121,40,100,43,49,41,59,102,111,114,40,111,61,48,59,111,60,61,100,59,43,43,111,41,40,112,61,118,91,111,93,61,91,93,41,46,120,48,61,111,62,48,63,104,91,111,45,49,93,58,115,44,112,46,120,49,61,111,60,100,63,104,91,111,93,58,108,59,102,111,114,40,111,61,48,59,111,60,117,59,43,43,111,41,115,60,61,40,97,61,99,91,111,93,41,38,38,97,60,61,108,38,38,118,91,105,40,104,44,97,44,48,44,100,41,93,46,112,117,115,104,40,114,91,111,93,41,59,114,101,116,117,114,110,32,118,125,114,101,116,117,114,110,32,114,46,118,97,108,117,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,112,40,110,41,44,114,41,58,116,125,44,114,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,112,40,91,116,91,48,93,44,116,91,49,93,93,41,44,114,41,58,110,125,44,114,46,116,104,114,101,115,104,111,108,100,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,112,40,104,46,99,97,108,108,40,116,41,41,58,112,40,116,41,44,114,41,58,101,125,44,114,125,44,116,46,104,115,108,61,84,110,44,116,46,104,116,109,108,61,112,97,44,116,46,105,109,97,103,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,101,44,114,41,123,118,97,114,32,105,61,110,101,119,32,73,109,97,103,101,59,102,111,114,40,118,97,114,32,111,32,105,110,32,110,41,105,91,111,93,61,110,91,111,93,59,105,46,111,110,101,114,114,111,114,61,114,44,105,46,111,110,108,111,97,100,61,102,117,110,99,116,105,111,110,40,41,123,101,40,105,41,125,44,105,46,115,114,99,61,116,125,41,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,61,84,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,65,114,114,97,121,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,121,101,40,110,41,63,103,101,58,95,101,41,40,116,44,110,41,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,66,97,115,105,115,61,111,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,66,97,115,105,115,67,108,111,115,101,100,61,97,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,66,108,117,101,115,61,81,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,66,114,66,71,61,102,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,66,117,71,110,61,83,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,66,117,80,117,61,69,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,67,105,118,105,100,105,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,41,41,44,34,114,103,98,40,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,45,52,46,53,52,45,116,42,40,51,53,46,51,52,45,116,42,40,50,51,56,49,46,55,51,45,116,42,40,54,52,48,50,46,55,45,116,42,40,55,48,50,52,46,55,50,45,50,55,49,48,46,53,55,42,116,41,41,41,41,41,41,41,43,34,44,32,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,51,50,46,52,57,43,116,42,40,49,55,48,46,55,51,43,116,42,40,53,50,46,56,50,45,116,42,40,49,51,49,46,52,54,45,116,42,40,49,55,54,46,53,56,45,54,55,46,51,55,42,116,41,41,41,41,41,41,41,43,34,44,32,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,56,49,46,50,52,43,116,42,40,52,52,50,46,51,54,45,116,42,40,50,52,56,50,46,52,51,45,116,42,40,54,49,54,55,46,50,52,45,116,42,40,54,54,49,52,46,57,52,45,50,52,55,53,46,54,55,42,116,41,41,41,41,41,41,41,43,34,41,34,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,67,111,111,108,61,115,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,67,117,98,101,104,101,108,105,120,61,90,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,67,117,98,101,104,101,108,105,120,68,101,102,97,117,108,116,61,99,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,67,117,98,101,104,101,108,105,120,76,111,110,103,61,81,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,68,97,116,101,61,98,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,68,105,115,99,114,101,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,91,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,110,45,49,44,77,97,116,104,46,102,108,111,111,114,40,101,42,110,41,41,41,93,125,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,71,110,66,117,61,80,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,71,114,101,101,110,115,61,74,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,71,114,101,121,115,61,110,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,72,99,108,61,71,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,72,99,108,76,111,110,103,61,36,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,72,115,108,61,106,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,72,115,108,76,111,110,103,61,88,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,72,117,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,102,101,40,43,116,44,43,110,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,101,40,116,41,59,114,101,116,117,114,110,32,110,45,51,54,48,42,77,97,116,104,46,102,108,111,111,114,40,110,47,51,54,48,41,125,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,73,110,102,101,114,110,111,61,95,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,76,97,98,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,108,101,40,40,116,61,79,110,40,116,41,41,46,108,44,40,110,61,79,110,40,110,41,41,46,108,41,44,114,61,108,101,40,116,46,97,44,110,46,97,41,44,105,61,108,101,40,116,46,98,44,110,46,98,41,44,111,61,108,101,40,116,46,111,112,97,99,105,116,121,44,110,46,111,112,97,99,105,116,121,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,46,108,61,101,40,110,41,44,116,46,97,61,114,40,110,41,44,116,46,98,61,105,40,110,41,44,116,46,111,112,97,99,105,116,121,61,111,40,110,41,44,116,43,34,34,125,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,77,97,103,109,97,61,121,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,78,117,109,98,101,114,61,109,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,78,117,109,98,101,114,65,114,114,97,121,61,103,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,79,98,106,101,99,116,61,120,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,79,114,82,100,61,82,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,79,114,97,110,103,101,115,61,117,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,82,71,110,61,108,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,105,89,71,61,100,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,108,97,115,109,97,61,98,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,117,66,117,61,85,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,117,66,117,71,110,61,113,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,117,79,114,61,118,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,117,82,100,61,66,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,117,114,112,108,101,115,61,114,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,97,105,110,98,111,119,61,102,117,110,99,116,105,111,110,40,116,41,123,40,116,60,48,124,124,116,62,49,41,38,38,40,116,45,61,77,97,116,104,46,102,108,111,111,114,40,116,41,41,59,118,97,114,32,110,61,77,97,116,104,46,97,98,115,40,116,45,46,53,41,59,114,101,116,117,114,110,32,108,121,46,104,61,51,54,48,42,116,45,49,48,48,44,108,121,46,115,61,49,46,53,45,49,46,53,42,110,44,108,121,46,108,61,46,56,45,46,57,42,110,44,108,121,43,34,34,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,100,66,117,61,121,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,100,71,121,61,98,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,100,80,117,61,89,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,100,89,108,66,117,61,120,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,100,89,108,71,110,61,77,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,101,100,115,61,111,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,103,98,61,104,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,103,98,66,97,115,105,115,61,112,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,103,98,66,97,115,105,115,67,108,111,115,101,100,61,118,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,111,117,110,100,61,65,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,83,105,110,101,98,111,119,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,116,61,40,46,53,45,116,41,42,77,97,116,104,46,80,73,44,104,121,46,114,61,50,53,53,42,40,110,61,77,97,116,104,46,115,105,110,40,116,41,41,42,110,44,104,121,46,103,61,50,53,53,42,40,110,61,77,97,116,104,46,115,105,110,40,116,43,100,121,41,41,42,110,44,104,121,46,98,61,50,53,53,42,40,110,61,77,97,116,104,46,115,105,110,40,116,43,112,121,41,41,42,110,44,104,121,43,34,34,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,83,112,101,99,116,114,97,108,61,84,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,83,116,114,105,110,103,61,78,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,67,115,115,61,113,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,83,118,103,61,76,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,84,117,114,98,111,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,41,41,44,34,114,103,98,40,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,51,52,46,54,49,43,116,42,40,49,49,55,50,46,51,51,45,116,42,40,49,48,55,57,51,46,53,54,45,116,42,40,51,51,51,48,48,46,49,50,45,116,42,40,51,56,51,57,52,46,52,57,45,49,52,56,50,53,46,48,53,42,116,41,41,41,41,41,41,41,43,34,44,32,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,50,51,46,51,49,43,116,42,40,53,53,55,46,51,51,43,116,42,40,49,50,50,53,46,51,51,45,116,42,40,51,53,55,52,46,57,54,45,116,42,40,49,48,55,51,46,55,55,43,55,48,55,46,53,54,42,116,41,41,41,41,41,41,41,43,34,44,32,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,50,55,46,50,43,116,42,40,51,50,49,49,46,49,45,116,42,40,49,53,51,50,55,46,57,55,45,116,42,40,50,55,56,49,52,45,116,42,40,50,50,53,54,57,46,49,56,45,54,56,51,56,46,54,54,42,116,41,41,41,41,41,41,41,43,34,41,34,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,86,105,114,105,100,105,115,61,103,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,87,97,114,109,61,102,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,89,108,71,110,61,88,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,89,108,71,110,66,117,61,72,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,89,108,79,114,66,114,61,71,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,89,108,79,114,82,100,61,87,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,90,111,111,109,61,73,101,44,116,46,105,110,116,101,114,114,117,112,116,61,80,114,44,116,46,105,110,116,101,114,118,97,108,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,110,101,119,32,108,114,44,105,61,110,59,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,40,114,46,114,101,115,116,97,114,116,40,116,44,110,44,101,41,44,114,41,58,40,110,61,43,110,44,101,61,110,117,108,108,61,61,101,63,102,114,40,41,58,43,101,44,114,46,114,101,115,116,97,114,116,40,102,117,110,99,116,105,111,110,32,111,40,97,41,123,97,43,61,105,44,114,46,114,101,115,116,97,114,116,40,111,44,105,43,61,110,44,101,41,44,116,40,97,41,125,44,110,44,101,41,44,114,41,125,44,116,46,105,115,111,70,111,114,109,97,116,61,82,118,44,116,46,105,115,111,80,97,114,115,101,61,68,118,44,116,46,106,115,111,110,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,101,116,99,104,40,116,44,110,41,46,116,104,101,110,40,108,97,41,125,44,116,46,107,101,121,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,91,93,59,102,111,114,40,118,97,114,32,101,32,105,110,32,116,41,110,46,112,117,115,104,40,101,41,59,114,101,116,117,114,110,32,110,125,44,116,46,108,97,98,61,79,110,44,116,46,108,99,104,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,106,110,40,116,41,58,110,101,119,32,86,110,40,101,44,110,44,116,44,110,117,108,108,61,61,114,63,49,58,114,41,125,44,116,46,108,105,110,101,61,72,121,44,116,46,108,105,110,101,82,97,100,105,97,108,61,81,121,44,116,46,108,105,110,107,72,111,114,105,122,111,110,116,97,108,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,95,40,105,95,41,125,44,116,46,108,105,110,107,82,97,100,105,97,108,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,114,95,40,97,95,41,59,114,101,116,117,114,110,32,116,46,97,110,103,108,101,61,116,46,120,44,100,101,108,101,116,101,32,116,46,120,44,116,46,114,97,100,105,117,115,61,116,46,121,44,100,101,108,101,116,101,32,116,46,121,44,116,125,44,116,46,108,105,110,107,86,101,114,116,105,99,97,108,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,95,40,111,95,41,125,44,116,46,108,111,99,97,108,61,113,116,44,116,46,109,97,112,61,99,111,44,116,46,109,97,116,99,104,101,114,61,110,116,44,116,46,109,97,120,61,84,44,116,46,109,101,97,110,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,61,116,46,108,101,110,103,116,104,44,105,61,114,44,111,61,45,49,44,97,61,48,59,105,102,40,110,117,108,108,61,61,110,41,102,111,114,40,59,43,43,111,60,114,59,41,105,115,78,97,78,40,101,61,117,40,116,91,111,93,41,41,63,45,45,105,58,97,43,61,101,59,101,108,115,101,32,102,111,114,40,59,43,43,111,60,114,59,41,105,115,78,97,78,40,101,61,117,40,110,40,116,91,111,93,44,111,44,116,41,41,41,63,45,45,105,58,97,43,61,101,59,105,102,40,105,41,114,101,116,117,114,110,32,97,47,105,125,44,116,46,109,101,100,105,97,110,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,114,44,105,61,116,46,108,101,110,103,116,104,44,111,61,45,49,44,97,61,91,93,59,105,102,40,110,117,108,108,61,61,101,41,102,111,114,40,59,43,43,111,60,105,59,41,105,115,78,97,78,40,114,61,117,40,116,91,111,93,41,41,124,124,97,46,112,117,115,104,40,114,41,59,101,108,115,101,32,102,111,114,40,59,43,43,111,60,105,59,41,105,115,78,97,78,40,114,61,117,40,101,40,116,91,111,93,44,111,44,116,41,41,41,124,124,97,46,112,117,115,104,40,114,41,59,114,101,116,117,114,110,32,78,40,97,46,115,111,114,116,40,110,41,44,46,53,41,125,44,116,46,109,101,114,103,101,61,65,44,116,46,109,105,110,61,83,44,116,46,109,111,117,115,101,61,66,116,44,116,46,110,97,109,101,115,112,97,99,101,61,87,44,116,46,110,97,109,101,115,112,97,99,101,115,61,36,44,116,46,110,101,115,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,44,114,61,91,93,44,105,61,91,93,59,102,117,110,99,116,105,111,110,32,111,40,101,44,105,44,97,44,117,41,123,105,102,40,105,62,61,114,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,110,117,108,108,33,61,116,38,38,101,46,115,111,114,116,40,116,41,44,110,117,108,108,33,61,110,63,110,40,101,41,58,101,59,102,111,114,40,118,97,114,32,99,44,102,44,115,44,108,61,45,49,44,104,61,101,46,108,101,110,103,116,104,44,100,61,114,91,105,43,43,93,44,112,61,99,111,40,41,44,118,61,97,40,41,59,43,43,108,60,104,59,41,40,115,61,112,46,103,101,116,40,99,61,100,40,102,61,101,91,108,93,41,43,34,34,41,41,63,115,46,112,117,115,104,40,102,41,58,112,46,115,101,116,40,99,44,91,102,93,41,59,114,101,116,117,114,110,32,112,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,117,40,118,44,110,44,111,40,116,44,105,44,97,44,117,41,41,125,41,44,118,125,114,101,116,117,114,110,32,101,61,123,111,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,40,116,44,48,44,102,111,44,115,111,41,125,44,109,97,112,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,40,116,44,48,44,108,111,44,104,111,41,125,44,101,110,116,114,105,101,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,116,40,101,44,111,41,123,105,102,40,43,43,111,62,114,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,101,59,118,97,114,32,97,44,117,61,105,91,111,45,49,93,59,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,111,62,61,114,46,108,101,110,103,116,104,63,97,61,101,46,101,110,116,114,105,101,115,40,41,58,40,97,61,91,93,44,101,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,110,44,101,41,123,97,46,112,117,115,104,40,123,107,101,121,58,101,44,118,97,108,117,101,115,58,116,40,110,44,111,41,125,41,125,41,41,44,110,117,108,108,33,61,117,63,97,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,117,40,116,46,107,101,121,44,110,46,107,101,121,41,125,41,58,97,125,40,111,40,116,44,48,44,108,111,44,104,111,41,44,48,41,125,44,107,101,121,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,46,112,117,115,104,40,116,41,44,101,125,44,115,111,114,116,75,101,121,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,91,114,46,108,101,110,103,116,104,45,49,93,61,116,44,101,125,44,115,111,114,116,86,97,108,117,101,115,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,61,110,44,101,125,44,114,111,108,108,117,112,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,61,116,44,101,125,125,125,44,116,46,110,111,119,61,102,114,44,116,46,112,97,99,107,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,117,108,108,44,110,61,49,44,101,61,49,44,114,61,87,108,59,102,117,110,99,116,105,111,110,32,105,40,105,41,123,114,101,116,117,114,110,32,105,46,120,61,110,47,50,44,105,46,121,61,101,47,50,44,116,63,105,46,101,97,99,104,66,101,102,111,114,101,40,75,108,40,116,41,41,46,101,97,99,104,65,102,116,101,114,40,74,108,40,114,44,46,53,41,41,46,101,97,99,104,66,101,102,111,114,101,40,116,104,40,49,41,41,58,105,46,101,97,99,104,66,101,102,111,114,101,40,75,108,40,81,108,41,41,46,101,97,99,104,65,102,116,101,114,40,74,108,40,87,108,44,49,41,41,46,101,97,99,104,65,102,116,101,114,40,74,108,40,114,44,105,46,114,47,77,97,116,104,46,109,105,110,40,110,44,101,41,41,41,46,101,97,99,104,66,101,102,111,114,101,40,116,104,40,77,97,116,104,46,109,105,110,40,110,44,101,41,47,40,50,42,105,46,114,41,41,41,44,105,125,114,101,116,117,114,110,32,105,46,114,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,71,108,40,110,41,44,105,41,58,116,125,44,105,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,43,116,91,48,93,44,101,61,43,116,91,49,93,44,105,41,58,91,110,44,101,93,125,44,105,46,112,97,100,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,108,40,43,116,41,44,105,41,58,114,125,44,105,125,44,116,46,112,97,99,107,69,110,99,108,111,115,101,61,68,108,44,116,46,112,97,99,107,83,105,98,108,105,110,103,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,86,108,40,116,41,44,116,125,44,116,46,112,97,105,114,115,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,110,117,108,108,61,61,110,38,38,40,110,61,97,41,59,102,111,114,40,118,97,114,32,101,61,48,44,114,61,116,46,108,101,110,103,116,104,45,49,44,105,61,116,91,48,93,44,111,61,110,101,119,32,65,114,114,97,121,40,114,60,48,63,48,58,114,41,59,101,60,114,59,41,111,91,101,93,61,110,40,105,44,105,61,116,91,43,43,101,93,41,59,114,101,116,117,114,110,32,111,125,44,116,46,112,97,114,116,105,116,105,111,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,49,44,110,61,49,44,101,61,48,44,114,61,33,49,59,102,117,110,99,116,105,111,110,32,105,40,105,41,123,118,97,114,32,111,61,105,46,104,101,105,103,104,116,43,49,59,114,101,116,117,114,110,32,105,46,120,48,61,105,46,121,48,61,101,44,105,46,120,49,61,116,44,105,46,121,49,61,110,47,111,44,105,46,101,97,99,104,66,101,102,111,114,101,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,46,99,104,105,108,100,114,101,110,38,38,101,104,40,114,44,114,46,120,48,44,116,42,40,114,46,100,101,112,116,104,43,49,41,47,110,44,114,46,120,49,44,116,42,40,114,46,100,101,112,116,104,43,50,41,47,110,41,59,118,97,114,32,105,61,114,46,120,48,44,111,61,114,46,121,48,44,97,61,114,46,120,49,45,101,44,117,61,114,46,121,49,45,101,59,97,60,105,38,38,40,105,61,97,61,40,105,43,97,41,47,50,41,44,117,60,111,38,38,40,111,61,117,61,40,111,43,117,41,47,50,41,44,114,46,120,48,61,105,44,114,46,121,48,61,111,44,114,46,120,49,61,97,44,114,46,121,49,61,117,125,125,40,110,44,111,41,41,44,114,38,38,105,46,101,97,99,104,66,101,102,111,114,101,40,110,104,41,44,105,125,114,101,116,117,114,110,32,105,46,114,111,117,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,33,33,116,44,105,41,58,114,125,44,105,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,43,101,91,48,93,44,110,61,43,101,91,49,93,44,105,41,58,91,116,44,110,93,125,44,105,46,112,97,100,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,43,116,44,105,41,58,101,125,44,105,125,44,116,46,112,97,116,104,61,110,111,44,116,46,112,101,114,109,117,116,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,110,46,108,101,110,103,116,104,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,59,101,45,45,59,41,114,91,101,93,61,116,91,110,91,101,93,93,59,114,101,116,117,114,110,32,114,125,44,116,46,112,105,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,86,121,44,110,61,88,121,44,101,61,110,117,108,108,44,114,61,109,121,40,48,41,44,105,61,109,121,40,80,121,41,44,111,61,109,121,40,48,41,59,102,117,110,99,116,105,111,110,32,97,40,97,41,123,118,97,114,32,117,44,99,44,102,44,115,44,108,44,104,61,97,46,108,101,110,103,116,104,44,100,61,48,44,112,61,110,101,119,32,65,114,114,97,121,40,104,41,44,118,61,110,101,119,32,65,114,114,97,121,40,104,41,44,103,61,43,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,121,61,77,97,116,104,46,109,105,110,40,80,121,44,77,97,116,104,46,109,97,120,40,45,80,121,44,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,45,103,41,41,44,95,61,77,97,116,104,46,109,105,110,40,77,97,116,104,46,97,98,115,40,121,41,47,104,44,111,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,44,98,61,95,42,40,121,60,48,63,45,49,58,49,41,59,102,111,114,40,117,61,48,59,117,60,104,59,43,43,117,41,40,108,61,118,91,112,91,117,93,61,117,93,61,43,116,40,97,91,117,93,44,117,44,97,41,41,62,48,38,38,40,100,43,61,108,41,59,102,111,114,40,110,117,108,108,33,61,110,63,112,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,110,40,118,91,116,93,44,118,91,101,93,41,125,41,58,110,117,108,108,33,61,101,38,38,112,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,101,40,97,91,116,93,44,97,91,110,93,41,125,41,44,117,61,48,44,102,61,100,63,40,121,45,104,42,98,41,47,100,58,48,59,117,60,104,59,43,43,117,44,103,61,115,41,99,61,112,91,117,93,44,115,61,103,43,40,40,108,61,118,91,99,93,41,62,48,63,108,42,102,58,48,41,43,98,44,118,91,99,93,61,123,100,97,116,97,58,97,91,99,93,44,105,110,100,101,120,58,117,44,118,97,108,117,101,58,108,44,115,116,97,114,116,65,110,103,108,101,58,103,44,101,110,100,65,110,103,108,101,58,115,44,112,97,100,65,110,103,108,101,58,95,125,59,114,101,116,117,114,110,32,118,125,114,101,116,117,114,110,32,97,46,118,97,108,117,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,109,121,40,43,110,41,44,97,41,58,116,125,44,97,46,115,111,114,116,86,97,108,117,101,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,116,44,101,61,110,117,108,108,44,97,41,58,110,125,44,97,46,115,111,114,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,116,44,110,61,110,117,108,108,44,97,41,58,101,125,44,97,46,115,116,97,114,116,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,97,41,58,114,125,44,97,46,101,110,100,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,97,41,58,105,125,44,97,46,112,97,100,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,97,41,58,111,125,44,97,125,44,116,46,112,105,101,99,101,119,105,115,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,48,44,114,61,110,46,108,101,110,103,116,104,45,49,44,105,61,110,91,48,93,44,111,61,110,101,119,32,65,114,114,97,121,40,114,60,48,63,48,58,114,41,59,101,60,114,59,41,111,91,101,93,61,116,40,105,44,105,61,110,91,43,43,101,93,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,114,45,49,44,77,97,116,104,46,102,108,111,111,114,40,116,42,61,114,41,41,41,59,114,101,116,117,114,110,32,111,91,110,93,40,116,45,110,41,125,125,44,116,46,112,111,105,110,116,82,97,100,105,97,108,61,74,121,44,116,46,112,111,108,121,103,111,110,65,114,101,97,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,61,45,49,44,114,61,116,46,108,101,110,103,116,104,44,105,61,116,91,114,45,49,93,44,111,61,48,59,43,43,101,60,114,59,41,110,61,105,44,105,61,116,91,101,93,44,111,43,61,110,91,49,93,42,105,91,48,93,45,110,91,48,93,42,105,91,49,93,59,114,101,116,117,114,110,32,111,47,50,125,44,116,46,112,111,108,121,103,111,110,67,101,110,116,114,111,105,100,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,61,45,49,44,105,61,116,46,108,101,110,103,116,104,44,111,61,48,44,97,61,48,44,117,61,116,91,105,45,49,93,44,99,61,48,59,43,43,114,60,105,59,41,110,61,117,44,117,61,116,91,114,93,44,99,43,61,101,61,110,91,48,93,42,117,91,49,93,45,117,91,48,93,42,110,91,49,93,44,111,43,61,40,110,91,48,93,43,117,91,48,93,41,42,101,44,97,43,61,40,110,91,49,93,43,117,91,49,93,41,42,101,59,114,101,116,117,114,110,91,111,47,40,99,42,61,51,41,44,97,47,99,93,125,44,116,46,112,111,108,121,103,111,110,67,111,110,116,97,105,110,115,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,44,114,44,105,61,116,46,108,101,110,103,116,104,44,111,61,116,91,105,45,49,93,44,97,61,110,91,48,93,44,117,61,110,91,49,93,44,99,61,111,91,48,93,44,102,61,111,91,49,93,44,115,61,33,49,44,108,61,48,59,108,60,105,59,43,43,108,41,101,61,40,111,61,116,91,108,93,41,91,48,93,44,40,114,61,111,91,49,93,41,62,117,33,61,102,62,117,38,38,97,60,40,99,45,101,41,42,40,117,45,114,41,47,40,102,45,114,41,43,101,38,38,40,115,61,33,115,41,44,99,61,101,44,102,61,114,59,114,101,116,117,114,110,32,115,125,44,116,46,112,111,108,121,103,111,110,72,117,108,108,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,40,101,61,116,46,108,101,110,103,116,104,41,60,51,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,110,44,101,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,44,105,61,110,101,119,32,65,114,114,97,121,40,101,41,59,102,111,114,40,110,61,48,59,110,60,101,59,43,43,110,41,114,91,110,93,61,91,43,116,91,110,93,91,48,93,44,43,116,91,110,93,91,49,93,44,110,93,59,102,111,114,40,114,46,115,111,114,116,40,109,104,41,44,110,61,48,59,110,60,101,59,43,43,110,41,105,91,110,93,61,91,114,91,110,93,91,48,93,44,45,114,91,110,93,91,49,93,93,59,118,97,114,32,111,61,120,104,40,114,41,44,97,61,120,104,40,105,41,44,117,61,97,91,48,93,61,61,61,111,91,48,93,44,99,61,97,91,97,46,108,101,110,103,116,104,45,49,93,61,61,61,111,91,111,46,108,101,110,103,116,104,45,49,93,44,102,61,91,93,59,102,111,114,40,110,61,111,46,108,101,110,103,116,104,45,49,59,110,62,61,48,59,45,45,110,41,102,46,112,117,115,104,40,116,91,114,91,111,91,110,93,93,91,50,93,93,41,59,102,111,114,40,110,61,43,117,59,110,60,97,46,108,101,110,103,116,104,45,99,59,43,43,110,41,102,46,112,117,115,104,40,116,91,114,91,97,91,110,93,93,91,50,93,93,41,59,114,101,116,117,114,110,32,102,125,44,116,46,112,111,108,121,103,111,110,76,101,110,103,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,61,45,49,44,105,61,116,46,108,101,110,103,116,104,44,111,61,116,91,105,45,49,93,44,97,61,111,91,48,93,44,117,61,111,91,49,93,44,99,61,48,59,43,43,114,60,105,59,41,110,61,97,44,101,61,117,44,110,45,61,97,61,40,111,61,116,91,114,93,41,91,48,93,44,101,45,61,117,61,111,91,49,93,44,99,43,61,77,97,116,104,46,115,113,114,116,40,110,42,110,43,101,42,101,41,59,114,101,116,117,114,110,32,99,125,44,116,46,112,114,101,99,105,115,105,111,110,70,105,120,101,100,61,36,97,44,116,46,112,114,101,99,105,115,105,111,110,80,114,101,102,105,120,61,87,97,44,116,46,112,114,101,99,105,115,105,111,110,82,111,117,110,100,61,90,97,44,116,46,113,117,97,100,116,114,101,101,61,119,97,44,116,46,113,117,97,110,116,105,108,101,61,78,44,116,46,113,117,97,110,116,105,122,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,110,101,119,32,65,114,114,97,121,40,110,41,44,114,61,48,59,114,60,110,59,43,43,114,41,101,91,114,93,61,116,40,114,47,40,110,45,49,41,41,59,114,101,116,117,114,110,32,101,125,44,116,46,114,97,100,105,97,108,65,114,101,97,61,75,121,44,116,46,114,97,100,105,97,108,76,105,110,101,61,81,121,44,116,46,114,97,110,100,111,109,66,97,116,101,115,61,83,104,44,116,46,114,97,110,100,111,109,69,120,112,111,110,101,110,116,105,97,108,61,107,104,44,116,46,114,97,110,100,111,109,73,114,119,105,110,72,97,108,108,61,65,104,44,116,46,114,97,110,100,111,109,76,111,103,78,111,114,109,97,108,61,84,104,44,116,46,114,97,110,100,111,109,78,111,114,109,97,108,61,78,104,44,116,46,114,97,110,100,111,109,85,110,105,102,111,114,109,61,77,104,44,116,46,114,97,110,103,101,61,103,44,116,46,114,103,98,61,95,110,44,116,46,114,105,98,98,111,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,101,111,44,110,61,114,111,44,101,61,105,111,44,114,61,111,111,44,105,61,97,111,44,111,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,97,40,41,123,118,97,114,32,97,44,117,61,87,105,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,99,61,116,46,97,112,112,108,121,40,116,104,105,115,44,117,41,44,102,61,110,46,97,112,112,108,121,40,116,104,105,115,44,117,41,44,115,61,43,101,46,97,112,112,108,121,40,116,104,105,115,44,40,117,91,48,93,61,99,44,117,41,41,44,108,61,114,46,97,112,112,108,121,40,116,104,105,115,44,117,41,45,88,105,44,104,61,105,46,97,112,112,108,121,40,116,104,105,115,44,117,41,45,88,105,44,100,61,115,42,73,105,40,108,41,44,112,61,115,42,72,105,40,108,41,44,118,61,43,101,46,97,112,112,108,121,40,116,104,105,115,44,40,117,91,48,93,61,102,44,117,41,41,44,103,61,114,46,97,112,112,108,121,40,116,104,105,115,44,117,41,45,88,105,44,121,61,105,46,97,112,112,108,121,40,116,104,105,115,44,117,41,45,88,105,59,105,102,40,111,124,124,40,111,61,97,61,110,111,40,41,41,44,111,46,109,111,118,101,84,111,40,100,44,112,41,44,111,46,97,114,99,40,48,44,48,44,115,44,108,44,104,41,44,108,61,61,61,103,38,38,104,61,61,61,121,124,124,40,111,46,113,117,97,100,114,97,116,105,99,67,117,114,118,101,84,111,40,48,44,48,44,118,42,73,105,40,103,41,44,118,42,72,105,40,103,41,41,44,111,46,97,114,99,40,48,44,48,44,118,44,103,44,121,41,41,44,111,46,113,117,97,100,114,97,116,105,99,67,117,114,118,101,84,111,40,48,44,48,44,100,44,112,41,44,111,46,99,108,111,115,101,80,97,116,104,40,41,44,97,41,114,101,116,117,114,110,32,111,61,110,117,108,108,44,97,43,34,34,124,124,110,117,108,108,125,114,101,116,117,114,110,32,97,46,114,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,105,40,43,116,41,44,97,41,58,101,125,44,97,46,115,116,97,114,116,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,105,40,43,116,41,44,97,41,58,114,125,44,97,46,101,110,100,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,105,40,43,116,41,44,97,41,58,105,125,44,97,46,115,111,117,114,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,110,44,97,41,58,116,125,44,97,46,116,97,114,103,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,116,44,97,41,58,110,125,44,97,46,99,111,110,116,101,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,110,117,108,108,61,61,116,63,110,117,108,108,58,116,44,97,41,58,111,125,44,97,125,44,116,46,115,99,97,108,101,66,97,110,100,61,76,104,44,116,46,115,99,97,108,101,68,105,118,101,114,103,105,110,103,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,36,104,40,36,118,40,41,40,66,104,41,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,110,44,116,40,41,41,125,44,67,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,68,105,118,101,114,103,105,110,103,76,111,103,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,101,100,40,36,118,40,41,41,46,100,111,109,97,105,110,40,91,46,49,44,49,44,49,48,93,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,110,44,116,40,41,41,46,98,97,115,101,40,110,46,98,97,115,101,40,41,41,125,44,67,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,68,105,118,101,114,103,105,110,103,80,111,119,61,87,118,44,116,46,115,99,97,108,101,68,105,118,101,114,103,105,110,103,83,113,114,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,87,118,46,97,112,112,108,121,40,110,117,108,108,44,97,114,103,117,109,101,110,116,115,41,46,101,120,112,111,110,101,110,116,40,46,53,41,125,44,116,46,115,99,97,108,101,68,105,118,101,114,103,105,110,103,83,121,109,108,111,103,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,111,100,40,36,118,40,41,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,110,44,116,40,41,41,46,99,111,110,115,116,97,110,116,40,110,46,99,111,110,115,116,97,110,116,40,41,41,125,44,67,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,73,100,101,110,116,105,116,121,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,118,97,114,32,101,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,114,101,116,117,114,110,32,105,115,78,97,78,40,116,61,43,116,41,63,101,58,116,125,114,101,116,117,114,110,32,114,46,105,110,118,101,114,116,61,114,44,114,46,100,111,109,97,105,110,61,114,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,122,104,46,99,97,108,108,40,116,44,85,104,41,44,114,41,58,110,46,115,108,105,99,101,40,41,125,44,114,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,116,44,114,41,58,101,125,44,114,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,110,41,46,117,110,107,110,111,119,110,40,101,41,125,44,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,122,104,46,99,97,108,108,40,110,44,85,104,41,58,91,48,44,49,93,44,36,104,40,114,41,125,44,116,46,115,99,97,108,101,73,109,112,108,105,99,105,116,61,68,104,44,116,46,115,99,97,108,101,76,105,110,101,97,114,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,86,104,40,66,104,44,66,104,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,104,40,110,44,116,40,41,41,125,44,69,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,44,36,104,40,110,41,125,44,116,46,115,99,97,108,101,76,111,103,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,101,100,40,88,104,40,41,41,46,100,111,109,97,105,110,40,91,49,44,49,48,93,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,104,40,110,44,116,40,41,41,46,98,97,115,101,40,110,46,98,97,115,101,40,41,41,125,44,69,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,44,110,125,44,116,46,115,99,97,108,101,79,114,100,105,110,97,108,61,113,104,44,116,46,115,99,97,108,101,80,111,105,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,116,40,110,41,123,118,97,114,32,101,61,110,46,99,111,112,121,59,114,101,116,117,114,110,32,110,46,112,97,100,100,105,110,103,61,110,46,112,97,100,100,105,110,103,79,117,116,101,114,44,100,101,108,101,116,101,32,110,46,112,97,100,100,105,110,103,73,110,110,101,114,44,100,101,108,101,116,101,32,110,46,112,97,100,100,105,110,103,79,117,116,101,114,44,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,101,40,41,41,125,44,110,125,40,76,104,46,97,112,112,108,121,40,110,117,108,108,44,97,114,103,117,109,101,110,116,115,41,46,112,97,100,100,105,110,103,73,110,110,101,114,40,49,41,41,125,44,116,46,115,99,97,108,101,80,111,119,61,115,100,44,116,46,115,99,97,108,101,81,117,97,110,116,105,108,101,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,101,44,114,61,91,93,44,111,61,91,93,44,97,61,91,93,59,102,117,110,99,116,105,111,110,32,117,40,41,123,118,97,114,32,116,61,48,44,110,61,77,97,116,104,46,109,97,120,40,49,44,111,46,108,101,110,103,116,104,41,59,102,111,114,40,97,61,110,101,119,32,65,114,114,97,121,40,110,45,49,41,59,43,43,116,60,110,59,41,97,91,116,45,49,93,61,78,40,114,44,116,47,110,41,59,114,101,116,117,114,110,32,99,125,102,117,110,99,116,105,111,110,32,99,40,116,41,123,114,101,116,117,114,110,32,105,115,78,97,78,40,116,61,43,116,41,63,101,58,111,91,105,40,97,44,116,41,93,125,114,101,116,117,114,110,32,99,46,105,110,118,101,114,116,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,111,46,105,110,100,101,120,79,102,40,116,41,59,114,101,116,117,114,110,32,110,60,48,63,91,78,97,78,44,78,97,78,93,58,91,110,62,48,63,97,91,110,45,49,93,58,114,91,48,93,44,110,60,97,46,108,101,110,103,116,104,63,97,91,110,93,58,114,91,114,46,108,101,110,103,116,104,45,49,93,93,125,44,99,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,114,46,115,108,105,99,101,40,41,59,114,61,91,93,59,102,111,114,40,118,97,114,32,101,44,105,61,48,44,111,61,116,46,108,101,110,103,116,104,59,105,60,111,59,43,43,105,41,110,117,108,108,61,61,40,101,61,116,91,105,93,41,124,124,105,115,78,97,78,40,101,61,43,101,41,124,124,114,46,112,117,115,104,40,101,41,59,114,101,116,117,114,110,32,114,46,115,111,114,116,40,110,41,44,117,40,41,125,44,99,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,82,104,46,99,97,108,108,40,116,41,44,117,40,41,41,58,111,46,115,108,105,99,101,40,41,125,44,99,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,116,44,99,41,58,101,125,44,99,46,113,117,97,110,116,105,108,101,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,46,115,108,105,99,101,40,41,125,44,99,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,41,46,100,111,109,97,105,110,40,114,41,46,114,97,110,103,101,40,111,41,46,117,110,107,110,111,119,110,40,101,41,125,44,69,104,46,97,112,112,108,121,40,99,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,81,117,97,110,116,105,122,101,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,44,101,61,48,44,114,61,49,44,111,61,49,44,97,61,91,46,53,93,44,117,61,91,48,44,49,93,59,102,117,110,99,116,105,111,110,32,99,40,116,41,123,114,101,116,117,114,110,32,116,60,61,116,63,117,91,105,40,97,44,116,44,48,44,111,41,93,58,110,125,102,117,110,99,116,105,111,110,32,102,40,41,123,118,97,114,32,116,61,45,49,59,102,111,114,40,97,61,110,101,119,32,65,114,114,97,121,40,111,41,59,43,43,116,60,111,59,41,97,91,116,93,61,40,40,116,43,49,41,42,114,45,40,116,45,111,41,42,101,41,47,40,111,43,49,41,59,114,101,116,117,114,110,32,99,125,114,101,116,117,114,110,32,99,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,43,116,91,48,93,44,114,61,43,116,91,49,93,44,102,40,41,41,58,91,101,44,114,93,125,44,99,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,40,117,61,82,104,46,99,97,108,108,40,116,41,41,46,108,101,110,103,116,104,45,49,44,102,40,41,41,58,117,46,115,108,105,99,101,40,41,125,44,99,46,105,110,118,101,114,116,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,117,46,105,110,100,101,120,79,102,40,116,41,59,114,101,116,117,114,110,32,110,60,48,63,91,78,97,78,44,78,97,78,93,58,110,60,49,63,91,101,44,97,91,48,93,93,58,110,62,61,111,63,91,97,91,111,45,49,93,44,114,93,58,91,97,91,110,45,49,93,44,97,91,110,93,93,125,44,99,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,116,44,99,41,58,99,125,44,99,46,116,104,114,101,115,104,111,108,100,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,46,115,108,105,99,101,40,41,125,44,99,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,41,46,100,111,109,97,105,110,40,91,101,44,114,93,41,46,114,97,110,103,101,40,117,41,46,117,110,107,110,111,119,110,40,110,41,125,44,69,104,46,97,112,112,108,121,40,36,104,40,99,41,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,36,104,40,88,118,40,41,40,66,104,41,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,110,44,116,40,41,41,125,44,67,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,76,111,103,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,101,100,40,88,118,40,41,41,46,100,111,109,97,105,110,40,91,49,44,49,48,93,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,110,44,116,40,41,41,46,98,97,115,101,40,110,46,98,97,115,101,40,41,41,125,44,67,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,80,111,119,61,71,118,44,116,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,81,117,97,110,116,105,108,101,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,101,61,91,93,44,114,61,66,104,59,102,117,110,99,116,105,111,110,32,111,40,116,41,123,105,102,40,33,105,115,78,97,78,40,116,61,43,116,41,41,114,101,116,117,114,110,32,114,40,40,105,40,101,44,116,41,45,49,41,47,40,101,46,108,101,110,103,116,104,45,49,41,41,125,114,101,116,117,114,110,32,111,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,101,46,115,108,105,99,101,40,41,59,101,61,91,93,59,102,111,114,40,118,97,114,32,114,44,105,61,48,44,97,61,116,46,108,101,110,103,116,104,59,105,60,97,59,43,43,105,41,110,117,108,108,61,61,40,114,61,116,91,105,93,41,124,124,105,115,78,97,78,40,114,61,43,114,41,124,124,101,46,112,117,115,104,40,114,41,59,114,101,116,117,114,110,32,101,46,115,111,114,116,40,110,41,44,111,125,44,111,46,105,110,116,101,114,112,111,108,97,116,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,116,44,111,41,58,114,125,44,111,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,114,41,46,100,111,109,97,105,110,40,101,41,125,44,67,104,46,97,112,112,108,121,40,111,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,83,113,114,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,71,118,46,97,112,112,108,121,40,110,117,108,108,44,97,114,103,117,109,101,110,116,115,41,46,101,120,112,111,110,101,110,116,40,46,53,41,125,44,116,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,83,121,109,108,111,103,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,111,100,40,88,118,40,41,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,110,44,116,40,41,41,46,99,111,110,115,116,97,110,116,40,110,46,99,111,110,115,116,97,110,116,40,41,41,125,44,67,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,83,113,114,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,100,46,97,112,112,108,121,40,110,117,108,108,44,97,114,103,117,109,101,110,116,115,41,46,101,120,112,111,110,101,110,116,40,46,53,41,125,44,116,46,115,99,97,108,101,83,121,109,108,111,103,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,111,100,40,88,104,40,41,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,104,40,110,44,116,40,41,41,46,99,111,110,115,116,97,110,116,40,110,46,99,111,110,115,116,97,110,116,40,41,41,125,44,69,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,84,104,114,101,115,104,111,108,100,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,44,101,61,91,46,53,93,44,114,61,91,48,44,49,93,44,111,61,49,59,102,117,110,99,116,105,111,110,32,97,40,116,41,123,114,101,116,117,114,110,32,116,60,61,116,63,114,91,105,40,101,44,116,44,48,44,111,41,93,58,110,125,114,101,116,117,114,110,32,97,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,82,104,46,99,97,108,108,40,116,41,44,111,61,77,97,116,104,46,109,105,110,40,101,46,108,101,110,103,116,104,44,114,46,108,101,110,103,116,104,45,49,41,44,97,41,58,101,46,115,108,105,99,101,40,41,125,44,97,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,82,104,46,99,97,108,108,40,116,41,44,111,61,77,97,116,104,46,109,105,110,40,101,46,108,101,110,103,116,104,44,114,46,108,101,110,103,116,104,45,49,41,44,97,41,58,114,46,115,108,105,99,101,40,41,125,44,97,46,105,110,118,101,114,116,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,114,46,105,110,100,101,120,79,102,40,116,41,59,114,101,116,117,114,110,91,101,91,110,45,49,93,44,101,91,110,93,93,125,44,97,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,116,44,97,41,58,110,125,44,97,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,41,46,100,111,109,97,105,110,40,101,41,46,114,97,110,103,101,40,114,41,46,117,110,107,110,111,119,110,40,110,41,125,44,69,104,46,97,112,112,108,121,40,97,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,84,105,109,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,69,104,46,97,112,112,108,121,40,106,118,40,72,100,44,89,100,44,83,100,44,78,100,44,119,100,44,109,100,44,95,100,44,112,100,44,116,46,116,105,109,101,70,111,114,109,97,116,41,46,100,111,109,97,105,110,40,91,110,101,119,32,68,97,116,101,40,50,101,51,44,48,44,49,41,44,110,101,119,32,68,97,116,101,40,50,101,51,44,48,44,50,41,93,41,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,85,116,99,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,69,104,46,97,112,112,108,121,40,106,118,40,112,112,44,104,112,44,75,100,44,87,100,44,71,100,44,88,100,44,95,100,44,112,100,44,116,46,117,116,99,70,111,114,109,97,116,41,46,100,111,109,97,105,110,40,91,68,97,116,101,46,85,84,67,40,50,101,51,44,48,44,49,41,44,68,97,116,101,46,85,84,67,40,50,101,51,44,48,44,50,41,93,41,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,110,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,114,61,116,46,108,101,110,103,116,104,41,123,118,97,114,32,114,44,105,44,111,61,48,44,97,61,48,44,117,61,116,91,97,93,59,102,111,114,40,110,117,108,108,61,61,101,38,38,40,101,61,110,41,59,43,43,111,60,114,59,41,40,101,40,105,61,116,91,111,93,44,117,41,60,48,124,124,48,33,61,61,101,40,117,44,117,41,41,38,38,40,117,61,105,44,97,61,111,41,59,114,101,116,117,114,110,32,48,61,61,61,101,40,117,44,117,41,63,97,58,118,111,105,100,32,48,125,125,44,116,46,115,99,104,101,109,101,65,99,99,101,110,116,61,75,118,44,116,46,115,99,104,101,109,101,66,108,117,101,115,61,90,103,44,116,46,115,99,104,101,109,101,66,114,66,71,61,99,103,44,116,46,115,99,104,101,109,101,66,117,71,110,61,65,103,44,116,46,115,99,104,101,109,101,66,117,80,117,61,107,103,44,116,46,115,99,104,101,109,101,67,97,116,101,103,111,114,121,49,48,61,81,118,44,116,46,115,99,104,101,109,101,68,97,114,107,50,61,74,118,44,116,46,115,99,104,101,109,101,71,110,66,117,61,67,103,44,116,46,115,99,104,101,109,101,71,114,101,101,110,115,61,75,103,44,116,46,115,99,104,101,109,101,71,114,101,121,115,61,116,121,44,116,46,115,99,104,101,109,101,79,114,82,100,61,122,103,44,116,46,115,99,104,101,109,101,79,114,97,110,103,101,115,61,97,121,44,116,46,115,99,104,101,109,101,80,82,71,110,61,115,103,44,116,46,115,99,104,101,109,101,80,97,105,114,101,100,61,116,103,44,116,46,115,99,104,101,109,101,80,97,115,116,101,108,49,61,110,103,44,116,46,115,99,104,101,109,101,80,97,115,116,101,108,50,61,101,103,44,116,46,115,99,104,101,109,101,80,105,89,71,61,104,103,44,116,46,115,99,104,101,109,101,80,117,66,117,61,76,103,44,116,46,115,99,104,101,109,101,80,117,66,117,71,110,61,68,103,44,116,46,115,99,104,101,109,101,80,117,79,114,61,112,103,44,116,46,115,99,104,101,109,101,80,117,82,100,61,79,103,44,116,46,115,99,104,101,109,101,80,117,114,112,108,101,115,61,101,121,44,116,46,115,99,104,101,109,101,82,100,66,117,61,103,103,44,116,46,115,99,104,101,109,101,82,100,71,121,61,95,103,44,116,46,115,99,104,101,109,101,82,100,80,117,61,70,103,44,116,46,115,99,104,101,109,101,82,100,89,108,66,117,61,109,103,44,116,46,115,99,104,101,109,101,82,100,89,108,71,110,61,119,103,44,116,46,115,99,104,101,109,101,82,101,100,115,61,105,121,44,116,46,115,99,104,101,109,101,83,101,116,49,61,114,103,44,116,46,115,99,104,101,109,101,83,101,116,50,61,105,103,44,116,46,115,99,104,101,109,101,83,101,116,51,61,111,103,44,116,46,115,99,104,101,109,101,83,112,101,99,116,114,97,108,61,78,103,44,116,46,115,99,104,101,109,101,84,97,98,108,101,97,117,49,48,61,97,103,44,116,46,115,99,104,101,109,101,89,108,71,110,61,106,103,44,116,46,115,99,104,101,109,101,89,108,71,110,66,117,61,73,103,44,116,46,115,99,104,101,109,101,89,108,79,114,66,114,61,86,103,44,116,46,115,99,104,101,109,101,89,108,79,114,82,100,61,36,103,44,116,46,115,101,108,101,99,116,61,82,116,44,116,46,115,101,108,101,99,116,65,108,108,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,63,110,101,119,32,80,116,40,91,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,41,93,44,91,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,93,41,58,110,101,119,32,80,116,40,91,110,117,108,108,61,61,116,63,91,93,58,116,93,44,67,116,41,125,44,116,46,115,101,108,101,99,116,105,111,110,61,122,116,44,116,46,115,101,108,101,99,116,111,114,61,75,44,116,46,115,101,108,101,99,116,111,114,65,108,108,61,116,116,44,116,46,115,101,116,61,103,111,44,116,46,115,104,117,102,102,108,101,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,102,111,114,40,118,97,114,32,114,44,105,44,111,61,40,110,117,108,108,61,61,101,63,116,46,108,101,110,103,116,104,58,101,41,45,40,110,61,110,117,108,108,61,61,110,63,48,58,43,110,41,59,111,59,41,105,61,77,97,116,104,46,114,97,110,100,111,109,40,41,42,111,45,45,124,48,44,114,61,116,91,111,43,110,93,44,116,91,111,43,110,93,61,116,91,105,43,110,93,44,116,91,105,43,110,93,61,114,59,114,101,116,117,114,110,32,116,125,44,116,46,115,116,97,99,107,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,109,121,40,91,93,41,44,110,61,114,98,44,101,61,101,98,44,114,61,105,98,59,102,117,110,99,116,105,111,110,32,105,40,105,41,123,118,97,114,32,111,44,97,44,117,61,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,99,61,105,46,108,101,110,103,116,104,44,102,61,117,46,108,101,110,103,116,104,44,115,61,110,101,119,32,65,114,114,97,121,40,102,41,59,102,111,114,40,111,61,48,59,111,60,102,59,43,43,111,41,123,102,111,114,40,118,97,114,32,108,44,104,61,117,91,111,93,44,100,61,115,91,111,93,61,110,101,119,32,65,114,114,97,121,40,99,41,44,112,61,48,59,112,60,99,59,43,43,112,41,100,91,112,93,61,108,61,91,48,44,43,114,40,105,91,112,93,44,104,44,112,44,105,41,93,44,108,46,100,97,116,97,61,105,91,112,93,59,100,46,107,101,121,61,104,125,102,111,114,40,111,61,48,44,97,61,110,40,115,41,59,111,60,102,59,43,43,111,41,115,91,97,91,111,93,93,46,105,110,100,101,120,61,111,59,114,101,116,117,114,110,32,101,40,115,44,97,41,44,115,125,114,101,116,117,114,110,32,105,46,107,101,121,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,109,121,40,116,95,46,99,97,108,108,40,110,41,41,44,105,41,58,116,125,44,105,46,118,97,108,117,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,105,41,58,114,125,44,105,46,111,114,100,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,110,117,108,108,61,61,116,63,114,98,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,116,95,46,99,97,108,108,40,116,41,41,44,105,41,58,110,125,44,105,46,111,102,102,115,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,110,117,108,108,61,61,116,63,101,98,58,116,44,105,41,58,101,125,44,105,125,44,116,46,115,116,97,99,107,79,102,102,115,101,116,68,105,118,101,114,103,105,110,103,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,40,117,61,116,46,108,101,110,103,116,104,41,62,48,41,102,111,114,40,118,97,114,32,101,44,114,44,105,44,111,44,97,44,117,44,99,61,48,44,102,61,116,91,110,91,48,93,93,46,108,101,110,103,116,104,59,99,60,102,59,43,43,99,41,102,111,114,40,111,61,97,61,48,44,101,61,48,59,101,60,117,59,43,43,101,41,40,105,61,40,114,61,116,91,110,91,101,93,93,91,99,93,41,91,49,93,45,114,91,48,93,41,62,48,63,40,114,91,48,93,61,111,44,114,91,49,93,61,111,43,61,105,41,58,105,60,48,63,40,114,91,49,93,61,97,44,114,91,48,93,61,97,43,61,105,41,58,40,114,91,48,93,61,48,44,114,91,49,93,61,105,41,125,44,116,46,115,116,97,99,107,79,102,102,115,101,116,69,120,112,97,110,100,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,40,114,61,116,46,108,101,110,103,116,104,41,62,48,41,123,102,111,114,40,118,97,114,32,101,44,114,44,105,44,111,61,48,44,97,61,116,91,48,93,46,108,101,110,103,116,104,59,111,60,97,59,43,43,111,41,123,102,111,114,40,105,61,101,61,48,59,101,60,114,59,43,43,101,41,105,43,61,116,91,101,93,91,111,93,91,49,93,124,124,48,59,105,102,40,105,41,102,111,114,40,101,61,48,59,101,60,114,59,43,43,101,41,116,91,101,93,91,111,93,91,49,93,47,61,105,125,101,98,40,116,44,110,41,125,125,44,116,46,115,116,97,99,107,79,102,102,115,101,116,78,111,110,101,61,101,98,44,116,46,115,116,97,99,107,79,102,102,115,101,116,83,105,108,104,111,117,101,116,116,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,40,101,61,116,46,108,101,110,103,116,104,41,62,48,41,123,102,111,114,40,118,97,114,32,101,44,114,61,48,44,105,61,116,91,110,91,48,93,93,44,111,61,105,46,108,101,110,103,116,104,59,114,60,111,59,43,43,114,41,123,102,111,114,40,118,97,114,32,97,61,48,44,117,61,48,59,97,60,101,59,43,43,97,41,117,43,61,116,91,97,93,91,114,93,91,49,93,124,124,48,59,105,91,114,93,91,49,93,43,61,105,91,114,93,91,48,93,61,45,117,47,50,125,101,98,40,116,44,110,41,125,125,44,116,46,115,116,97,99,107,79,102,102,115,101,116,87,105,103,103,108,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,40,105,61,116,46,108,101,110,103,116,104,41,62,48,38,38,40,114,61,40,101,61,116,91,110,91,48,93,93,41,46,108,101,110,103,116,104,41,62,48,41,123,102,111,114,40,118,97,114,32,101,44,114,44,105,44,111,61,48,44,97,61,49,59,97,60,114,59,43,43,97,41,123,102,111,114,40,118,97,114,32,117,61,48,44,99,61,48,44,102,61,48,59,117,60,105,59,43,43,117,41,123,102,111,114,40,118,97,114,32,115,61,116,91,110,91,117,93,93,44,108,61,115,91,97,93,91,49,93,124,124,48,44,104,61,40,108,45,40,115,91,97,45,49,93,91,49,93,124,124,48,41,41,47,50,44,100,61,48,59,100,60,117,59,43,43,100,41,123,118,97,114,32,112,61,116,91,110,91,100,93,93,59,104,43,61,40,112,91,97,93,91,49,93,124,124,48,41,45,40,112,91,97,45,49,93,91,49,93,124,124,48,41,125,99,43,61,108,44,102,43,61,104,42,108,125,101,91,97,45,49,93,91,49,93,43,61,101,91,97,45,49,93,91,48,93,61,111,44,99,38,38,40,111,45,61,102,47,99,41,125,101,91,97,45,49,93,91,49,93,43,61,101,91,97,45,49,93,91,48,93,61,111,44,101,98,40,116,44,110,41,125,125,44,116,46,115,116,97,99,107,79,114,100,101,114,65,112,112,101,97,114,97,110,99,101,61,111,98,44,116,46,115,116,97,99,107,79,114,100,101,114,65,115,99,101,110,100,105,110,103,61,117,98,44,116,46,115,116,97,99,107,79,114,100,101,114,68,101,115,99,101,110,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,117,98,40,116,41,46,114,101,118,101,114,115,101,40,41,125,44,116,46,115,116,97,99,107,79,114,100,101,114,73,110,115,105,100,101,79,117,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,61,116,46,108,101,110,103,116,104,44,105,61,116,46,109,97,112,40,99,98,41,44,111,61,111,98,40,116,41,44,97,61,48,44,117,61,48,44,99,61,91,93,44,102,61,91,93,59,102,111,114,40,110,61,48,59,110,60,114,59,43,43,110,41,101,61,111,91,110,93,44,97,60,117,63,40,97,43,61,105,91,101,93,44,99,46,112,117,115,104,40,101,41,41,58,40,117,43,61,105,91,101,93,44,102,46,112,117,115,104,40,101,41,41,59,114,101,116,117,114,110,32,102,46,114,101,118,101,114,115,101,40,41,46,99,111,110,99,97,116,40,99,41,125,44,116,46,115,116,97,99,107,79,114,100,101,114,78,111,110,101,61,114,98,44,116,46,115,116,97,99,107,79,114,100,101,114,82,101,118,101,114,115,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,98,40,116,41,46,114,101,118,101,114,115,101,40,41,125,44,116,46,115,116,114,97,116,105,102,121,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,97,104,44,110,61,117,104,59,102,117,110,99,116,105,111,110,32,101,40,101,41,123,118,97,114,32,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,61,101,46,108,101,110,103,116,104,44,108,61,110,101,119,32,65,114,114,97,121,40,115,41,44,104,61,123,125,59,102,111,114,40,105,61,48,59,105,60,115,59,43,43,105,41,114,61,101,91,105,93,44,117,61,108,91,105,93,61,110,101,119,32,122,108,40,114,41,44,110,117,108,108,33,61,40,99,61,116,40,114,44,105,44,101,41,41,38,38,40,99,43,61,34,34,41,38,38,40,104,91,102,61,114,104,43,40,117,46,105,100,61,99,41,93,61,102,32,105,110,32,104,63,111,104,58,117,41,59,102,111,114,40,105,61,48,59,105,60,115,59,43,43,105,41,105,102,40,117,61,108,91,105,93,44,110,117,108,108,33,61,40,99,61,110,40,101,91,105,93,44,105,44,101,41,41,38,38,40,99,43,61,34,34,41,41,123,105,102,40,33,40,97,61,104,91,114,104,43,99,93,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,109,105,115,115,105,110,103,58,32,34,43,99,41,59,105,102,40,97,61,61,61,111,104,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,97,109,98,105,103,117,111,117,115,58,32,34,43,99,41,59,97,46,99,104,105,108,100,114,101,110,63,97,46,99,104,105,108,100,114,101,110,46,112,117,115,104,40,117,41,58,97,46,99,104,105,108,100,114,101,110,61,91,117,93,44,117,46,112,97,114,101,110,116,61,97,125,101,108,115,101,123,105,102,40,111,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,109,117,108,116,105,112,108,101,32,114,111,111,116,115,34,41,59,111,61,117,125,105,102,40,33,111,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,32,114,111,111,116,34,41,59,105,102,40,111,46,112,97,114,101,110,116,61,105,104,44,111,46,101,97,99,104,66,101,102,111,114,101,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,100,101,112,116,104,61,116,46,112,97,114,101,110,116,46,100,101,112,116,104,43,49,44,45,45,115,125,41,46,101,97,99,104,66,101,102,111,114,101,40,80,108,41,44,111,46,112,97,114,101,110,116,61,110,117,108,108,44,115,62,48,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,99,121,99,108,101,34,41,59,114,101,116,117,114,110,32,111,125,114,101,116,117,114,110,32,101,46,105,100,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,36,108,40,110,41,44,101,41,58,116,125,44,101,46,112,97,114,101,110,116,73,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,36,108,40,116,41,44,101,41,58,110,125,44,101,125,44,116,46,115,116,121,108,101,61,102,116,44,116,46,115,117,109,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,61,116,46,108,101,110,103,116,104,44,105,61,45,49,44,111,61,48,59,105,102,40,110,117,108,108,61,61,110,41,102,111,114,40,59,43,43,105,60,114,59,41,40,101,61,43,116,91,105,93,41,38,38,40,111,43,61,101,41,59,101,108,115,101,32,102,111,114,40,59,43,43,105,60,114,59,41,40,101,61,43,110,40,116,91,105,93,44,105,44,116,41,41,38,38,40,111,43,61,101,41,59,114,101,116,117,114,110,32,111,125,44,116,46,115,118,103,61,118,97,44,116,46,115,121,109,98,111,108,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,109,121,40,117,95,41,44,110,61,109,121,40,54,52,41,44,101,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,114,40,41,123,118,97,114,32,114,59,105,102,40,101,124,124,40,101,61,114,61,110,111,40,41,41,44,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,100,114,97,119,40,101,44,43,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,44,114,41,114,101,116,117,114,110,32,101,61,110,117,108,108,44,114,43,34,34,124,124,110,117,108,108,125,114,101,116,117,114,110,32,114,46,116,121,112,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,109,121,40,110,41,44,114,41,58,116,125,44,114,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,114,41,58,110,125,44,114,46,99,111,110,116,101,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,110,117,108,108,61,61,116,63,110,117,108,108,58,116,44,114,41,58,101,125,44,114,125,44,116,46,115,121,109,98,111,108,67,105,114,99,108,101,61,117,95,44,116,46,115,121,109,98,111,108,67,114,111,115,115,61,99,95,44,116,46,115,121,109,98,111,108,68,105,97,109,111,110,100,61,108,95,44,116,46,115,121,109,98,111,108,83,113,117,97,114,101,61,103,95,44,116,46,115,121,109,98,111,108,83,116,97,114,61,118,95,44,116,46,115,121,109,98,111,108,84,114,105,97,110,103,108,101,61,95,95,44,116,46,115,121,109,98,111,108,87,121,101,61,119,95,44,116,46,115,121,109,98,111,108,115,61,77,95,44,116,46,116,101,120,116,61,117,97,44,116,46,116,104,114,101,115,104,111,108,100,70,114,101,101,100,109,97,110,68,105,97,99,111,110,105,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,114,41,123,114,101,116,117,114,110,32,116,61,100,46,99,97,108,108,40,116,44,117,41,46,115,111,114,116,40,110,41,44,77,97,116,104,46,99,101,105,108,40,40,114,45,101,41,47,40,50,42,40,78,40,116,44,46,55,53,41,45,78,40,116,44,46,50,53,41,41,42,77,97,116,104,46,112,111,119,40,116,46,108,101,110,103,116,104,44,45,49,47,51,41,41,41,125,44,116,46,116,104,114,101,115,104,111,108,100,83,99,111,116,116,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,77,97,116,104,46,99,101,105,108,40,40,101,45,110,41,47,40,51,46,53,42,102,40,116,41,42,77,97,116,104,46,112,111,119,40,116,46,108,101,110,103,116,104,44,45,49,47,51,41,41,41,125,44,116,46,116,104,114,101,115,104,111,108,100,83,116,117,114,103,101,115,61,77,44,116,46,116,105,99,107,70,111,114,109,97,116,61,71,104,44,116,46,116,105,99,107,73,110,99,114,101,109,101,110,116,61,120,44,116,46,116,105,99,107,83,116,101,112,61,119,44,116,46,116,105,99,107,115,61,109,44,116,46,116,105,109,101,68,97,121,61,78,100,44,116,46,116,105,109,101,68,97,121,115,61,84,100,44,116,46,116,105,109,101,70,111,114,109,97,116,68,101,102,97,117,108,116,76,111,99,97,108,101,61,122,118,44,116,46,116,105,109,101,70,111,114,109,97,116,76,111,99,97,108,101,61,98,112,44,116,46,116,105,109,101,70,114,105,100,97,121,61,122,100,44,116,46,116,105,109,101,70,114,105,100,97,121,115,61,66,100,44,116,46,116,105,109,101,72,111,117,114,61,119,100,44,116,46,116,105,109,101,72,111,117,114,115,61,77,100,44,116,46,116,105,109,101,73,110,116,101,114,118,97,108,61,100,100,44,116,46,116,105,109,101,77,105,108,108,105,115,101,99,111,110,100,61,112,100,44,116,46,116,105,109,101,77,105,108,108,105,115,101,99,111,110,100,115,61,118,100,44,116,46,116,105,109,101,77,105,110,117,116,101,61,109,100,44,116,46,116,105,109,101,77,105,110,117,116,101,115,61,120,100,44,116,46,116,105,109,101,77,111,110,100,97,121,61,107,100,44,116,46,116,105,109,101,77,111,110,100,97,121,115,61,113,100,44,116,46,116,105,109,101,77,111,110,116,104,61,89,100,44,116,46,116,105,109,101,77,111,110,116,104,115,61,73,100,44,116,46,116,105,109,101,83,97,116,117,114,100,97,121,61,82,100,44,116,46,116,105,109,101,83,97,116,117,114,100,97,121,115,61,70,100,44,116,46,116,105,109,101,83,101,99,111,110,100,61,95,100,44,116,46,116,105,109,101,83,101,99,111,110,100,115,61,98,100,44,116,46,116,105,109,101,83,117,110,100,97,121,61,83,100,44,116,46,116,105,109,101,83,117,110,100,97,121,115,61,68,100,44,116,46,116,105,109,101,84,104,117,114,115,100,97,121,61,80,100,44,116,46,116,105,109,101,84,104,117,114,115,100,97,121,115,61,79,100,44,116,46,116,105,109,101,84,117,101,115,100,97,121,61,69,100,44,116,46,116,105,109,101,84,117,101,115,100,97,121,115,61,76,100,44,116,46,116,105,109,101,87,101,100,110,101,115,100,97,121,61,67,100,44,116,46,116,105,109,101,87,101,100,110,101,115,100,97,121,115,61,85,100,44,116,46,116,105,109,101,87,101,101,107,61,83,100,44,116,46,116,105,109,101,87,101,101,107,115,61,68,100,44,116,46,116,105,109,101,89,101,97,114,61,72,100,44,116,46,116,105,109,101,89,101,97,114,115,61,106,100,44,116,46,116,105,109,101,111,117,116,61,121,114,44,116,46,116,105,109,101,114,61,104,114,44,116,46,116,105,109,101,114,70,108,117,115,104,61,100,114,44,116,46,116,111,117,99,104,61,70,116,44,116,46,116,111,117,99,104,101,115,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,110,117,108,108,61,61,110,38,38,40,110,61,85,116,40,41,46,116,111,117,99,104,101,115,41,59,102,111,114,40,118,97,114,32,101,61,48,44,114,61,110,63,110,46,108,101,110,103,116,104,58,48,44,105,61,110,101,119,32,65,114,114,97,121,40,114,41,59,101,60,114,59,43,43,101,41,105,91,101,93,61,79,116,40,116,44,110,91,101,93,41,59,114,101,116,117,114,110,32,105,125,44,116,46,116,114,97,110,115,105,116,105,111,110,61,79,114,44,116,46,116,114,97,110,115,112,111,115,101,61,107,44,116,46,116,114,101,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,99,104,44,110,61,49,44,101,61,49,44,114,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,105,40,105,41,123,118,97,114,32,99,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,44,105,44,111,44,97,61,110,101,119,32,100,104,40,116,44,48,41,44,117,61,91,97,93,59,110,61,117,46,112,111,112,40,41,59,41,105,102,40,114,61,110,46,95,46,99,104,105,108,100,114,101,110,41,102,111,114,40,110,46,99,104,105,108,100,114,101,110,61,110,101,119,32,65,114,114,97,121,40,111,61,114,46,108,101,110,103,116,104,41,44,105,61,111,45,49,59,105,62,61,48,59,45,45,105,41,117,46,112,117,115,104,40,101,61,110,46,99,104,105,108,100,114,101,110,91,105,93,61,110,101,119,32,100,104,40,114,91,105,93,44,105,41,41,44,101,46,112,97,114,101,110,116,61,110,59,114,101,116,117,114,110,40,97,46,112,97,114,101,110,116,61,110,101,119,32,100,104,40,110,117,108,108,44,48,41,41,46,99,104,105,108,100,114,101,110,61,91,97,93,44,97,125,40,105,41,59,105,102,40,99,46,101,97,99,104,65,102,116,101,114,40,111,41,44,99,46,112,97,114,101,110,116,46,109,61,45,99,46,122,44,99,46,101,97,99,104,66,101,102,111,114,101,40,97,41,44,114,41,105,46,101,97,99,104,66,101,102,111,114,101,40,117,41,59,101,108,115,101,123,118,97,114,32,102,61,105,44,115,61,105,44,108,61,105,59,105,46,101,97,99,104,66,101,102,111,114,101,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,120,60,102,46,120,38,38,40,102,61,116,41,44,116,46,120,62,115,46,120,38,38,40,115,61,116,41,44,116,46,100,101,112,116,104,62,108,46,100,101,112,116,104,38,38,40,108,61,116,41,125,41,59,118,97,114,32,104,61,102,61,61,61,115,63,49,58,116,40,102,44,115,41,47,50,44,100,61,104,45,102,46,120,44,112,61,110,47,40,115,46,120,43,104,43,100,41,44,118,61,101,47,40,108,46,100,101,112,116,104,124,124,49,41,59,105,46,101,97,99,104,66,101,102,111,114,101,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,120,61,40,116,46,120,43,100,41,42,112,44,116,46,121,61,116,46,100,101,112,116,104,42,118,125,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,111,40,110,41,123,118,97,114,32,101,61,110,46,99,104,105,108,100,114,101,110,44,114,61,110,46,112,97,114,101,110,116,46,99,104,105,108,100,114,101,110,44,105,61,110,46,105,63,114,91,110,46,105,45,49,93,58,110,117,108,108,59,105,102,40,101,41,123,33,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,61,48,44,114,61,48,44,105,61,116,46,99,104,105,108,100,114,101,110,44,111,61,105,46,108,101,110,103,116,104,59,45,45,111,62,61,48,59,41,40,110,61,105,91,111,93,41,46,122,43,61,101,44,110,46,109,43,61,101,44,101,43,61,110,46,115,43,40,114,43,61,110,46,99,41,125,40,110,41,59,118,97,114,32,111,61,40,101,91,48,93,46,122,43,101,91,101,46,108,101,110,103,116,104,45,49,93,46,122,41,47,50,59,105,63,40,110,46,122,61,105,46,122,43,116,40,110,46,95,44,105,46,95,41,44,110,46,109,61,110,46,122,45,111,41,58,110,46,122,61,111,125,101,108,115,101,32,105,38,38,40,110,46,122,61,105,46,122,43,116,40,110,46,95,44,105,46,95,41,41,59,110,46,112,97,114,101,110,116,46,65,61,102,117,110,99,116,105,111,110,40,110,44,101,44,114,41,123,105,102,40,101,41,123,102,111,114,40,118,97,114,32,105,44,111,61,110,44,97,61,110,44,117,61,101,44,99,61,111,46,112,97,114,101,110,116,46,99,104,105,108,100,114,101,110,91,48,93,44,102,61,111,46,109,44,115,61,97,46,109,44,108,61,117,46,109,44,104,61,99,46,109,59,117,61,115,104,40,117,41,44,111,61,102,104,40,111,41,44,117,38,38,111,59,41,99,61,102,104,40,99,41,44,40,97,61,115,104,40,97,41,41,46,97,61,110,44,40,105,61,117,46,122,43,108,45,111,46,122,45,102,43,116,40,117,46,95,44,111,46,95,41,41,62,48,38,38,40,108,104,40,104,104,40,117,44,110,44,114,41,44,110,44,105,41,44,102,43,61,105,44,115,43,61,105,41,44,108,43,61,117,46,109,44,102,43,61,111,46,109,44,104,43,61,99,46,109,44,115,43,61,97,46,109,59,117,38,38,33,115,104,40,97,41,38,38,40,97,46,116,61,117,44,97,46,109,43,61,108,45,115,41,44,111,38,38,33,102,104,40,99,41,38,38,40,99,46,116,61,111,44,99,46,109,43,61,102,45,104,44,114,61,110,41,125,114,101,116,117,114,110,32,114,125,40,110,44,105,44,110,46,112,97,114,101,110,116,46,65,124,124,114,91,48,93,41,125,102,117,110,99,116,105,111,110,32,97,40,116,41,123,116,46,95,46,120,61,116,46,122,43,116,46,112,97,114,101,110,116,46,109,44,116,46,109,43,61,116,46,112,97,114,101,110,116,46,109,125,102,117,110,99,116,105,111,110,32,117,40,116,41,123,116,46,120,42,61,110,44,116,46,121,61,116,46,100,101,112,116,104,42,101,125,114,101,116,117,114,110,32,105,46,115,101,112,97,114,97,116,105,111,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,110,44,105,41,58,116,125,44,105,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,33,49,44,110,61,43,116,91,48,93,44,101,61,43,116,91,49,93,44,105,41,58,114,63,110,117,108,108,58,91,110,44,101,93,125,44,105,46,110,111,100,101,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,33,48,44,110,61,43,116,91,48,93,44,101,61,43,116,91,49,93,44,105,41,58,114,63,91,110,44,101,93,58,110,117,108,108,125,44,105,125,44,116,46,116,114,101,101,109,97,112,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,121,104,44,110,61,33,49,44,101,61,49,44,114,61,49,44,105,61,91,48,93,44,111,61,87,108,44,97,61,87,108,44,117,61,87,108,44,99,61,87,108,44,102,61,87,108,59,102,117,110,99,116,105,111,110,32,115,40,116,41,123,114,101,116,117,114,110,32,116,46,120,48,61,116,46,121,48,61,48,44,116,46,120,49,61,101,44,116,46,121,49,61,114,44,116,46,101,97,99,104,66,101,102,111,114,101,40,108,41,44,105,61,91,48,93,44,110,38,38,116,46,101,97,99,104,66,101,102,111,114,101,40,110,104,41,44,116,125,102,117,110,99,116,105,111,110,32,108,40,110,41,123,118,97,114,32,101,61,105,91,110,46,100,101,112,116,104,93,44,114,61,110,46,120,48,43,101,44,115,61,110,46,121,48,43,101,44,108,61,110,46,120,49,45,101,44,104,61,110,46,121,49,45,101,59,108,60,114,38,38,40,114,61,108,61,40,114,43,108,41,47,50,41,44,104,60,115,38,38,40,115,61,104,61,40,115,43,104,41,47,50,41,44,110,46,120,48,61,114,44,110,46,121,48,61,115,44,110,46,120,49,61,108,44,110,46,121,49,61,104,44,110,46,99,104,105,108,100,114,101,110,38,38,40,101,61,105,91,110,46,100,101,112,116,104,43,49,93,61,111,40,110,41,47,50,44,114,43,61,102,40,110,41,45,101,44,115,43,61,97,40,110,41,45,101,44,40,108,45,61,117,40,110,41,45,101,41,60,114,38,38,40,114,61,108,61,40,114,43,108,41,47,50,41,44,40,104,45,61,99,40,110,41,45,101,41,60,115,38,38,40,115,61,104,61,40,115,43,104,41,47,50,41,44,116,40,110,44,114,44,115,44,108,44,104,41,41,125,114,101,116,117,114,110,32,115,46,114,111,117,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,33,33,116,44,115,41,58,110,125,44,115,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,43,116,91,48,93,44,114,61,43,116,91,49,93,44,115,41,58,91,101,44,114,93,125,44,115,46,116,105,108,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,36,108,40,110,41,44,115,41,58,116,125,44,115,46,112,97,100,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,115,46,112,97,100,100,105,110,103,73,110,110,101,114,40,116,41,46,112,97,100,100,105,110,103,79,117,116,101,114,40,116,41,58,115,46,112,97,100,100,105,110,103,73,110,110,101,114,40,41,125,44,115,46,112,97,100,100,105,110,103,73,110,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,108,40,43,116,41,44,115,41,58,111,125,44,115,46,112,97,100,100,105,110,103,79,117,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,115,46,112,97,100,100,105,110,103,84,111,112,40,116,41,46,112,97,100,100,105,110,103,82,105,103,104,116,40,116,41,46,112,97,100,100,105,110,103,66,111,116,116,111,109,40,116,41,46,112,97,100,100,105,110,103,76,101,102,116,40,116,41,58,115,46,112,97,100,100,105,110,103,84,111,112,40,41,125,44,115,46,112,97,100,100,105,110,103,84,111,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,108,40,43,116,41,44,115,41,58,97,125,44,115,46,112,97,100,100,105,110,103,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,108,40,43,116,41,44,115,41,58,117,125,44,115,46,112,97,100,100,105,110,103,66,111,116,116,111,109,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,108,40,43,116,41,44,115,41,58,99,125,44,115,46,112,97,100,100,105,110,103,76,101,102,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,102,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,108,40,43,116,41,44,115,41,58,102,125,44,115,125,44,116,46,116,114,101,101,109,97,112,66,105,110,97,114,121,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,41,123,118,97,114,32,111,44,97,44,117,61,116,46,99,104,105,108,100,114,101,110,44,99,61,117,46,108,101,110,103,116,104,44,102,61,110,101,119,32,65,114,114,97,121,40,99,43,49,41,59,102,111,114,40,102,91,48,93,61,97,61,111,61,48,59,111,60,99,59,43,43,111,41,102,91,111,43,49,93,61,97,43,61,117,91,111,93,46,118,97,108,117,101,59,33,102,117,110,99,116,105,111,110,32,116,40,110,44,101,44,114,44,105,44,111,44,97,44,99,41,123,105,102,40,110,62,61,101,45,49,41,123,118,97,114,32,115,61,117,91,110,93,59,114,101,116,117,114,110,32,115,46,120,48,61,105,44,115,46,121,48,61,111,44,115,46,120,49,61,97,44,118,111,105,100,40,115,46,121,49,61,99,41,125,102,111,114,40,118,97,114,32,108,61,102,91,110,93,44,104,61,114,47,50,43,108,44,100,61,110,43,49,44,112,61,101,45,49,59,100,60,112,59,41,123,118,97,114,32,118,61,100,43,112,62,62,62,49,59,102,91,118,93,60,104,63,100,61,118,43,49,58,112,61,118,125,104,45,102,91,100,45,49,93,60,102,91,100,93,45,104,38,38,110,43,49,60,100,38,38,45,45,100,59,118,97,114,32,103,61,102,91,100,93,45,108,44,121,61,114,45,103,59,105,102,40,97,45,105,62,99,45,111,41,123,118,97,114,32,95,61,40,105,42,121,43,97,42,103,41,47,114,59,116,40,110,44,100,44,103,44,105,44,111,44,95,44,99,41,44,116,40,100,44,101,44,121,44,95,44,111,44,97,44,99,41,125,101,108,115,101,123,118,97,114,32,98,61,40,111,42,121,43,99,42,103,41,47,114,59,116,40,110,44,100,44,103,44,105,44,111,44,97,44,98,41,44,116,40,100,44,101,44,121,44,105,44,98,44,97,44,99,41,125,125,40,48,44,99,44,116,46,118,97,108,117,101,44,110,44,101,44,114,44,105,41,125,44,116,46,116,114,101,101,109,97,112,68,105,99,101,61,101,104,44,116,46,116,114,101,101,109,97,112,82,101,115,113,117,97,114,105,102,121,61,95,104,44,116,46,116,114,101,101,109,97,112,83,108,105,99,101,61,112,104,44,116,46,116,114,101,101,109,97,112,83,108,105,99,101,68,105,99,101,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,41,123,40,49,38,116,46,100,101,112,116,104,63,112,104,58,101,104,41,40,116,44,110,44,101,44,114,44,105,41,125,44,116,46,116,114,101,101,109,97,112,83,113,117,97,114,105,102,121,61,121,104,44,116,46,116,115,118,61,115,97,44,116,46,116,115,118,70,111,114,109,97,116,61,75,111,44,116,46,116,115,118,70,111,114,109,97,116,66,111,100,121,61,74,111,44,116,46,116,115,118,70,111,114,109,97,116,82,111,119,61,110,97,44,116,46,116,115,118,70,111,114,109,97,116,82,111,119,115,61,116,97,44,116,46,116,115,118,70,111,114,109,97,116,86,97,108,117,101,61,101,97,44,116,46,116,115,118,80,97,114,115,101,61,90,111,44,116,46,116,115,118,80,97,114,115,101,82,111,119,115,61,81,111,44,116,46,117,116,99,68,97,121,61,87,100,44,116,46,117,116,99,68,97,121,115,61,90,100,44,116,46,117,116,99,70,114,105,100,97,121,61,114,112,44,116,46,117,116,99,70,114,105,100,97,121,115,61,115,112,44,116,46,117,116,99,72,111,117,114,61,71,100,44,116,46,117,116,99,72,111,117,114,115,61,36,100,44,116,46,117,116,99,77,105,108,108,105,115,101,99,111,110,100,61,112,100,44,116,46,117,116,99,77,105,108,108,105,115,101,99,111,110,100,115,61,118,100,44,116,46,117,116,99,77,105,110,117,116,101,61,88,100,44,116,46,117,116,99,77,105,110,117,116,101,115,61,86,100,44,116,46,117,116,99,77,111,110,100,97,121,61,74,100,44,116,46,117,116,99,77,111,110,100,97,121,115,61,97,112,44,116,46,117,116,99,77,111,110,116,104,61,104,112,44,116,46,117,116,99,77,111,110,116,104,115,61,100,112,44,116,46,117,116,99,83,97,116,117,114,100,97,121,61,105,112,44,116,46,117,116,99,83,97,116,117,114,100,97,121,115,61,108,112,44,116,46,117,116,99,83,101,99,111,110,100,61,95,100,44,116,46,117,116,99,83,101,99,111,110,100,115,61,98,100,44,116,46,117,116,99,83,117,110,100,97,121,61,75,100,44,116,46,117,116,99,83,117,110,100,97,121,115,61,111,112,44,116,46,117,116,99,84,104,117,114,115,100,97,121,61,101,112,44,116,46,117,116,99,84,104,117,114,115,100,97,121,115,61,102,112,44,116,46,117,116,99,84,117,101,115,100,97,121,61,116,112,44,116,46,117,116,99,84,117,101,115,100,97,121,115,61,117,112,44,116,46,117,116,99,87,101,100,110,101,115,100,97,121,61,110,112,44,116,46,117,116,99,87,101,100,110,101,115,100,97,121,115,61,99,112,44,116,46,117,116,99,87,101,101,107,61,75,100,44,116,46,117,116,99,87,101,101,107,115,61,111,112,44,116,46,117,116,99,89,101,97,114,61,112,112,44,116,46,117,116,99,89,101,97,114,115,61,118,112,44,116,46,118,97,108,117,101,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,91,93,59,102,111,114,40,118,97,114,32,101,32,105,110,32,116,41,110,46,112,117,115,104,40,116,91,101,93,41,59,114,101,116,117,114,110,32,110,125,44,116,46,118,97,114,105,97,110,99,101,61,99,44,116,46,118,101,114,115,105,111,110,61,34,53,46,49,54,46,48,34,44,116,46,118,111,114,111,110,111,105,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,115,98,44,110,61,108,98,44,101,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,114,40,114,41,123,114,101,116,117,114,110,32,110,101,119,32,86,98,40,114,46,109,97,112,40,102,117,110,99,116,105,111,110,40,101,44,105,41,123,118,97,114,32,111,61,91,77,97,116,104,46,114,111,117,110,100,40,116,40,101,44,105,44,114,41,47,73,98,41,42,73,98,44,77,97,116,104,46,114,111,117,110,100,40,110,40,101,44,105,44,114,41,47,73,98,41,42,73,98,93,59,114,101,116,117,114,110,32,111,46,105,110,100,101,120,61,105,44,111,46,100,97,116,97,61,101,44,111,125,41,44,101,41,125,114,101,116,117,114,110,32,114,46,112,111,108,121,103,111,110,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,40,116,41,46,112,111,108,121,103,111,110,115,40,41,125,44,114,46,108,105,110,107,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,40,116,41,46,108,105,110,107,115,40,41,125,44,114,46,116,114,105,97,110,103,108,101,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,40,116,41,46,116,114,105,97,110,103,108,101,115,40,41,125,44,114,46,120,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,102,98,40,43,110,41,44,114,41,58,116,125,44,114,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,102,98,40,43,116,41,44,114,41,58,110,125,44,114,46,101,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,110,117,108,108,61,61,116,63,110,117,108,108,58,91,91,43,116,91,48,93,91,48,93,44,43,116,91,48,93,91,49,93,93,44,91,43,116,91,49,93,91,48,93,44,43,116,91,49,93,91,49,93,93,93,44,114,41,58,101,38,38,91,91,101,91,48,93,91,48,93,44,101,91,48,93,91,49,93,93,44,91,101,91,49,93,91,48,93,44,101,91,49,93,91,49,93,93,93,125,44,114,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,110,117,108,108,61,61,116,63,110,117,108,108,58,91,91,48,44,48,93,44,91,43,116,91,48,93,44,43,116,91,49,93,93,93,44,114,41,58,101,38,38,91,101,91,49,93,91,48,93,45,101,91,48,93,91,48,93,44,101,91,49,93,91,49,93,45,101,91,48,93,91,49,93,93,125,44,114,125,44,116,46,119,105,110,100,111,119,61,99,116,44,116,46,120,109,108,61,100,97,44,116,46,122,105,112,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,40,97,114,103,117,109,101,110,116,115,41,125,44,116,46,122,111,111,109,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,44,101,44,114,61,116,109,44,105,61,110,109,44,111,61,111,109,44,97,61,114,109,44,117,61,105,109,44,99,61,91,48,44,49,47,48,93,44,102,61,91,91,45,49,47,48,44,45,49,47,48,93,44,91,49,47,48,44,49,47,48,93,93,44,115,61,50,53,48,44,108,61,73,101,44,104,61,73,40,34,115,116,97,114,116,34,44,34,122,111,111,109,34,44,34,101,110,100,34,41,44,100,61,53,48,48,44,112,61,49,53,48,44,118,61,48,59,102,117,110,99,116,105,111,110,32,103,40,116,41,123,116,46,112,114,111,112,101,114,116,121,40,34,95,95,122,111,111,109,34,44,101,109,41,46,111,110,40,34,119,104,101,101,108,46,122,111,111,109,34,44,77,41,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,122,111,111,109,34,44,78,41,46,111,110,40,34,100,98,108,99,108,105,99,107,46,122,111,111,109,34,44,84,41,46,102,105,108,116,101,114,40,117,41,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,122,111,111,109,34,44,65,41,46,111,110,40,34,116,111,117,99,104,109,111,118,101,46,122,111,111,109,34,44,83,41,46,111,110,40,34,116,111,117,99,104,101,110,100,46,122,111,111,109,32,116,111,117,99,104,99,97,110,99,101,108,46,122,111,111,109,34,44,107,41,46,115,116,121,108,101,40,34,116,111,117,99,104,45,97,99,116,105,111,110,34,44,34,110,111,110,101,34,41,46,115,116,121,108,101,40,34,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,34,44,34,114,103,98,97,40,48,44,48,44,48,44,48,41,34,41,125,102,117,110,99,116,105,111,110,32,121,40,116,44,110,41,123,114,101,116,117,114,110,40,110,61,77,97,116,104,46,109,97,120,40,99,91,48,93,44,77,97,116,104,46,109,105,110,40,99,91,49,93,44,110,41,41,41,61,61,61,116,46,107,63,116,58,110,101,119,32,87,98,40,110,44,116,46,120,44,116,46,121,41,125,102,117,110,99,116,105,111,110,32,95,40,116,44,110,44,101,41,123,118,97,114,32,114,61,110,91,48,93,45,101,91,48,93,42,116,46,107,44,105,61,110,91,49,93,45,101,91,49,93,42,116,46,107,59,114,101,116,117,114,110,32,114,61,61,61,116,46,120,38,38,105,61,61,61,116,46,121,63,116,58,110,101,119,32,87,98,40,116,46,107,44,114,44,105,41,125,102,117,110,99,116,105,111,110,32,98,40,116,41,123,114,101,116,117,114,110,91,40,43,116,91,48,93,91,48,93,43,32,43,116,91,49,93,91,48,93,41,47,50,44,40,43,116,91,48,93,91,49,93,43,32,43,116,91,49,93,91,49,93,41,47,50,93,125,102,117,110,99,116,105,111,110,32,109,40,116,44,110,44,101,41,123,116,46,111,110,40,34,115,116,97,114,116,46,122,111,111,109,34,44,102,117,110,99,116,105,111,110,40,41,123,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,115,116,97,114,116,40,41,125,41,46,111,110,40,34,105,110,116,101,114,114,117,112,116,46,122,111,111,109,32,101,110,100,46,122,111,111,109,34,44,102,117,110,99,116,105,111,110,40,41,123,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,101,110,100,40,41,125,41,46,116,119,101,101,110,40,34,122,111,111,109,34,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,114,61,97,114,103,117,109,101,110,116,115,44,111,61,120,40,116,44,114,41,44,97,61,105,46,97,112,112,108,121,40,116,44,114,41,44,117,61,110,117,108,108,61,61,101,63,98,40,97,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,46,97,112,112,108,121,40,116,44,114,41,58,101,44,99,61,77,97,116,104,46,109,97,120,40,97,91,49,93,91,48,93,45,97,91,48,93,91,48,93,44,97,91,49,93,91,49,93,45,97,91,48,93,91,49,93,41,44,102,61,116,46,95,95,122,111,111,109,44,115,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,46,97,112,112,108,121,40,116,44,114,41,58,110,44,104,61,108,40,102,46,105,110,118,101,114,116,40,117,41,46,99,111,110,99,97,116,40,99,47,102,46,107,41,44,115,46,105,110,118,101,114,116,40,117,41,46,99,111,110,99,97,116,40,99,47,115,46,107,41,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,49,61,61,61,116,41,116,61,115,59,101,108,115,101,123,118,97,114,32,110,61,104,40,116,41,44,101,61,99,47,110,91,50,93,59,116,61,110,101,119,32,87,98,40,101,44,117,91,48,93,45,110,91,48,93,42,101,44,117,91,49,93,45,110,91,49,93,42,101,41,125,111,46,122,111,111,109,40,110,117,108,108,44,116,41,125,125,41,125,102,117,110,99,116,105,111,110,32,120,40,116,44,110,44,101,41,123,114,101,116,117,114,110,33,101,38,38,116,46,95,95,122,111,111,109,105,110,103,124,124,110,101,119,32,119,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,119,40,116,44,110,41,123,116,104,105,115,46,116,104,97,116,61,116,44,116,104,105,115,46,97,114,103,115,61,110,44,116,104,105,115,46,97,99,116,105,118,101,61,48,44,116,104,105,115,46,101,120,116,101,110,116,61,105,46,97,112,112,108,121,40,116,44,110,41,44,116,104,105,115,46,116,97,112,115,61,48,125,102,117,110,99,116,105,111,110,32,77,40,41,123,105,102,40,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,123,118,97,114,32,116,61,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,110,61,116,104,105,115,46,95,95,122,111,111,109,44,101,61,77,97,116,104,46,109,97,120,40,99,91,48,93,44,77,97,116,104,46,109,105,110,40,99,91,49,93,44,110,46,107,42,77,97,116,104,46,112,111,119,40,50,44,97,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,41,41,44,105,61,66,116,40,116,104,105,115,41,59,105,102,40,116,46,119,104,101,101,108,41,116,46,109,111,117,115,101,91,48,93,91,48,93,61,61,61,105,91,48,93,38,38,116,46,109,111,117,115,101,91,48,93,91,49,93,61,61,61,105,91,49,93,124,124,40,116,46,109,111,117,115,101,91,49,93,61,110,46,105,110,118,101,114,116,40,116,46,109,111,117,115,101,91,48,93,61,105,41,41,44,99,108,101,97,114,84,105,109,101,111,117,116,40,116,46,119,104,101,101,108,41,59,101,108,115,101,123,105,102,40,110,46,107,61,61,61,101,41,114,101,116,117,114,110,59,116,46,109,111,117,115,101,61,91,105,44,110,46,105,110,118,101,114,116,40,105,41,93,44,80,114,40,116,104,105,115,41,44,116,46,115,116,97,114,116,40,41,125,74,98,40,41,44,116,46,119,104,101,101,108,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,116,46,119,104,101,101,108,61,110,117,108,108,44,116,46,101,110,100,40,41,125,44,112,41,44,116,46,122,111,111,109,40,34,109,111,117,115,101,34,44,111,40,95,40,121,40,110,44,101,41,44,116,46,109,111,117,115,101,91,48,93,44,116,46,109,111,117,115,101,91,49,93,41,44,116,46,101,120,116,101,110,116,44,102,41,41,125,125,102,117,110,99,116,105,111,110,32,78,40,41,123,105,102,40,33,101,38,38,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,123,118,97,114,32,110,61,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,33,48,41,44,105,61,82,116,40,116,46,101,118,101,110,116,46,118,105,101,119,41,46,111,110,40,34,109,111,117,115,101,109,111,118,101,46,122,111,111,109,34,44,102,117,110,99,116,105,111,110,40,41,123,105,102,40,74,98,40,41,44,33,110,46,109,111,118,101,100,41,123,118,97,114,32,101,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,88,45,117,44,114,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,89,45,99,59,110,46,109,111,118,101,100,61,101,42,101,43,114,42,114,62,118,125,110,46,122,111,111,109,40,34,109,111,117,115,101,34,44,111,40,95,40,110,46,116,104,97,116,46,95,95,122,111,111,109,44,110,46,109,111,117,115,101,91,48,93,61,66,116,40,110,46,116,104,97,116,41,44,110,46,109,111,117,115,101,91,49,93,41,44,110,46,101,120,116,101,110,116,44,102,41,41,125,44,33,48,41,46,111,110,40,34,109,111,117,115,101,117,112,46,122,111,111,109,34,44,102,117,110,99,116,105,111,110,40,41,123,105,46,111,110,40,34,109,111,117,115,101,109,111,118,101,46,122,111,111,109,32,109,111,117,115,101,117,112,46,122,111,111,109,34,44,110,117,108,108,41,44,106,116,40,116,46,101,118,101,110,116,46,118,105,101,119,44,110,46,109,111,118,101,100,41,44,74,98,40,41,44,110,46,101,110,100,40,41,125,44,33,48,41,44,97,61,66,116,40,116,104,105,115,41,44,117,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,88,44,99,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,89,59,72,116,40,116,46,101,118,101,110,116,46,118,105,101,119,41,44,75,98,40,41,44,110,46,109,111,117,115,101,61,91,97,44,116,104,105,115,46,95,95,122,111,111,109,46,105,110,118,101,114,116,40,97,41,93,44,80,114,40,116,104,105,115,41,44,110,46,115,116,97,114,116,40,41,125,125,102,117,110,99,116,105,111,110,32,84,40,41,123,105,102,40,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,123,118,97,114,32,110,61,116,104,105,115,46,95,95,122,111,111,109,44,101,61,66,116,40,116,104,105,115,41,44,97,61,110,46,105,110,118,101,114,116,40,101,41,44,117,61,110,46,107,42,40,116,46,101,118,101,110,116,46,115,104,105,102,116,75,101,121,63,46,53,58,50,41,44,99,61,111,40,95,40,121,40,110,44,117,41,44,101,44,97,41,44,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,102,41,59,74,98,40,41,44,115,62,48,63,82,116,40,116,104,105,115,41,46,116,114,97,110,115,105,116,105,111,110,40,41,46,100,117,114,97,116,105,111,110,40,115,41,46,99,97,108,108,40,109,44,99,44,101,41,58,82,116,40,116,104,105,115,41,46,99,97,108,108,40,103,46,116,114,97,110,115,102,111,114,109,44,99,41,125,125,102,117,110,99,116,105,111,110,32,65,40,41,123,105,102,40,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,123,118,97,114,32,101,44,105,44,111,44,97,44,117,61,116,46,101,118,101,110,116,46,116,111,117,99,104,101,115,44,99,61,117,46,108,101,110,103,116,104,44,102,61,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,116,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,46,108,101,110,103,116,104,61,61,61,99,41,59,102,111,114,40,75,98,40,41,44,105,61,48,59,105,60,99,59,43,43,105,41,97,61,91,97,61,70,116,40,116,104,105,115,44,117,44,40,111,61,117,91,105,93,41,46,105,100,101,110,116,105,102,105,101,114,41,44,116,104,105,115,46,95,95,122,111,111,109,46,105,110,118,101,114,116,40,97,41,44,111,46,105,100,101,110,116,105,102,105,101,114,93,44,102,46,116,111,117,99,104,48,63,102,46,116,111,117,99,104,49,124,124,102,46,116,111,117,99,104,48,91,50,93,61,61,61,97,91,50,93,124,124,40,102,46,116,111,117,99,104,49,61,97,44,102,46,116,97,112,115,61,48,41,58,40,102,46,116,111,117,99,104,48,61,97,44,101,61,33,48,44,102,46,116,97,112,115,61,49,43,33,33,110,41,59,110,38,38,40,110,61,99,108,101,97,114,84,105,109,101,111,117,116,40,110,41,41,44,101,38,38,40,102,46,116,97,112,115,60,50,38,38,40,110,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,110,61,110,117,108,108,125,44,100,41,41,44,80,114,40,116,104,105,115,41,44,102,46,115,116,97,114,116,40,41,41,125,125,102,117,110,99,116,105,111,110,32,83,40,41,123,105,102,40,116,104,105,115,46,95,95,122,111,111,109,105,110,103,41,123,118,97,114,32,101,44,114,44,105,44,97,44,117,61,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,99,61,116,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,44,115,61,99,46,108,101,110,103,116,104,59,102,111,114,40,74,98,40,41,44,110,38,38,40,110,61,99,108,101,97,114,84,105,109,101,111,117,116,40,110,41,41,44,117,46,116,97,112,115,61,48,44,101,61,48,59,101,60,115,59,43,43,101,41,105,61,70,116,40,116,104,105,115,44,99,44,40,114,61,99,91,101,93,41,46,105,100,101,110,116,105,102,105,101,114,41,44,117,46,116,111,117,99,104,48,38,38,117,46,116,111,117,99,104,48,91,50,93,61,61,61,114,46,105,100,101,110,116,105,102,105,101,114,63,117,46,116,111,117,99,104,48,91,48,93,61,105,58,117,46,116,111,117,99,104,49,38,38,117,46,116,111,117,99,104,49,91,50,93,61,61,61,114,46,105,100,101,110,116,105,102,105,101,114,38,38,40,117,46,116,111,117,99,104,49,91,48,93,61,105,41,59,105,102,40,114,61,117,46,116,104,97,116,46,95,95,122,111,111,109,44,117,46,116,111,117,99,104,49,41,123,118,97,114,32,108,61,117,46,116,111,117,99,104,48,91,48,93,44,104,61,117,46,116,111,117,99,104,48,91,49,93,44,100,61,117,46,116,111,117,99,104,49,91,48,93,44,112,61,117,46,116,111,117,99,104,49,91,49,93,44,118,61,40,118,61,100,91,48,93,45,108,91,48,93,41,42,118,43,40,118,61,100,91,49,93,45,108,91,49,93,41,42,118,44,103,61,40,103,61,112,91,48,93,45,104,91,48,93,41,42,103,43,40,103,61,112,91,49,93,45,104,91,49,93,41,42,103,59,114,61,121,40,114,44,77,97,116,104,46,115,113,114,116,40,118,47,103,41,41,44,105,61,91,40,108,91,48,93,43,100,91,48,93,41,47,50,44,40,108,91,49,93,43,100,91,49,93,41,47,50,93,44,97,61,91,40,104,91,48,93,43,112,91,48,93,41,47,50,44,40,104,91,49,93,43,112,91,49,93,41,47,50,93,125,101,108,115,101,123,105,102,40,33,117,46,116,111,117,99,104,48,41,114,101,116,117,114,110,59,105,61,117,46,116,111,117,99,104,48,91,48,93,44,97,61,117,46,116,111,117,99,104,48,91,49,93,125,117,46,122,111,111,109,40,34,116,111,117,99,104,34,44,111,40,95,40,114,44,105,44,97,41,44,117,46,101,120,116,101,110,116,44,102,41,41,125,125,102,117,110,99,116,105,111,110,32,107,40,41,123,105,102,40,116,104,105,115,46,95,95,122,111,111,109,105,110,103,41,123,118,97,114,32,110,44,114,44,105,61,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,111,61,116,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,44,97,61,111,46,108,101,110,103,116,104,59,102,111,114,40,75,98,40,41,44,101,38,38,99,108,101,97,114,84,105,109,101,111,117,116,40,101,41,44,101,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,61,110,117,108,108,125,44,100,41,44,110,61,48,59,110,60,97,59,43,43,110,41,114,61,111,91,110,93,44,105,46,116,111,117,99,104,48,38,38,105,46,116,111,117,99,104,48,91,50,93,61,61,61,114,46,105,100,101,110,116,105,102,105,101,114,63,100,101,108,101,116,101,32,105,46,116,111,117,99,104,48,58,105,46,116,111,117,99,104,49,38,38,105,46,116,111,117,99,104,49,91,50,93,61,61,61,114,46,105,100,101,110,116,105,102,105,101,114,38,38,100,101,108,101,116,101,32,105,46,116,111,117,99,104,49,59,105,102,40,105,46,116,111,117,99,104,49,38,38,33,105,46,116,111,117,99,104,48,38,38,40,105,46,116,111,117,99,104,48,61,105,46,116,111,117,99,104,49,44,100,101,108,101,116,101,32,105,46,116,111,117,99,104,49,41,44,105,46,116,111,117,99,104,48,41,105,46,116,111,117,99,104,48,91,49,93,61,116,104,105,115,46,95,95,122,111,111,109,46,105,110,118,101,114,116,40,105,46,116,111,117,99,104,48,91,48,93,41,59,101,108,115,101,32,105,102,40,105,46,101,110,100,40,41,44,50,61,61,61,105,46,116,97,112,115,41,123,118,97,114,32,117,61,82,116,40,116,104,105,115,41,46,111,110,40,34,100,98,108,99,108,105,99,107,46,122,111,111,109,34,41,59,117,38,38,117,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,125,125,114,101,116,117,114,110,32,103,46,116,114,97,110,115,102,111,114,109,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,115,101,108,101,99,116,105,111,110,63,116,46,115,101,108,101,99,116,105,111,110,40,41,58,116,59,114,46,112,114,111,112,101,114,116,121,40,34,95,95,122,111,111,109,34,44,101,109,41,44,116,33,61,61,114,63,109,40,116,44,110,44,101,41,58,114,46,105,110,116,101,114,114,117,112,116,40,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,115,116,97,114,116,40,41,46,122,111,111,109,40,110,117,108,108,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,110,41,46,101,110,100,40,41,125,41,125,44,103,46,115,99,97,108,101,66,121,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,103,46,115,99,97,108,101,84,111,40,116,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,122,111,111,109,46,107,44,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,110,59,114,101,116,117,114,110,32,116,42,101,125,44,101,41,125,44,103,46,115,99,97,108,101,84,111,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,103,46,116,114,97,110,115,102,111,114,109,40,116,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,114,61,116,104,105,115,46,95,95,122,111,111,109,44,97,61,110,117,108,108,61,61,101,63,98,40,116,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,101,44,117,61,114,46,105,110,118,101,114,116,40,97,41,44,99,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,110,59,114,101,116,117,114,110,32,111,40,95,40,121,40,114,44,99,41,44,97,44,117,41,44,116,44,102,41,125,44,101,41,125,44,103,46,116,114,97,110,115,108,97,116,101,66,121,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,103,46,116,114,97,110,115,102,111,114,109,40,116,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,116,104,105,115,46,95,95,122,111,111,109,46,116,114,97,110,115,108,97,116,101,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,110,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,101,41,44,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,102,41,125,41,125,44,103,46,116,114,97,110,115,108,97,116,101,84,111,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,103,46,116,114,97,110,115,102,111,114,109,40,116,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,97,61,116,104,105,115,46,95,95,122,111,111,109,44,117,61,110,117,108,108,61,61,114,63,98,40,116,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,114,63,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,114,59,114,101,116,117,114,110,32,111,40,90,98,46,116,114,97,110,115,108,97,116,101,40,117,91,48,93,44,117,91,49,93,41,46,115,99,97,108,101,40,97,46,107,41,46,116,114,97,110,115,108,97,116,101,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,45,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,45,110,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,45,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,45,101,41,44,116,44,102,41,125,44,114,41,125,44,119,46,112,114,111,116,111,116,121,112,101,61,123,115,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,49,61,61,43,43,116,104,105,115,46,97,99,116,105,118,101,38,38,40,116,104,105,115,46,116,104,97,116,46,95,95,122,111,111,109,105,110,103,61,116,104,105,115,44,116,104,105,115,46,101,109,105,116,40,34,115,116,97,114,116,34,41,41,44,116,104,105,115,125,44,122,111,111,109,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,117,115,101,38,38,34,109,111,117,115,101,34,33,61,61,116,38,38,40,116,104,105,115,46,109,111,117,115,101,91,49,93,61,110,46,105,110,118,101,114,116,40,116,104,105,115,46,109,111,117,115,101,91,48,93,41,41,44,116,104,105,115,46,116,111,117,99,104,48,38,38,34,116,111,117,99,104,34,33,61,61,116,38,38,40,116,104,105,115,46,116,111,117,99,104,48,91,49,93,61,110,46,105,110,118,101,114,116,40,116,104,105,115,46,116,111,117,99,104,48,91,48,93,41,41,44,116,104,105,115,46,116,111,117,99,104,49,38,38,34,116,111,117,99,104,34,33,61,61,116,38,38,40,116,104,105,115,46,116,111,117,99,104,49,91,49,93,61,110,46,105,110,118,101,114,116,40,116,104,105,115,46,116,111,117,99,104,49,91,48,93,41,41,44,116,104,105,115,46,116,104,97,116,46,95,95,122,111,111,109,61,110,44,116,104,105,115,46,101,109,105,116,40,34,122,111,111,109,34,41,44,116,104,105,115,125,44,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,61,61,45,45,116,104,105,115,46,97,99,116,105,118,101,38,38,40,100,101,108,101,116,101,32,116,104,105,115,46,116,104,97,116,46,95,95,122,111,111,109,105,110,103,44,116,104,105,115,46,101,109,105,116,40,34,101,110,100,34,41,41,44,116,104,105,115,125,44,101,109,105,116,58,102,117,110,99,116,105,111,110,40,116,41,123,107,116,40,110,101,119,32,36,98,40,103,44,116,44,116,104,105,115,46,116,104,97,116,46,95,95,122,111,111,109,41,44,104,46,97,112,112,108,121,44,104,44,91,116,44,116,104,105,115,46,116,104,97,116,44,116,104,105,115,46,97,114,103,115,93,41,125,125,44,103,46,119,104,101,101,108,68,101,108,116,97,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,71,98,40,43,116,41,44,103,41,58,97,125,44,103,46,102,105,108,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,71,98,40,33,33,116,41,44,103,41,58,114,125,44,103,46,116,111,117,99,104,97,98,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,71,98,40,33,33,116,41,44,103,41,58,117,125,44,103,46,101,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,71,98,40,91,91,43,116,91,48,93,91,48,93,44,43,116,91,48,93,91,49,93,93,44,91,43,116,91,49,93,91,48,93,44,43,116,91,49,93,91,49,93,93,93,41,44,103,41,58,105,125,44,103,46,115,99,97,108,101,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,91,48,93,61,43,116,91,48,93,44,99,91,49,93,61,43,116,91,49,93,44,103,41,58,91,99,91,48,93,44,99,91,49,93,93,125,44,103,46,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,102,91,48,93,91,48,93,61,43,116,91,48,93,91,48,93,44,102,91,49,93,91,48,93,61,43,116,91,49,93,91,48,93,44,102,91,48,93,91,49,93,61,43,116,91,48,93,91,49,93,44,102,91,49,93,91,49,93,61,43,116,91,49,93,91,49,93,44,103,41,58,91,91,102,91,48,93,91,48,93,44,102,91,48,93,91,49,93,93,44,91,102,91,49,93,91,48,93,44,102,91,49,93,91,49,93,93,93,125,44,103,46,99,111,110,115,116,114,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,116,44,103,41,58,111,125,44,103,46,100,117,114,97,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,115,61,43,116,44,103,41,58,115,125,44,103,46,105,110,116,101,114,112,111,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,108,61,116,44,103,41,58,108,125,44,103,46,111,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,104,46,111,110,46,97,112,112,108,121,40,104,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,116,61,61,61,104,63,103,58,116,125,44,103,46,99,108,105,99,107,68,105,115,116,97,110,99,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,118,61,40,116,61,43,116,41,42,116,44,103,41,58,77,97,116,104,46,115,113,114,116,40,118,41,125,44,103,125,44,116,46,122,111,111,109,73,100,101,110,116,105,116,121,61,90,98,44,116,46,122,111,111,109,84,114,97,110,115,102,111,114,109,61,81,98,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,125,41,59,10,47,42,33,32,100,111,109,45,116,111,45,105,109,97,103,101,32,49,48,45,48,54,45,50,48,49,55,32,42,47,10,33,102,117,110,99,116,105,111,110,40,97,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,98,40,97,44,98,41,123,102,117,110,99,116,105,111,110,32,99,40,97,41,123,114,101,116,117,114,110,32,98,46,98,103,99,111,108,111,114,38,38,40,97,46,115,116,121,108,101,46,98,97,99,107,103,114,111,117,110,100,67,111,108,111,114,61,98,46,98,103,99,111,108,111,114,41,44,98,46,119,105,100,116,104,38,38,40,97,46,115,116,121,108,101,46,119,105,100,116,104,61,98,46,119,105,100,116,104,43,34,112,120,34,41,44,98,46,104,101,105,103,104,116,38,38,40,97,46,115,116,121,108,101,46,104,101,105,103,104,116,61,98,46,104,101,105,103,104,116,43,34,112,120,34,41,44,98,46,115,116,121,108,101,38,38,79,98,106,101,99,116,46,107,101,121,115,40,98,46,115,116,121,108,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,99,41,123,97,46,115,116,121,108,101,91,99,93,61,98,46,115,116,121,108,101,91,99,93,125,41,44,97,125,114,101,116,117,114,110,32,98,61,98,124,124,123,125,44,103,40,98,41,44,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,97,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,105,40,97,44,98,46,102,105,108,116,101,114,44,33,48,41,125,41,46,116,104,101,110,40,106,41,46,116,104,101,110,40,107,41,46,116,104,101,110,40,99,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,99,41,123,114,101,116,117,114,110,32,108,40,99,44,98,46,119,105,100,116,104,124,124,113,46,119,105,100,116,104,40,97,41,44,98,46,104,101,105,103,104,116,124,124,113,46,104,101,105,103,104,116,40,97,41,41,125,41,125,102,117,110,99,116,105,111,110,32,99,40,97,44,98,41,123,114,101,116,117,114,110,32,104,40,97,44,98,124,124,123,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,114,101,116,117,114,110,32,98,46,103,101,116,67,111,110,116,101,120,116,40,34,50,100,34,41,46,103,101,116,73,109,97,103,101,68,97,116,97,40,48,44,48,44,113,46,119,105,100,116,104,40,97,41,44,113,46,104,101,105,103,104,116,40,97,41,41,46,100,97,116,97,125,41,125,102,117,110,99,116,105,111,110,32,100,40,97,44,98,41,123,114,101,116,117,114,110,32,104,40,97,44,98,124,124,123,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,116,111,68,97,116,97,85,82,76,40,41,125,41,125,102,117,110,99,116,105,111,110,32,101,40,97,44,98,41,123,114,101,116,117,114,110,32,98,61,98,124,124,123,125,44,104,40,97,44,98,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,116,111,68,97,116,97,85,82,76,40,34,105,109,97,103,101,47,106,112,101,103,34,44,98,46,113,117,97,108,105,116,121,124,124,49,41,125,41,125,102,117,110,99,116,105,111,110,32,102,40,97,44,98,41,123,114,101,116,117,114,110,32,104,40,97,44,98,124,124,123,125,41,46,116,104,101,110,40,113,46,99,97,110,118,97,115,84,111,66,108,111,98,41,125,102,117,110,99,116,105,111,110,32,103,40,97,41,123,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,97,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,63,118,46,105,109,112,108,46,111,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,61,117,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,58,118,46,105,109,112,108,46,111,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,61,97,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,44,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,97,46,99,97,99,104,101,66,117,115,116,63,118,46,105,109,112,108,46,111,112,116,105,111,110,115,46,99,97,99,104,101,66,117,115,116,61,117,46,99,97,99,104,101,66,117,115,116,58,118,46,105,109,112,108,46,111,112,116,105,111,110,115,46,99,97,99,104,101,66,117,115,116,61,97,46,99,97,99,104,101,66,117,115,116,125,102,117,110,99,116,105,111,110,32,104,40,97,44,99,41,123,102,117,110,99,116,105,111,110,32,100,40,97,41,123,118,97,114,32,98,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,99,97,110,118,97,115,34,41,59,105,102,40,98,46,119,105,100,116,104,61,99,46,119,105,100,116,104,124,124,113,46,119,105,100,116,104,40,97,41,44,98,46,104,101,105,103,104,116,61,99,46,104,101,105,103,104,116,124,124,113,46,104,101,105,103,104,116,40,97,41,44,99,46,98,103,99,111,108,111,114,41,123,118,97,114,32,100,61,98,46,103,101,116,67,111,110,116,101,120,116,40,34,50,100,34,41,59,100,46,102,105,108,108,83,116,121,108,101,61,99,46,98,103,99,111,108,111,114,44,100,46,102,105,108,108,82,101,99,116,40,48,44,48,44,98,46,119,105,100,116,104,44,98,46,104,101,105,103,104,116,41,125,114,101,116,117,114,110,32,98,125,114,101,116,117,114,110,32,98,40,97,44,99,41,46,116,104,101,110,40,113,46,109,97,107,101,73,109,97,103,101,41,46,116,104,101,110,40,113,46,100,101,108,97,121,40,49,48,48,41,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,118,97,114,32,99,61,100,40,97,41,59,114,101,116,117,114,110,32,99,46,103,101,116,67,111,110,116,101,120,116,40,34,50,100,34,41,46,100,114,97,119,73,109,97,103,101,40,98,44,48,44,48,41,44,99,125,41,125,102,117,110,99,116,105,111,110,32,105,40,97,44,98,44,99,41,123,102,117,110,99,116,105,111,110,32,100,40,97,41,123,114,101,116,117,114,110,32,97,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,67,97,110,118,97,115,69,108,101,109,101,110,116,63,113,46,109,97,107,101,73,109,97,103,101,40,97,46,116,111,68,97,116,97,85,82,76,40,41,41,58,97,46,99,108,111,110,101,78,111,100,101,40,33,49,41,125,102,117,110,99,116,105,111,110,32,101,40,97,44,98,44,99,41,123,102,117,110,99,116,105,111,110,32,100,40,97,44,98,44,99,41,123,118,97,114,32,100,61,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,59,114,101,116,117,114,110,32,98,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,98,41,123,100,61,100,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,40,98,44,99,41,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,98,38,38,97,46,97,112,112,101,110,100,67,104,105,108,100,40,98,41,125,41,125,41,44,100,125,118,97,114,32,101,61,97,46,99,104,105,108,100,78,111,100,101,115,59,114,101,116,117,114,110,32,48,61,61,61,101,46,108,101,110,103,116,104,63,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,98,41,58,100,40,98,44,113,46,97,115,65,114,114,97,121,40,101,41,44,99,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,98,125,41,125,102,117,110,99,116,105,111,110,32,102,40,97,44,98,41,123,102,117,110,99,116,105,111,110,32,99,40,41,123,102,117,110,99,116,105,111,110,32,99,40,97,44,98,41,123,102,117,110,99,116,105,111,110,32,99,40,97,44,98,41,123,113,46,97,115,65,114,114,97,121,40,97,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,99,41,123,98,46,115,101,116,80,114,111,112,101,114,116,121,40,99,44,97,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,99,41,44,97,46,103,101,116,80,114,111,112,101,114,116,121,80,114,105,111,114,105,116,121,40,99,41,41,125,41,125,97,46,99,115,115,84,101,120,116,63,98,46,99,115,115,84,101,120,116,61,97,46,99,115,115,84,101,120,116,58,99,40,97,44,98,41,125,99,40,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,97,41,44,98,46,115,116,121,108,101,41,125,102,117,110,99,116,105,111,110,32,100,40,41,123,102,117,110,99,116,105,111,110,32,99,40,99,41,123,102,117,110,99,116,105,111,110,32,100,40,97,44,98,44,99,41,123,102,117,110,99,116,105,111,110,32,100,40,97,41,123,118,97,114,32,98,61,97,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,99,111,110,116,101,110,116,34,41,59,114,101,116,117,114,110,32,97,46,99,115,115,84,101,120,116,43,34,32,99,111,110,116,101,110,116,58,32,34,43,98,43,34,59,34,125,102,117,110,99,116,105,111,110,32,101,40,97,41,123,102,117,110,99,116,105,111,110,32,98,40,98,41,123,114,101,116,117,114,110,32,98,43,34,58,32,34,43,97,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,98,41,43,40,97,46,103,101,116,80,114,111,112,101,114,116,121,80,114,105,111,114,105,116,121,40,98,41,63,34,32,33,105,109,112,111,114,116,97,110,116,34,58,34,34,41,125,114,101,116,117,114,110,32,113,46,97,115,65,114,114,97,121,40,97,41,46,109,97,112,40,98,41,46,106,111,105,110,40,34,59,32,34,41,43,34,59,34,125,118,97,114,32,102,61,34,46,34,43,97,43,34,58,34,43,98,44,103,61,99,46,99,115,115,84,101,120,116,63,100,40,99,41,58,101,40,99,41,59,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,102,43,34,123,34,43,103,43,34,125,34,41,125,118,97,114,32,101,61,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,97,44,99,41,44,102,61,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,99,111,110,116,101,110,116,34,41,59,105,102,40,34,34,33,61,61,102,38,38,34,110,111,110,101,34,33,61,61,102,41,123,118,97,114,32,103,61,113,46,117,105,100,40,41,59,98,46,99,108,97,115,115,78,97,109,101,61,98,46,99,108,97,115,115,78,97,109,101,43,34,32,34,43,103,59,118,97,114,32,104,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,116,121,108,101,34,41,59,104,46,97,112,112,101,110,100,67,104,105,108,100,40,100,40,103,44,99,44,101,41,41,44,98,46,97,112,112,101,110,100,67,104,105,108,100,40,104,41,125,125,91,34,58,98,101,102,111,114,101,34,44,34,58,97,102,116,101,114,34,93,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,97,41,123,99,40,97,41,125,41,125,102,117,110,99,116,105,111,110,32,101,40,41,123,97,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,84,101,120,116,65,114,101,97,69,108,101,109,101,110,116,38,38,40,98,46,105,110,110,101,114,72,84,77,76,61,97,46,118,97,108,117,101,41,44,97,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,73,110,112,117,116,69,108,101,109,101,110,116,38,38,98,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,118,97,108,117,101,34,44,97,46,118,97,108,117,101,41,125,102,117,110,99,116,105,111,110,32,102,40,41,123,98,32,105,110,115,116,97,110,99,101,111,102,32,83,86,71,69,108,101,109,101,110,116,38,38,40,98,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,120,109,108,110,115,34,44,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,41,44,98,32,105,110,115,116,97,110,99,101,111,102,32,83,86,71,82,101,99,116,69,108,101,109,101,110,116,38,38,91,34,119,105,100,116,104,34,44,34,104,101,105,103,104,116,34,93,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,99,61,98,46,103,101,116,65,116,116,114,105,98,117,116,101,40,97,41,59,99,38,38,98,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,97,44,99,41,125,41,41,125,114,101,116,117,114,110,32,98,32,105,110,115,116,97,110,99,101,111,102,32,69,108,101,109,101,110,116,63,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,46,116,104,101,110,40,99,41,46,116,104,101,110,40,100,41,46,116,104,101,110,40,101,41,46,116,104,101,110,40,102,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,98,125,41,58,98,125,114,101,116,117,114,110,32,99,124,124,33,98,124,124,98,40,97,41,63,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,97,41,46,116,104,101,110,40,100,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,99,41,123,114,101,116,117,114,110,32,101,40,97,44,99,44,98,41,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,114,101,116,117,114,110,32,102,40,97,44,98,41,125,41,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,125,102,117,110,99,116,105,111,110,32,106,40,97,41,123,114,101,116,117,114,110,32,115,46,114,101,115,111,108,118,101,65,108,108,40,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,118,97,114,32,99,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,116,121,108,101,34,41,59,114,101,116,117,114,110,32,97,46,97,112,112,101,110,100,67,104,105,108,100,40,99,41,44,99,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,98,41,41,44,97,125,41,125,102,117,110,99,116,105,111,110,32,107,40,97,41,123,114,101,116,117,114,110,32,116,46,105,110,108,105,110,101,65,108,108,40,97,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,125,41,125,102,117,110,99,116,105,111,110,32,108,40,97,44,98,44,99,41,123,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,97,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,120,109,108,110,115,34,44,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,49,57,57,57,47,120,104,116,109,108,34,41,44,40,110,101,119,32,88,77,76,83,101,114,105,97,108,105,122,101,114,41,46,115,101,114,105,97,108,105,122,101,84,111,83,116,114,105,110,103,40,97,41,125,41,46,116,104,101,110,40,113,46,101,115,99,97,112,101,88,104,116,109,108,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,39,60,102,111,114,101,105,103,110,79,98,106,101,99,116,32,120,61,34,48,34,32,121,61,34,48,34,32,119,105,100,116,104,61,34,49,48,48,37,34,32,104,101,105,103,104,116,61,34,49,48,48,37,34,62,39,43,97,43,34,60,47,102,111,114,101,105,103,110,79,98,106,101,99,116,62,34,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,39,60,115,118,103,32,120,109,108,110,115,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,32,119,105,100,116,104,61,34,39,43,98,43,39,34,32,104,101,105,103,104,116,61,34,39,43,99,43,39,34,62,39,43,97,43,34,60,47,115,118,103,62,34,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,34,43,97,125,41,125,102,117,110,99,116,105,111,110,32,109,40,41,123,102,117,110,99,116,105,111,110,32,97,40,41,123,118,97,114,32,97,61,34,97,112,112,108,105,99,97,116,105,111,110,47,102,111,110,116,45,119,111,102,102,34,44,98,61,34,105,109,97,103,101,47,106,112,101,103,34,59,114,101,116,117,114,110,123,119,111,102,102,58,97,44,119,111,102,102,50,58,97,44,116,116,102,58,34,97,112,112,108,105,99,97,116,105,111,110,47,102,111,110,116,45,116,114,117,101,116,121,112,101,34,44,101,111,116,58,34,97,112,112,108,105,99,97,116,105,111,110,47,118,110,100,46,109,115,45,102,111,110,116,111,98,106,101,99,116,34,44,112,110,103,58,34,105,109,97,103,101,47,112,110,103,34,44,106,112,103,58,98,44,106,112,101,103,58,98,44,103,105,102,58,34,105,109,97,103,101,47,103,105,102,34,44,116,105,102,102,58,34,105,109,97,103,101,47,116,105,102,102,34,44,115,118,103,58,34,105,109,97,103,101,47,115,118,103,43,120,109,108,34,125,125,102,117,110,99,116,105,111,110,32,98,40,97,41,123,118,97,114,32,98,61,47,92,46,40,91,94,92,46,92,47,93,42,63,41,36,47,103,46,101,120,101,99,40,97,41,59,114,101,116,117,114,110,32,98,63,98,91,49,93,58,34,34,125,102,117,110,99,116,105,111,110,32,99,40,99,41,123,118,97,114,32,100,61,98,40,99,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,32,97,40,41,91,100,93,124,124,34,34,125,102,117,110,99,116,105,111,110,32,100,40,97,41,123,114,101,116,117,114,110,32,97,46,115,101,97,114,99,104,40,47,94,40,100,97,116,97,58,41,47,41,33,61,61,45,49,125,102,117,110,99,116,105,111,110,32,101,40,97,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,98,41,123,102,111,114,40,118,97,114,32,99,61,119,105,110,100,111,119,46,97,116,111,98,40,97,46,116,111,68,97,116,97,85,82,76,40,41,46,115,112,108,105,116,40,34,44,34,41,91,49,93,41,44,100,61,99,46,108,101,110,103,116,104,44,101,61,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,100,41,44,102,61,48,59,102,60,100,59,102,43,43,41,101,91,102,93,61,99,46,99,104,97,114,67,111,100,101,65,116,40,102,41,59,98,40,110,101,119,32,66,108,111,98,40,91,101,93,44,123,116,121,112,101,58,34,105,109,97,103,101,47,112,110,103,34,125,41,41,125,41,125,102,117,110,99,116,105,111,110,32,102,40,97,41,123,114,101,116,117,114,110,32,97,46,116,111,66,108,111,98,63,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,98,41,123,97,46,116,111,66,108,111,98,40,98,41,125,41,58,101,40,97,41,125,102,117,110,99,116,105,111,110,32,103,40,97,44,98,41,123,118,97,114,32,99,61,100,111,99,117,109,101,110,116,46,105,109,112,108,101,109,101,110,116,97,116,105,111,110,46,99,114,101,97,116,101,72,84,77,76,68,111,99,117,109,101,110,116,40,41,44,100,61,99,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,98,97,115,101,34,41,59,99,46,104,101,97,100,46,97,112,112,101,110,100,67,104,105,108,100,40,100,41,59,118,97,114,32,101,61,99,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,114,101,116,117,114,110,32,99,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,44,100,46,104,114,101,102,61,98,44,101,46,104,114,101,102,61,97,44,101,46,104,114,101,102,125,102,117,110,99,116,105,111,110,32,104,40,41,123,118,97,114,32,97,61,48,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,98,40,41,123,114,101,116,117,114,110,40,34,48,48,48,48,34,43,40,77,97,116,104,46,114,97,110,100,111,109,40,41,42,77,97,116,104,46,112,111,119,40,51,54,44,52,41,60,60,48,41,46,116,111,83,116,114,105,110,103,40,51,54,41,41,46,115,108,105,99,101,40,45,52,41,125,114,101,116,117,114,110,34,117,34,43,98,40,41,43,97,43,43,125,125,102,117,110,99,116,105,111,110,32,105,40,97,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,98,44,99,41,123,118,97,114,32,100,61,110,101,119,32,73,109,97,103,101,59,100,46,111,110,108,111,97,100,61,102,117,110,99,116,105,111,110,40,41,123,98,40,100,41,125,44,100,46,111,110,101,114,114,111,114,61,99,44,100,46,115,114,99,61,97,125,41,125,102,117,110,99,116,105,111,110,32,106,40,97,41,123,118,97,114,32,98,61,51,101,52,59,114,101,116,117,114,110,32,118,46,105,109,112,108,46,111,112,116,105,111,110,115,46,99,97,99,104,101,66,117,115,116,38,38,40,97,43,61,40,47,92,63,47,46,116,101,115,116,40,97,41,63,34,38,34,58,34,63,34,41,43,40,110,101,119,32,68,97,116,101,41,46,103,101,116,84,105,109,101,40,41,41,44,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,99,41,123,102,117,110,99,116,105,111,110,32,100,40,41,123,105,102,40,52,61,61,61,103,46,114,101,97,100,121,83,116,97,116,101,41,123,105,102,40,50,48,48,33,61,61,103,46,115,116,97,116,117,115,41,114,101,116,117,114,110,32,118,111,105,100,40,104,63,99,40,104,41,58,102,40,34,99,97,110,110,111,116,32,102,101,116,99,104,32,114,101,115,111,117,114,99,101,58,32,34,43,97,43,34,44,32,115,116,97,116,117,115,58,32,34,43,103,46,115,116,97,116,117,115,41,41,59,118,97,114,32,98,61,110,101,119,32,70,105,108,101,82,101,97,100,101,114,59,98,46,111,110,108,111,97,100,101,110,100,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,98,46,114,101,115,117,108,116,46,115,112,108,105,116,40,47,44,47,41,91,49,93,59,99,40,97,41,125,44,98,46,114,101,97,100,65,115,68,97,116,97,85,82,76,40,103,46,114,101,115,112,111,110,115,101,41,125,125,102,117,110,99,116,105,111,110,32,101,40,41,123,104,63,99,40,104,41,58,102,40,34,116,105,109,101,111,117,116,32,111,102,32,34,43,98,43,34,109,115,32,111,99,99,117,114,101,100,32,119,104,105,108,101,32,102,101,116,99,104,105,110,103,32,114,101,115,111,117,114,99,101,58,32,34,43,97,41,125,102,117,110,99,116,105,111,110,32,102,40,97,41,123,99,111,110,115,111,108,101,46,101,114,114,111,114,40,97,41,44,99,40,34,34,41,125,118,97,114,32,103,61,110,101,119,32,88,77,76,72,116,116,112,82,101,113,117,101,115,116,59,103,46,111,110,114,101,97,100,121,115,116,97,116,101,99,104,97,110,103,101,61,100,44,103,46,111,110,116,105,109,101,111,117,116,61,101,44,103,46,114,101,115,112,111,110,115,101,84,121,112,101,61,34,98,108,111,98,34,44,103,46,116,105,109,101,111,117,116,61,98,44,103,46,111,112,101,110,40,34,71,69,84,34,44,97,44,33,48,41,44,103,46,115,101,110,100,40,41,59,118,97,114,32,104,59,105,102,40,118,46,105,109,112,108,46,111,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,41,123,118,97,114,32,105,61,118,46,105,109,112,108,46,111,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,46,115,112,108,105,116,40,47,44,47,41,59,105,38,38,105,91,49,93,38,38,40,104,61,105,91,49,93,41,125,125,41,125,102,117,110,99,116,105,111,110,32,107,40,97,44,98,41,123,114,101,116,117,114,110,34,100,97,116,97,58,34,43,98,43,34,59,98,97,115,101,54,52,44,34,43,97,125,102,117,110,99,116,105,111,110,32,108,40,97,41,123,114,101,116,117,114,110,32,97,46,114,101,112,108,97,99,101,40,47,40,91,46,42,43,63,94,36,123,125,40,41,124,92,91,92,93,92,47,92,92,93,41,47,103,44,34,92,92,36,49,34,41,125,102,117,110,99,116,105,111,110,32,109,40,97,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,98,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,99,41,123,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,99,40,98,41,125,44,97,41,125,41,125,125,102,117,110,99,116,105,111,110,32,110,40,97,41,123,102,111,114,40,118,97,114,32,98,61,91,93,44,99,61,97,46,108,101,110,103,116,104,44,100,61,48,59,100,60,99,59,100,43,43,41,98,46,112,117,115,104,40,97,91,100,93,41,59,114,101,116,117,114,110,32,98,125,102,117,110,99,116,105,111,110,32,111,40,97,41,123,114,101,116,117,114,110,32,97,46,114,101,112,108,97,99,101,40,47,35,47,103,44,34,37,50,51,34,41,46,114,101,112,108,97,99,101,40,47,92,110,47,103,44,34,37,48,65,34,41,125,102,117,110,99,116,105,111,110,32,112,40,97,41,123,118,97,114,32,98,61,114,40,97,44,34,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,34,41,44,99,61,114,40,97,44,34,98,111,114,100,101,114,45,114,105,103,104,116,45,119,105,100,116,104,34,41,59,114,101,116,117,114,110,32,97,46,115,99,114,111,108,108,87,105,100,116,104,43,98,43,99,125,102,117,110,99,116,105,111,110,32,113,40,97,41,123,118,97,114,32,98,61,114,40,97,44,34,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,34,41,44,99,61,114,40,97,44,34,98,111,114,100,101,114,45,98,111,116,116,111,109,45,119,105,100,116,104,34,41,59,114,101,116,117,114,110,32,97,46,115,99,114,111,108,108,72,101,105,103,104,116,43,98,43,99,125,102,117,110,99,116,105,111,110,32,114,40,97,44,98,41,123,118,97,114,32,99,61,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,97,41,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,98,41,59,114,101,116,117,114,110,32,112,97,114,115,101,70,108,111,97,116,40,99,46,114,101,112,108,97,99,101,40,34,112,120,34,44,34,34,41,41,125,114,101,116,117,114,110,123,101,115,99,97,112,101,58,108,44,112,97,114,115,101,69,120,116,101,110,115,105,111,110,58,98,44,109,105,109,101,84,121,112,101,58,99,44,100,97,116,97,65,115,85,114,108,58,107,44,105,115,68,97,116,97,85,114,108,58,100,44,99,97,110,118,97,115,84,111,66,108,111,98,58,102,44,114,101,115,111,108,118,101,85,114,108,58,103,44,103,101,116,65,110,100,69,110,99,111,100,101,58,106,44,117,105,100,58,104,40,41,44,100,101,108,97,121,58,109,44,97,115,65,114,114,97,121,58,110,44,101,115,99,97,112,101,88,104,116,109,108,58,111,44,109,97,107,101,73,109,97,103,101,58,105,44,119,105,100,116,104,58,112,44,104,101,105,103,104,116,58,113,125,125,102,117,110,99,116,105,111,110,32,110,40,41,123,102,117,110,99,116,105,111,110,32,97,40,97,41,123,114,101,116,117,114,110,32,97,46,115,101,97,114,99,104,40,101,41,33,61,61,45,49,125,102,117,110,99,116,105,111,110,32,98,40,97,41,123,102,111,114,40,118,97,114,32,98,44,99,61,91,93,59,110,117,108,108,33,61,61,40,98,61,101,46,101,120,101,99,40,97,41,41,59,41,99,46,112,117,115,104,40,98,91,49,93,41,59,114,101,116,117,114,110,32,99,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,33,113,46,105,115,68,97,116,97,85,114,108,40,97,41,125,41,125,102,117,110,99,116,105,111,110,32,99,40,97,44,98,44,99,44,100,41,123,102,117,110,99,116,105,111,110,32,101,40,97,41,123,114,101,116,117,114,110,32,110,101,119,32,82,101,103,69,120,112,40,34,40,117,114,108,92,92,40,91,39,92,34,93,63,41,40,34,43,113,46,101,115,99,97,112,101,40,97,41,43,34,41,40,91,39,92,34,93,63,92,92,41,41,34,44,34,103,34,41,125,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,98,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,99,63,113,46,114,101,115,111,108,118,101,85,114,108,40,97,44,99,41,58,97,125,41,46,116,104,101,110,40,100,124,124,113,46,103,101,116,65,110,100,69,110,99,111,100,101,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,113,46,100,97,116,97,65,115,85,114,108,40,97,44,113,46,109,105,109,101,84,121,112,101,40,98,41,41,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,99,41,123,114,101,116,117,114,110,32,97,46,114,101,112,108,97,99,101,40,101,40,98,41,44,34,36,49,34,43,99,43,34,36,51,34,41,125,41,125,102,117,110,99,116,105,111,110,32,100,40,100,44,101,44,102,41,123,102,117,110,99,116,105,111,110,32,103,40,41,123,114,101,116,117,114,110,33,97,40,100,41,125,114,101,116,117,114,110,32,103,40,41,63,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,100,41,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,100,41,46,116,104,101,110,40,98,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,98,61,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,100,41,59,114,101,116,117,114,110,32,97,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,97,41,123,98,61,98,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,114,101,116,117,114,110,32,99,40,98,44,97,44,101,44,102,41,125,41,125,41,44,98,125,41,125,118,97,114,32,101,61,47,117,114,108,92,40,91,39,34,93,63,40,91,94,39,34,93,43,63,41,91,39,34,93,63,92,41,47,103,59,114,101,116,117,114,110,123,105,110,108,105,110,101,65,108,108,58,100,44,115,104,111,117,108,100,80,114,111,99,101,115,115,58,97,44,105,109,112,108,58,123,114,101,97,100,85,114,108,115,58,98,44,105,110,108,105,110,101,58,99,125,125,125,102,117,110,99,116,105,111,110,32,111,40,41,123,102,117,110,99,116,105,111,110,32,97,40,41,123,114,101,116,117,114,110,32,98,40,100,111,99,117,109,101,110,116,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,97,108,108,40,97,46,109,97,112,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,114,101,115,111,108,118,101,40,41,125,41,41,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,106,111,105,110,40,34,92,110,34,41,125,41,125,102,117,110,99,116,105,111,110,32,98,40,41,123,102,117,110,99,116,105,111,110,32,97,40,97,41,123,114,101,116,117,114,110,32,97,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,116,121,112,101,61,61,61,67,83,83,82,117,108,101,46,70,79,78,84,95,70,65,67,69,95,82,85,76,69,125,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,114,46,115,104,111,117,108,100,80,114,111,99,101,115,115,40,97,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,115,114,99,34,41,41,125,41,125,102,117,110,99,116,105,111,110,32,98,40,97,41,123,118,97,114,32,98,61,91,93,59,114,101,116,117,114,110,32,97,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,97,41,123,116,114,121,123,113,46,97,115,65,114,114,97,121,40,97,46,99,115,115,82,117,108,101,115,124,124,91,93,41,46,102,111,114,69,97,99,104,40,98,46,112,117,115,104,46,98,105,110,100,40,98,41,41,125,99,97,116,99,104,40,99,41,123,99,111,110,115,111,108,101,46,108,111,103,40,34,69,114,114,111,114,32,119,104,105,108,101,32,114,101,97,100,105,110,103,32,67,83,83,32,114,117,108,101,115,32,102,114,111,109,32,34,43,97,46,104,114,101,102,44,99,46,116,111,83,116,114,105,110,103,40,41,41,125,125,41,44,98,125,102,117,110,99,116,105,111,110,32,99,40,97,41,123,114,101,116,117,114,110,123,114,101,115,111,108,118,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,98,61,40,97,46,112,97,114,101,110,116,83,116,121,108,101,83,104,101,101,116,124,124,123,125,41,46,104,114,101,102,59,114,101,116,117,114,110,32,114,46,105,110,108,105,110,101,65,108,108,40,97,46,99,115,115,84,101,120,116,44,98,41,125,44,115,114,99,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,115,114,99,34,41,125,125,125,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,113,46,97,115,65,114,114,97,121,40,100,111,99,117,109,101,110,116,46,115,116,121,108,101,83,104,101,101,116,115,41,41,46,116,104,101,110,40,98,41,46,116,104,101,110,40,97,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,109,97,112,40,99,41,125,41,125,114,101,116,117,114,110,123,114,101,115,111,108,118,101,65,108,108,58,97,44,105,109,112,108,58,123,114,101,97,100,65,108,108,58,98,125,125,125,102,117,110,99,116,105,111,110,32,112,40,41,123,102,117,110,99,116,105,111,110,32,97,40,97,41,123,102,117,110,99,116,105,111,110,32,98,40,98,41,123,114,101,116,117,114,110,32,113,46,105,115,68,97,116,97,85,114,108,40,97,46,115,114,99,41,63,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,97,46,115,114,99,41,46,116,104,101,110,40,98,124,124,113,46,103,101,116,65,110,100,69,110,99,111,100,101,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,114,101,116,117,114,110,32,113,46,100,97,116,97,65,115,85,114,108,40,98,44,113,46,109,105,109,101,84,121,112,101,40,97,46,115,114,99,41,41,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,99,44,100,41,123,97,46,111,110,108,111,97,100,61,99,44,97,46,111,110,101,114,114,111,114,61,100,44,97,46,115,114,99,61,98,125,41,125,41,125,114,101,116,117,114,110,123,105,110,108,105,110,101,58,98,125,125,102,117,110,99,116,105,111,110,32,98,40,99,41,123,102,117,110,99,116,105,111,110,32,100,40,97,41,123,118,97,114,32,98,61,97,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,98,97,99,107,103,114,111,117,110,100,34,41,59,114,101,116,117,114,110,32,98,63,114,46,105,110,108,105,110,101,65,108,108,40,98,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,97,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,34,98,97,99,107,103,114,111,117,110,100,34,44,98,44,97,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,80,114,105,111,114,105,116,121,40,34,98,97,99,107,103,114,111,117,110,100,34,41,41,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,125,41,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,97,41,125,114,101,116,117,114,110,32,99,32,105,110,115,116,97,110,99,101,111,102,32,69,108,101,109,101,110,116,63,100,40,99,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,73,109,97,103,101,69,108,101,109,101,110,116,63,97,40,99,41,46,105,110,108,105,110,101,40,41,58,80,114,111,109,105,115,101,46,97,108,108,40,113,46,97,115,65,114,114,97,121,40,99,46,99,104,105,108,100,78,111,100,101,115,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,98,40,97,41,125,41,41,125,41,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,99,41,125,114,101,116,117,114,110,123,105,110,108,105,110,101,65,108,108,58,98,44,105,109,112,108,58,123,110,101,119,73,109,97,103,101,58,97,125,125,125,118,97,114,32,113,61,109,40,41,44,114,61,110,40,41,44,115,61,111,40,41,44,116,61,112,40,41,44,117,61,123,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,58,118,111,105,100,32,48,44,99,97,99,104,101,66,117,115,116,58,33,49,125,44,118,61,123,116,111,83,118,103,58,98,44,116,111,80,110,103,58,100,44,116,111,74,112,101,103,58,101,44,116,111,66,108,111,98,58,102,44,116,111,80,105,120,101,108,68,97,116,97,58,99,44,105,109,112,108,58,123,102,111,110,116,70,97,99,101,115,58,115,44,105,109,97,103,101,115,58,116,44,117,116,105,108,58,113,44,105,110,108,105,110,101,114,58,114,44,111,112,116,105,111,110,115,58,123,125,125,125,59,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,118,58,97,46,100,111,109,116,111,105,109,97,103,101,61,118,125,40,116,104,105,115,41,59,239,187,191,40,102,117,110,99,116,105,111,110,40,102,41,123,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,106,113,117,101,114,121,34,93,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,102,40,110,44,100,111,99,117,109,101,110,116,44,119,105,110,100,111,119,44,110,97,118,105,103,97,116,111,114,41,125,41,58,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,63,102,40,114,101,113,117,105,114,101,40,34,106,113,117,101,114,121,34,41,44,100,111,99,117,109,101,110,116,44,119,105,110,100,111,119,44,110,97,118,105,103,97,116,111,114,41,58,102,40,106,81,117,101,114,121,44,100,111,99,117,109,101,110,116,44,119,105,110,100,111,119,44,110,97,118,105,103,97,116,111,114,41,125,41,40,102,117,110,99,116,105,111,110,40,102,44,110,44,107,44,114,44,112,41,123,118,97,114,32,116,61,48,44,109,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,114,46,117,115,101,114,65,103,101,110,116,44,98,61,47,109,115,105,101,92,115,92,100,43,47,105,59,114,101,116,117,114,110,32,48,60,97,46,115,101,97,114,99,104,40,98,41,38,38,40,97,61,98,46,101,120,101,99,40,97,41,46,116,111,83,116,114,105,110,103,40,41,44,97,61,97,46,115,112,108,105,116,40,34,32,34,41,91,49,93,44,57,62,97,41,63,40,102,40,34,104,116,109,108,34,41,46,97,100,100,67,108,97,115,115,40,34,108,116,45,105,101,57,34,41,44,33,48,41,58,33,49,125,40,41,59,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,46,98,105,110,100,124,124,40,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,46,98,105,110,100,61,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,98,61,116,104,105,115,44,100,61,91,93,46,115,108,105,99,101,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,10,116,121,112,101,111,102,32,98,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,59,118,97,114,32,99,61,100,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,44,49,41,44,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,101,41,123,118,97,114,32,103,61,102,117,110,99,116,105,111,110,40,41,123,125,59,103,46,112,114,111,116,111,116,121,112,101,61,98,46,112,114,111,116,111,116,121,112,101,59,118,97,114,32,103,61,110,101,119,32,103,44,108,61,98,46,97,112,112,108,121,40,103,44,99,46,99,111,110,99,97,116,40,100,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,41,59,114,101,116,117,114,110,32,79,98,106,101,99,116,40,108,41,61,61,61,108,63,108,58,103,125,114,101,116,117,114,110,32,98,46,97,112,112,108,121,40,97,44,99,46,99,111,110,99,97,116,40,100,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,41,125,59,114,101,116,117,114,110,32,101,125,41,59,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,105,110,100,101,120,79,102,124,124,40,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,105,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,97,44,98,41,123,105,102,40,110,117,108,108,61,61,116,104,105,115,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,34,116,104,105,115,34,32,105,115,32,110,117,108,108,32,111,114,32,110,111,116,32,100,101,102,105,110,101,100,39,41,59,118,97,114,32,100,61,79,98,106,101,99,116,40,116,104,105,115,41,44,99,61,100,46,108,101,110,103,116,104,62,62,62,48,59,105,102,40,48,61,61,61,99,41,114,101,116,117,114,110,45,49,59,118,97,114,32,101,61,43,98,124,124,48,59,73,110,102,105,110,105,116,121,61,61,61,77,97,116,104,46,97,98,115,40,101,41,38,38,40,101,61,48,41,59,105,102,40,101,62,61,99,41,114,101,116,117,114,110,45,49,59,10,102,111,114,40,101,61,77,97,116,104,46,109,97,120,40,48,60,61,101,63,101,58,99,45,77,97,116,104,46,97,98,115,40,101,41,44,48,41,59,101,60,99,59,41,123,105,102,40,101,32,105,110,32,100,38,38,100,91,101,93,61,61,61,97,41,114,101,116,117,114,110,32,101,59,101,43,43,125,114,101,116,117,114,110,45,49,125,41,59,118,97,114,32,113,61,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,116,104,105,115,46,86,69,82,83,73,79,78,61,34,50,46,50,46,48,34,59,116,104,105,115,46,105,110,112,117,116,61,97,59,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,61,100,59,116,104,105,115,46,111,108,100,95,116,111,61,116,104,105,115,46,111,108,100,95,102,114,111,109,61,116,104,105,115,46,117,112,100,97,116,101,95,116,109,61,116,104,105,115,46,99,97,108,99,95,99,111,117,110,116,61,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,61,48,59,116,104,105,115,46,114,97,102,95,105,100,61,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,61,110,117,108,108,59,116,104,105,115,46,110,111,95,100,105,97,112,97,115,111,110,61,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,116,104,105,115,46,100,114,97,103,103,105,110,103,61,33,49,59,116,104,105,115,46,104,97,115,95,116,97,98,95,105,110,100,101,120,61,33,48,59,116,104,105,115,46,105,115,95,117,112,100,97,116,101,61,116,104,105,115,46,105,115,95,107,101,121,61,33,49,59,116,104,105,115,46,105,115,95,115,116,97,114,116,61,33,48,59,116,104,105,115,46,105,115,95,99,108,105,99,107,61,116,104,105,115,46,105,115,95,114,101,115,105,122,101,61,116,104,105,115,46,105,115,95,97,99,116,105,118,101,61,116,104,105,115,46,105,115,95,102,105,110,105,115,104,61,33,49,59,98,61,98,124,124,123,125,59,116,104,105,115,46,36,99,97,99,104,101,61,123,119,105,110,58,102,40,107,41,44,98,111,100,121,58,102,40,110,46,98,111,100,121,41,44,10,105,110,112,117,116,58,102,40,97,41,44,99,111,110,116,58,110,117,108,108,44,114,115,58,110,117,108,108,44,109,105,110,58,110,117,108,108,44,109,97,120,58,110,117,108,108,44,102,114,111,109,58,110,117,108,108,44,116,111,58,110,117,108,108,44,115,105,110,103,108,101,58,110,117,108,108,44,98,97,114,58,110,117,108,108,44,108,105,110,101,58,110,117,108,108,44,115,95,115,105,110,103,108,101,58,110,117,108,108,44,115,95,102,114,111,109,58,110,117,108,108,44,115,95,116,111,58,110,117,108,108,44,115,104,97,100,95,115,105,110,103,108,101,58,110,117,108,108,44,115,104,97,100,95,102,114,111,109,58,110,117,108,108,44,115,104,97,100,95,116,111,58,110,117,108,108,44,101,100,103,101,58,110,117,108,108,44,103,114,105,100,58,110,117,108,108,44,103,114,105,100,95,108,97,98,101,108,115,58,91,93,125,59,116,104,105,115,46,99,111,111,114,100,115,61,123,120,95,103,97,112,58,48,44,120,95,112,111,105,110,116,101,114,58,48,44,119,95,114,115,58,48,44,119,95,114,115,95,111,108,100,58,48,44,119,95,104,97,110,100,108,101,58,48,44,112,95,103,97,112,58,48,44,112,95,103,97,112,95,108,101,102,116,58,48,44,112,95,103,97,112,95,114,105,103,104,116,58,48,44,112,95,115,116,101,112,58,48,44,112,95,112,111,105,110,116,101,114,58,48,44,112,95,104,97,110,100,108,101,58,48,44,112,95,115,105,110,103,108,101,95,102,97,107,101,58,48,44,112,95,115,105,110,103,108,101,95,114,101,97,108,58,48,44,112,95,102,114,111,109,95,102,97,107,101,58,48,44,112,95,102,114,111,109,95,114,101,97,108,58,48,44,112,95,116,111,95,102,97,107,101,58,48,44,112,95,116,111,95,114,101,97,108,58,48,44,112,95,98,97,114,95,120,58,48,44,112,95,98,97,114,95,119,58,48,44,103,114,105,100,95,103,97,112,58,48,44,98,105,103,95,110,117,109,58,48,44,98,105,103,58,91,93,44,98,105,103,95,119,58,91,93,44,98,105,103,95,112,58,91,93,44,98,105,103,95,120,58,91,93,125,59,10,116,104,105,115,46,108,97,98,101,108,115,61,123,119,95,109,105,110,58,48,44,119,95,109,97,120,58,48,44,119,95,102,114,111,109,58,48,44,119,95,116,111,58,48,44,119,95,115,105,110,103,108,101,58,48,44,112,95,109,105,110,58,48,44,112,95,109,97,120,58,48,44,112,95,102,114,111,109,95,102,97,107,101,58,48,44,112,95,102,114,111,109,95,108,101,102,116,58,48,44,112,95,116,111,95,102,97,107,101,58,48,44,112,95,116,111,95,108,101,102,116,58,48,44,112,95,115,105,110,103,108,101,95,102,97,107,101,58,48,44,112,95,115,105,110,103,108,101,95,108,101,102,116,58,48,125,59,118,97,114,32,99,61,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,59,97,61,99,46,112,114,111,112,40,34,118,97,108,117,101,34,41,59,118,97,114,32,101,59,100,61,123,116,121,112,101,58,34,115,105,110,103,108,101,34,44,109,105,110,58,49,48,44,109,97,120,58,49,48,48,44,102,114,111,109,58,110,117,108,108,44,116,111,58,110,117,108,108,44,115,116,101,112,58,49,44,109,105,110,95,105,110,116,101,114,118,97,108,58,48,44,109,97,120,95,105,110,116,101,114,118,97,108,58,48,44,100,114,97,103,95,105,110,116,101,114,118,97,108,58,33,49,44,118,97,108,117,101,115,58,91,93,44,112,95,118,97,108,117,101,115,58,91,93,44,102,114,111,109,95,102,105,120,101,100,58,33,49,44,102,114,111,109,95,109,105,110,58,110,117,108,108,44,102,114,111,109,95,109,97,120,58,110,117,108,108,44,102,114,111,109,95,115,104,97,100,111,119,58,33,49,44,116,111,95,102,105,120,101,100,58,33,49,44,116,111,95,109,105,110,58,110,117,108,108,44,116,111,95,109,97,120,58,110,117,108,108,44,116,111,95,115,104,97,100,111,119,58,33,49,44,112,114,101,116,116,105,102,121,95,101,110,97,98,108,101,100,58,33,48,44,112,114,101,116,116,105,102,121,95,115,101,112,97,114,97,116,111,114,58,34,32,34,44,112,114,101,116,116,105,102,121,58,110,117,108,108,44,102,111,114,99,101,95,101,100,103,101,115,58,33,49,44,10,107,101,121,98,111,97,114,100,58,33,48,44,103,114,105,100,58,33,49,44,103,114,105,100,95,109,97,114,103,105,110,58,33,48,44,103,114,105,100,95,110,117,109,58,52,44,103,114,105,100,95,115,110,97,112,58,33,49,44,104,105,100,101,95,109,105,110,95,109,97,120,58,33,49,44,104,105,100,101,95,102,114,111,109,95,116,111,58,33,49,44,112,114,101,102,105,120,58,34,34,44,112,111,115,116,102,105,120,58,34,34,44,109,97,120,95,112,111,115,116,102,105,120,58,34,34,44,100,101,99,111,114,97,116,101,95,98,111,116,104,58,33,48,44,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,58,34,32,92,117,50,48,49,52,32,34,44,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,58,34,59,34,44,100,105,115,97,98,108,101,58,33,49,44,98,108,111,99,107,58,33,49,44,101,120,116,114,97,95,99,108,97,115,115,101,115,58,34,34,44,115,99,111,112,101,58,110,117,108,108,44,111,110,83,116,97,114,116,58,110,117,108,108,44,111,110,67,104,97,110,103,101,58,110,117,108,108,44,111,110,70,105,110,105,115,104,58,110,117,108,108,44,111,110,85,112,100,97,116,101,58,110,117,108,108,125,59,34,73,78,80,85,84,34,33,61,61,99,91,48,93,46,110,111,100,101,78,97,109,101,38,38,99,111,110,115,111,108,101,38,38,99,111,110,115,111,108,101,46,119,97,114,110,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,66,97,115,101,32,101,108,101,109,101,110,116,32,115,104,111,117,108,100,32,98,101,32,60,105,110,112,117,116,62,33,34,44,99,91,48,93,41,59,99,61,123,116,121,112,101,58,99,46,100,97,116,97,40,34,116,121,112,101,34,41,44,109,105,110,58,99,46,100,97,116,97,40,34,109,105,110,34,41,44,109,97,120,58,99,46,100,97,116,97,40,34,109,97,120,34,41,44,102,114,111,109,58,99,46,100,97,116,97,40,34,102,114,111,109,34,41,44,116,111,58,99,46,100,97,116,97,40,34,116,111,34,41,44,115,116,101,112,58,99,46,100,97,116,97,40,34,115,116,101,112,34,41,44,10,109,105,110,95,105,110,116,101,114,118,97,108,58,99,46,100,97,116,97,40,34,109,105,110,73,110,116,101,114,118,97,108,34,41,44,109,97,120,95,105,110,116,101,114,118,97,108,58,99,46,100,97,116,97,40,34,109,97,120,73,110,116,101,114,118,97,108,34,41,44,100,114,97,103,95,105,110,116,101,114,118,97,108,58,99,46,100,97,116,97,40,34,100,114,97,103,73,110,116,101,114,118,97,108,34,41,44,118,97,108,117,101,115,58,99,46,100,97,116,97,40,34,118,97,108,117,101,115,34,41,44,102,114,111,109,95,102,105,120,101,100,58,99,46,100,97,116,97,40,34,102,114,111,109,70,105,120,101,100,34,41,44,102,114,111,109,95,109,105,110,58,99,46,100,97,116,97,40,34,102,114,111,109,77,105,110,34,41,44,102,114,111,109,95,109,97,120,58,99,46,100,97,116,97,40,34,102,114,111,109,77,97,120,34,41,44,102,114,111,109,95,115,104,97,100,111,119,58,99,46,100,97,116,97,40,34,102,114,111,109,83,104,97,100,111,119,34,41,44,116,111,95,102,105,120,101,100,58,99,46,100,97,116,97,40,34,116,111,70,105,120,101,100,34,41,44,116,111,95,109,105,110,58,99,46,100,97,116,97,40,34,116,111,77,105,110,34,41,44,116,111,95,109,97,120,58,99,46,100,97,116,97,40,34,116,111,77,97,120,34,41,44,116,111,95,115,104,97,100,111,119,58,99,46,100,97,116,97,40,34,116,111,83,104,97,100,111,119,34,41,44,112,114,101,116,116,105,102,121,95,101,110,97,98,108,101,100,58,99,46,100,97,116,97,40,34,112,114,101,116,116,105,102,121,69,110,97,98,108,101,100,34,41,44,112,114,101,116,116,105,102,121,95,115,101,112,97,114,97,116,111,114,58,99,46,100,97,116,97,40,34,112,114,101,116,116,105,102,121,83,101,112,97,114,97,116,111,114,34,41,44,102,111,114,99,101,95,101,100,103,101,115,58,99,46,100,97,116,97,40,34,102,111,114,99,101,69,100,103,101,115,34,41,44,107,101,121,98,111,97,114,100,58,99,46,100,97,116,97,40,34,107,101,121,98,111,97,114,100,34,41,44,10,103,114,105,100,58,99,46,100,97,116,97,40,34,103,114,105,100,34,41,44,103,114,105,100,95,109,97,114,103,105,110,58,99,46,100,97,116,97,40,34,103,114,105,100,77,97,114,103,105,110,34,41,44,103,114,105,100,95,110,117,109,58,99,46,100,97,116,97,40,34,103,114,105,100,78,117,109,34,41,44,103,114,105,100,95,115,110,97,112,58,99,46,100,97,116,97,40,34,103,114,105,100,83,110,97,112,34,41,44,104,105,100,101,95,109,105,110,95,109,97,120,58,99,46,100,97,116,97,40,34,104,105,100,101,77,105,110,77,97,120,34,41,44,104,105,100,101,95,102,114,111,109,95,116,111,58,99,46,100,97,116,97,40,34,104,105,100,101,70,114,111,109,84,111,34,41,44,112,114,101,102,105,120,58,99,46,100,97,116,97,40,34,112,114,101,102,105,120,34,41,44,112,111,115,116,102,105,120,58,99,46,100,97,116,97,40,34,112,111,115,116,102,105,120,34,41,44,109,97,120,95,112,111,115,116,102,105,120,58,99,46,100,97,116,97,40,34,109,97,120,80,111,115,116,102,105,120,34,41,44,100,101,99,111,114,97,116,101,95,98,111,116,104,58,99,46,100,97,116,97,40,34,100,101,99,111,114,97,116,101,66,111,116,104,34,41,44,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,58,99,46,100,97,116,97,40,34,118,97,108,117,101,115,83,101,112,97,114,97,116,111,114,34,41,44,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,58,99,46,100,97,116,97,40,34,105,110,112,117,116,86,97,108,117,101,115,83,101,112,97,114,97,116,111,114,34,41,44,100,105,115,97,98,108,101,58,99,46,100,97,116,97,40,34,100,105,115,97,98,108,101,34,41,44,98,108,111,99,107,58,99,46,100,97,116,97,40,34,98,108,111,99,107,34,41,44,101,120,116,114,97,95,99,108,97,115,115,101,115,58,99,46,100,97,116,97,40,34,101,120,116,114,97,67,108,97,115,115,101,115,34,41,125,59,99,46,118,97,108,117,101,115,61,99,46,118,97,108,117,101,115,38,38,99,46,118,97,108,117,101,115,46,115,112,108,105,116,40,34,44,34,41,59,10,102,111,114,40,101,32,105,110,32,99,41,99,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,101,41,38,38,40,99,91,101,93,33,61,61,112,38,38,34,34,33,61,61,99,91,101,93,124,124,100,101,108,101,116,101,32,99,91,101,93,41,59,97,33,61,61,112,38,38,34,34,33,61,61,97,38,38,40,97,61,97,46,115,112,108,105,116,40,99,46,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,124,124,98,46,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,124,124,34,59,34,41,44,97,91,48,93,38,38,97,91,48,93,61,61,43,97,91,48,93,38,38,40,97,91,48,93,61,43,97,91,48,93,41,44,97,91,49,93,38,38,97,91,49,93,61,61,43,97,91,49,93,38,38,40,97,91,49,93,61,43,97,91,49,93,41,44,98,38,38,98,46,118,97,108,117,101,115,38,38,98,46,118,97,108,117,101,115,46,108,101,110,103,116,104,63,40,100,46,102,114,111,109,61,97,91,48,93,38,38,98,46,118,97,108,117,101,115,46,105,110,100,101,120,79,102,40,97,91,48,93,41,44,100,46,116,111,61,97,91,49,93,38,38,98,46,118,97,108,117,101,115,46,105,110,100,101,120,79,102,40,97,91,49,93,41,41,58,40,100,46,102,114,111,109,61,97,91,48,93,38,38,43,97,91,48,93,44,100,46,116,111,61,97,91,49,93,38,38,43,97,91,49,93,41,41,59,102,46,101,120,116,101,110,100,40,100,44,98,41,59,102,46,101,120,116,101,110,100,40,100,44,99,41,59,116,104,105,115,46,111,112,116,105,111,110,115,61,100,59,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,61,123,125,59,116,104,105,115,46,118,97,108,105,100,97,116,101,40,41,59,116,104,105,115,46,114,101,115,117,108,116,61,123,105,110,112,117,116,58,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,44,115,108,105,100,101,114,58,110,117,108,108,44,109,105,110,58,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,44,10,109,97,120,58,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,44,102,114,111,109,58,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,44,102,114,111,109,95,112,101,114,99,101,110,116,58,48,44,102,114,111,109,95,118,97,108,117,101,58,110,117,108,108,44,116,111,58,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,44,116,111,95,112,101,114,99,101,110,116,58,48,44,116,111,95,118,97,108,117,101,58,110,117,108,108,125,59,116,104,105,115,46,105,110,105,116,40,41,125,59,113,46,112,114,111,116,111,116,121,112,101,61,123,105,110,105,116,58,102,117,110,99,116,105,111,110,40,97,41,123,116,104,105,115,46,110,111,95,100,105,97,112,97,115,111,110,61,33,49,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,116,101,112,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,44,33,48,41,59,116,104,105,115,46,116,97,114,103,101,116,61,34,98,97,115,101,34,59,116,104,105,115,46,116,111,103,103,108,101,73,110,112,117,116,40,41,59,116,104,105,115,46,97,112,112,101,110,100,40,41,59,116,104,105,115,46,115,101,116,77,105,110,77,97,120,40,41,59,97,63,40,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,116,104,105,115,46,99,97,108,99,40,33,48,41,44,116,104,105,115,46,99,97,108,108,79,110,85,112,100,97,116,101,40,41,41,58,40,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,116,104,105,115,46,99,97,108,99,40,33,48,41,44,116,104,105,115,46,99,97,108,108,79,110,83,116,97,114,116,40,41,41,59,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,40,41,125,44,97,112,112,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,98,101,102,111,114,101,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,32,106,115,45,105,114,115,45,39,43,10,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,43,34,32,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,101,120,116,114,97,95,99,108,97,115,115,101,115,43,39,34,62,60,47,115,112,97,110,62,39,41,59,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,114,101,97,100,111,110,108,121,34,44,33,48,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,61,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,101,118,40,41,59,116,104,105,115,46,114,101,115,117,108,116,46,115,108,105,100,101,114,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,104,116,109,108,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,34,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,108,105,110,101,34,32,116,97,98,105,110,100,101,120,61,34,48,34,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,108,105,110,101,45,108,101,102,116,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,108,105,110,101,45,109,105,100,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,108,105,110,101,45,114,105,103,104,116,34,62,60,47,115,112,97,110,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,109,105,110,34,62,48,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,109,97,120,34,62,49,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,102,114,111,109,34,62,48,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,116,111,34,62,48,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,105,110,103,108,101,34,62,48,60,47,115,112,97,110,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,103,114,105,100,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,98,97,114,34,62,60,47,115,112,97,110,62,39,41,59,10,116,104,105,115,46,36,99,97,99,104,101,46,114,115,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,109,105,110,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,109,97,120,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,102,114,111,109,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,116,111,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,116,111,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,115,105,110,103,108,101,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,98,97,114,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,108,105,110,101,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,103,114,105,100,34,41,59,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,112,112,101,110,100,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,98,97,114,45,101,100,103,101,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,104,97,100,111,119,32,115,104,97,100,111,119,45,115,105,110,103,108,101,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,108,105,100,101,114,32,115,105,110,103,108,101,34,62,60,47,115,112,97,110,62,39,41,44,10,116,104,105,115,46,36,99,97,99,104,101,46,101,100,103,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,98,97,114,45,101,100,103,101,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,105,110,103,108,101,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,104,97,100,111,119,45,115,105,110,103,108,101,34,41,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,112,112,101,110,100,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,104,97,100,111,119,32,115,104,97,100,111,119,45,102,114,111,109,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,104,97,100,111,119,32,115,104,97,100,111,119,45,116,111,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,108,105,100,101,114,32,102,114,111,109,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,108,105,100,101,114,32,116,111,34,62,60,47,115,112,97,110,62,39,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,102,114,111,109,34,41,44,10,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,116,111,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,102,114,111,109,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,104,97,100,111,119,45,102,114,111,109,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,116,111,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,104,97,100,111,119,45,116,111,34,41,44,116,104,105,115,46,115,101,116,84,111,112,72,97,110,100,108,101,114,40,41,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,95,102,114,111,109,95,116,111,38,38,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,41,59,116,104,105,115,46,97,112,112,101,110,100,71,114,105,100,40,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,100,105,115,97,98,108,101,63,40,116,104,105,115,46,97,112,112,101,110,100,68,105,115,97,98,108,101,77,97,115,107,40,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,91,48,93,46,100,105,115,97,98,108,101,100,61,33,48,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,91,48,93,46,100,105,115,97,98,108,101,100,61,33,49,44,116,104,105,115,46,114,101,109,111,118,101,68,105,115,97,98,108,101,77,97,115,107,40,41,44,116,104,105,115,46,98,105,110,100,69,118,101,110,116,115,40,41,41,59,10,116,104,105,115,46,111,112,116,105,111,110,115,46,100,105,115,97,98,108,101,124,124,40,116,104,105,115,46,111,112,116,105,111,110,115,46,98,108,111,99,107,63,116,104,105,115,46,97,112,112,101,110,100,68,105,115,97,98,108,101,77,97,115,107,40,41,58,116,104,105,115,46,114,101,109,111,118,101,68,105,115,97,98,108,101,77,97,115,107,40,41,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,100,114,97,103,95,105,110,116,101,114,118,97,108,38,38,40,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,91,48,93,46,115,116,121,108,101,46,99,117,114,115,111,114,61,34,109,111,118,101,34,41,125,44,115,101,116,84,111,112,72,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,44,98,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,59,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,62,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,38,38,98,61,61,61,97,63,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,97,100,100,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,58,98,60,97,38,38,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,97,100,100,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,125,44,99,104,97,110,103,101,76,101,118,101,108,58,102,117,110,99,116,105,111,110,40,97,41,123,115,119,105,116,99,104,40,97,41,123,99,97,115,101,32,34,115,105,110,103,108,101,34,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,97,100,100,67,108,97,115,115,40,34,115,116,97,116,101,95,104,111,118,101,114,34,41,59,10,98,114,101,97,107,59,99,97,115,101,32,34,102,114,111,109,34,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,97,100,100,67,108,97,115,115,40,34,115,116,97,116,101,95,104,111,118,101,114,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,97,100,100,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,114,101,109,111,118,101,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,59,98,114,101,97,107,59,99,97,115,101,32,34,116,111,34,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,97,100,100,67,108,97,115,115,40,34,115,116,97,116,101,95,104,111,118,101,114,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,97,100,100,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,114,101,109,111,118,101,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,59,98,114,101,97,107,59,99,97,115,101,32,34,98,111,116,104,34,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,95,108,101,102,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,41,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,95,114,105,103,104,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,114,101,109,111,118,101,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,114,101,109,111,118,101,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,125,125,44,97,112,112,101,110,100,68,105,115,97,98,108,101,77,97,115,107,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,112,112,101,110,100,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,100,105,115,97,98,108,101,45,109,97,115,107,34,62,60,47,115,112,97,110,62,39,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,100,100,67,108,97,115,115,40,34,105,114,115,45,100,105,115,97,98,108,101,100,34,41,125,44,114,101,109,111,118,101,68,105,115,97,98,108,101,77,97,115,107,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,114,101,109,111,118,101,40,34,46,105,114,115,45,100,105,115,97,98,108,101,45,109,97,115,107,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,114,101,109,111,118,101,67,108,97,115,115,40,34,105,114,115,45,100,105,115,97,98,108,101,100,34,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,114,101,109,111,118,101,40,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,61,10,110,117,108,108,59,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,102,102,40,34,107,101,121,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,102,102,40,34,116,111,117,99,104,109,111,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,102,102,40,34,109,111,117,115,101,109,111,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,116,104,105,115,46,36,99,97,99,104,101,46,119,105,110,46,111,102,102,40,34,116,111,117,99,104,101,110,100,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,116,104,105,115,46,36,99,97,99,104,101,46,119,105,110,46,111,102,102,40,34,109,111,117,115,101,117,112,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,109,38,38,40,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,102,102,40,34,109,111,117,115,101,117,112,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,44,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,102,102,40,34,109,111,117,115,101,108,101,97,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,61,91,93,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,61,91,93,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,119,61,91,93,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,61,91,93,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,61,10,91,93,59,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,116,104,105,115,46,114,97,102,95,105,100,41,125,44,98,105,110,100,69,118,101,110,116,115,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,110,111,95,100,105,97,112,97,115,111,110,41,123,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,110,40,34,116,111,117,99,104,109,111,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,77,111,118,101,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,110,40,34,109,111,117,115,101,109,111,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,77,111,118,101,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,119,105,110,46,111,110,40,34,116,111,117,99,104,101,110,100,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,85,112,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,119,105,110,46,111,110,40,34,109,111,117,115,101,117,112,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,85,112,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,59,10,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,110,40,34,102,111,99,117,115,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,70,111,99,117,115,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,100,114,97,103,95,105,110,116,101,114,118,97,108,38,38,34,100,111,117,98,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,98,111,116,104,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,98,111,116,104,34,41,41,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,10,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,41,59,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,115,105,110,103,108,101,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,115,105,110,103,108,101,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,115,105,110,103,108,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,10,34,115,105,110,103,108,101,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,115,105,110,103,108,101,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,101,100,103,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,115,105,110,103,108,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,110,117,108,108,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,110,117,108,108,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,10,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,102,114,111,109,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,102,114,111,109,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,116,111,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,116,111,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,102,114,111,109,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,116,111,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,10,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,102,114,111,109,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,102,114,111,109,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,116,111,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,116,111,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,102,114,111,109,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,116,111,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,10,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,107,101,121,98,111,97,114,100,41,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,110,40,34,107,101,121,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,107,101,121,46,98,105,110,100,40,116,104,105,115,44,34,107,101,121,98,111,97,114,100,34,41,41,59,109,38,38,40,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,110,40,34,109,111,117,115,101,117,112,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,85,112,46,98,105,110,100,40,116,104,105,115,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,110,40,34,109,111,117,115,101,108,101,97,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,85,112,46,98,105,110,100,40,116,104,105,115,41,41,41,125,125,44,112,111,105,110,116,101,114,70,111,99,117,115,58,102,117,110,99,116,105,111,110,40,97,41,123,105,102,40,33,116,104,105,115,46,116,97,114,103,101,116,41,123,118,97,114,32,98,61,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,58,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,59,97,61,98,46,111,102,102,115,101,116,40,41,46,108,101,102,116,59,97,43,61,98,46,119,105,100,116,104,40,41,47,50,45,49,59,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,40,34,115,105,110,103,108,101,34,44,10,123,112,114,101,118,101,110,116,68,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,125,44,112,97,103,101,88,58,97,125,41,125,125,44,112,111,105,110,116,101,114,77,111,118,101,58,102,117,110,99,116,105,111,110,40,97,41,123,116,104,105,115,46,100,114,97,103,103,105,110,103,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,40,97,46,112,97,103,101,88,124,124,97,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,97,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,41,45,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,44,116,104,105,115,46,99,97,108,99,40,41,41,125,44,112,111,105,110,116,101,114,85,112,58,102,117,110,99,116,105,111,110,40,97,41,123,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,61,61,61,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,38,38,116,104,105,115,46,105,115,95,97,99,116,105,118,101,38,38,40,116,104,105,115,46,105,115,95,97,99,116,105,118,101,61,33,49,44,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,116,97,116,101,95,104,111,118,101,114,34,41,46,114,101,109,111,118,101,67,108,97,115,115,40,34,115,116,97,116,101,95,104,111,118,101,114,34,41,44,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,109,38,38,102,40,34,42,34,41,46,112,114,111,112,40,34,117,110,115,101,108,101,99,116,97,98,108,101,34,44,33,49,41,44,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,40,41,44,116,104,105,115,46,114,101,115,116,111,114,101,79,114,105,103,105,110,97,108,77,105,110,73,110,116,101,114,118,97,108,40,41,44,40,102,46,99,111,110,116,97,105,110,115,40,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,91,48,93,44,10,97,46,116,97,114,103,101,116,41,124,124,116,104,105,115,46,100,114,97,103,103,105,110,103,41,38,38,116,104,105,115,46,99,97,108,108,79,110,70,105,110,105,115,104,40,41,44,116,104,105,115,46,100,114,97,103,103,105,110,103,61,33,49,41,125,44,112,111,105,110,116,101,114,68,111,119,110,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,98,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,100,61,98,46,112,97,103,101,88,124,124,98,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,98,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,59,50,33,61,61,98,46,98,117,116,116,111,110,38,38,40,34,98,111,116,104,34,61,61,61,97,38,38,116,104,105,115,46,115,101,116,84,101,109,112,77,105,110,73,110,116,101,114,118,97,108,40,41,44,97,124,124,40,97,61,116,104,105,115,46,116,97,114,103,101,116,124,124,34,102,114,111,109,34,41,44,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,61,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,116,97,114,103,101,116,61,97,44,116,104,105,115,46,100,114,97,103,103,105,110,103,61,116,104,105,115,46,105,115,95,97,99,116,105,118,101,61,33,48,44,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,102,102,115,101,116,40,41,46,108,101,102,116,44,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,100,45,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,44,116,104,105,115,46,99,97,108,99,80,111,105,110,116,101,114,80,101,114,99,101,110,116,40,41,44,116,104,105,115,46,99,104,97,110,103,101,76,101,118,101,108,40,97,41,44,109,38,38,102,40,34,42,34,41,46,112,114,111,112,40,34,117,110,115,101,108,101,99,116,97,98,108,101,34,44,10,33,48,41,44,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,116,114,105,103,103,101,114,40,34,102,111,99,117,115,34,41,44,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,40,41,41,125,44,112,111,105,110,116,101,114,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,98,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,100,61,98,46,112,97,103,101,88,124,124,98,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,98,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,59,50,33,61,61,98,46,98,117,116,116,111,110,38,38,40,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,61,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,116,97,114,103,101,116,61,97,44,116,104,105,115,46,105,115,95,99,108,105,99,107,61,33,48,44,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,102,102,115,101,116,40,41,46,108,101,102,116,44,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,43,40,100,45,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,41,46,116,111,70,105,120,101,100,40,41,44,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,116,104,105,115,46,99,97,108,99,40,41,44,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,116,114,105,103,103,101,114,40,34,102,111,99,117,115,34,41,41,125,44,107,101,121,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,105,102,40,33,40,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,33,61,61,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,124,124,98,46,97,108,116,75,101,121,124,124,10,98,46,99,116,114,108,75,101,121,124,124,98,46,115,104,105,102,116,75,101,121,124,124,98,46,109,101,116,97,75,101,121,41,41,123,115,119,105,116,99,104,40,98,46,119,104,105,99,104,41,123,99,97,115,101,32,56,51,58,99,97,115,101,32,54,53,58,99,97,115,101,32,52,48,58,99,97,115,101,32,51,55,58,98,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,116,104,105,115,46,109,111,118,101,66,121,75,101,121,40,33,49,41,59,98,114,101,97,107,59,99,97,115,101,32,56,55,58,99,97,115,101,32,54,56,58,99,97,115,101,32,51,56,58,99,97,115,101,32,51,57,58,98,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,109,111,118,101,66,121,75,101,121,40,33,48,41,125,114,101,116,117,114,110,33,48,125,125,44,109,111,118,101,66,121,75,101,121,58,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,98,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,44,100,61,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,49,48,48,44,100,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,47,100,59,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,47,49,48,48,42,40,97,63,98,43,100,58,98,45,100,41,41,59,116,104,105,115,46,105,115,95,107,101,121,61,33,48,59,116,104,105,115,46,99,97,108,99,40,41,125,44,115,101,116,77,105,110,77,97,120,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,95,109,105,110,95,109,97,120,41,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,10,34,110,111,110,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,59,101,108,115,101,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,41,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,46,104,116,109,108,40,116,104,105,115,46,100,101,99,111,114,97,116,101,40,116,104,105,115,46,111,112,116,105,111,110,115,46,112,95,118,97,108,117,101,115,91,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,93,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,46,104,116,109,108,40,116,104,105,115,46,100,101,99,111,114,97,116,101,40,116,104,105,115,46,111,112,116,105,111,110,115,46,112,95,118,97,108,117,101,115,91,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,93,41,41,59,101,108,115,101,123,118,97,114,32,97,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,44,98,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,41,59,116,104,105,115,46,114,101,115,117,108,116,46,109,105,110,95,112,114,101,116,116,121,61,97,59,116,104,105,115,46,114,101,115,117,108,116,46,109,97,120,95,112,114,101,116,116,121,61,98,59,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,46,104,116,109,108,40,116,104,105,115,46,100,101,99,111,114,97,116,101,40,97,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,46,104,116,109,108,40,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,41,41,125,116,104,105,115,46,108,97,98,101,108,115,46,119,95,109,105,110,61,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,59,10,116,104,105,115,46,108,97,98,101,108,115,46,119,95,109,97,120,61,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,125,125,44,115,101,116,84,101,109,112,77,105,110,73,110,116,101,114,118,97,108,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,45,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,59,110,117,108,108,61,61,61,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,38,38,40,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,95,105,110,116,101,114,118,97,108,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,95,105,110,116,101,114,118,97,108,61,97,125,44,114,101,115,116,111,114,101,79,114,105,103,105,110,97,108,77,105,110,73,110,116,101,114,118,97,108,58,102,117,110,99,116,105,111,110,40,41,123,110,117,108,108,33,61,61,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,38,38,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,95,105,110,116,101,114,118,97,108,61,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,44,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,61,110,117,108,108,41,125,44,99,97,108,99,58,102,117,110,99,116,105,111,110,40,97,41,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,41,123,116,104,105,115,46,99,97,108,99,95,99,111,117,110,116,43,43,59,105,102,40,49,48,61,61,61,116,104,105,115,46,99,97,108,99,95,99,111,117,110,116,124,124,97,41,116,104,105,115,46,99,97,108,99,95,99,111,117,110,116,61,48,44,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,10,116,104,105,115,46,99,97,108,99,72,97,110,100,108,101,80,101,114,99,101,110,116,40,41,59,105,102,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,41,123,116,104,105,115,46,99,97,108,99,80,111,105,110,116,101,114,80,101,114,99,101,110,116,40,41,59,97,61,116,104,105,115,46,103,101,116,72,97,110,100,108,101,88,40,41,59,34,98,111,116,104,34,61,61,61,116,104,105,115,46,116,97,114,103,101,116,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,48,44,97,61,116,104,105,115,46,103,101,116,72,97,110,100,108,101,88,40,41,41,59,34,99,108,105,99,107,34,61,61,61,116,104,105,115,46,116,97,114,103,101,116,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,97,61,116,104,105,115,46,103,101,116,72,97,110,100,108,101,88,40,41,44,116,104,105,115,46,116,97,114,103,101,116,61,116,104,105,115,46,111,112,116,105,111,110,115,46,100,114,97,103,95,105,110,116,101,114,118,97,108,63,34,98,111,116,104,95,111,110,101,34,58,116,104,105,115,46,99,104,111,111,115,101,72,97,110,100,108,101,40,97,41,41,59,115,119,105,116,99,104,40,116,104,105,115,46,116,97,114,103,101,116,41,123,99,97,115,101,32,34,98,97,115,101,34,58,118,97,114,32,98,61,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,49,48,48,59,97,61,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,98,59,98,61,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,98,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,59,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,116,111,70,105,120,101,100,40,98,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,61,10,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,116,104,105,115,46,116,97,114,103,101,116,61,110,117,108,108,59,98,114,101,97,107,59,99,97,115,101,32,34,115,105,110,103,108,101,34,58,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,41,98,114,101,97,107,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,41,59,10,98,114,101,97,107,59,99,97,115,101,32,34,102,114,111,109,34,58,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,41,98,114,101,97,107,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,62,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,34,102,114,111,109,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,10,116,104,105,115,46,99,104,101,99,107,77,97,120,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,34,102,114,111,109,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,98,114,101,97,107,59,99,97,115,101,32,34,116,111,34,58,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,102,105,120,101,100,41,98,114,101,97,107,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,60,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,97,120,41,59,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,34,116,111,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,97,120,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,34,116,111,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,98,114,101,97,107,59,99,97,115,101,32,34,98,111,116,104,34,58,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,124,124,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,102,105,120,101,100,41,98,114,101,97,107,59,97,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,43,46,48,48,49,42,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,95,108,101,102,116,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,34,102,114,111,109,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,95,114,105,103,104,116,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,105,110,44,10,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,34,116,111,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,98,114,101,97,107,59,99,97,115,101,32,34,98,111,116,104,95,111,110,101,34,58,105,102,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,38,38,33,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,102,105,120,101,100,41,123,118,97,114,32,100,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,59,97,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,101,114,99,101,110,116,45,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,101,114,99,101,110,116,59,118,97,114,32,99,61,97,47,50,44,98,61,100,45,99,44,100,61,100,43,99,59,48,62,98,38,38,40,98,61,48,44,100,61,98,43,97,41,59,49,48,48,60,100,38,38,40,100,61,49,48,48,44,98,61,100,45,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,98,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,10,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,100,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,125,125,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,120,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,119,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,44,10,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,41,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,114,101,116,116,121,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,41,58,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,120,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,41,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,119,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,41,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,114,101,116,116,121,61,10,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,114,101,116,116,121,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,41,59,116,104,105,115,46,99,97,108,99,77,105,110,77,97,120,40,41,59,116,104,105,115,46,99,97,108,99,76,97,98,101,108,115,40,41,125,125,125,44,99,97,108,99,80,111,105,110,116,101,114,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,63,40,48,62,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,124,124,105,115,78,97,78,40,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,41,63,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,10,48,58,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,62,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,41,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,41,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,61,48,125,44,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,47,40,49,48,48,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,41,42,49,48,48,125,44,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,47,49,48,48,42,40,49,48,48,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,41,125,44,103,101,116,72,97,110,100,108,101,88,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,49,48,48,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,44,98,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,41,59,48,62,98,63,98,61,48,58,98,62,97,38,38,40,98,61,97,41,59,114,101,116,117,114,110,32,98,125,44,99,97,108,99,72,97,110,100,108,101,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,104,97,110,100,108,101,61,10,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,58,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,104,97,110,100,108,101,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,125,44,99,104,111,111,115,101,72,97,110,100,108,101,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,34,115,105,110,103,108,101,34,58,97,62,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,43,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,47,50,63,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,102,105,120,101,100,63,34,102,114,111,109,34,58,34,116,111,34,58,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,63,34,116,111,34,58,34,102,114,111,109,34,125,44,99,97,108,99,77,105,110,77,97,120,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,105,110,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,109,105,110,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,97,120,61,10,116,104,105,115,46,108,97,98,101,108,115,46,119,95,109,97,120,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,125,44,99,97,108,99,76,97,98,101,108,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,33,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,95,102,114,111,109,95,116,111,38,38,40,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,108,97,98,101,108,115,46,119,95,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,115,105,110,103,108,101,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,47,50,41,58,40,116,104,105,115,46,108,97,98,101,108,115,46,119,95,102,114,111,109,61,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,102,97,107,101,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,102,114,111,109,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,61,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,102,97,107,101,47,50,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,61,116,104,105,115,46,99,104,101,99,107,69,100,103,101,115,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,102,97,107,101,41,44,116,104,105,115,46,108,97,98,101,108,115,46,119,95,116,111,61,116,104,105,115,46,36,99,97,99,104,101,46,116,111,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,116,111,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,47,50,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,61,10,116,104,105,115,46,99,104,101,99,107,69,100,103,101,115,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,41,44,116,104,105,115,46,108,97,98,101,108,115,46,119,95,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,115,105,110,103,108,101,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,61,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,41,47,50,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,47,50,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,41,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,61,116,104,105,115,46,99,104,101,99,107,69,100,103,101,115,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,41,41,125,44,117,112,100,97,116,101,83,99,101,110,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,97,102,95,105,100,38,38,10,40,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,116,104,105,115,46,114,97,102,95,105,100,41,44,116,104,105,115,46,114,97,102,95,105,100,61,110,117,108,108,41,59,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,117,112,100,97,116,101,95,116,109,41,59,116,104,105,115,46,117,112,100,97,116,101,95,116,109,61,110,117,108,108,59,116,104,105,115,46,111,112,116,105,111,110,115,38,38,40,116,104,105,115,46,100,114,97,119,72,97,110,100,108,101,115,40,41,44,116,104,105,115,46,105,115,95,97,99,116,105,118,101,63,116,104,105,115,46,114,97,102,95,105,100,61,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,46,98,105,110,100,40,116,104,105,115,41,41,58,116,104,105,115,46,117,112,100,97,116,101,95,116,109,61,115,101,116,84,105,109,101,111,117,116,40,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,46,98,105,110,100,40,116,104,105,115,41,44,51,48,48,41,41,125,44,100,114,97,119,72,97,110,100,108,101,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,59,105,102,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,33,61,61,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,95,111,108,100,38,38,40,116,104,105,115,46,116,97,114,103,101,116,61,34,98,97,115,101,34,44,116,104,105,115,46,105,115,95,114,101,115,105,122,101,61,33,48,41,59,105,102,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,33,61,61,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,95,111,108,100,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,41,116,104,105,115,46,115,101,116,77,105,110,77,97,120,40,41,44,10,116,104,105,115,46,99,97,108,99,40,33,48,41,44,116,104,105,115,46,100,114,97,119,76,97,98,101,108,115,40,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,103,114,105,100,38,38,40,116,104,105,115,46,99,97,108,99,71,114,105,100,77,97,114,103,105,110,40,41,44,116,104,105,115,46,99,97,108,99,71,114,105,100,76,97,98,101,108,115,40,41,41,44,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,95,111,108,100,61,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,44,116,104,105,115,46,100,114,97,119,83,104,97,100,111,119,40,41,59,105,102,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,40,116,104,105,115,46,100,114,97,103,103,105,110,103,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,124,124,116,104,105,115,46,105,115,95,107,101,121,41,41,123,105,102,40,116,104,105,115,46,111,108,100,95,102,114,111,109,33,61,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,124,124,116,104,105,115,46,111,108,100,95,116,111,33,61,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,124,124,116,104,105,115,46,105,115,95,107,101,121,41,123,116,104,105,115,46,100,114,97,119,76,97,98,101,108,115,40,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,120,43,34,37,34,59,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,119,43,34,37,34,59,105,102,40,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,41,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,43,34,37,34,59,101,108,115,101,123,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,43,34,37,34,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,43,34,37,34,59,105,102,40,116,104,105,115,46,111,108,100,95,102,114,111,109,33,61,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,41,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,43,34,37,34,59,105,102,40,116,104,105,115,46,111,108,100,95,116,111,33,61,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,41,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,43,34,37,34,125,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,43,34,37,34,59,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,116,104,105,115,46,111,108,100,95,102,114,111,109,61,61,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,38,38,116,104,105,115,46,111,108,100,95,116,111,61,61,61,10,116,104,105,115,46,114,101,115,117,108,116,46,116,111,124,124,116,104,105,115,46,105,115,95,115,116,97,114,116,124,124,40,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,116,114,105,103,103,101,114,40,34,99,104,97,110,103,101,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,116,114,105,103,103,101,114,40,34,105,110,112,117,116,34,41,41,59,116,104,105,115,46,111,108,100,95,102,114,111,109,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,59,116,104,105,115,46,111,108,100,95,116,111,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,59,116,104,105,115,46,105,115,95,114,101,115,105,122,101,124,124,116,104,105,115,46,105,115,95,117,112,100,97,116,101,124,124,116,104,105,115,46,105,115,95,115,116,97,114,116,124,124,116,104,105,115,46,105,115,95,102,105,110,105,115,104,124,124,116,104,105,115,46,99,97,108,108,79,110,67,104,97,110,103,101,40,41,59,105,102,40,116,104,105,115,46,105,115,95,107,101,121,124,124,116,104,105,115,46,105,115,95,99,108,105,99,107,41,116,104,105,115,46,105,115,95,99,108,105,99,107,61,116,104,105,115,46,105,115,95,107,101,121,61,33,49,44,116,104,105,115,46,99,97,108,108,79,110,70,105,110,105,115,104,40,41,59,116,104,105,115,46,105,115,95,102,105,110,105,115,104,61,116,104,105,115,46,105,115,95,114,101,115,105,122,101,61,116,104,105,115,46,105,115,95,117,112,100,97,116,101,61,33,49,125,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,116,104,105,115,46,105,115,95,99,108,105,99,107,61,116,104,105,115,46,105,115,95,107,101,121,61,116,104,105,115,46,105,115,95,115,116,97,114,116,61,33,49,125,125,125,44,100,114,97,119,76,97,98,101,108,115,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,44,10,98,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,95,118,97,108,117,101,115,59,105,102,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,95,102,114,111,109,95,116,111,41,105,102,40,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,41,123,105,102,40,97,41,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,59,101,108,115,101,123,118,97,114,32,100,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,59,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,100,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,125,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,104,116,109,108,40,97,41,59,116,104,105,115,46,99,97,108,99,76,97,98,101,108,115,40,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,60,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,105,110,43,49,63,34,104,105,100,100,101,110,34,58,34,118,105,115,105,98,108,101,34,59,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,62,49,48,48,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,97,120,45,49,63,34,104,105,100,100,101,110,34,58,34,118,105,115,105,98,108,101,34,125,101,108,115,101,123,97,63,40,116,104,105,115,46,111,112,116,105,111,110,115,46,100,101,99,111,114,97,116,101,95,98,111,116,104,63,10,40,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,44,97,43,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,44,97,43,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,41,58,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,43,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,43,98,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,44,100,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,44,98,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,41,58,40,100,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,98,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,100,101,99,111,114,97,116,101,95,98,111,116,104,63,40,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,100,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,97,43,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,44,97,43,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,41,58,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,100,43,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,43,10,98,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,44,100,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,100,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,98,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,104,116,109,108,40,97,41,59,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,46,104,116,109,108,40,100,41,59,116,104,105,115,46,36,99,97,99,104,101,46,116,111,46,104,116,109,108,40,98,41,59,116,104,105,115,46,99,97,108,99,76,97,98,101,108,115,40,41,59,97,61,77,97,116,104,46,109,105,110,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,41,59,100,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,59,118,97,114,32,98,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,44,99,61,77,97,116,104,46,109,97,120,40,100,44,98,41,59,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,102,97,107,101,62,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,63,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,10,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,61,61,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,63,40,34,102,114,111,109,34,61,61,61,116,104,105,115,46,116,97,114,103,101,116,63,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,58,34,116,111,34,61,61,61,116,104,105,115,46,116,97,114,103,101,116,63,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,58,116,104,105,115,46,116,97,114,103,101,116,124,124,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,99,61,98,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,44,99,61,77,97,116,104,46,109,97,120,40,100,44,98,41,41,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,10,34,118,105,115,105,98,108,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,97,60,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,105,110,43,49,63,34,104,105,100,100,101,110,34,58,34,118,105,115,105,98,108,101,34,59,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,99,62,49,48,48,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,97,120,45,49,63,34,104,105,100,100,101,110,34,58,34,118,105,115,105,98,108,101,34,125,125,125,44,100,114,97,119,83,104,97,100,111,119,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,44,98,61,116,104,105,115,46,36,99,97,99,104,101,44,100,61,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,105,110,38,38,33,105,115,78,97,78,40,97,46,102,114,111,109,95,109,105,110,41,44,99,61,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,97,120,38,38,33,105,115,78,97,78,40,97,46,102,114,111,109,95,109,97,120,41,44,101,61,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,105,110,38,38,33,105,115,78,97,78,40,97,46,116,111,95,109,105,110,41,44,103,61,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,97,120,38,38,33,105,115,78,97,78,40,97,46,116,111,95,109,97,120,41,59,10,34,115,105,110,103,108,101,34,61,61,61,97,46,116,121,112,101,63,97,46,102,114,111,109,95,115,104,97,100,111,119,38,38,40,100,124,124,99,41,63,40,100,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,100,63,97,46,102,114,111,109,95,109,105,110,58,97,46,109,105,110,41,44,99,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,99,63,97,46,102,114,111,109,95,109,97,120,58,97,46,109,97,120,41,45,100,44,100,61,116,104,105,115,46,116,111,70,105,120,101,100,40,100,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,100,41,44,99,61,116,104,105,115,46,116,111,70,105,120,101,100,40,99,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,99,41,44,100,43,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,98,46,115,104,97,100,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,98,108,111,99,107,34,44,98,46,115,104,97,100,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,100,43,34,37,34,44,98,46,115,104,97,100,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,99,43,34,37,34,41,58,98,46,115,104,97,100,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,58,40,97,46,102,114,111,109,95,115,104,97,100,111,119,38,38,40,100,124,124,99,41,63,40,100,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,100,63,97,46,102,114,111,109,95,109,105,110,58,97,46,109,105,110,41,44,99,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,99,63,97,46,102,114,111,109,95,109,97,120,58,97,46,109,97,120,41,45,10,100,44,100,61,116,104,105,115,46,116,111,70,105,120,101,100,40,100,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,100,41,44,99,61,116,104,105,115,46,116,111,70,105,120,101,100,40,99,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,99,41,44,100,43,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,98,46,115,104,97,100,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,98,108,111,99,107,34,44,98,46,115,104,97,100,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,100,43,34,37,34,44,98,46,115,104,97,100,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,99,43,34,37,34,41,58,98,46,115,104,97,100,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,97,46,116,111,95,115,104,97,100,111,119,38,38,40,101,124,124,103,41,63,40,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,101,63,97,46,116,111,95,109,105,110,58,97,46,109,105,110,41,44,97,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,103,63,97,46,116,111,95,109,97,120,58,97,46,109,97,120,41,45,101,44,101,61,116,104,105,115,46,116,111,70,105,120,101,100,40,101,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,101,41,44,97,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,97,41,44,101,43,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,98,46,115,104,97,100,95,116,111,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,10,34,98,108,111,99,107,34,44,98,46,115,104,97,100,95,116,111,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,101,43,34,37,34,44,98,46,115,104,97,100,95,116,111,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,97,43,34,37,34,41,58,98,46,115,104,97,100,95,116,111,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,41,125,44,119,114,105,116,101,84,111,73,110,112,117,116,58,102,117,110,99,116,105,111,110,40,41,123,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,63,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,41,58,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,100,97,116,97,40,34,102,114,111,109,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,41,58,40,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,63,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,43,116,104,105,115,46,111,112,116,105,111,110,115,46,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,43,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,118,97,108,117,101,41,58,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,10,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,43,116,104,105,115,46,111,112,116,105,111,110,115,46,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,43,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,100,97,116,97,40,34,102,114,111,109,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,100,97,116,97,40,34,116,111,34,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,41,125,44,99,97,108,108,79,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,83,116,97,114,116,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,83,116,97,114,116,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,41,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,83,116,97,114,116,46,99,97,108,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,44,116,104,105,115,46,114,101,115,117,108,116,41,59,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,83,116,97,114,116,40,116,104,105,115,46,114,101,115,117,108,116,41,125,44,99,97,108,108,79,110,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,104,97,110,103,101,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,104,97,110,103,101,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,41,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,104,97,110,103,101,46,99,97,108,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,44,10,116,104,105,115,46,114,101,115,117,108,116,41,59,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,104,97,110,103,101,40,116,104,105,115,46,114,101,115,117,108,116,41,125,44,99,97,108,108,79,110,70,105,110,105,115,104,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,70,105,110,105,115,104,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,70,105,110,105,115,104,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,41,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,70,105,110,105,115,104,46,99,97,108,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,44,116,104,105,115,46,114,101,115,117,108,116,41,59,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,70,105,110,105,115,104,40,116,104,105,115,46,114,101,115,117,108,116,41,125,44,99,97,108,108,79,110,85,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,41,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,46,99,97,108,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,44,116,104,105,115,46,114,101,115,117,108,116,41,59,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,40,116,104,105,115,46,114,101,115,117,108,116,41,125,44,10,116,111,103,103,108,101,73,110,112,117,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,116,111,103,103,108,101,67,108,97,115,115,40,34,105,114,115,45,104,105,100,100,101,110,45,105,110,112,117,116,34,41,59,116,104,105,115,46,104,97,115,95,116,97,98,95,105,110,100,101,120,63,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,116,97,98,105,110,100,101,120,34,44,45,49,41,58,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,114,101,109,111,118,101,80,114,111,112,40,34,116,97,98,105,110,100,101,120,34,41,59,116,104,105,115,46,104,97,115,95,116,97,98,95,105,110,100,101,120,61,33,116,104,105,115,46,104,97,115,95,116,97,98,95,105,110,100,101,120,125,44,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,118,97,114,32,100,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,59,114,101,116,117,114,110,32,100,63,116,104,105,115,46,116,111,70,105,120,101,100,40,40,98,63,97,58,97,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,40,100,47,49,48,48,41,41,58,40,116,104,105,115,46,110,111,95,100,105,97,112,97,115,111,110,61,33,48,44,48,41,125,44,99,111,110,118,101,114,116,84,111,86,97,108,117,101,58,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,98,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,44,100,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,44,99,61,98,46,116,111,83,116,114,105,110,103,40,41,46,115,112,108,105,116,40,34,46,34,41,91,49,93,44,101,61,100,46,116,111,83,116,114,105,110,103,40,41,46,115,112,108,105,116,40,34,46,34,41,91,49,93,44,103,44,108,44,102,61,48,44,104,61,48,59,10,105,102,40,48,61,61,61,97,41,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,59,105,102,40,49,48,48,61,61,61,97,41,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,59,99,38,38,40,102,61,103,61,99,46,108,101,110,103,116,104,41,59,101,38,38,40,102,61,108,61,101,46,108,101,110,103,116,104,41,59,103,38,38,108,38,38,40,102,61,103,62,61,108,63,103,58,108,41,59,48,62,98,38,38,40,104,61,77,97,116,104,46,97,98,115,40,98,41,44,98,61,43,40,98,43,104,41,46,116,111,70,105,120,101,100,40,102,41,44,100,61,43,40,100,43,104,41,46,116,111,70,105,120,101,100,40,102,41,41,59,97,61,40,100,45,98,41,47,49,48,48,42,97,43,98,59,40,98,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,46,116,111,83,116,114,105,110,103,40,41,46,115,112,108,105,116,40,34,46,34,41,91,49,93,41,63,97,61,43,97,46,116,111,70,105,120,101,100,40,98,46,108,101,110,103,116,104,41,58,40,97,47,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,44,97,42,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,44,97,61,43,97,46,116,111,70,105,120,101,100,40,48,41,41,59,104,38,38,40,97,45,61,104,41,59,104,61,98,63,43,97,46,116,111,70,105,120,101,100,40,98,46,108,101,110,103,116,104,41,58,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,59,104,60,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,63,104,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,58,104,62,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,38,38,40,104,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,41,59,114,101,116,117,114,110,32,104,125,44,99,97,108,99,87,105,116,104,83,116,101,112,58,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,98,61,10,77,97,116,104,46,114,111,117,110,100,40,97,47,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,116,101,112,41,42,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,116,101,112,59,49,48,48,60,98,38,38,40,98,61,49,48,48,41,59,49,48,48,61,61,61,97,38,38,40,98,61,49,48,48,41,59,114,101,116,117,114,110,32,116,104,105,115,46,116,111,70,105,120,101,100,40,98,41,125,44,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,58,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,118,97,114,32,99,61,116,104,105,115,46,111,112,116,105,111,110,115,59,105,102,40,33,99,46,109,105,110,95,105,110,116,101,114,118,97,108,41,114,101,116,117,114,110,32,97,59,97,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,97,41,59,98,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,98,41,59,34,102,114,111,109,34,61,61,61,100,63,98,45,97,60,99,46,109,105,110,95,105,110,116,101,114,118,97,108,38,38,40,97,61,98,45,99,46,109,105,110,95,105,110,116,101,114,118,97,108,41,58,97,45,98,60,99,46,109,105,110,95,105,110,116,101,114,118,97,108,38,38,40,97,61,98,43,99,46,109,105,110,95,105,110,116,101,114,118,97,108,41,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,97,41,125,44,99,104,101,99,107,77,97,120,73,110,116,101,114,118,97,108,58,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,118,97,114,32,99,61,116,104,105,115,46,111,112,116,105,111,110,115,59,105,102,40,33,99,46,109,97,120,95,105,110,116,101,114,118,97,108,41,114,101,116,117,114,110,32,97,59,97,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,97,41,59,98,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,98,41,59,34,102,114,111,109,34,61,61,61,10,100,63,98,45,97,62,99,46,109,97,120,95,105,110,116,101,114,118,97,108,38,38,40,97,61,98,45,99,46,109,97,120,95,105,110,116,101,114,118,97,108,41,58,97,45,98,62,99,46,109,97,120,95,105,110,116,101,114,118,97,108,38,38,40,97,61,98,43,99,46,109,97,120,95,105,110,116,101,114,118,97,108,41,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,97,41,125,44,99,104,101,99,107,68,105,97,112,97,115,111,110,58,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,97,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,97,41,59,118,97,114,32,99,61,116,104,105,115,46,111,112,116,105,111,110,115,59,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,98,38,38,40,98,61,99,46,109,105,110,41,59,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,100,38,38,40,100,61,99,46,109,97,120,41,59,97,60,98,38,38,40,97,61,98,41,59,97,62,100,38,38,40,97,61,100,41,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,97,41,125,44,116,111,70,105,120,101,100,58,102,117,110,99,116,105,111,110,40,97,41,123,97,61,97,46,116,111,70,105,120,101,100,40,50,48,41,59,114,101,116,117,114,110,43,97,125,44,95,112,114,101,116,116,105,102,121,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,95,101,110,97,98,108,101,100,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,40,97,41,58,10,116,104,105,115,46,112,114,101,116,116,105,102,121,40,97,41,58,97,125,44,112,114,101,116,116,105,102,121,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,116,111,83,116,114,105,110,103,40,41,46,114,101,112,108,97,99,101,40,47,40,92,100,123,49,44,51,125,40,63,61,40,63,58,92,100,92,100,92,100,41,43,40,63,33,92,100,41,41,41,47,103,44,34,36,49,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,95,115,101,112,97,114,97,116,111,114,41,125,44,99,104,101,99,107,69,100,103,101,115,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,105,102,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,102,111,114,99,101,95,101,100,103,101,115,41,114,101,116,117,114,110,32,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,59,48,62,97,63,97,61,48,58,97,62,49,48,48,45,98,38,38,40,97,61,49,48,48,45,98,41,59,114,101,116,117,114,110,32,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,125,44,118,97,108,105,100,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,44,98,61,116,104,105,115,46,114,101,115,117,108,116,44,100,61,97,46,118,97,108,117,101,115,44,99,61,100,46,108,101,110,103,116,104,44,101,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,109,105,110,38,38,40,97,46,109,105,110,61,43,97,46,109,105,110,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,109,97,120,38,38,40,97,46,109,97,120,61,43,97,46,109,97,120,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,38,38,40,97,46,102,114,111,109,61,43,97,46,102,114,111,109,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,38,38,40,97,46,116,111,61,43,97,46,116,111,41,59,10,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,115,116,101,112,38,38,40,97,46,115,116,101,112,61,43,97,46,115,116,101,112,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,105,110,38,38,40,97,46,102,114,111,109,95,109,105,110,61,43,97,46,102,114,111,109,95,109,105,110,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,97,120,38,38,40,97,46,102,114,111,109,95,109,97,120,61,43,97,46,102,114,111,109,95,109,97,120,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,105,110,38,38,40,97,46,116,111,95,109,105,110,61,43,97,46,116,111,95,109,105,110,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,97,120,38,38,40,97,46,116,111,95,109,97,120,61,43,97,46,116,111,95,109,97,120,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,103,114,105,100,95,110,117,109,38,38,40,97,46,103,114,105,100,95,110,117,109,61,43,97,46,103,114,105,100,95,110,117,109,41,59,97,46,109,97,120,60,97,46,109,105,110,38,38,40,97,46,109,97,120,61,97,46,109,105,110,41,59,105,102,40,99,41,102,111,114,40,97,46,112,95,118,97,108,117,101,115,61,91,93,44,97,46,109,105,110,61,48,44,97,46,109,97,120,61,99,45,49,44,97,46,115,116,101,112,61,49,44,97,46,103,114,105,100,95,110,117,109,61,97,46,109,97,120,44,97,46,103,114,105,100,95,115,110,97,112,61,33,48,44,101,61,48,59,101,60,99,59,101,43,43,41,123,118,97,114,32,103,61,43,100,91,101,93,59,105,115,78,97,78,40,103,41,63,103,61,100,91,101,93,58,40,100,91,101,93,61,103,44,103,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,103,41,41,59,97,46,112,95,118,97,108,117,101,115,46,112,117,115,104,40,103,41,125,105,102,40,34,110,117,109,98,101,114,34,33,61,61,10,116,121,112,101,111,102,32,97,46,102,114,111,109,124,124,105,115,78,97,78,40,97,46,102,114,111,109,41,41,97,46,102,114,111,109,61,97,46,109,105,110,59,105,102,40,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,97,46,116,111,124,124,105,115,78,97,78,40,97,46,116,111,41,41,97,46,116,111,61,97,46,109,97,120,59,34,115,105,110,103,108,101,34,61,61,61,97,46,116,121,112,101,63,40,97,46,102,114,111,109,60,97,46,109,105,110,38,38,40,97,46,102,114,111,109,61,97,46,109,105,110,41,44,97,46,102,114,111,109,62,97,46,109,97,120,38,38,40,97,46,102,114,111,109,61,97,46,109,97,120,41,41,58,40,97,46,102,114,111,109,60,97,46,109,105,110,38,38,40,97,46,102,114,111,109,61,97,46,109,105,110,41,44,97,46,102,114,111,109,62,97,46,109,97,120,38,38,40,97,46,102,114,111,109,61,97,46,109,97,120,41,44,97,46,116,111,60,97,46,109,105,110,38,38,40,97,46,116,111,61,97,46,109,105,110,41,44,97,46,116,111,62,97,46,109,97,120,38,38,40,97,46,116,111,61,97,46,109,97,120,41,44,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,102,114,111,109,38,38,40,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,102,114,111,109,33,61,61,97,46,102,114,111,109,38,38,97,46,102,114,111,109,62,97,46,116,111,38,38,40,97,46,102,114,111,109,61,97,46,116,111,41,44,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,116,111,33,61,61,97,46,116,111,38,38,97,46,116,111,60,97,46,102,114,111,109,38,38,40,97,46,116,111,61,97,46,102,114,111,109,41,41,44,97,46,102,114,111,109,62,97,46,116,111,38,38,40,97,46,102,114,111,109,61,97,46,116,111,41,44,97,46,116,111,60,97,46,102,114,111,109,38,38,40,97,46,116,111,61,97,46,102,114,111,109,41,41,59,105,102,40,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,97,46,115,116,101,112,124,124,10,105,115,78,97,78,40,97,46,115,116,101,112,41,124,124,33,97,46,115,116,101,112,124,124,48,62,97,46,115,116,101,112,41,97,46,115,116,101,112,61,49,59,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,105,110,38,38,97,46,102,114,111,109,60,97,46,102,114,111,109,95,109,105,110,38,38,40,97,46,102,114,111,109,61,97,46,102,114,111,109,95,109,105,110,41,59,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,97,120,38,38,97,46,102,114,111,109,62,97,46,102,114,111,109,95,109,97,120,38,38,40,97,46,102,114,111,109,61,97,46,102,114,111,109,95,109,97,120,41,59,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,105,110,38,38,97,46,116,111,60,97,46,116,111,95,109,105,110,38,38,40,97,46,116,111,61,97,46,116,111,95,109,105,110,41,59,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,97,120,38,38,97,46,102,114,111,109,62,97,46,116,111,95,109,97,120,38,38,40,97,46,116,111,61,97,46,116,111,95,109,97,120,41,59,105,102,40,98,41,123,98,46,109,105,110,33,61,61,97,46,109,105,110,38,38,40,98,46,109,105,110,61,97,46,109,105,110,41,59,98,46,109,97,120,33,61,61,97,46,109,97,120,38,38,40,98,46,109,97,120,61,97,46,109,97,120,41,59,105,102,40,98,46,102,114,111,109,60,98,46,109,105,110,124,124,98,46,102,114,111,109,62,98,46,109,97,120,41,98,46,102,114,111,109,61,97,46,102,114,111,109,59,105,102,40,98,46,116,111,60,98,46,109,105,110,124,124,98,46,116,111,62,98,46,109,97,120,41,98,46,116,111,61,97,46,116,111,125,105,102,40,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,97,46,109,105,110,95,105,110,116,101,114,118,97,108,124,124,105,115,78,97,78,40,97,46,109,105,110,95,105,110,116,101,114,118,97,108,41,124,124,10,33,97,46,109,105,110,95,105,110,116,101,114,118,97,108,124,124,48,62,97,46,109,105,110,95,105,110,116,101,114,118,97,108,41,97,46,109,105,110,95,105,110,116,101,114,118,97,108,61,48,59,105,102,40,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,97,46,109,97,120,95,105,110,116,101,114,118,97,108,124,124,105,115,78,97,78,40,97,46,109,97,120,95,105,110,116,101,114,118,97,108,41,124,124,33,97,46,109,97,120,95,105,110,116,101,114,118,97,108,124,124,48,62,97,46,109,97,120,95,105,110,116,101,114,118,97,108,41,97,46,109,97,120,95,105,110,116,101,114,118,97,108,61,48,59,97,46,109,105,110,95,105,110,116,101,114,118,97,108,38,38,97,46,109,105,110,95,105,110,116,101,114,118,97,108,62,97,46,109,97,120,45,97,46,109,105,110,38,38,40,97,46,109,105,110,95,105,110,116,101,114,118,97,108,61,97,46,109,97,120,45,97,46,109,105,110,41,59,97,46,109,97,120,95,105,110,116,101,114,118,97,108,38,38,97,46,109,97,120,95,105,110,116,101,114,118,97,108,62,97,46,109,97,120,45,97,46,109,105,110,38,38,40,97,46,109,97,120,95,105,110,116,101,114,118,97,108,61,97,46,109,97,120,45,97,46,109,105,110,41,125,44,100,101,99,111,114,97,116,101,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,118,97,114,32,100,61,34,34,44,99,61,116,104,105,115,46,111,112,116,105,111,110,115,59,99,46,112,114,101,102,105,120,38,38,40,100,43,61,99,46,112,114,101,102,105,120,41,59,100,43,61,97,59,99,46,109,97,120,95,112,111,115,116,102,105,120,38,38,40,99,46,118,97,108,117,101,115,46,108,101,110,103,116,104,38,38,97,61,61,61,99,46,112,95,118,97,108,117,101,115,91,99,46,109,97,120,93,63,40,100,43,61,99,46,109,97,120,95,112,111,115,116,102,105,120,44,99,46,112,111,115,116,102,105,120,38,38,40,100,43,61,34,32,34,41,41,58,98,61,61,61,99,46,109,97,120,38,38,40,100,43,61,99,46,109,97,120,95,112,111,115,116,102,105,120,44,10,99,46,112,111,115,116,102,105,120,38,38,40,100,43,61,34,32,34,41,41,41,59,99,46,112,111,115,116,102,105,120,38,38,40,100,43,61,99,46,112,111,115,116,102,105,120,41,59,114,101,116,117,114,110,32,100,125,44,117,112,100,97,116,101,70,114,111,109,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,61,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,59,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,59,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,114,101,116,116,121,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,38,38,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,125,44,117,112,100,97,116,101,84,111,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,115,117,108,116,46,116,111,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,59,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,59,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,114,101,116,116,121,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,38,38,10,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,125,44,117,112,100,97,116,101,82,101,115,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,115,117,108,116,46,109,105,110,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,59,116,104,105,115,46,114,101,115,117,108,116,46,109,97,120,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,59,116,104,105,115,46,117,112,100,97,116,101,70,114,111,109,40,41,59,116,104,105,115,46,117,112,100,97,116,101,84,111,40,41,125,44,97,112,112,101,110,100,71,114,105,100,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,103,114,105,100,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,44,98,59,118,97,114,32,100,61,97,46,109,97,120,45,97,46,109,105,110,59,118,97,114,32,99,61,97,46,103,114,105,100,95,110,117,109,44,101,61,52,44,103,61,34,34,59,116,104,105,115,46,99,97,108,99,71,114,105,100,77,97,114,103,105,110,40,41,59,105,102,40,97,46,103,114,105,100,95,115,110,97,112,41,105,102,40,53,48,60,100,41,123,99,61,53,48,47,97,46,115,116,101,112,59,118,97,114,32,102,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,46,115,116,101,112,47,46,53,41,125,101,108,115,101,32,99,61,100,47,97,46,115,116,101,112,44,102,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,46,115,116,101,112,47,40,100,47,49,48,48,41,41,59,101,108,115,101,32,102,61,116,104,105,115,46,116,111,70,105,120,101,100,40,49,48,48,47,99,41,59,52,60,99,38,38,40,101,61,51,41,59,55,60,99,38,38,40,101,61,50,41,59,49,52,60,99,38,38,40,101,61,49,41,59,50,56,60,99,38,38,40,101,61,48,41,59,10,102,111,114,40,100,61,48,59,100,60,99,43,49,59,100,43,43,41,123,118,97,114,32,107,61,101,59,118,97,114,32,104,61,116,104,105,115,46,116,111,70,105,120,101,100,40,102,42,100,41,59,49,48,48,60,104,38,38,40,104,61,49,48,48,41,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,91,100,93,61,104,59,118,97,114,32,109,61,40,104,45,102,42,40,100,45,49,41,41,47,40,107,43,49,41,59,102,111,114,40,98,61,49,59,98,60,61,107,38,38,48,33,61,61,104,59,98,43,43,41,123,118,97,114,32,110,61,116,104,105,115,46,116,111,70,105,120,101,100,40,104,45,109,42,98,41,59,103,43,61,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,103,114,105,100,45,112,111,108,32,115,109,97,108,108,34,32,115,116,121,108,101,61,34,108,101,102,116,58,32,39,43,110,43,39,37,34,62,60,47,115,112,97,110,62,39,125,103,43,61,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,103,114,105,100,45,112,111,108,34,32,115,116,121,108,101,61,34,108,101,102,116,58,32,39,43,104,43,39,37,34,62,60,47,115,112,97,110,62,39,59,98,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,104,41,59,98,61,97,46,118,97,108,117,101,115,46,108,101,110,103,116,104,63,97,46,112,95,118,97,108,117,101,115,91,98,93,58,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,98,41,59,103,43,61,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,103,114,105,100,45,116,101,120,116,32,106,115,45,103,114,105,100,45,116,101,120,116,45,39,43,100,43,39,34,32,115,116,121,108,101,61,34,108,101,102,116,58,32,39,43,104,43,39,37,34,62,39,43,98,43,34,60,47,115,112,97,110,62,34,125,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,110,117,109,61,77,97,116,104,46,99,101,105,108,40,99,43,49,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,100,100,67,108,97,115,115,40,34,105,114,115,45,119,105,116,104,45,103,114,105,100,34,41,59,10,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,46,104,116,109,108,40,103,41,59,116,104,105,115,46,99,97,99,104,101,71,114,105,100,76,97,98,101,108,115,40,41,125,125,44,99,97,99,104,101,71,114,105,100,76,97,98,101,108,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,44,98,61,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,110,117,109,59,102,111,114,40,97,61,48,59,97,60,98,59,97,43,43,41,123,118,97,114,32,100,61,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,46,102,105,110,100,40,34,46,106,115,45,103,114,105,100,45,116,101,120,116,45,34,43,97,41,59,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,46,112,117,115,104,40,100,41,125,116,104,105,115,46,99,97,108,99,71,114,105,100,76,97,98,101,108,115,40,41,125,44,99,97,108,99,71,114,105,100,76,97,98,101,108,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,59,118,97,114,32,98,61,91,93,59,118,97,114,32,100,61,91,93,44,99,61,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,110,117,109,59,102,111,114,40,97,61,48,59,97,60,99,59,97,43,43,41,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,119,91,97,93,61,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,91,97,93,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,97,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,119,91,97,93,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,97,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,97,93,47,10,50,41,44,98,91,97,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,91,97,93,45,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,97,93,41,44,100,91,97,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,98,91,97,93,43,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,97,93,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,102,111,114,99,101,95,101,100,103,101,115,38,38,40,98,91,48,93,60,45,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,38,38,40,98,91,48,93,61,45,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,44,100,91,48,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,98,91,48,93,43,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,48,93,41,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,48,93,61,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,41,44,100,91,99,45,49,93,62,49,48,48,43,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,38,38,40,100,91,99,45,49,93,61,49,48,48,43,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,44,98,91,99,45,49,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,100,91,99,45,49,93,45,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,99,45,49,93,41,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,99,45,49,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,99,45,49,93,45,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,41,41,41,59,116,104,105,115,46,99,97,108,99,71,114,105,100,67,111,108,108,105,115,105,111,110,40,50,44,10,98,44,100,41,59,116,104,105,115,46,99,97,108,99,71,114,105,100,67,111,108,108,105,115,105,111,110,40,52,44,98,44,100,41,59,102,111,114,40,97,61,48,59,97,60,99,59,97,43,43,41,98,61,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,91,97,93,91,48,93,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,97,93,33,61,61,78,117,109,98,101,114,46,80,79,83,73,84,73,86,69,95,73,78,70,73,78,73,84,89,38,38,40,98,46,115,116,121,108,101,46,109,97,114,103,105,110,76,101,102,116,61,45,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,97,93,43,34,37,34,41,125,44,99,97,108,99,71,114,105,100,67,111,108,108,105,115,105,111,110,58,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,118,97,114,32,99,44,101,61,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,110,117,109,59,102,111,114,40,99,61,48,59,99,60,101,59,99,43,61,97,41,123,118,97,114,32,103,61,99,43,97,47,50,59,105,102,40,103,62,61,101,41,98,114,101,97,107,59,118,97,114,32,102,61,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,91,103,93,91,48,93,59,102,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,100,91,99,93,60,61,98,91,103,93,63,34,118,105,115,105,98,108,101,34,58,34,104,105,100,100,101,110,34,125,125,44,99,97,108,99,71,114,105,100,77,97,114,103,105,110,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,111,112,116,105,111,110,115,46,103,114,105,100,95,109,97,114,103,105,110,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,104,97,110,100,108,101,61,10,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,58,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,104,97,110,100,108,101,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,44,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,45,46,49,41,44,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,116,104,105,115,46,116,111,70,105,120,101,100,40,49,48,48,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,41,43,34,37,34,44,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,43,34,37,34,41,41,125,44,117,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,97,41,123,116,104,105,115,46,105,110,112,117,116,38,38,40,116,104,105,115,46,105,115,95,117,112,100,97,116,101,61,33,48,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,44,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,102,114,111,109,61,10,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,44,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,116,111,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,44,116,104,105,115,46,111,112,116,105,111,110,115,61,102,46,101,120,116,101,110,100,40,116,104,105,115,46,111,112,116,105,111,110,115,44,97,41,44,116,104,105,115,46,118,97,108,105,100,97,116,101,40,41,44,116,104,105,115,46,117,112,100,97,116,101,82,101,115,117,108,116,40,97,41,44,116,104,105,115,46,116,111,103,103,108,101,73,110,112,117,116,40,41,44,116,104,105,115,46,114,101,109,111,118,101,40,41,44,116,104,105,115,46,105,110,105,116,40,33,48,41,41,125,44,114,101,115,101,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,110,112,117,116,38,38,40,116,104,105,115,46,117,112,100,97,116,101,82,101,115,117,108,116,40,41,44,116,104,105,115,46,117,112,100,97,116,101,40,41,41,125,44,100,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,110,112,117,116,38,38,40,116,104,105,115,46,116,111,103,103,108,101,73,110,112,117,116,40,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,114,101,97,100,111,110,108,121,34,44,33,49,41,44,102,46,100,97,116,97,40,116,104,105,115,46,105,110,112,117,116,44,34,105,111,110,82,97,110,103,101,83,108,105,100,101,114,34,44,110,117,108,108,41,44,116,104,105,115,46,114,101,109,111,118,101,40,41,44,116,104,105,115,46,111,112,116,105,111,110,115,61,116,104,105,115,46,105,110,112,117,116,61,110,117,108,108,41,125,125,59,102,46,102,110,46,105,111,110,82,97,110,103,101,83,108,105,100,101,114,61,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,102,46,100,97,116,97,40,116,104,105,115,44,34,105,111,110,82,97,110,103,101,83,108,105,100,101,114,34,41,124,124,10,102,46,100,97,116,97,40,116,104,105,115,44,34,105,111,110,82,97,110,103,101,83,108,105,100,101,114,34,44,110,101,119,32,113,40,116,104,105,115,44,97,44,116,43,43,41,41,125,41,125,59,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,97,61,48,44,98,61,91,34,109,115,34,44,34,109,111,122,34,44,34,119,101,98,107,105,116,34,44,34,111,34,93,44,100,61,48,59,100,60,98,46,108,101,110,103,116,104,38,38,33,107,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,59,43,43,100,41,107,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,61,107,91,98,91,100,93,43,34,82,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,34,93,44,107,46,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,61,107,91,98,91,100,93,43,34,67,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,34,93,124,124,107,91,98,91,100,93,43,34,67,97,110,99,101,108,82,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,34,93,59,107,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,124,124,40,107,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,61,102,117,110,99,116,105,111,110,40,98,44,100,41,123,118,97,114,32,99,61,40,110,101,119,32,68,97,116,101,41,46,103,101,116,84,105,109,101,40,41,44,101,61,77,97,116,104,46,109,97,120,40,48,44,49,54,45,40,99,45,97,41,41,44,102,61,107,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,98,40,99,43,101,41,125,44,101,41,59,97,61,99,43,101,59,114,101,116,117,114,110,32,102,125,41,59,107,46,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,124,124,40,107,46,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,61,10,102,117,110,99,116,105,111,110,40,97,41,123,99,108,101,97,114,84,105,109,101,111,117,116,40,97,41,125,41,125,41,40,41,125,41,59,10,10,47,42,33,32,76,105,116,121,32,45,32,118,51,46,48,46,48,45,100,101,118,32,45,32,50,48,49,57,45,48,56,45,48,55,10,42,32,104,116,116,112,58,47,47,115,111,114,103,97,108,108,97,46,99,111,109,47,108,105,116,121,47,10,42,32,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,53,45,50,48,49,57,32,74,97,110,32,83,111,114,103,97,108,108,97,59,32,76,105,99,101,110,115,101,100,32,77,73,84,32,42,47,10,10,33,102,117,110,99,116,105,111,110,40,97,44,98,41,123,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,106,113,117,101,114,121,34,93,44,102,117,110,99,116,105,111,110,40,99,41,123,114,101,116,117,114,110,32,98,40,97,44,99,41,125,41,58,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,109,111,100,117,108,101,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,98,40,97,44,114,101,113,117,105,114,101,40,34,106,113,117,101,114,121,34,41,41,58,97,46,108,105,116,121,61,98,40,97,44,97,46,106,81,117,101,114,121,124,124,97,46,90,101,112,116,111,41,125,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,116,104,105,115,44,102,117,110,99,116,105,111,110,40,97,44,98,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,99,40,97,41,123,118,97,114,32,98,61,121,40,41,59,114,101,116,117,114,110,32,71,38,38,97,46,108,101,110,103,116,104,63,40,97,46,111,110,101,40,71,44,98,46,114,101,115,111,108,118,101,41,44,115,101,116,84,105,109,101,111,117,116,40,98,46,114,101,115,111,108,118,101,44,53,48,48,41,41,58,98,46,114,101,115,111,108,118,101,40,41,44,98,46,112,114,111,109,105,115,101,40,41,125,102,117,110,99,116,105,111,110,32,100,40,97,44,99,44,100,41,123,105,102,40,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,98,46,101,120,116,101,110,100,40,123,125,44,97,41,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,99,41,123,105,102,40,118,111,105,100,32,48,61,61,61,100,41,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,97,91,99,93,63,110,117,108,108,58,97,91,99,93,59,97,91,99,93,61,100,125,101,108,115,101,32,98,46,101,120,116,101,110,100,40,97,44,99,41,59,114,101,116,117,114,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,101,40,97,41,123,118,97,114,32,98,61,97,46,105,110,100,101,120,79,102,40,34,63,34,41,59,98,62,45,49,38,38,40,97,61,97,46,115,117,98,115,116,114,40,98,43,49,41,41,59,102,111,114,40,118,97,114,32,99,44,100,61,100,101,99,111,100,101,85,82,73,40,97,46,115,112,108,105,116,40,34,35,34,41,91,48,93,41,46,115,112,108,105,116,40,34,38,34,41,44,101,61,123,125,44,102,61,48,44,103,61,100,46,108,101,110,103,116,104,59,102,60,103,59,102,43,43,41,100,91,102,93,38,38,40,99,61,100,91,102,93,46,115,112,108,105,116,40,34,61,34,41,44,101,91,99,91,48,93,93,61,99,91,49,93,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,102,40,97,44,99,41,123,105,102,40,33,99,41,114,101,116,117,114,110,32,97,59,105,102,40,34,115,116,114,105,110,103,34,61,61,61,98,46,116,121,112,101,40,99,41,38,38,40,99,61,101,40,99,41,41,44,97,46,105,110,100,101,120,79,102,40,34,63,34,41,62,45,49,41,123,118,97,114,32,100,61,97,46,115,112,108,105,116,40,34,63,34,41,59,97,61,100,46,115,104,105,102,116,40,41,44,99,61,98,46,101,120,116,101,110,100,40,123,125,44,101,40,100,91,48,93,41,44,99,41,125,114,101,116,117,114,110,32,97,43,34,63,34,43,98,46,112,97,114,97,109,40,99,41,125,102,117,110,99,116,105,111,110,32,103,40,97,44,98,41,123,118,97,114,32,99,61,97,46,105,110,100,101,120,79,102,40,34,35,34,41,59,114,101,116,117,114,110,45,49,61,61,61,99,63,98,58,40,99,62,48,38,38,40,97,61,97,46,115,117,98,115,116,114,40,99,41,41,44,98,43,97,41,125,102,117,110,99,116,105,111,110,32,104,40,97,44,98,44,99,44,100,41,123,114,101,116,117,114,110,32,98,38,38,98,46,101,108,101,109,101,110,116,40,41,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,105,102,114,97,109,101,34,41,44,99,38,38,40,97,61,102,40,97,44,99,41,41,44,100,38,38,40,97,61,103,40,100,44,97,41,41,44,39,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,45,105,102,114,97,109,101,45,99,111,110,116,97,105,110,101,114,34,62,60,105,102,114,97,109,101,32,102,114,97,109,101,98,111,114,100,101,114,61,34,48,34,32,97,108,108,111,119,102,117,108,108,115,99,114,101,101,110,32,97,108,108,111,119,61,34,102,117,108,108,115,99,114,101,101,110,34,32,115,114,99,61,34,39,43,97,43,39,34,47,62,60,47,100,105,118,62,39,125,102,117,110,99,116,105,111,110,32,105,40,97,41,123,114,101,116,117,114,110,32,98,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,108,105,116,121,45,101,114,114,111,114,34,47,62,39,41,46,97,112,112,101,110,100,40,97,41,125,102,117,110,99,116,105,111,110,32,106,40,97,44,99,41,123,118,97,114,32,100,61,99,46,111,112,101,110,101,114,40,41,38,38,99,46,111,112,101,110,101,114,40,41,46,100,97,116,97,40,34,108,105,116,121,45,100,101,115,99,34,41,124,124,34,105,109,103,34,44,101,61,98,40,39,60,105,109,103,32,115,114,99,61,34,39,43,97,43,39,34,32,97,108,116,61,34,39,43,100,43,39,34,47,62,39,41,44,102,61,121,40,41,44,103,61,102,117,110,99,116,105,111,110,40,41,123,102,46,114,101,106,101,99,116,40,105,40,34,70,97,105,108,101,100,32,108,111,97,100,105,110,103,32,105,109,97,103,101,34,41,41,125,59,114,101,116,117,114,110,32,101,46,111,110,40,34,108,111,97,100,34,44,102,117,110,99,116,105,111,110,40,41,123,105,102,40,48,61,61,61,116,104,105,115,46,110,97,116,117,114,97,108,87,105,100,116,104,41,114,101,116,117,114,110,32,103,40,41,59,102,46,114,101,115,111,108,118,101,40,101,41,125,41,46,111,110,40,34,101,114,114,111,114,34,44,103,41,44,102,46,112,114,111,109,105,115,101,40,41,125,102,117,110,99,116,105,111,110,32,107,40,97,44,99,41,123,118,97,114,32,100,44,101,44,102,59,116,114,121,123,100,61,98,40,97,41,125,99,97,116,99,104,40,97,41,123,114,101,116,117,114,110,33,49,125,114,101,116,117,114,110,33,33,100,46,108,101,110,103,116,104,38,38,40,101,61,98,40,39,60,105,32,115,116,121,108,101,61,34,100,105,115,112,108,97,121,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,34,47,62,39,41,44,102,61,100,46,104,97,115,67,108,97,115,115,40,34,108,105,116,121,45,104,105,100,101,34,41,44,99,46,101,108,101,109,101,110,116,40,41,46,111,110,101,40,34,108,105,116,121,58,114,101,109,111,118,101,34,44,102,117,110,99,116,105,111,110,40,41,123,101,46,98,101,102,111,114,101,40,100,41,46,114,101,109,111,118,101,40,41,44,102,38,38,33,100,46,99,108,111,115,101,115,116,40,34,46,108,105,116,121,45,99,111,110,116,101,110,116,34,41,46,108,101,110,103,116,104,38,38,100,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,104,105,100,101,34,41,125,41,44,100,46,114,101,109,111,118,101,67,108,97,115,115,40,34,108,105,116,121,45,104,105,100,101,34,41,46,97,102,116,101,114,40,101,41,41,125,102,117,110,99,116,105,111,110,32,108,40,97,44,98,41,123,114,101,116,117,114,110,32,104,40,97,44,98,41,125,102,117,110,99,116,105,111,110,32,109,40,41,123,114,101,116,117,114,110,32,119,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,99,108,105,101,110,116,72,101,105,103,104,116,63,119,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,99,108,105,101,110,116,72,101,105,103,104,116,58,77,97,116,104,46,114,111,117,110,100,40,120,46,104,101,105,103,104,116,40,41,41,125,102,117,110,99,116,105,111,110,32,110,40,97,41,123,118,97,114,32,98,61,115,40,41,59,98,38,38,40,50,55,61,61,61,97,46,107,101,121,67,111,100,101,38,38,98,46,111,112,116,105,111,110,115,40,34,101,115,99,34,41,38,38,98,46,99,108,111,115,101,40,41,44,57,61,61,61,97,46,107,101,121,67,111,100,101,38,38,111,40,97,44,98,41,41,125,102,117,110,99,116,105,111,110,32,111,40,97,44,98,41,123,118,97,114,32,99,61,98,46,101,108,101,109,101,110,116,40,41,46,102,105,110,100,40,68,41,44,100,61,99,46,105,110,100,101,120,40,119,46,97,99,116,105,118,101,69,108,101,109,101,110,116,41,59,97,46,115,104,105,102,116,75,101,121,38,38,100,60,61,48,63,40,99,46,103,101,116,40,99,46,108,101,110,103,116,104,45,49,41,46,102,111,99,117,115,40,41,44,97,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,41,58,97,46,115,104,105,102,116,75,101,121,124,124,100,33,61,61,99,46,108,101,110,103,116,104,45,49,124,124,40,99,46,103,101,116,40,48,41,46,102,111,99,117,115,40,41,44,97,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,41,125,102,117,110,99,116,105,111,110,32,112,40,41,123,98,46,101,97,99,104,40,65,44,102,117,110,99,116,105,111,110,40,97,44,98,41,123,98,46,114,101,115,105,122,101,40,41,125,41,125,102,117,110,99,116,105,111,110,32,113,40,97,41,123,49,61,61,61,65,46,117,110,115,104,105,102,116,40,97,41,38,38,40,122,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,97,99,116,105,118,101,34,41,44,120,46,111,110,40,123,114,101,115,105,122,101,58,112,44,107,101,121,100,111,119,110,58,110,125,41,41,44,98,40,34,98,111,100,121,32,62,32,42,34,41,46,110,111,116,40,97,46,101,108,101,109,101,110,116,40,41,41,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,104,105,100,100,101,110,34,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,98,40,116,104,105,115,41,59,118,111,105,100,32,48,61,61,61,97,46,100,97,116,97,40,67,41,38,38,97,46,100,97,116,97,40,67,44,97,46,97,116,116,114,40,66,41,124,124,110,117,108,108,41,125,41,46,97,116,116,114,40,66,44,34,116,114,117,101,34,41,125,102,117,110,99,116,105,111,110,32,114,40,97,41,123,118,97,114,32,99,59,97,46,101,108,101,109,101,110,116,40,41,46,97,116,116,114,40,66,44,34,116,114,117,101,34,41,44,49,61,61,61,65,46,108,101,110,103,116,104,38,38,40,122,46,114,101,109,111,118,101,67,108,97,115,115,40,34,108,105,116,121,45,97,99,116,105,118,101,34,41,44,120,46,111,102,102,40,123,114,101,115,105,122,101,58,112,44,107,101,121,100,111,119,110,58,110,125,41,41,44,65,61,98,46,103,114,101,112,40,65,44,102,117,110,99,116,105,111,110,40,98,41,123,114,101,116,117,114,110,32,97,33,61,61,98,125,41,44,99,61,65,46,108,101,110,103,116,104,63,65,91,48,93,46,101,108,101,109,101,110,116,40,41,58,98,40,34,46,108,105,116,121,45,104,105,100,100,101,110,34,41,44,99,46,114,101,109,111,118,101,67,108,97,115,115,40,34,108,105,116,121,45,104,105,100,100,101,110,34,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,98,40,116,104,105,115,41,44,99,61,97,46,100,97,116,97,40,67,41,59,99,63,97,46,97,116,116,114,40,66,44,99,41,58,97,46,114,101,109,111,118,101,65,116,116,114,40,66,41,44,97,46,114,101,109,111,118,101,68,97,116,97,40,67,41,125,41,125,102,117,110,99,116,105,111,110,32,115,40,41,123,114,101,116,117,114,110,32,48,61,61,61,65,46,108,101,110,103,116,104,63,110,117,108,108,58,65,91,48,93,125,102,117,110,99,116,105,111,110,32,116,40,97,44,99,44,100,44,101,41,123,118,97,114,32,102,44,103,61,34,105,110,108,105,110,101,34,44,104,61,98,46,101,120,116,101,110,100,40,123,125,44,100,41,59,114,101,116,117,114,110,32,101,38,38,104,91,101,93,63,40,102,61,104,91,101,93,40,97,44,99,41,44,103,61,101,41,58,40,98,46,101,97,99,104,40,91,34,105,110,108,105,110,101,34,44,34,105,102,114,97,109,101,34,93,44,102,117,110,99,116,105,111,110,40,97,44,98,41,123,100,101,108,101,116,101,32,104,91,98,93,44,104,91,98,93,61,100,91,98,93,125,41,44,98,46,101,97,99,104,40,104,44,102,117,110,99,116,105,111,110,40,98,44,100,41,123,114,101,116,117,114,110,33,100,124,124,40,33,40,33,100,46,116,101,115,116,124,124,100,46,116,101,115,116,40,97,44,99,41,41,124,124,40,102,61,100,40,97,44,99,41,44,33,49,33,61,61,102,63,40,103,61,98,44,33,49,41,58,118,111,105,100,32,48,41,41,125,41,41,44,123,104,97,110,100,108,101,114,58,103,44,99,111,110,116,101,110,116,58,102,124,124,34,34,125,125,102,117,110,99,116,105,111,110,32,117,40,97,44,101,44,102,44,103,41,123,102,117,110,99,116,105,111,110,32,104,40,97,41,123,107,61,98,40,97,41,46,99,115,115,40,34,109,97,120,45,104,101,105,103,104,116,34,44,109,40,41,43,34,112,120,34,41,44,106,46,102,105,110,100,40,34,46,108,105,116,121,45,108,111,97,100,101,114,34,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,98,40,116,104,105,115,41,59,99,40,97,41,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,97,46,114,101,109,111,118,101,40,41,125,41,125,41,44,106,46,114,101,109,111,118,101,67,108,97,115,115,40,34,108,105,116,121,45,108,111,97,100,105,110,103,34,41,46,102,105,110,100,40,34,46,108,105,116,121,45,99,111,110,116,101,110,116,34,41,46,101,109,112,116,121,40,41,46,97,112,112,101,110,100,40,107,41,44,110,61,33,48,44,107,46,116,114,105,103,103,101,114,40,34,108,105,116,121,58,114,101,97,100,121,34,44,91,108,93,41,125,118,97,114,32,105,44,106,44,107,44,108,61,116,104,105,115,44,110,61,33,49,44,111,61,33,49,59,101,61,98,46,101,120,116,101,110,100,40,123,125,44,69,44,101,41,44,106,61,98,40,101,46,116,101,109,112,108,97,116,101,41,44,108,46,101,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,125,44,108,46,111,112,101,110,101,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,125,44,108,46,99,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,125,44,108,46,111,112,116,105,111,110,115,61,98,46,112,114,111,120,121,40,100,44,108,44,101,41,44,108,46,104,97,110,100,108,101,114,115,61,98,46,112,114,111,120,121,40,100,44,108,44,101,46,104,97,110,100,108,101,114,115,41,44,108,46,114,101,115,105,122,101,61,102,117,110,99,116,105,111,110,40,41,123,110,38,38,33,111,38,38,107,46,99,115,115,40,34,109,97,120,45,104,101,105,103,104,116,34,44,109,40,41,43,34,112,120,34,41,46,116,114,105,103,103,101,114,40,34,108,105,116,121,58,114,101,115,105,122,101,34,44,91,108,93,41,125,44,108,46,99,108,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,110,38,38,33,111,41,123,111,61,33,48,44,114,40,108,41,59,118,97,114,32,97,61,121,40,41,59,105,102,40,103,38,38,40,119,46,97,99,116,105,118,101,69,108,101,109,101,110,116,61,61,61,106,91,48,93,124,124,98,46,99,111,110,116,97,105,110,115,40,106,91,48,93,44,119,46,97,99,116,105,118,101,69,108,101,109,101,110,116,41,41,41,116,114,121,123,103,46,102,111,99,117,115,40,41,125,99,97,116,99,104,40,97,41,123,125,114,101,116,117,114,110,32,107,46,116,114,105,103,103,101,114,40,34,108,105,116,121,58,99,108,111,115,101,34,44,91,108,93,41,44,106,46,114,101,109,111,118,101,67,108,97,115,115,40,34,108,105,116,121,45,111,112,101,110,101,100,34,41,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,99,108,111,115,101,100,34,41,44,99,40,107,46,97,100,100,40,106,41,41,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,107,46,116,114,105,103,103,101,114,40,34,108,105,116,121,58,114,101,109,111,118,101,34,44,91,108,93,41,44,106,46,114,101,109,111,118,101,40,41,44,106,61,118,111,105,100,32,48,44,97,46,114,101,115,111,108,118,101,40,41,125,41,44,97,46,112,114,111,109,105,115,101,40,41,125,125,44,105,61,116,40,97,44,108,44,101,46,104,97,110,100,108,101,114,115,44,101,46,104,97,110,100,108,101,114,41,44,106,46,97,116,116,114,40,66,44,34,102,97,108,115,101,34,41,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,108,111,97,100,105,110,103,32,108,105,116,121,45,111,112,101,110,101,100,32,108,105,116,121,45,34,43,105,46,104,97,110,100,108,101,114,41,46,97,112,112,101,110,100,84,111,40,34,98,111,100,121,34,41,46,102,111,99,117,115,40,41,46,111,110,40,34,99,108,105,99,107,34,44,34,91,100,97,116,97,45,108,105,116,121,45,99,108,111,115,101,93,34,44,102,117,110,99,116,105,111,110,40,97,41,123,98,40,97,46,116,97,114,103,101,116,41,46,105,115,40,34,91,100,97,116,97,45,108,105,116,121,45,99,108,111,115,101,93,34,41,38,38,108,46,99,108,111,115,101,40,41,125,41,46,116,114,105,103,103,101,114,40,34,108,105,116,121,58,111,112,101,110,34,44,91,108,93,41,44,113,40,108,41,44,98,46,119,104,101,110,40,105,46,99,111,110,116,101,110,116,41,46,97,108,119,97,121,115,40,104,41,125,102,117,110,99,116,105,111,110,32,118,40,97,44,99,44,100,41,123,97,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,63,40,97,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,100,61,98,40,116,104,105,115,41,44,97,61,100,46,100,97,116,97,40,34,108,105,116,121,45,116,97,114,103,101,116,34,41,124,124,100,46,97,116,116,114,40,34,104,114,101,102,34,41,124,124,100,46,97,116,116,114,40,34,115,114,99,34,41,41,58,100,61,98,40,100,41,59,118,97,114,32,101,61,110,101,119,32,117,40,97,44,98,46,101,120,116,101,110,100,40,123,125,44,100,46,100,97,116,97,40,34,108,105,116,121,45,111,112,116,105,111,110,115,34,41,124,124,100,46,100,97,116,97,40,34,108,105,116,121,34,41,44,99,41,44,100,44,119,46,97,99,116,105,118,101,69,108,101,109,101,110,116,41,59,105,102,40,33,97,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,41,114,101,116,117,114,110,32,101,125,118,97,114,32,119,61,97,46,100,111,99,117,109,101,110,116,44,120,61,98,40,97,41,44,121,61,98,46,68,101,102,101,114,114,101,100,44,122,61,98,40,34,104,116,109,108,34,41,44,65,61,91,93,44,66,61,34,97,114,105,97,45,104,105,100,100,101,110,34,44,67,61,34,108,105,116,121,45,34,43,66,44,68,61,39,97,91,104,114,101,102,93,44,97,114,101,97,91,104,114,101,102,93,44,105,110,112,117,116,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,44,115,101,108,101,99,116,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,44,116,101,120,116,97,114,101,97,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,44,98,117,116,116,111,110,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,44,105,102,114,97,109,101,44,111,98,106,101,99,116,44,101,109,98,101,100,44,91,99,111,110,116,101,110,116,101,100,105,116,97,98,108,101,93,44,91,116,97,98,105,110,100,101,120,93,58,110,111,116,40,91,116,97,98,105,110,100,101,120,94,61,34,45,34,93,41,39,44,69,61,123,101,115,99,58,33,48,44,104,97,110,100,108,101,114,58,110,117,108,108,44,104,97,110,100,108,101,114,115,58,123,105,109,97,103,101,58,106,44,105,110,108,105,110,101,58,107,44,105,102,114,97,109,101,58,108,125,44,116,101,109,112,108,97,116,101,58,39,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,34,32,114,111,108,101,61,34,100,105,97,108,111,103,34,32,97,114,105,97,45,108,97,98,101,108,61,34,68,105,97,108,111,103,32,87,105,110,100,111,119,32,40,80,114,101,115,115,32,101,115,99,97,112,101,32,116,111,32,99,108,111,115,101,41,34,32,116,97,98,105,110,100,101,120,61,34,45,49,34,62,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,45,119,114,97,112,34,32,100,97,116,97,45,108,105,116,121,45,99,108,111,115,101,32,114,111,108,101,61,34,100,111,99,117,109,101,110,116,34,62,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,45,108,111,97,100,101,114,34,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,62,76,111,97,100,105,110,103,46,46,46,60,47,100,105,118,62,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,45,99,111,110,116,97,105,110,101,114,34,62,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,45,99,111,110,116,101,110,116,34,62,60,47,100,105,118,62,60,98,117,116,116,111,110,32,99,108,97,115,115,61,34,108,105,116,121,45,99,108,111,115,101,34,32,116,121,112,101,61,34,98,117,116,116,111,110,34,32,97,114,105,97,45,108,97,98,101,108,61,34,67,108,111,115,101,32,40,80,114,101,115,115,32,101,115,99,97,112,101,32,116,111,32,99,108,111,115,101,41,34,32,100,97,116,97,45,108,105,116,121,45,99,108,111,115,101,62,38,116,105,109,101,115,59,60,47,98,117,116,116,111,110,62,60,47,100,105,118,62,60,47,100,105,118,62,60,47,100,105,118,62,39,125,44,70,61,47,40,94,100,97,116,97,58,105,109,97,103,101,92,47,41,124,40,92,46,40,112,110,103,124,106,112,101,63,103,124,103,105,102,124,115,118,103,124,119,101,98,112,124,98,109,112,124,105,99,111,124,116,105,102,102,63,41,40,92,63,92,83,42,41,63,36,41,47,105,44,71,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,119,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,44,98,61,123,87,101,98,107,105,116,84,114,97,110,115,105,116,105,111,110,58,34,119,101,98,107,105,116,84,114,97,110,115,105,116,105,111,110,69,110,100,34,44,77,111,122,84,114,97,110,115,105,116,105,111,110,58,34,116,114,97,110,115,105,116,105,111,110,101,110,100,34,44,79,84,114,97,110,115,105,116,105,111,110,58,34,111,84,114,97,110,115,105,116,105,111,110,69,110,100,32,111,116,114,97,110,115,105,116,105,111,110,101,110,100,34,44,116,114,97,110,115,105,116,105,111,110,58,34,116,114,97,110,115,105,116,105,111,110,101,110,100,34,125,59,102,111,114,40,118,97,114,32,99,32,105,110,32,98,41,105,102,40,118,111,105,100,32,48,33,61,61,97,46,115,116,121,108,101,91,99,93,41,114,101,116,117,114,110,32,98,91,99,93,59,114,101,116,117,114,110,33,49,125,40,41,59,114,101,116,117,114,110,32,106,46,116,101,115,116,61,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,70,46,116,101,115,116,40,97,41,125,44,118,46,118,101,114,115,105,111,110,61,34,51,46,48,46,48,45,100,101,118,34,44,118,46,111,112,116,105,111,110,115,61,98,46,112,114,111,120,121,40,100,44,118,44,69,41,44,118,46,104,97,110,100,108,101,114,115,61,98,46,112,114,111,120,121,40,100,44,118,44,69,46,104,97,110,100,108,101,114,115,41,44,118,46,99,117,114,114,101,110,116,61,115,44,118,46,105,102,114,97,109,101,61,104,44,98,40,119,41,46,111,110,40,34,99,108,105,99,107,46,108,105,116,121,34,44,34,91,100,97,116,97,45,108,105,116,121,93,34,44,118,41,44,118,125,41,59,47,42,42,10,32,42,32,104,116,116,112,115,58,47,47,115,116,97,99,107,111,118,101,114,102,108,111,119,46,99,111,109,47,113,117,101,115,116,105,111,110,115,47,49,48,52,50,48,51,53,50,10,32,42,47,10,102,117,110,99,116,105,111,110,32,104,117,109,97,110,70,105,108,101,83,105,122,101,40,98,121,116,101,115,41,32,123,10,32,32,32,32,105,102,32,40,98,121,116,101,115,32,61,61,61,32,48,41,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,34,48,32,66,34,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,116,104,114,101,115,104,32,61,32,49,48,48,48,59,10,32,32,32,32,105,102,32,40,77,97,116,104,46,97,98,115,40,98,121,116,101,115,41,32,60,32,116,104,114,101,115,104,41,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,121,116,101,115,32,43,32,39,32,66,39,59,10,32,32,32,32,125,10,32,32,32,32,108,101,116,32,117,110,105,116,115,32,61,32,91,39,107,39,44,32,39,77,39,44,32,39,71,39,44,32,39,84,39,44,32,39,80,39,44,32,39,69,39,44,32,39,90,39,44,32,39,89,39,93,59,10,32,32,32,32,108,101,116,32,117,32,61,32,45,49,59,10,32,32,32,32,100,111,32,123,10,32,32,32,32,32,32,32,32,98,121,116,101,115,32,47,61,32,116,104,114,101,115,104,59,10,32,32,32,32,32,32,32,32,43,43,117,59,10,32,32,32,32,125,32,119,104,105,108,101,32,40,77,97,116,104,46,97,98,115,40,98,121,116,101,115,41,32,62,61,32,116,104,114,101,115,104,32,38,38,32,117,32,60,32,117,110,105,116,115,46,108,101,110,103,116,104,32,45,32,49,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,98,121,116,101,115,46,116,111,70,105,120,101,100,40,49,41,32,43,32,117,110,105,116,115,91,117,93,59,10,125,10,10,47,42,42,10,32,42,32,104,116,116,112,115,58,47,47,115,116,97,99,107,111,118,101,114,102,108,111,119,46,99,111,109,47,113,117,101,115,116,105,111,110,115,47,54,51,49,50,57,57,51,10,32,42,47,10,102,117,110,99,116,105,111,110,32,104,117,109,97,110,84,105,109,101,40,115,101,99,95,110,117,109,41,32,123,10,32,32,32,32,115,101,99,95,110,117,109,32,61,32,77,97,116,104,46,102,108,111,111,114,40,115,101,99,95,110,117,109,41,59,10,32,32,32,32,108,101,116,32,104,111,117,114,115,32,61,32,77,97,116,104,46,102,108,111,111,114,40,115,101,99,95,110,117,109,32,47,32,51,54,48,48,41,59,10,32,32,32,32,108,101,116,32,109,105,110,117,116,101,115,32,61,32,77,97,116,104,46,102,108,111,111,114,40,40,115,101,99,95,110,117,109,32,45,32,40,104,111,117,114,115,32,42,32,51,54,48,48,41,41,32,47,32,54,48,41,59,10,32,32,32,32,108,101,116,32,115,101,99,111,110,100,115,32,61,32,115,101,99,95,110,117,109,32,45,32,40,104,111,117,114,115,32,42,32,51,54,48,48,41,32,45,32,40,109,105,110,117,116,101,115,32,42,32,54,48,41,59,10,10,32,32,32,32,105,102,32,40,104,111,117,114,115,32,60,32,49,48,41,32,123,10,32,32,32,32,32,32,32,32,104,111,117,114,115,32,61,32,34,48,34,32,43,32,104,111,117,114,115,59,10,32,32,32,32,125,10,32,32,32,32,105,102,32,40,109,105,110,117,116,101,115,32,60,32,49,48,41,32,123,10,32,32,32,32,32,32,32,32,109,105,110,117,116,101,115,32,61,32,34,48,34,32,43,32,109,105,110,117,116,101,115,59,10,32,32,32,32,125,10,32,32,32,32,105,102,32,40,115,101,99,111,110,100,115,32,60,32,49,48,41,32,123,10,32,32,32,32,32,32,32,32,115,101,99,111,110,100,115,32,61,32,34,48,34,32,43,32,115,101,99,111,110,100,115,59,10,32,32,32,32,125,10,32,32,32,32,114,101,116,117,114,110,32,104,111,117,114,115,32,43,32,34,58,34,32,43,32,109,105,110,117,116,101,115,32,43,32,34,58,34,32,43,32,115,101,99,111,110,100,115,59,10,125,10,10,102,117,110,99,116,105,111,110,32,100,101,98,111,117,110,99,101,40,102,117,110,99,44,32,119,97,105,116,41,32,123,10,32,32,32,32,108,101,116,32,116,105,109,101,111,117,116,59,10,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,99,111,110,116,101,120,116,32,61,32,116,104,105,115,44,32,97,114,103,115,32,61,32,97,114,103,117,109,101,110,116,115,59,10,32,32,32,32,32,32,32,32,108,101,116,32,108,97,116,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,105,109,101,111,117,116,32,61,32,110,117,108,108,59,10,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,46,97,112,112,108,121,40,99,111,110,116,101,120,116,44,32,97,114,103,115,41,59,10,32,32,32,32,32,32,32,32,125,59,10,32,32,32,32,32,32,32,32,99,108,101,97,114,84,105,109,101,111,117,116,40,116,105,109,101,111,117,116,41,59,10,32,32,32,32,32,32,32,32,116,105,109,101,111,117,116,32,61,32,115,101,116,84,105,109,101,111,117,116,40,108,97,116,101,114,44,32,119,97,105,116,41,59,10,32,32,32,32,32,32,32,32,102,117,110,99,46,97,112,112,108,121,40,99,111,110,116,101,120,116,44,32,97,114,103,115,41,59,10,32,32,32,32,125,59,10,125,10,10,102,117,110,99,116,105,111,110,32,108,117,109,40,99,41,32,123,10,32,32,32,32,99,32,61,32,99,46,115,117,98,115,116,114,105,110,103,40,49,41,59,10,32,32,32,32,108,101,116,32,114,103,98,32,61,32,112,97,114,115,101,73,110,116,40,99,44,32,49,54,41,59,10,32,32,32,32,108,101,116,32,114,32,61,32,40,114,103,98,32,62,62,32,49,54,41,32,38,32,48,120,102,102,59,10,32,32,32,32,108,101,116,32,103,32,61,32,40,114,103,98,32,62,62,32,56,41,32,38,32,48,120,102,102,59,10,32,32,32,32,108,101,116,32,98,32,61,32,40,114,103,98,32,62,62,32,48,41,32,38,32,48,120,102,102,59,10,10,32,32,32,32,114,101,116,117,114,110,32,48,46,50,49,50,54,32,42,32,114,32,43,32,48,46,55,49,53,50,32,42,32,103,32,43,32,48,46,48,55,50,50,32,42,32,98,59,10,125,10,10,102,117,110,99,116,105,111,110,32,115,116,114,85,110,101,115,99,97,112,101,40,115,116,114,41,32,123,10,32,32,32,32,108,101,116,32,114,101,115,117,108,116,32,61,32,34,34,59,10,10,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,115,116,114,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,99,32,61,32,115,116,114,91,105,93,59,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,110,101,120,116,32,61,32,115,116,114,91,105,43,49,93,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,99,32,61,61,61,32,39,93,39,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,101,120,116,32,61,61,61,32,39,93,39,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,43,61,32,99,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,32,43,61,32,49,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,43,61,32,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,40,112,97,114,115,101,73,110,116,40,115,116,114,46,115,108,105,99,101,40,105,44,32,105,32,43,32,50,41,44,32,49,54,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,32,43,61,32,50,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,43,61,32,99,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,10,125,10,10,99,111,110,115,116,32,67,79,78,70,32,61,32,110,101,119,32,83,101,116,116,105,110,103,115,40,41,59,10,10,99,111,110,115,116,32,95,100,101,102,97,117,108,116,115,32,61,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,34,103,114,105,100,34,44,10,32,32,32,32,102,117,122,122,121,58,32,116,114,117,101,44,10,32,32,32,32,104,105,103,104,108,105,103,104,116,58,32,116,114,117,101,44,10,32,32,32,32,115,111,114,116,58,32,34,115,99,111,114,101,34,44,10,32,32,32,32,115,101,97,114,99,104,73,110,80,97,116,104,58,32,102,97,108,115,101,44,10,32,32,32,32,116,114,101,101,109,97,112,84,121,112,101,58,32,34,99,97,115,99,97,100,101,100,34,44,10,32,32,32,32,116,114,101,101,109,97,112,84,105,108,105,110,103,58,32,34,115,113,117,97,114,105,102,121,34,44,10,32,32,32,32,116,114,101,101,109,97,112,71,114,111,117,112,105,110,103,68,101,112,116,104,58,32,51,44,10,32,32,32,32,116,114,101,101,109,97,112,67,111,108,111,114,58,32,34,80,117,66,117,71,110,34,44,10,32,32,32,32,116,114,101,101,109,97,112,83,105,122,101,58,32,34,108,97,114,103,101,34,44,10,125,59,10,10,102,117,110,99,116,105,111,110,32,108,111,97,100,83,101,116,116,105,110,103,115,40,41,32,123,10,32,32,32,32,67,79,78,70,46,108,111,97,100,40,41,59,10,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,68,105,115,112,108,97,121,34,41,46,118,97,108,40,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,70,117,122,122,121,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,44,32,67,79,78,70,46,111,112,116,105,111,110,115,46,102,117,122,122,121,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,72,105,103,104,108,105,103,104,116,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,44,32,67,79,78,70,46,111,112,116,105,111,110,115,46,104,105,103,104,108,105,103,104,116,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,83,101,97,114,99,104,73,110,80,97,116,104,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,44,32,67,79,78,70,46,111,112,116,105,111,110,115,46,115,101,97,114,99,104,73,110,80,97,116,104,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,84,105,108,105,110,103,34,41,46,118,97,108,40,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,84,105,108,105,110,103,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,71,114,111,117,112,105,110,103,68,101,112,116,104,34,41,46,118,97,108,40,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,71,114,111,117,112,105,110,103,68,101,112,116,104,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,67,111,108,111,114,34,41,46,118,97,108,40,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,67,111,108,111,114,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,83,105,122,101,34,41,46,118,97,108,40,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,83,105,122,101,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,84,121,112,101,34,41,46,118,97,108,40,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,84,121,112,101,41,59,10,125,10,10,102,117,110,99,116,105,111,110,32,83,101,116,116,105,110,103,115,40,41,32,123,10,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,123,125,59,10,10,32,32,32,32,116,104,105,115,46,95,111,110,85,112,100,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,36,40,34,35,102,117,122,122,121,84,111,103,103,108,101,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,44,32,116,104,105,115,46,111,112,116,105,111,110,115,46,102,117,122,122,121,41,59,10,32,32,32,32,125,59,10,10,32,32,32,32,116,104,105,115,46,108,111,97,100,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,114,97,119,32,61,32,119,105,110,100,111,119,46,108,111,99,97,108,83,116,111,114,97,103,101,46,103,101,116,73,116,101,109,40,34,111,112,116,105,111,110,115,34,41,59,10,32,32,32,32,32,32,32,32,105,102,32,40,114,97,119,32,61,61,61,32,110,117,108,108,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,95,100,101,102,97,117,108,116,115,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,106,32,61,32,74,83,79,78,46,112,97,114,115,101,40,114,97,119,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,106,32,124,124,32,79,98,106,101,99,116,46,107,101,121,115,40,95,100,101,102,97,117,108,116,115,41,46,115,111,109,101,40,107,32,61,62,32,33,106,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,107,41,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,95,100,101,102,97,117,108,116,115,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,106,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,111,110,85,112,100,97,116,101,40,41,59,10,32,32,32,32,125,59,10,10,32,32,32,32,116,104,105,115,46,115,97,118,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,119,105,110,100,111,119,46,108,111,99,97,108,83,116,111,114,97,103,101,46,115,101,116,73,116,101,109,40,34,111,112,116,105,111,110,115,34,44,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,116,104,105,115,46,111,112,116,105,111,110,115,41,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,111,110,85,112,100,97,116,101,40,41,59,10,32,32,32,32,125,10,125,10,10,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,83,101,116,116,105,110,103,115,40,41,32,123,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,32,36,40,34,35,115,101,116,116,105,110,103,68,105,115,112,108,97,121,34,41,46,118,97,108,40,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,102,117,122,122,121,32,61,32,36,40,34,35,115,101,116,116,105,110,103,70,117,122,122,121,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,104,105,103,104,108,105,103,104,116,32,61,32,36,40,34,35,115,101,116,116,105,110,103,72,105,103,104,108,105,103,104,116,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,115,101,97,114,99,104,73,110,80,97,116,104,32,61,32,36,40,34,35,115,101,116,116,105,110,103,83,101,97,114,99,104,73,110,80,97,116,104,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,84,105,108,105,110,103,32,61,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,84,105,108,105,110,103,34,41,46,118,97,108,40,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,71,114,111,117,112,105,110,103,68,101,112,116,104,32,61,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,71,114,111,117,112,105,110,103,68,101,112,116,104,34,41,46,118,97,108,40,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,67,111,108,111,114,32,61,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,67,111,108,111,114,34,41,46,118,97,108,40,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,83,105,122,101,32,61,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,83,105,122,101,34,41,46,118,97,108,40,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,84,121,112,101,32,61,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,84,121,112,101,34,41,46,118,97,108,40,41,59,10,32,32,32,32,67,79,78,70,46,115,97,118,101,40,41,59,10,10,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,32,33,61,61,32,34,117,110,100,101,102,105,110,101,100,34,41,32,123,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,125,10,10,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,117,112,100,97,116,101,83,116,97,116,115,32,33,61,61,32,34,117,110,100,101,102,105,110,101,100,34,41,32,123,10,32,32,32,32,32,32,32,32,117,112,100,97,116,101,83,116,97,116,115,40,41,59,10,32,32,32,32,125,10,10,32,32,32,32,36,46,116,111,97,115,116,40,123,10,32,32,32,32,32,32,32,32,104,101,97,100,105,110,103,58,32,34,83,101,116,116,105,110,103,115,32,117,112,100,97,116,101,100,34,44,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,83,101,116,116,105,110,103,115,32,115,97,118,101,100,32,116,111,32,98,114,111,119,115,101,114,32,115,116,111,114,97,103,101,34,44,10,32,32,32,32,32,32,32,32,115,116,97,99,107,58,32,51,44,10,32,32,32,32,32,32,32,32,98,103,67,111,108,111,114,58,32,34,35,48,48,97,52,98,99,34,44,10,32,32,32,32,32,32,32,32,116,101,120,116,67,111,108,111,114,58,32,34,35,102,102,102,34,44,10,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,58,32,39,98,111,116,116,111,109,45,114,105,103,104,116,39,44,10,32,32,32,32,32,32,32,32,104,105,100,101,65,102,116,101,114,58,32,51,48,48,48,44,10,32,32,32,32,32,32,32,32,108,111,97,100,101,114,66,103,58,32,34,35,48,56,99,55,101,56,34,44,10,32,32,32,32,125,41,59,10,125,10,10,106,81,117,101,114,121,91,34,106,115,111,110,80,111,115,116,34,93,32,61,32,102,117,110,99,116,105,111,110,32,40,117,114,108,44,32,100,97,116,97,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,106,81,117,101,114,121,46,97,106,97,120,40,123,10,32,32,32,32,32,32,32,32,117,114,108,58,32,117,114,108,44,10,32,32,32,32,32,32,32,32,116,121,112,101,58,32,34,112,111,115,116,34,44,10,32,32,32,32,32,32,32,32,100,97,116,97,58,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,100,97,116,97,41,44,10,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,84,121,112,101,58,32,34,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,34,10,32,32,32,32,125,41,46,102,97,105,108,40,101,114,114,32,61,62,32,123,10,32,32,32,32,32,32,32,32,115,104,111,119,69,115,69,114,114,111,114,40,41,59,10,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,101,114,114,41,59,10,32,32,32,32,125,41,59,10,125,59,10,10,102,117,110,99,116,105,111,110,32,116,111,103,103,108,101,84,104,101,109,101,40,41,32,123,10,32,32,32,32,105,102,32,40,33,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,46,105,110,99,108,117,100,101,115,40,34,115,105,115,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,32,61,32,34,115,105,115,116,61,100,97,114,107,59,83,97,109,101,83,105,116,101,61,83,116,114,105,99,116,34,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,32,61,32,34,115,105,115,116,61,59,32,77,97,120,45,65,103,101,61,45,57,57,57,57,57,57,57,57,59,34,59,10,32,32,32,32,125,10,32,32,32,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,114,101,108,111,97,100,40,41,59,10,125,10,47,42,42,10,32,42,32,69,110,97,98,108,101,32,103,105,102,32,108,111,97,100,105,110,103,32,111,110,32,104,111,118,101,114,10,32,42,47,10,102,117,110,99,116,105,111,110,32,103,105,102,79,118,101,114,40,116,104,117,109,98,110,97,105,108,44,32,104,105,116,41,32,123,10,32,32,32,32,108,101,116,32,99,97,108,108,101,101,32,61,32,97,114,103,117,109,101,110,116,115,46,99,97,108,108,101,101,59,10,10,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,111,118,101,114,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,109,111,117,115,101,83,116,97,121,101,100,79,118,101,114,32,61,32,116,114,117,101,59,10,10,32,32,32,32,32,32,32,32,119,105,110,100,111,119,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,46,109,111,117,115,101,83,116,97,121,101,100,79,118,101,114,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,109,111,117,115,101,111,118,101,114,39,44,32,99,97,108,108,101,101,44,32,102,97,108,115,101,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,76,111,97,100,32,103,105,102,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,44,32,34,102,47,34,32,43,32,104,105,116,91,34,95,105,100,34,93,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,44,32,54,48,48,41,59,10,10,32,32,32,32,125,41,59,10,10,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,111,117,116,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,47,47,82,101,115,101,116,32,116,105,109,101,114,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,109,111,117,115,101,83,116,97,121,101,100,79,118,101,114,32,61,32,102,97,108,115,101,59,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,44,32,96,116,47,36,123,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,105,110,100,101,120,34,93,125,47,36,123,104,105,116,91,34,95,105,100,34,93,125,96,41,59,10,32,32,32,32,125,41,10,125,10,10,102,117,110,99,116,105,111,110,32,103,101,116,67,111,110,116,101,110,116,72,105,103,104,108,105,103,104,116,40,104,105,116,41,32,123,10,32,32,32,32,99,111,110,115,116,32,114,101,32,61,32,82,101,103,69,120,112,40,47,60,109,97,114,107,62,47,103,41,59,10,10,32,32,32,32,99,111,110,115,116,32,115,111,114,116,66,121,77,97,116,104,67,111,117,110,116,32,61,32,40,97,44,32,98,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,46,109,97,116,99,104,40,114,101,41,46,108,101,110,103,116,104,32,45,32,97,46,109,97,116,99,104,40,114,101,41,46,108,101,110,103,116,104,59,10,32,32,32,32,125,59,10,10,32,32,32,32,105,102,32,40,104,105,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,104,105,103,104,108,105,103,104,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,99,111,110,116,101,110,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,99,111,110,116,101,110,116,34,93,46,115,111,114,116,40,115,111,114,116,66,121,77,97,116,104,67,111,117,110,116,41,91,48,93,59,10,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,93,46,115,111,114,116,40,115,111,114,116,66,121,77,97,116,104,67,111,117,110,116,41,91,48,93,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,114,101,116,117,114,110,32,117,110,100,101,102,105,110,101,100,59,10,125,10,10,102,117,110,99,116,105,111,110,32,103,101,116,80,97,116,104,72,105,103,104,108,105,103,104,116,40,104,105,116,41,32,123,10,32,32,32,32,105,102,32,40,104,105,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,104,105,103,104,108,105,103,104,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,112,97,116,104,46,116,101,120,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,112,97,116,104,46,116,101,120,116,34,93,91,48,93,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,112,97,116,104,46,110,71,114,97,109,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,112,97,116,104,46,110,71,114,97,109,34,93,91,48,93,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,114,101,116,117,114,110,32,117,110,100,101,102,105,110,101,100,59,10,125,10,10,102,117,110,99,116,105,111,110,32,97,112,112,108,121,78,97,109,101,84,111,84,105,116,108,101,40,104,105,116,44,32,116,105,116,108,101,44,32,101,120,116,101,110,115,105,111,110,41,32,123,10,32,32,32,32,105,102,32,40,104,105,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,104,105,103,104,108,105,103,104,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,110,97,109,101,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,39,97,102,116,101,114,98,101,103,105,110,39,44,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,110,97,109,101,34,93,32,43,32,101,120,116,101,110,115,105,111,110,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,110,97,109,101,46,110,71,114,97,109,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,39,97,102,116,101,114,98,101,103,105,110,39,44,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,110,97,109,101,46,110,71,114,97,109,34,93,32,43,32,101,120,116,101,110,115,105,111,110,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,116,105,116,108,101,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,110,97,109,101,34,93,32,43,32,101,120,116,101,110,115,105,111,110,41,41,59,10,125,10,10,102,117,110,99,116,105,111,110,32,115,104,111,117,108,100,80,108,97,121,86,105,100,101,111,40,104,105,116,41,32,123,10,32,32,32,32,99,111,110,115,116,32,118,105,100,101,111,99,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,59,10,32,32,32,32,99,111,110,115,116,32,109,105,109,101,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,59,10,10,32,32,32,32,114,101,116,117,114,110,32,109,105,109,101,32,38,38,10,32,32,32,32,32,32,32,32,109,105,109,101,46,115,116,97,114,116,115,87,105,116,104,40,34,118,105,100,101,111,47,34,41,32,38,38,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,101,120,116,101,110,115,105,111,110,34,93,32,33,61,61,32,34,109,107,118,34,32,38,38,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,101,120,116,101,110,115,105,111,110,34,93,32,33,61,61,32,34,97,118,105,34,32,38,38,10,32,32,32,32,32,32,32,32,118,105,100,101,111,99,32,33,61,61,32,34,104,101,118,99,34,32,38,38,10,32,32,32,32,32,32,32,32,118,105,100,101,111,99,32,33,61,61,32,34,109,112,101,103,50,118,105,100,101,111,34,32,38,38,10,32,32,32,32,32,32,32,32,118,105,100,101,111,99,32,33,61,61,32,34,119,109,118,51,34,59,10,125,10,10,102,117,110,99,116,105,111,110,32,115,104,111,117,108,100,68,105,115,112,108,97,121,82,97,119,73,109,97,103,101,40,104,105,116,41,32,123,10,32,32,32,32,99,111,110,115,116,32,109,105,109,101,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,59,10,10,32,32,32,32,114,101,116,117,114,110,32,109,105,109,101,32,38,38,10,32,32,32,32,32,32,32,32,109,105,109,101,46,115,116,97,114,116,115,87,105,116,104,40,34,105,109,97,103,101,47,34,41,32,38,38,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,32,38,38,10,32,32,32,32,32,32,32,32,33,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,114,101,110,116,34,93,32,38,38,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,32,33,61,61,32,34,116,105,102,102,34,32,38,38,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,32,33,61,61,32,34,112,112,109,34,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,80,108,97,99,101,104,111,108,100,101,114,40,119,44,32,104,44,32,115,109,97,108,108,41,32,123,10,32,32,32,32,108,101,116,32,99,97,108,99,59,10,32,32,32,32,105,102,32,40,115,109,97,108,108,41,32,123,10,32,32,32,32,32,32,32,32,99,97,108,99,32,61,32,119,32,62,32,104,10,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,54,52,32,47,32,119,32,47,32,104,41,32,62,61,32,49,48,48,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,54,52,32,42,32,119,32,47,32,104,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,54,52,10,32,32,32,32,32,32,32,32,32,32,32,32,58,32,54,52,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,99,97,108,99,32,61,32,119,32,62,32,104,10,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,49,55,53,32,47,32,119,32,47,32,104,41,32,62,61,32,50,55,50,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,49,55,53,32,42,32,119,32,47,32,104,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,49,55,53,10,32,32,32,32,32,32,32,32,32,32,32,32,58,32,49,55,53,59,10,32,32,32,32,125,10,10,32,32,32,32,99,111,110,115,116,32,101,108,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,101,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,32,96,104,101,105,103,104,116,58,32,36,123,99,97,108,99,125,112,120,96,41,59,10,32,32,32,32,114,101,116,117,114,110,32,101,108,59,10,125,10,10,102,117,110,99,116,105,111,110,32,101,120,116,40,104,105,116,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,101,120,116,101,110,115,105,111,110,34,41,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,101,120,116,101,110,115,105,111,110,34,93,32,33,61,61,32,34,34,32,63,32,34,46,34,32,43,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,101,120,116,101,110,115,105,111,110,34,93,32,58,32,34,34,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,84,105,116,108,101,40,104,105,116,41,32,123,10,32,32,32,32,108,101,116,32,116,105,116,108,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,105,116,108,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,102,105,108,101,45,116,105,116,108,101,34,41,59,10,32,32,32,32,108,101,116,32,101,120,116,101,110,115,105,111,110,32,61,32,101,120,116,40,104,105,116,41,59,10,10,32,32,32,32,97,112,112,108,121,78,97,109,101,84,111,84,105,116,108,101,40,104,105,116,44,32,116,105,116,108,101,44,32,101,120,116,101,110,115,105,111,110,41,59,10,10,32,32,32,32,116,105,116,108,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,32,43,32,34,47,34,32,43,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,110,97,109,101,34,93,32,43,32,101,120,116,101,110,115,105,111,110,41,59,10,32,32,32,32,114,101,116,117,114,110,32,116,105,116,108,101,59,10,125,10,10,102,117,110,99,116,105,111,110,32,103,101,116,84,97,103,115,40,104,105,116,44,32,109,105,109,101,67,97,116,101,103,111,114,121,41,32,123,10,10,32,32,32,32,108,101,116,32,116,97,103,115,32,61,32,91,93,59,10,32,32,32,32,115,119,105,116,99,104,32,40,109,105,109,101,67,97,116,101,103,111,114,121,41,32,123,10,32,32,32,32,32,32,32,32,99,97,115,101,32,34,118,105,100,101,111,34,58,10,32,32,32,32,32,32,32,32,99,97,115,101,32,34,105,109,97,103,101,34,58,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,118,105,100,101,111,99,34,41,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,102,111,114,109,97,116,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,98,97,100,103,101,45,118,105,100,101,111,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,46,114,101,112,108,97,99,101,40,34,32,34,44,32,34,34,41,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,115,46,112,117,115,104,40,102,111,114,109,97,116,84,97,103,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,10,32,32,32,32,32,32,32,32,99,97,115,101,32,34,97,117,100,105,111,34,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,97,117,100,105,111,99,34,41,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,97,117,100,105,111,99,34,93,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,102,111,114,109,97,116,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,98,97,100,103,101,45,97,117,100,105,111,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,97,117,100,105,111,99,34,93,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,115,46,112,117,115,104,40,102,111,114,109,97,116,84,97,103,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,10,32,32,32,32,125,10,32,32,32,32,47,47,32,85,115,101,114,32,116,97,103,115,10,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,116,97,103,34,41,41,32,123,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,116,97,103,34,93,46,102,111,114,69,97,99,104,40,116,97,103,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,117,115,101,114,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,117,115,101,114,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,98,97,100,103,101,45,117,115,101,114,34,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,116,111,107,101,110,115,32,61,32,116,97,103,46,115,112,108,105,116,40,34,35,34,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,111,107,101,110,115,46,108,101,110,103,116,104,32,62,32,49,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,98,103,32,61,32,34,35,34,32,43,32,116,111,107,101,110,115,91,49,93,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,102,103,32,61,32,108,117,109,40,116,111,107,101,110,115,91,49,93,41,32,62,32,52,48,32,63,32,34,35,48,48,48,34,32,58,32,34,35,102,102,102,34,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,115,101,114,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,32,96,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,36,123,98,103,125,59,32,99,111,108,111,114,58,32,36,123,102,103,125,96,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,110,97,109,101,32,61,32,116,111,107,101,110,115,91,48,93,46,115,112,108,105,116,40,34,46,34,41,91,116,111,107,101,110,115,91,48,93,46,115,112,108,105,116,40,34,46,34,41,46,108,101,110,103,116,104,32,45,32,49,93,59,10,32,32,32,32,32,32,32,32,32,32,32,32,117,115,101,114,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,110,97,109,101,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,115,46,112,117,115,104,40,117,115,101,114,84,97,103,41,59,10,32,32,32,32,32,32,32,32,125,41,10,32,32,32,32,125,10,10,32,32,32,32,114,101,116,117,114,110,32,116,97,103,115,10,125,10,10,102,117,110,99,116,105,111,110,32,105,110,102,111,66,117,116,116,111,110,67,98,40,104,105,116,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,103,101,116,68,111,99,117,109,101,110,116,73,110,102,111,40,104,105,116,91,34,95,105,100,34,93,41,46,116,104,101,110,40,100,111,99,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,109,111,100,97,108,45,116,105,116,108,101,34,41,46,116,101,120,116,40,100,111,99,91,34,110,97,109,101,34,93,32,43,32,101,120,116,40,104,105,116,41,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,116,98,111,100,121,32,61,32,36,40,34,60,116,98,111,100,121,62,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,109,111,100,97,108,45,98,111,100,121,34,41,46,101,109,112,116,121,40,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,97,98,108,101,32,99,108,97,115,115,61,39,116,97,98,108,101,32,116,97,98,108,101,45,115,109,39,62,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,104,101,97,100,62,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,114,62,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,104,62,34,41,46,116,101,120,116,40,34,70,105,101,108,100,34,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,104,62,34,41,46,116,101,120,116,40,34,86,97,108,117,101,34,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,116,98,111,100,121,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,100,105,115,112,108,97,121,70,105,101,108,100,115,32,61,32,110,101,119,32,83,101,116,40,91,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,34,109,105,109,101,34,44,32,34,115,105,122,101,34,44,32,34,109,116,105,109,101,34,44,32,34,112,97,116,104,34,44,32,34,116,105,116,108,101,34,44,32,34,119,105,100,116,104,34,44,32,34,104,101,105,103,104,116,34,44,32,34,100,117,114,97,116,105,111,110,34,44,32,34,97,117,100,105,111,99,34,44,32,34,118,105,100,101,111,99,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,34,98,105,116,114,97,116,101,34,44,32,34,97,114,116,105,115,116,34,44,32,34,97,108,98,117,109,34,44,32,34,97,108,98,117,109,95,97,114,116,105,115,116,34,44,32,34,103,101,110,114,101,34,44,32,34,116,105,116,108,101,34,44,32,34,102,111,110,116,95,110,97,109,101,34,44,32,34,116,97,103,34,10,32,32,32,32,32,32,32,32,32,32,32,32,93,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,100,111,99,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,102,105,108,116,101,114,40,107,101,121,32,61,62,32,107,101,121,46,115,116,97,114,116,115,87,105,116,104,40,34,95,107,101,121,119,111,114,100,46,34,41,32,124,124,32,107,101,121,46,115,116,97,114,116,115,87,105,116,104,40,34,95,116,101,120,116,46,34,41,32,124,124,32,100,105,115,112,108,97,121,70,105,101,108,100,115,46,104,97,115,40,107,101,121,41,32,124,124,32,107,101,121,46,115,116,97,114,116,115,87,105,116,104,40,34,101,120,105,102,95,34,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,102,111,114,69,97,99,104,40,107,101,121,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,98,111,100,121,46,97,112,112,101,110,100,40,36,40,34,60,116,114,62,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,100,62,34,41,46,116,101,120,116,40,107,101,121,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,100,62,34,41,46,116,101,120,116,40,100,111,99,91,107,101,121,93,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,111,99,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,99,111,110,116,101,110,116,34,41,32,38,38,32,100,111,99,91,34,99,111,110,116,101,110,116,34,93,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,109,111,100,97,108,45,98,111,100,121,34,41,46,97,112,112,101,110,100,40,36,40,34,60,100,105,118,32,99,108,97,115,115,61,39,99,111,110,116,101,110,116,45,100,105,118,39,62,34,41,46,116,101,120,116,40,100,111,99,91,34,99,111,110,116,101,110,116,34,93,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,109,111,100,97,108,34,41,46,109,111,100,97,108,40,41,59,10,32,32,32,32,32,32,32,32,125,41,59,10,32,32,32,32,125,10,125,10,10,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,68,111,99,67,97,114,100,40,104,105,116,41,32,123,10,32,32,32,32,108,101,116,32,100,111,99,67,97,114,100,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,100,111,99,67,97,114,100,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,34,41,59,10,10,32,32,32,32,108,101,116,32,100,111,99,67,97,114,100,66,111,100,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,100,111,99,67,97,114,100,66,111,100,121,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,98,111,100,121,32,100,111,99,117,109,101,110,116,34,41,59,10,10,32,32,32,32,47,47,84,105,116,108,101,10,32,32,32,32,108,101,116,32,116,105,116,108,101,32,61,32,109,97,107,101,84,105,116,108,101,40,104,105,116,41,59,10,32,32,32,32,108,101,116,32,105,115,83,117,98,68,111,99,117,109,101,110,116,32,61,32,102,97,108,115,101,59,10,10,32,32,32,32,108,101,116,32,108,105,110,107,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,10,32,32,32,32,108,105,110,107,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,44,32,34,102,47,34,32,43,32,104,105,116,91,34,95,105,100,34,93,41,59,10,32,32,32,32,108,105,110,107,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,97,114,103,101,116,34,44,32,34,95,98,108,97,110,107,34,41,59,10,32,32,32,32,108,105,110,107,46,115,116,121,108,101,46,109,97,120,87,105,100,116,104,32,61,32,34,99,97,108,99,40,49,48,48,37,32,45,32,49,46,50,114,101,109,41,34,59,10,32,32,32,32,108,105,110,107,46,97,112,112,101,110,100,67,104,105,108,100,40,116,105,116,108,101,41,59,10,10,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,112,97,114,101,110,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,100,111,99,67,97,114,100,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,115,117,98,45,100,111,99,117,109,101,110,116,34,41,59,10,32,32,32,32,32,32,32,32,105,115,83,117,98,68,111,99,117,109,101,110,116,32,61,32,116,114,117,101,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,116,97,103,67,111,110,116,97,105,110,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,116,101,120,116,34,41,59,10,10,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,109,105,109,101,34,41,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,32,33,61,61,32,110,117,108,108,41,32,123,10,10,32,32,32,32,32,32,32,32,108,101,116,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,32,61,32,110,117,108,108,59,10,32,32,32,32,32,32,32,32,108,101,116,32,105,109,103,87,114,97,112,112,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,32,34,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,34,41,59,10,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,105,109,103,45,119,114,97,112,112,101,114,34,41,59,10,10,32,32,32,32,32,32,32,32,108,101,116,32,109,105,109,101,67,97,116,101,103,111,114,121,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,46,115,112,108,105,116,40,34,47,34,41,91,48,93,59,10,10,32,32,32,32,32,32,32,32,47,47,84,104,117,109,98,110,97,105,108,10,32,32,32,32,32,32,32,32,108,101,116,32,116,104,117,109,98,110,97,105,108,32,61,32,109,97,107,101,84,104,117,109,98,110,97,105,108,40,109,105,109,101,67,97,116,101,103,111,114,121,44,32,104,105,116,44,32,105,109,103,87,114,97,112,112,101,114,44,32,102,97,108,115,101,41,59,10,10,32,32,32,32,32,32,32,32,47,47,84,104,117,109,98,110,97,105,108,32,111,118,101,114,108,97,121,10,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,109,105,109,101,67,97,116,101,103,111,114,121,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,34,105,109,97,103,101,34,58,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,34,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,82,101,115,111,108,117,116,105,111,110,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,119,105,100,116,104,34,41,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,119,105,100,116,104,34,93,32,62,32,51,50,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,104,101,105,103,104,116,34,93,32,62,32,51,50,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,114,101,115,111,108,117,116,105,111,110,66,97,100,103,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,111,108,117,116,105,111,110,66,97,100,103,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,119,105,100,116,104,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,111,108,117,116,105,111,110,66,97,100,103,101,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,119,105,100,116,104,34,93,32,43,32,34,120,34,32,43,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,104,101,105,103,104,116,34,93,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,46,97,112,112,101,110,100,67,104,105,108,100,40,114,101,115,111,108,117,116,105,111,110,66,97,100,103,101,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,72,111,118,101,114,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,32,61,61,61,32,34,103,105,102,34,32,38,38,32,33,105,115,83,117,98,68,111,99,117,109,101,110,116,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,103,105,102,79,118,101,114,40,116,104,117,109,98,110,97,105,108,44,32,104,105,116,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,34,118,105,100,101,111,34,58,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,68,117,114,97,116,105,111,110,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,100,117,114,97,116,105,111,110,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,100,117,114,97,116,105,111,110,66,97,100,103,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,117,114,97,116,105,111,110,66,97,100,103,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,117,114,97,116,105,111,110,66,97,100,103,101,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,117,109,97,110,84,105,109,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,100,117,114,97,116,105,111,110,34,93,41,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,46,97,112,112,101,110,100,67,104,105,108,100,40,100,117,114,97,116,105,111,110,66,97,100,103,101,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,47,47,32,84,97,103,115,10,32,32,32,32,32,32,32,32,108,101,116,32,116,97,103,115,32,61,32,103,101,116,84,97,103,115,40,104,105,116,44,32,109,105,109,101,67,97,116,101,103,111,114,121,41,59,10,32,32,32,32,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,116,97,103,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,116,97,103,115,91,105,93,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,47,47,67,111,110,116,101,110,116,10,32,32,32,32,32,32,32,32,108,101,116,32,99,111,110,116,101,110,116,72,108,32,61,32,103,101,116,67,111,110,116,101,110,116,72,105,103,104,108,105,103,104,116,40,104,105,116,41,59,10,32,32,32,32,32,32,32,32,105,102,32,40,99,111,110,116,101,110,116,72,108,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,99,111,110,116,101,110,116,68,105,118,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,68,105,118,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,111,110,116,101,110,116,45,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,68,105,118,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,39,97,102,116,101,114,98,101,103,105,110,39,44,32,99,111,110,116,101,110,116,72,108,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,99,111,110,116,101,110,116,68,105,118,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,32,33,61,61,32,110,117,108,108,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,105,109,103,87,114,97,112,112,101,114,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,47,47,65,117,100,105,111,10,32,32,32,32,32,32,32,32,105,102,32,40,109,105,109,101,67,97,116,101,103,111,114,121,32,61,61,61,32,34,97,117,100,105,111,34,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,97,117,100,105,111,99,34,41,32,38,38,32,33,105,115,83,117,98,68,111,99,117,109,101,110,116,41,32,123,10,10,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,97,117,100,105,111,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,117,100,105,111,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,112,114,101,108,111,97,100,34,44,32,34,110,111,110,101,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,97,117,100,105,111,45,102,105,116,32,102,105,116,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,111,110,116,114,111,108,115,34,44,32,34,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,44,32,34,102,47,34,32,43,32,104,105,116,91,34,95,105,100,34,93,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,97,117,100,105,111,41,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,32,33,61,61,32,110,117,108,108,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,47,47,83,105,122,101,32,116,97,103,10,32,32,32,32,108,101,116,32,115,105,122,101,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,109,97,108,108,34,41,59,10,32,32,32,32,115,105,122,101,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,117,109,97,110,70,105,108,101,83,105,122,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,115,105,122,101,34,93,41,41,41,59,10,32,32,32,32,115,105,122,101,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,116,101,120,116,45,109,117,116,101,100,34,41,59,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,115,105,122,101,84,97,103,41,59,10,10,32,32,32,32,99,111,110,115,116,32,116,105,116,108,101,87,114,97,112,112,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,115,116,121,108,101,46,100,105,115,112,108,97,121,32,61,32,34,102,108,101,120,34,59,10,10,32,32,32,32,99,111,110,115,116,32,105,110,102,111,66,117,116,116,111,110,32,61,32,109,97,107,101,73,110,102,111,66,117,116,116,111,110,40,104,105,116,41,59,10,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,105,110,102,111,66,117,116,116,111,110,41,59,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,108,105,110,107,41,59,10,10,32,32,32,32,100,111,99,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,116,105,116,108,101,87,114,97,112,112,101,114,41,59,10,32,32,32,32,100,111,99,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,67,97,114,100,66,111,100,121,41,59,10,10,32,32,32,32,100,111,99,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,116,97,103,67,111,110,116,97,105,110,101,114,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,100,111,99,67,97,114,100,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,84,104,117,109,98,110,97,105,108,40,109,105,109,101,67,97,116,101,103,111,114,121,44,32,104,105,116,44,32,105,109,103,87,114,97,112,112,101,114,44,32,115,109,97,108,108,41,32,123,10,10,32,32,32,32,105,102,32,40,33,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,116,104,117,109,98,110,97,105,108,34,41,41,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,116,104,117,109,98,110,97,105,108,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,109,103,34,41,59,10,32,32,32,32,105,102,32,40,115,109,97,108,108,41,32,123,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,102,105,116,45,115,109,34,41,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,105,109,103,45,116,111,112,32,102,105,116,34,41,59,10,32,32,32,32,125,10,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,44,32,96,116,47,36,123,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,105,110,100,101,120,34,93,125,47,36,123,104,105,116,91,34,95,105,100,34,93,125,96,41,59,10,10,32,32,32,32,105,102,32,40,115,104,111,117,108,100,68,105,115,112,108,97,121,82,97,119,73,109,97,103,101,40,104,105,116,41,41,32,123,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,108,32,61,32,108,105,116,121,40,96,102,47,36,123,104,105,116,91,34,95,105,100,34,93,125,35,46,106,112,103,96,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,115,99,114,111,108,108,34,44,32,40,41,32,61,62,32,108,46,99,108,111,115,101,40,41,41,59,10,32,32,32,32,32,32,32,32,125,41,59,10,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,112,111,105,110,116,101,114,34,41,59,10,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,104,111,117,108,100,80,108,97,121,86,105,100,101,111,40,104,105,116,41,41,32,123,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,108,105,116,121,40,96,102,47,36,123,104,105,116,91,34,95,105,100,34,93,125,35,46,109,112,52,96,41,41,59,10,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,112,111,105,110,116,101,114,34,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,33,115,109,97,108,108,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,112,108,97,121,79,118,101,114,108,97,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,112,108,97,121,79,118,101,114,108,97,121,46,105,110,110,101,114,72,84,77,76,32,61,32,39,60,115,118,103,32,118,105,101,119,66,111,120,61,34,48,32,48,32,52,57,52,46,57,52,50,32,52,57,52,46,57,52,50,34,32,120,109,108,110,115,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,62,60,112,97,116,104,32,100,61,34,109,51,53,46,51,53,51,32,48,32,52,50,52,46,50,51,54,32,50,52,55,46,52,55,49,45,52,50,52,46,50,51,54,32,50,52,55,46,52,55,49,122,34,47,62,60,47,115,118,103,62,39,59,10,32,32,32,32,32,32,32,32,32,32,32,32,112,108,97,121,79,118,101,114,108,97,121,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,112,108,97,121,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,112,114,101,112,101,110,100,40,112,108,97,121,79,118,101,114,108,97,121,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,99,111,110,115,116,32,112,108,97,99,101,104,111,108,100,101,114,32,61,32,109,97,107,101,80,108,97,99,101,104,111,108,100,101,114,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,119,105,100,116,104,34,93,44,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,104,101,105,103,104,116,34,93,44,32,115,109,97,108,108,41,59,10,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,112,108,97,99,101,104,111,108,100,101,114,41,59,10,10,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,101,114,114,111,114,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,114,101,109,111,118,101,40,41,59,10,32,32,32,32,125,41,59,10,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,108,111,97,100,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,112,108,97,99,101,104,111,108,100,101,114,46,114,101,109,111,118,101,40,41,59,10,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,116,104,117,109,98,110,97,105,108,41,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,116,104,117,109,98,110,97,105,108,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,73,110,102,111,66,117,116,116,111,110,40,104,105,116,41,32,123,10,32,32,32,32,99,111,110,115,116,32,105,110,102,111,66,117,116,116,111,110,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,105,110,102,111,66,117,116,116,111,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,105,110,102,111,45,105,99,111,110,34,41,59,10,32,32,32,32,105,110,102,111,66,117,116,116,111,110,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,105,110,102,111,66,117,116,116,111,110,67,98,40,104,105,116,41,41,59,10,32,32,32,32,114,101,116,117,114,110,32,105,110,102,111,66,117,116,116,111,110,59,10,125,10,10,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,68,111,99,76,105,110,101,40,104,105,116,41,32,123,10,10,32,32,32,32,99,111,110,115,116,32,109,105,109,101,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,59,10,32,32,32,32,108,101,116,32,109,105,109,101,67,97,116,101,103,111,114,121,32,61,32,109,105,109,101,32,63,32,109,105,109,101,46,115,112,108,105,116,40,34,47,34,41,91,48,93,32,58,32,110,117,108,108,59,10,32,32,32,32,108,101,116,32,116,97,103,115,32,61,32,103,101,116,84,97,103,115,40,104,105,116,44,32,109,105,109,101,67,97,116,101,103,111,114,121,41,59,10,10,32,32,32,32,108,101,116,32,105,109,103,87,114,97,112,112,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,97,108,105,103,110,45,115,101,108,102,45,115,116,97,114,116,32,109,114,45,49,32,119,114,97,112,112,101,114,45,115,109,34,41,59,10,10,32,32,32,32,108,101,116,32,109,101,100,105,97,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,109,101,100,105,97,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,109,101,100,105,97,34,41,59,10,10,32,32,32,32,99,111,110,115,116,32,108,105,110,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,108,105,110,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,32,102,108,101,120,45,99,111,108,117,109,110,32,97,108,105,103,110,45,105,116,101,109,115,45,115,116,97,114,116,34,41,59,10,10,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,112,97,114,101,110,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,108,105,110,101,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,115,117,98,45,100,111,99,117,109,101,110,116,34,41,59,10,32,32,32,32,32,32,32,32,105,115,83,117,98,68,111,99,117,109,101,110,116,32,61,32,116,114,117,101,59,10,32,32,32,32,125,10,10,32,32,32,32,99,111,110,115,116,32,105,110,102,111,66,117,116,116,111,110,32,61,32,109,97,107,101,73,110,102,111,66,117,116,116,111,110,40,104,105,116,41,59,10,10,32,32,32,32,99,111,110,115,116,32,116,105,116,108,101,32,61,32,109,97,107,101,84,105,116,108,101,40,104,105,116,41,59,10,10,32,32,32,32,108,101,116,32,108,105,110,107,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,10,32,32,32,32,108,105,110,107,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,44,32,34,102,47,34,32,43,32,104,105,116,91,34,95,105,100,34,93,41,59,10,32,32,32,32,108,105,110,107,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,97,114,103,101,116,34,44,32,34,95,98,108,97,110,107,34,41,59,10,32,32,32,32,108,105,110,107,46,115,116,121,108,101,46,109,97,120,87,105,100,116,104,32,61,32,34,99,97,108,99,40,49,48,48,37,32,45,32,49,46,50,114,101,109,41,34,59,10,32,32,32,32,108,105,110,107,46,97,112,112,101,110,100,67,104,105,108,100,40,116,105,116,108,101,41,59,10,10,32,32,32,32,99,111,110,115,116,32,116,105,116,108,101,68,105,118,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,10,32,32,32,32,99,111,110,115,116,32,116,105,116,108,101,87,114,97,112,112,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,115,116,121,108,101,46,100,105,115,112,108,97,121,32,61,32,34,102,108,101,120,34,59,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,105,110,102,111,66,117,116,116,111,110,41,59,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,108,105,110,107,41,59,10,10,32,32,32,32,116,105,116,108,101,68,105,118,46,97,112,112,101,110,100,67,104,105,108,100,40,116,105,116,108,101,87,114,97,112,112,101,114,41,59,10,10,32,32,32,32,108,105,110,101,46,97,112,112,101,110,100,67,104,105,108,100,40,109,101,100,105,97,41,59,10,10,32,32,32,32,108,101,116,32,116,104,117,109,98,110,97,105,108,32,61,32,109,97,107,101,84,104,117,109,98,110,97,105,108,40,109,105,109,101,67,97,116,101,103,111,114,121,44,32,104,105,116,44,32,105,109,103,87,114,97,112,112,101,114,44,32,116,114,117,101,41,59,10,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,41,32,123,10,32,32,32,32,32,32,32,32,109,101,100,105,97,46,97,112,112,101,110,100,67,104,105,108,100,40,105,109,103,87,114,97,112,112,101,114,41,59,10,32,32,32,32,32,32,32,32,116,105,116,108,101,68,105,118,46,115,116,121,108,101,46,109,97,120,87,105,100,116,104,32,61,32,34,99,97,108,99,40,49,48,48,37,32,45,32,54,52,112,120,41,34,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,116,105,116,108,101,68,105,118,46,115,116,121,108,101,46,109,97,120,87,105,100,116,104,32,61,32,34,49,48,48,37,34,59,10,32,32,32,32,125,10,32,32,32,32,109,101,100,105,97,46,97,112,112,101,110,100,67,104,105,108,100,40,116,105,116,108,101,68,105,118,41,59,10,10,32,32,32,32,47,47,32,67,111,110,116,101,110,116,10,32,32,32,32,108,101,116,32,99,111,110,116,101,110,116,72,108,32,61,32,103,101,116,67,111,110,116,101,110,116,72,105,103,104,108,105,103,104,116,40,104,105,116,41,59,10,32,32,32,32,105,102,32,40,99,111,110,116,101,110,116,72,108,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,99,111,110,116,101,110,116,68,105,118,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,68,105,118,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,111,110,116,101,110,116,45,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,68,105,118,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,34,97,102,116,101,114,98,101,103,105,110,34,44,32,99,111,110,116,101,110,116,72,108,41,59,10,32,32,32,32,32,32,32,32,116,105,116,108,101,68,105,118,46,97,112,112,101,110,100,67,104,105,108,100,40,99,111,110,116,101,110,116,68,105,118,41,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,112,97,116,104,76,105,110,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,112,97,116,104,76,105,110,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,112,97,116,104,45,114,111,119,34,41,59,10,10,32,32,32,32,108,101,116,32,112,97,116,104,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,112,97,116,104,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,112,97,116,104,45,108,105,110,101,34,41,59,10,32,32,32,32,112,97,116,104,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,32,43,32,34,47,34,41,59,10,10,32,32,32,32,99,111,110,115,116,32,112,97,116,104,72,105,103,104,108,105,103,104,116,32,61,32,103,101,116,80,97,116,104,72,105,103,104,108,105,103,104,116,40,104,105,116,41,59,10,32,32,32,32,105,102,32,40,112,97,116,104,72,105,103,104,108,105,103,104,116,41,32,123,10,32,32,32,32,32,32,32,32,112,97,116,104,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,34,97,102,116,101,114,98,101,103,105,110,34,44,32,112,97,116,104,72,105,103,104,108,105,103,104,116,32,43,32,34,47,34,41,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,112,97,116,104,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,32,43,32,34,47,34,41,41,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,116,97,103,67,111,110,116,97,105,110,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,116,97,103,45,99,111,110,116,97,105,110,101,114,34,41,59,10,10,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,116,97,103,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,32,32,32,32,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,116,97,103,115,91,105,93,41,59,10,32,32,32,32,125,10,10,32,32,32,32,47,47,83,105,122,101,32,116,97,103,10,32,32,32,32,108,101,116,32,115,105,122,101,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,109,97,108,108,34,41,59,10,32,32,32,32,115,105,122,101,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,117,109,97,110,70,105,108,101,83,105,122,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,115,105,122,101,34,93,41,41,41,59,10,32,32,32,32,115,105,122,101,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,116,101,120,116,45,109,117,116,101,100,34,41,59,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,115,105,122,101,84,97,103,41,59,10,10,32,32,32,32,116,105,116,108,101,68,105,118,46,97,112,112,101,110,100,67,104,105,108,100,40,112,97,116,104,76,105,110,101,41,59,10,32,32,32,32,112,97,116,104,76,105,110,101,46,97,112,112,101,110,100,67,104,105,108,100,40,112,97,116,104,41,59,10,32,32,32,32,112,97,116,104,76,105,110,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,97,103,67,111,110,116,97,105,110,101,114,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,108,105,110,101,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,80,114,101,108,111,97,100,101,114,40,41,32,123,10,32,32,32,32,99,111,110,115,116,32,101,108,101,109,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,101,108,101,109,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,112,114,111,103,114,101,115,115,34,41,59,10,32,32,32,32,99,111,110,115,116,32,98,97,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,98,97,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,112,114,111,103,114,101,115,115,45,98,97,114,32,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,100,32,112,114,111,103,114,101,115,115,45,98,97,114,45,97,110,105,109,97,116,101,100,34,41,59,10,32,32,32,32,98,97,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,32,34,119,105,100,116,104,58,32,49,48,48,37,34,41,59,10,32,32,32,32,101,108,101,109,46,97,112,112,101,110,100,67,104,105,108,100,40,98,97,114,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,101,108,101,109,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,80,97,103,101,73,110,100,105,99,97,116,111,114,40,115,101,97,114,99,104,82,101,115,117,108,116,41,32,123,10,32,32,32,32,108,101,116,32,112,97,103,101,73,110,100,105,99,97,116,111,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,112,97,103,101,73,110,100,105,99,97,116,111,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,112,97,103,101,45,105,110,100,105,99,97,116,111,114,32,102,111,110,116,45,119,101,105,103,104,116,45,108,105,103,104,116,34,41,59,10,32,32,32,32,99,111,110,115,116,32,116,111,116,97,108,72,105,116,115,32,61,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,116,111,116,97,108,95,99,111,117,110,116,34,93,91,34,118,97,108,117,101,34,93,59,10,32,32,32,32,112,97,103,101,73,110,100,105,99,97,116,111,114,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,100,111,99,67,111,117,110,116,32,43,32,34,32,47,32,34,32,43,32,116,111,116,97,108,72,105,116,115,41,41,59,10,32,32,32,32,114,101,116,117,114,110,32,112,97,103,101,73,110,100,105,99,97,116,111,114,59,10,125,10,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,83,116,97,116,115,67,97,114,100,40,115,101,97,114,99,104,82,101,115,117,108,116,41,32,123,10,10,32,32,32,32,108,101,116,32,115,116,97,116,115,67,97,114,100,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,115,116,97,116,115,67,97,114,100,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,32,115,116,97,116,34,41,59,10,32,32,32,32,108,101,116,32,115,116,97,116,115,67,97,114,100,66,111,100,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,98,111,100,121,34,41,59,10,10,32,32,32,32,47,47,32,83,116,97,116,115,10,32,32,32,32,108,101,116,32,115,116,97,116,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,99,111,110,115,116,32,116,111,116,97,108,72,105,116,115,32,61,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,116,111,116,97,108,95,99,111,117,110,116,34,93,91,34,118,97,108,117,101,34,93,59,10,32,32,32,32,115,116,97,116,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,116,111,116,97,108,72,105,116,115,32,43,32,34,32,114,101,115,117,108,116,115,32,105,110,32,34,32,43,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,116,111,111,107,34,93,32,43,32,34,109,115,34,41,41,59,10,10,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,115,116,97,116,41,59,10,10,32,32,32,32,47,47,32,68,105,115,112,108,97,121,32,109,111,100,101,10,32,32,32,32,99,111,110,115,116,32,114,101,115,117,108,116,77,111,100,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,116,110,45,103,114,111,117,112,32,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,34,41,59,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,116,111,103,103,108,101,34,44,32,34,98,117,116,116,111,110,115,34,41,59,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,115,116,121,108,101,46,99,115,115,70,108,111,97,116,32,61,32,34,114,105,103,104,116,34,59,10,10,32,32,32,32,99,111,110,115,116,32,108,105,115,116,77,111,100,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,108,97,98,101,108,34,41,59,10,32,32,32,32,108,105,115,116,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,116,110,32,98,116,110,45,112,114,105,109,97,114,121,34,41,59,10,32,32,32,32,108,105,115,116,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,34,76,105,115,116,32,109,111,100,101,34,41,59,10,32,32,32,32,108,105,115,116,77,111,100,101,46,105,110,110,101,114,72,84,77,76,32,61,32,39,60,115,118,103,32,119,105,100,116,104,61,34,50,48,112,120,34,32,104,101,105,103,104,116,61,34,50,48,112,120,34,32,114,111,108,101,61,34,105,109,103,34,32,120,109,108,110,115,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,32,118,105,101,119,66,111,120,61,34,48,32,48,32,53,49,50,32,53,49,50,34,62,60,112,97,116,104,32,102,105,108,108,61,34,99,117,114,114,101,110,116,67,111,108,111,114,34,32,100,61,34,77,56,48,32,51,54,56,72,49,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,54,52,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,45,51,50,48,72,49,54,65,49,54,32,49,54,32,48,32,48,32,48,32,48,32,54,52,118,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,86,54,52,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,32,49,54,48,72,49,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,54,52,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,52,49,54,32,49,55,54,72,49,55,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,51,50,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,51,50,48,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,51,50,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,45,51,50,48,72,49,55,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,51,50,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,51,50,48,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,86,56,48,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,32,49,54,48,72,49,55,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,51,50,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,51,50,48,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,51,50,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,34,62,60,47,112,97,116,104,62,60,47,115,118,103,62,39,59,10,10,32,32,32,32,99,111,110,115,116,32,103,114,105,100,77,111,100,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,108,97,98,101,108,34,41,59,10,32,32,32,32,103,114,105,100,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,116,110,32,98,116,110,45,112,114,105,109,97,114,121,34,41,59,10,32,32,32,32,103,114,105,100,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,34,71,114,105,100,32,109,111,100,101,34,41,59,10,32,32,32,32,103,114,105,100,77,111,100,101,46,105,110,110,101,114,72,84,77,76,32,61,32,39,60,115,118,103,32,119,105,100,116,104,61,34,50,48,112,120,34,32,104,101,105,103,104,116,61,34,50,48,112,120,34,32,114,111,108,101,61,34,105,109,103,34,32,120,109,108,110,115,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,32,118,105,101,119,66,111,120,61,34,48,32,48,32,53,49,50,32,53,49,50,34,62,60,112,97,116,104,32,102,105,108,108,61,34,99,117,114,114,101,110,116,67,111,108,111,114,34,32,100,61,34,77,49,52,57,46,51,51,51,32,53,54,118,56,48,99,48,32,49,51,46,50,53,53,45,49,48,46,55,52,53,32,50,52,45,50,52,32,50,52,72,50,52,99,45,49,51,46,50,53,53,32,48,45,50,52,45,49,48,46,55,52,53,45,50,52,45,50,52,86,53,54,99,48,45,49,51,46,50,53,53,32,49,48,46,55,52,53,45,50,52,32,50,52,45,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,32,49,48,46,55,52,53,32,50,52,32,50,52,122,109,49,56,49,46,51,51,52,32,50,52,48,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,48,53,46,51,51,51,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,54,32,48,32,50,52,46,48,48,49,45,49,48,46,55,52,53,32,50,52,46,48,48,49,45,50,52,122,109,51,50,45,50,52,48,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,72,52,56,56,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,86,53,54,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,51,56,54,46,54,54,55,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,122,109,45,51,50,32,56,48,86,53,54,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,48,53,46,51,51,51,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,54,32,48,32,50,52,46,48,48,49,45,49,48,46,55,52,53,32,50,52,46,48,48,49,45,50,52,122,109,45,50,48,53,46,51,51,52,32,53,54,72,50,52,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,122,77,48,32,51,55,54,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,52,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,122,109,51,56,54,46,54,54,55,45,53,54,72,52,56,56,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,51,56,54,46,54,54,55,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,122,109,48,32,49,54,48,72,52,56,56,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,51,56,54,46,54,54,55,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,122,77,49,56,49,46,51,51,51,32,51,55,54,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,48,53,46,51,51,51,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,122,34,62,60,47,112,97,116,104,62,60,47,115,118,103,62,39,59,10,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,103,114,105,100,77,111,100,101,41,59,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,108,105,115,116,77,111,100,101,41,59,10,10,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,61,61,32,34,103,114,105,100,34,41,32,123,10,32,32,32,32,32,32,32,32,103,114,105,100,77,111,100,101,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,97,99,116,105,118,101,34,41,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,108,105,115,116,77,111,100,101,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,97,99,116,105,118,101,34,41,10,32,32,32,32,125,10,10,32,32,32,32,103,114,105,100,77,111,100,101,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,32,34,103,114,105,100,34,59,10,32,32,32,32,32,32,32,32,67,79,78,70,46,115,97,118,101,40,41,59,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,125,41,59,10,32,32,32,32,108,105,115,116,77,111,100,101,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,32,34,108,105,115,116,34,59,10,32,32,32,32,32,32,32,32,67,79,78,70,46,115,97,118,101,40,41,59,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,114,101,115,117,108,116,77,111,100,101,41,59,10,10,32,32,32,32,47,47,32,83,111,114,116,32,109,111,100,101,10,32,32,32,32,99,111,110,115,116,32,115,111,114,116,77,111,100,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,100,114,111,112,100,111,119,110,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,46,115,116,121,108,101,46,99,115,115,70,108,111,97,116,32,61,32,34,114,105,103,104,116,34,59,10,32,32,32,32,115,111,114,116,77,111,100,101,46,115,116,121,108,101,46,109,97,114,103,105,110,82,105,103,104,116,32,61,32,34,49,48,112,120,34,59,10,10,32,32,32,32,99,111,110,115,116,32,115,111,114,116,77,111,100,101,66,116,110,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,98,117,116,116,111,110,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,116,110,32,98,116,110,45,109,100,32,98,116,110,45,112,114,105,109,97,114,121,32,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,44,32,34,115,111,114,116,77,111,100,101,66,116,110,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,32,34,98,117,116,116,111,110,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,116,111,103,103,108,101,34,44,32,34,100,114,111,112,100,111,119,110,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,104,97,115,112,111,112,117,112,34,44,32,34,116,114,117,101,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,32,34,102,97,108,115,101,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,34,83,111,114,116,32,111,112,116,105,111,110,115,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,105,110,110,101,114,72,84,77,76,32,61,32,39,60,115,118,103,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,32,119,105,100,116,104,61,34,50,48,112,120,34,32,104,101,105,103,104,116,61,34,50,48,112,120,34,32,120,109,108,110,115,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,32,118,105,101,119,66,111,120,61,34,48,32,48,32,51,50,48,32,53,49,50,34,62,60,112,97,116,104,32,102,105,108,108,61,34,99,117,114,114,101,110,116,67,111,108,111,114,34,32,100,61,34,77,52,49,32,50,56,56,104,50,51,56,99,50,49,46,52,32,48,32,51,50,46,49,32,50,53,46,57,32,49,55,32,52,49,76,49,55,55,32,52,52,56,99,45,57,46,52,32,57,46,52,45,50,52,46,54,32,57,46,52,45,51,51,46,57,32,48,76,50,52,32,51,50,57,99,45,49,53,46,49,45,49,53,46,49,45,52,46,52,45,52,49,32,49,55,45,52,49,122,109,50,53,53,45,49,48,53,76,49,55,55,32,54,52,99,45,57,46,52,45,57,46,52,45,50,52,46,54,45,57,46,52,45,51,51,46,57,32,48,76,50,52,32,49,56,51,99,45,49,53,46,49,32,49,53,46,49,45,52,46,52,32,52,49,32,49,55,32,52,49,104,50,51,56,99,50,49,46,52,32,48,32,51,50,46,49,45,50,53,46,57,32,49,55,45,52,49,122,34,62,60,47,112,97,116,104,62,60,47,115,118,103,62,39,59,10,10,32,32,32,32,99,111,110,115,116,32,115,111,114,116,77,111,100,101,77,101,110,117,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,77,101,110,117,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,100,114,111,112,100,111,119,110,45,109,101,110,117,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,77,101,110,117,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,34,44,32,34,115,111,114,116,77,111,100,101,66,116,110,34,41,59,10,10,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,83,79,82,84,95,77,79,68,69,83,41,46,102,111,114,69,97,99,104,40,109,111,100,101,32,61,62,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,105,116,101,109,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,105,116,101,109,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,100,114,111,112,100,111,119,110,45,105,116,101,109,34,41,59,10,32,32,32,32,32,32,32,32,105,116,101,109,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,83,79,82,84,95,77,79,68,69,83,91,109,111,100,101,93,46,116,101,120,116,41,41,59,10,32,32,32,32,32,32,32,32,115,111,114,116,77,111,100,101,77,101,110,117,46,97,112,112,101,110,100,67,104,105,108,100,40,105,116,101,109,41,59,10,10,32,32,32,32,32,32,32,32,105,116,101,109,46,111,110,99,108,105,99,107,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,115,111,114,116,32,61,32,109,111,100,101,59,10,32,32,32,32,32,32,32,32,32,32,32,32,67,79,78,70,46,115,97,118,101,40,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,32,32,32,32,125,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,115,111,114,116,77,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,115,111,114,116,77,111,100,101,66,116,110,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,115,111,114,116,77,111,100,101,77,101,110,117,41,59,10,10,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,115,111,114,116,77,111,100,101,41,59,10,10,32,32,32,32,105,102,32,40,116,111,116,97,108,72,105,116,115,32,33,61,61,32,48,41,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,115,105,122,101,83,116,97,116,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,115,105,122,101,83,116,97,116,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,117,109,97,110,70,105,108,101,83,105,122,101,40,115,101,97,114,99,104,82,101,115,117,108,116,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,116,111,116,97,108,95,115,105,122,101,34,93,91,34,118,97,108,117,101,34,93,41,41,41,59,10,32,32,32,32,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,115,105,122,101,83,116,97,116,41,59,10,32,32,32,32,125,10,10,32,32,32,32,115,116,97,116,115,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,115,116,97,116,115,67,97,114,100,66,111,100,121,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,115,116,97,116,115,67,97,114,100,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,82,101,115,117,108,116,67,111,110,116,97,105,110,101,114,40,41,32,123,10,32,32,32,32,108,101,116,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,10,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,61,61,32,34,103,114,105,100,34,41,32,123,10,32,32,32,32,32,32,32,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,114,105,99,107,108,97,121,101,114,34,41,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,108,105,115,116,45,103,114,111,117,112,34,41,59,10,32,32,32,32,125,10,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,59,10,125,10}; +char search_js[15846] = {99,111,110,115,116,32,83,73,90,69,32,61,32,52,48,59,10,108,101,116,32,109,105,109,101,77,97,112,32,61,32,91,93,59,10,108,101,116,32,116,97,103,77,97,112,32,61,32,91,93,59,10,108,101,116,32,109,105,109,101,84,114,101,101,59,10,108,101,116,32,116,97,103,84,114,101,101,59,10,10,108,101,116,32,115,101,97,114,99,104,66,97,114,32,61,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,115,101,97,114,99,104,66,97,114,34,41,59,10,108,101,116,32,112,97,116,104,66,97,114,32,61,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,112,97,116,104,66,97,114,34,41,59,10,108,101,116,32,108,97,115,116,68,111,99,32,61,32,110,117,108,108,59,10,108,101,116,32,114,101,97,99,104,101,100,69,110,100,32,61,32,102,97,108,115,101,59,10,108,101,116,32,100,111,99,67,111,117,110,116,32,61,32,48,59,10,108,101,116,32,99,111,111,108,105,110,103,68,111,119,110,32,61,32,102,97,108,115,101,59,10,108,101,116,32,115,101,97,114,99,104,66,117,115,121,32,61,32,116,114,117,101,59,10,108,101,116,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,32,61,32,91,93,59,10,108,101,116,32,105,110,100,101,120,77,97,112,32,61,32,123,125,59,10,10,108,101,116,32,115,105,122,101,95,109,105,110,32,61,32,48,59,10,108,101,116,32,115,105,122,101,95,109,97,120,32,61,32,49,48,48,48,48,48,48,48,48,48,48,48,48,48,59,10,10,108,101,116,32,100,97,116,101,95,109,105,110,32,61,32,110,117,108,108,59,10,108,101,116,32,100,97,116,101,95,109,97,120,32,61,32,110,117,108,108,59,10,10,83,79,82,84,95,77,79,68,69,83,32,61,32,123,10,32,32,32,32,115,99,111,114,101,58,32,123,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,82,101,108,101,118,97,110,99,101,34,44,10,32,32,32,32,32,32,32,32,109,111,100,101,58,32,91,10,32,32,32,32,32,32,32,32,32,32,32,32,123,95,115,99,111,114,101,58,32,123,111,114,100,101,114,58,32,34,100,101,115,99,34,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,123,95,116,105,101,58,32,123,111,114,100,101,114,58,32,34,97,115,99,34,125,125,10,32,32,32,32,32,32,32,32,93,44,10,32,32,32,32,32,32,32,32,107,101,121,58,32,104,105,116,32,61,62,32,104,105,116,91,34,95,115,99,111,114,101,34,93,10,32,32,32,32,125,44,10,32,32,32,32,100,97,116,101,95,97,115,99,58,32,123,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,68,97,116,101,32,40,65,115,99,101,110,100,105,110,103,41,34,44,32,109,111,100,101,58,32,91,10,32,32,32,32,32,32,32,32,32,32,32,32,123,109,116,105,109,101,58,32,123,111,114,100,101,114,58,32,34,97,115,99,34,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,123,95,116,105,101,58,32,123,111,114,100,101,114,58,32,34,97,115,99,34,125,125,10,32,32,32,32,32,32,32,32,93,44,10,32,32,32,32,32,32,32,32,107,101,121,58,32,104,105,116,32,61,62,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,116,105,109,101,34,93,10,32,32,32,32,125,44,10,32,32,32,32,100,97,116,101,95,100,101,115,99,58,32,123,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,68,97,116,101,32,40,68,101,115,99,101,110,100,105,110,103,41,34,44,32,109,111,100,101,58,32,91,10,32,32,32,32,32,32,32,32,32,32,32,32,123,109,116,105,109,101,58,32,123,111,114,100,101,114,58,32,34,100,101,115,99,34,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,123,95,116,105,101,58,32,123,111,114,100,101,114,58,32,34,97,115,99,34,125,125,10,32,32,32,32,32,32,32,32,93,44,10,32,32,32,32,32,32,32,32,107,101,121,58,32,104,105,116,32,61,62,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,116,105,109,101,34,93,10,32,32,32,32,125,44,10,32,32,32,32,115,105,122,101,95,97,115,99,58,32,123,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,83,105,122,101,32,40,65,115,99,101,110,100,105,110,103,41,34,44,32,109,111,100,101,58,32,91,10,32,32,32,32,32,32,32,32,32,32,32,32,123,115,105,122,101,58,32,123,111,114,100,101,114,58,32,34,97,115,99,34,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,123,95,116,105,101,58,32,123,111,114,100,101,114,58,32,34,97,115,99,34,125,125,10,32,32,32,32,32,32,32,32,93,44,10,32,32,32,32,32,32,32,32,107,101,121,58,32,104,105,116,32,61,62,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,115,105,122,101,34,93,10,32,32,32,32,125,44,10,32,32,32,32,115,105,122,101,95,100,101,115,99,58,32,123,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,83,105,122,101,32,40,68,101,115,99,101,110,100,105,110,103,41,34,44,32,109,111,100,101,58,32,91,10,32,32,32,32,32,32,32,32,32,32,32,32,123,115,105,122,101,58,32,123,111,114,100,101,114,58,32,34,100,101,115,99,34,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,123,95,116,105,101,58,32,123,111,114,100,101,114,58,32,34,97,115,99,34,125,125,10,32,32,32,32,32,32,32,32,93,44,10,32,32,32,32,32,32,32,32,107,101,121,58,32,104,105,116,32,61,62,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,115,105,122,101,34,93,10,32,32,32,32,125,44,10,125,59,10,10,102,117,110,99,116,105,111,110,32,115,104,111,119,69,115,69,114,114,111,114,40,41,32,123,10,32,32,32,32,36,46,116,111,97,115,116,40,123,10,32,32,32,32,32,32,32,32,104,101,97,100,105,110,103,58,32,34,69,108,97,115,116,105,99,115,101,97,114,99,104,32,99,111,110,110,101,99,116,105,111,110,32,101,114,114,111,114,34,44,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,115,105,115,116,50,32,119,101,98,32,109,111,100,117,108,101,32,101,110,99,111,117,110,116,101,114,101,100,32,97,110,32,101,114,114,111,114,32,119,104,105,108,101,32,99,111,110,110,101,99,116,105,110,103,32,34,32,43,10,32,32,32,32,32,32,32,32,32,32,32,32,34,116,111,32,69,108,97,115,116,105,99,115,101,97,114,99,104,46,32,83,101,101,32,115,101,114,118,101,114,32,108,111,103,115,32,102,111,114,32,109,111,114,101,32,105,110,102,111,114,109,97,116,105,111,110,46,34,44,10,32,32,32,32,32,32,32,32,115,116,97,99,107,58,32,102,97,108,115,101,44,10,32,32,32,32,32,32,32,32,98,103,67,111,108,111,114,58,32,34,35,97,57,52,52,52,50,34,44,10,32,32,32,32,32,32,32,32,116,101,120,116,67,111,108,111,114,58,32,34,35,102,50,100,101,100,101,34,44,10,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,58,32,39,98,111,116,116,111,109,45,114,105,103,104,116,39,44,10,32,32,32,32,32,32,32,32,104,105,100,101,65,102,116,101,114,58,32,102,97,108,115,101,10,32,32,32,32,125,41,59,10,125,10,10,119,105,110,100,111,119,46,111,110,108,111,97,100,32,61,32,40,41,32,61,62,32,123,10,32,32,32,32,67,79,78,70,46,108,111,97,100,40,41,59,10,125,59,10,10,102,117,110,99,116,105,111,110,32,116,111,103,103,108,101,70,117,122,122,121,40,41,32,123,10,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,125,10,10,36,46,106,115,111,110,80,111,115,116,40,34,105,34,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,10,10,32,32,32,32,99,111,110,115,116,32,117,114,108,73,110,100,105,99,101,115,32,61,32,40,110,101,119,32,85,82,76,83,101,97,114,99,104,80,97,114,97,109,115,40,108,111,99,97,116,105,111,110,46,115,101,97,114,99,104,41,41,46,103,101,116,40,34,105,34,41,59,10,32,32,32,32,114,101,115,112,91,34,105,110,100,105,99,101,115,34,93,46,102,111,114,69,97,99,104,40,105,100,120,32,61,62,32,123,10,32,32,32,32,32,32,32,32,105,110,100,101,120,77,97,112,91,105,100,120,46,105,100,93,32,61,32,105,100,120,46,110,97,109,101,59,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,111,112,116,32,61,32,36,40,34,60,111,112,116,105,111,110,62,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,118,97,108,117,101,34,44,32,105,100,120,46,105,100,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,105,100,120,46,110,97,109,101,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,117,114,108,73,110,100,105,99,101,115,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,117,114,108,73,110,100,105,99,101,115,46,115,112,108,105,116,40,34,44,34,41,46,105,110,100,101,120,79,102,40,105,100,120,46,110,97,109,101,41,32,33,61,61,32,45,49,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,46,97,116,116,114,40,34,115,101,108,101,99,116,101,100,34,44,32,116,114,117,101,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,112,117,115,104,40,105,100,120,46,105,100,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,105,100,120,46,110,97,109,101,46,105,110,99,108,117,100,101,115,40,34,40,110,115,102,119,41,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,46,97,116,116,114,40,34,115,101,108,101,99,116,101,100,34,44,32,116,114,117,101,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,112,117,115,104,40,105,100,120,46,105,100,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,36,40,34,35,105,110,100,105,99,101,115,34,41,46,97,112,112,101,110,100,40,111,112,116,41,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,99,114,101,97,116,101,80,97,116,104,84,114,101,101,40,34,35,112,97,116,104,84,114,101,101,34,41,59,10,125,41,59,10,10,102,117,110,99,116,105,111,110,32,103,101,116,68,111,99,117,109,101,110,116,73,110,102,111,40,105,100,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,36,46,103,101,116,74,83,79,78,40,34,100,47,34,32,43,32,105,100,41,46,102,97,105,108,40,101,32,61,62,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,101,41,59,10,32,32,32,32,32,32,32,32,115,104,111,119,69,115,69,114,114,111,114,40,41,59,10,32,32,32,32,125,41,10,125,10,10,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,40,116,114,101,101,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,40,110,111,100,101,44,32,101,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,101,32,33,61,61,32,34,99,104,101,99,107,101,100,34,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,105,100,32,61,61,61,32,34,97,110,121,34,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,110,111,100,101,46,105,116,114,101,101,46,115,116,97,116,101,46,99,104,101,99,107,101,100,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,100,101,115,101,108,101,99,116,40,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,110,111,100,101,40,34,97,110,121,34,41,46,100,101,115,101,108,101,99,116,40,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,125,10,125,10,10,36,46,106,115,111,110,80,111,115,116,40,34,101,115,34,44,32,123,10,32,32,32,32,97,103,103,115,58,32,123,10,32,32,32,32,32,32,32,32,109,105,109,101,84,121,112,101,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,101,114,109,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,34,109,105,109,101,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,49,48,48,48,48,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,44,10,32,32,32,32,115,105,122,101,58,32,48,44,10,125,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,10,32,32,32,32,114,101,115,112,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,109,105,109,101,84,121,112,101,115,34,93,91,34,98,117,99,107,101,116,115,34,93,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,97,46,107,101,121,32,62,32,98,46,107,101,121,41,46,102,111,114,69,97,99,104,40,98,117,99,107,101,116,32,61,62,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,116,109,112,32,61,32,98,117,99,107,101,116,91,34,107,101,121,34,93,46,115,112,108,105,116,40,34,47,34,41,59,10,32,32,32,32,32,32,32,32,108,101,116,32,99,97,116,101,103,111,114,121,32,61,32,116,109,112,91,48,93,59,10,32,32,32,32,32,32,32,32,108,101,116,32,109,105,109,101,32,61,32,116,109,112,91,49,93,59,10,10,32,32,32,32,32,32,32,32,108,101,116,32,99,97,116,101,103,111,114,121,95,101,120,105,115,116,115,32,61,32,102,97,108,115,101,59,10,10,32,32,32,32,32,32,32,32,108,101,116,32,99,104,105,108,100,32,61,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,34,105,100,34,58,32,98,117,99,107,101,116,91,34,107,101,121,34,93,44,10,32,32,32,32,32,32,32,32,32,32,32,32,34,116,101,120,116,34,58,32,96,36,123,109,105,109,101,125,32,40,36,123,98,117,99,107,101,116,91,34,100,111,99,95,99,111,117,110,116,34,93,125,41,96,10,32,32,32,32,32,32,32,32,125,59,10,10,32,32,32,32,32,32,32,32,109,105,109,101,77,97,112,46,102,111,114,69,97,99,104,40,110,111,100,101,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,116,101,120,116,32,61,61,61,32,99,97,116,101,103,111,114,121,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,99,104,105,108,100,114,101,110,46,112,117,115,104,40,99,104,105,108,100,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,116,101,103,111,114,121,95,101,120,105,115,116,115,32,61,32,116,114,117,101,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,33,99,97,116,101,103,111,114,121,95,101,120,105,115,116,115,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,109,105,109,101,77,97,112,46,112,117,115,104,40,123,34,116,101,120,116,34,58,32,99,97,116,101,103,111,114,121,44,32,99,104,105,108,100,114,101,110,58,32,91,99,104,105,108,100,93,125,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,41,59,10,32,32,32,32,109,105,109,101,77,97,112,46,112,117,115,104,40,123,34,116,101,120,116,34,58,32,34,65,108,108,34,44,32,34,105,100,34,58,32,34,97,110,121,34,125,41,59,10,10,32,32,32,32,109,105,109,101,84,114,101,101,32,61,32,110,101,119,32,73,110,115,112,105,114,101,84,114,101,101,40,123,10,32,32,32,32,32,32,32,32,115,101,108,101,99,116,105,111,110,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,109,111,100,101,58,32,39,99,104,101,99,107,98,111,120,39,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,100,97,116,97,58,32,109,105,109,101,77,97,112,10,32,32,32,32,125,41,59,10,32,32,32,32,110,101,119,32,73,110,115,112,105,114,101,84,114,101,101,68,79,77,40,109,105,109,101,84,114,101,101,44,32,123,10,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,39,35,109,105,109,101,84,114,101,101,39,10,32,32,32,32,125,41,59,10,32,32,32,32,109,105,109,101,84,114,101,101,46,111,110,40,34,110,111,100,101,46,115,116,97,116,101,46,99,104,97,110,103,101,100,34,44,32,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,40,109,105,109,101,84,114,101,101,41,41,59,10,32,32,32,32,109,105,109,101,84,114,101,101,46,100,101,115,101,108,101,99,116,40,41,59,10,32,32,32,32,109,105,109,101,84,114,101,101,46,110,111,100,101,40,34,97,110,121,34,41,46,115,101,108,101,99,116,40,41,59,10,125,41,59,10,10,47,47,32,84,97,103,115,32,116,114,101,101,10,36,46,106,115,111,110,80,111,115,116,40,34,101,115,34,44,32,123,10,32,32,32,32,97,103,103,115,58,32,123,10,32,32,32,32,32,32,32,32,116,97,103,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,101,114,109,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,34,116,97,103,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,49,48,48,48,48,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,44,10,32,32,32,32,115,105,122,101,58,32,48,44,10,125,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,10,32,32,32,32,114,101,115,112,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,116,97,103,115,34,93,91,34,98,117,99,107,101,116,115,34,93,10,32,32,32,32,32,32,32,32,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,97,91,34,107,101,121,34,93,46,108,111,99,97,108,101,67,111,109,112,97,114,101,40,98,91,34,107,101,121,34,93,41,41,10,32,32,32,32,32,32,32,32,46,102,111,114,69,97,99,104,40,98,117,99,107,101,116,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,84,97,103,40,116,97,103,77,97,112,44,32,98,117,99,107,101,116,91,34,107,101,121,34,93,44,32,98,117,99,107,101,116,91,34,107,101,121,34,93,44,32,98,117,99,107,101,116,91,34,100,111,99,95,99,111,117,110,116,34,93,41,10,32,32,32,32,32,32,32,32,125,41,59,10,10,32,32,32,32,116,97,103,77,97,112,46,112,117,115,104,40,123,34,116,101,120,116,34,58,32,34,65,108,108,34,44,32,34,105,100,34,58,32,34,97,110,121,34,125,41,59,10,32,32,32,32,116,97,103,84,114,101,101,32,61,32,110,101,119,32,73,110,115,112,105,114,101,84,114,101,101,40,123,10,32,32,32,32,32,32,32,32,115,101,108,101,99,116,105,111,110,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,109,111,100,101,58,32,39,99,104,101,99,107,98,111,120,39,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,100,97,116,97,58,32,116,97,103,77,97,112,10,32,32,32,32,125,41,59,10,32,32,32,32,110,101,119,32,73,110,115,112,105,114,101,84,114,101,101,68,79,77,40,116,97,103,84,114,101,101,44,32,123,10,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,39,35,116,97,103,84,114,101,101,39,10,32,32,32,32,125,41,59,10,32,32,32,32,116,97,103,84,114,101,101,46,111,110,40,34,110,111,100,101,46,115,116,97,116,101,46,99,104,97,110,103,101,100,34,44,32,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,40,116,97,103,84,114,101,101,41,41,59,10,32,32,32,32,116,97,103,84,114,101,101,46,110,111,100,101,40,34,97,110,121,34,41,46,115,101,108,101,99,116,40,41,59,10,32,32,32,32,115,101,97,114,99,104,66,117,115,121,32,61,32,102,97,108,115,101,59,10,125,41,59,10,10,102,117,110,99,116,105,111,110,32,97,100,100,84,97,103,40,109,97,112,44,32,116,97,103,44,32,105,100,44,32,99,111,117,110,116,41,32,123,10,32,32,32,32,108,101,116,32,116,97,103,115,32,61,32,116,97,103,46,115,112,108,105,116,40,34,35,34,41,91,48,93,46,115,112,108,105,116,40,34,46,34,41,59,10,10,32,32,32,32,108,101,116,32,99,104,105,108,100,32,61,32,123,10,32,32,32,32,32,32,32,32,105,100,58,32,105,100,44,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,97,103,115,46,108,101,110,103,116,104,32,33,61,61,32,49,32,63,32,116,97,103,115,91,48,93,32,58,32,96,36,123,116,97,103,115,91,48,93,125,32,40,36,123,99,111,117,110,116,125,41,96,44,10,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,58,32,91,93,10,32,32,32,32,125,59,10,10,32,32,32,32,108,101,116,32,102,111,117,110,100,32,61,32,102,97,108,115,101,59,10,32,32,32,32,109,97,112,46,102,111,114,69,97,99,104,40,110,111,100,101,32,61,62,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,116,101,120,116,32,61,61,61,32,99,104,105,108,100,46,116,101,120,116,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,102,111,117,110,100,32,61,32,116,114,117,101,59,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,97,103,115,46,108,101,110,103,116,104,32,33,61,61,32,49,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,84,97,103,40,110,111,100,101,46,99,104,105,108,100,114,101,110,44,32,116,97,103,115,46,115,108,105,99,101,40,49,41,46,106,111,105,110,40,34,46,34,41,44,32,105,100,44,32,99,111,117,110,116,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,41,59,10,32,32,32,32,105,102,32,40,33,102,111,117,110,100,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,116,97,103,115,46,108,101,110,103,116,104,32,33,61,61,32,49,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,84,97,103,40,99,104,105,108,100,46,99,104,105,108,100,114,101,110,44,32,116,97,103,115,46,115,108,105,99,101,40,49,41,46,106,111,105,110,40,34,46,34,41,44,32,105,100,44,32,99,111,117,110,116,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,109,97,112,46,112,117,115,104,40,99,104,105,108,100,41,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,109,97,112,46,112,117,115,104,40,99,104,105,108,100,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,125,10,10,102,117,110,99,116,105,111,110,32,105,110,115,101,114,116,72,105,116,115,40,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,44,32,104,105,116,115,41,32,123,10,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,104,105,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,10,32,32,32,32,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,61,61,32,34,103,114,105,100,34,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,46,95,98,114,105,99,107,46,97,112,112,101,110,100,40,99,114,101,97,116,101,68,111,99,67,97,114,100,40,104,105,116,115,91,105,93,41,41,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,99,114,101,97,116,101,68,111,99,76,105,110,101,40,104,105,116,115,91,105,93,41,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,100,111,99,67,111,117,110,116,43,43,59,10,32,32,32,32,125,10,125,10,10,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,115,99,114,111,108,108,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,105,102,32,40,33,115,101,97,114,99,104,66,117,115,121,41,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,116,104,114,101,115,104,111,108,100,32,61,32,52,48,48,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,40,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,32,43,32,119,105,110,100,111,119,46,115,99,114,111,108,108,89,41,32,62,61,32,100,111,99,117,109,101,110,116,46,98,111,100,121,46,111,102,102,115,101,116,72,101,105,103,104,116,32,45,32,116,104,114,101,115,104,111,108,100,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,114,101,97,99,104,101,100,69,110,100,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,111,108,105,110,103,68,111,119,110,32,61,32,116,114,117,101,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,40,108,97,115,116,68,111,99,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,125,41,59,10,10,102,117,110,99,116,105,111,110,32,103,101,116,83,101,108,101,99,116,101,100,78,111,100,101,115,40,116,114,101,101,41,32,123,10,32,32,32,32,108,101,116,32,115,101,108,101,99,116,101,100,78,111,100,101,115,32,61,32,91,93,59,10,10,32,32,32,32,108,101,116,32,115,101,108,101,99,116,101,100,32,61,32,116,114,101,101,46,115,101,108,101,99,116,101,100,40,41,59,10,10,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,115,101,108,101,99,116,101,100,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,10,32,32,32,32,32,32,32,32,105,102,32,40,115,101,108,101,99,116,101,100,91,105,93,46,105,100,32,61,61,61,32,34,97,110,121,34,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,34,97,110,121,34,93,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,47,47,79,110,108,121,32,103,101,116,32,99,104,105,108,100,114,101,110,10,32,32,32,32,32,32,32,32,105,102,32,40,115,101,108,101,99,116,101,100,91,105,93,46,116,101,120,116,46,105,110,100,101,120,79,102,40,34,40,34,41,32,33,61,61,32,45,49,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,78,111,100,101,115,46,112,117,115,104,40,115,101,108,101,99,116,101,100,91,105,93,46,105,100,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,114,101,116,117,114,110,32,115,101,108,101,99,116,101,100,78,111,100,101,115,10,125,10,10,102,117,110,99,116,105,111,110,32,115,101,97,114,99,104,40,97,102,116,101,114,32,61,32,110,117,108,108,41,32,123,10,32,32,32,32,108,97,115,116,68,111,99,32,61,32,110,117,108,108,59,10,10,32,32,32,32,105,102,32,40,115,101,97,114,99,104,66,117,115,121,41,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,10,32,32,32,32,125,10,32,32,32,32,115,101,97,114,99,104,66,117,115,121,32,61,32,116,114,117,101,59,10,10,32,32,32,32,108,101,116,32,115,101,97,114,99,104,82,101,115,117,108,116,115,32,61,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,115,101,97,114,99,104,82,101,115,117,108,116,115,34,41,59,10,32,32,32,32,47,47,67,108,101,97,114,32,111,108,100,32,115,101,97,114,99,104,32,114,101,115,117,108,116,115,10,32,32,32,32,108,101,116,32,112,114,101,108,111,97,100,59,10,32,32,32,32,105,102,32,40,33,97,102,116,101,114,41,32,123,10,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,115,101,97,114,99,104,82,101,115,117,108,116,115,46,102,105,114,115,116,67,104,105,108,100,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,82,101,115,117,108,116,115,46,114,101,109,111,118,101,67,104,105,108,100,40,115,101,97,114,99,104,82,101,115,117,108,116,115,46,102,105,114,115,116,67,104,105,108,100,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,112,114,101,108,111,97,100,32,61,32,109,97,107,101,80,114,101,108,111,97,100,101,114,40,41,59,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,82,101,115,117,108,116,115,46,97,112,112,101,110,100,67,104,105,108,100,40,112,114,101,108,111,97,100,41,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,113,117,101,114,121,32,61,32,115,101,97,114,99,104,66,97,114,46,118,97,108,117,101,59,10,32,32,32,32,108,101,116,32,101,109,112,116,121,32,61,32,113,117,101,114,121,32,61,61,61,32,34,34,59,10,32,32,32,32,108,101,116,32,99,111,110,100,105,116,105,111,110,32,61,32,101,109,112,116,121,32,63,32,34,115,104,111,117,108,100,34,32,58,32,34,109,117,115,116,34,59,10,32,32,32,32,108,101,116,32,102,105,108,116,101,114,115,32,61,32,91,10,32,32,32,32,32,32,32,32,123,114,97,110,103,101,58,32,123,115,105,122,101,58,32,123,103,116,101,58,32,115,105,122,101,95,109,105,110,44,32,108,116,101,58,32,115,105,122,101,95,109,97,120,125,125,125,44,10,32,32,32,32,32,32,32,32,123,116,101,114,109,115,58,32,123,105,110,100,101,120,58,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,125,125,10,32,32,32,32,93,59,10,32,32,32,32,108,101,116,32,102,105,101,108,100,115,32,61,32,91,10,32,32,32,32,32,32,32,32,34,110,97,109,101,94,56,34,44,10,32,32,32,32,32,32,32,32,34,99,111,110,116,101,110,116,94,51,34,44,10,32,32,32,32,32,32,32,32,34,97,108,98,117,109,94,56,34,44,32,34,97,114,116,105,115,116,94,56,34,44,32,34,116,105,116,108,101,94,56,34,44,32,34,103,101,110,114,101,94,50,34,44,32,34,97,108,98,117,109,95,97,114,116,105,115,116,94,56,34,44,10,32,32,32,32,32,32,32,32,34,102,111,110,116,95,110,97,109,101,94,54,34,10,32,32,32,32,93,59,10,10,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,115,101,97,114,99,104,73,110,80,97,116,104,41,32,123,10,32,32,32,32,32,32,32,32,102,105,101,108,100,115,46,112,117,115,104,40,34,112,97,116,104,46,116,101,120,116,94,53,34,41,59,10,32,32,32,32,125,10,10,32,32,32,32,105,102,32,40,36,40,34,35,102,117,122,122,121,84,111,103,103,108,101,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,41,41,32,123,10,32,32,32,32,32,32,32,32,102,105,101,108,100,115,46,112,117,115,104,40,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,41,59,10,32,32,32,32,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,115,101,97,114,99,104,73,110,80,97,116,104,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,115,46,112,117,115,104,40,34,112,97,116,104,46,110,71,114,97,109,34,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,102,105,101,108,100,115,46,112,117,115,104,40,34,110,97,109,101,46,110,71,114,97,109,94,51,34,41,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,112,97,116,104,32,61,32,112,97,116,104,66,97,114,46,118,97,108,117,101,46,114,101,112,108,97,99,101,40,47,92,47,36,47,44,32,34,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,32,47,47,114,101,109,111,118,101,32,116,114,97,105,108,105,110,103,32,115,108,97,115,104,101,115,10,32,32,32,32,105,102,32,40,112,97,116,104,32,33,61,61,32,34,34,41,32,123,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,91,123,116,101,114,109,58,32,123,112,97,116,104,58,32,112,97,116,104,125,125,93,41,10,32,32,32,32,125,10,32,32,32,32,108,101,116,32,109,105,109,101,84,121,112,101,115,32,61,32,103,101,116,83,101,108,101,99,116,101,100,78,111,100,101,115,40,109,105,109,101,84,114,101,101,41,59,10,32,32,32,32,105,102,32,40,33,109,105,109,101,84,121,112,101,115,46,105,110,99,108,117,100,101,115,40,34,97,110,121,34,41,41,32,123,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,91,123,116,101,114,109,115,58,32,123,34,109,105,109,101,34,58,32,109,105,109,101,84,121,112,101,115,125,125,93,41,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,116,97,103,115,32,61,32,103,101,116,83,101,108,101,99,116,101,100,78,111,100,101,115,40,116,97,103,84,114,101,101,41,59,10,32,32,32,32,105,102,32,40,33,116,97,103,115,46,105,110,99,108,117,100,101,115,40,34,97,110,121,34,41,41,32,123,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,91,123,116,101,114,109,115,58,32,123,34,116,97,103,34,58,32,116,97,103,115,125,125,93,41,59,10,32,32,32,32,125,10,10,32,32,32,32,105,102,32,40,100,97,116,101,95,109,105,110,32,38,38,32,100,97,116,101,95,109,97,120,41,32,123,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,91,123,114,97,110,103,101,58,32,123,109,116,105,109,101,58,32,123,103,116,101,58,32,100,97,116,101,95,109,105,110,44,32,108,116,101,58,32,100,97,116,101,95,109,97,120,125,125,125,93,41,10,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,100,97,116,101,95,109,105,110,41,32,123,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,91,123,114,97,110,103,101,58,32,123,109,116,105,109,101,58,32,123,103,116,101,58,32,100,97,116,101,95,109,105,110,125,125,125,93,41,10,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,100,97,116,101,95,109,97,120,41,32,123,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,91,123,114,97,110,103,101,58,32,123,109,116,105,109,101,58,32,123,108,116,101,58,32,100,97,116,101,95,109,97,120,125,125,125,93,41,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,113,32,61,32,123,10,32,32,32,32,32,32,32,32,34,95,115,111,117,114,99,101,34,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,101,120,99,108,117,100,101,115,58,32,91,34,99,111,110,116,101,110,116,34,44,32,34,95,116,105,101,34,93,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,98,111,111,108,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,99,111,110,100,105,116,105,111,110,93,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,105,109,112,108,101,95,113,117,101,114,121,95,115,116,114,105,110,103,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,113,117,101,114,121,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,115,58,32,102,105,101,108,100,115,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,95,111,112,101,114,97,116,111,114,58,32,34,97,110,100,34,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,58,32,102,105,108,116,101,114,115,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,34,115,111,114,116,34,58,32,83,79,82,84,95,77,79,68,69,83,91,67,79,78,70,46,111,112,116,105,111,110,115,46,115,111,114,116,93,46,109,111,100,101,44,10,32,32,32,32,32,32,32,32,97,103,103,115,58,10,32,32,32,32,32,32,32,32,32,32,32,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,111,116,97,108,95,115,105,122,101,58,32,123,34,115,117,109,34,58,32,123,34,102,105,101,108,100,34,58,32,34,115,105,122,101,34,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,111,116,97,108,95,99,111,117,110,116,58,32,123,34,118,97,108,117,101,95,99,111,117,110,116,34,58,32,123,34,102,105,101,108,100,34,58,32,34,115,105,122,101,34,125,125,10,32,32,32,32,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,115,105,122,101,58,32,83,73,90,69,44,10,32,32,32,32,125,59,10,10,32,32,32,32,105,102,32,40,97,102,116,101,114,41,32,123,10,32,32,32,32,32,32,32,32,113,46,115,101,97,114,99,104,95,97,102,116,101,114,32,61,32,91,83,79,82,84,95,77,79,68,69,83,91,67,79,78,70,46,111,112,116,105,111,110,115,46,115,111,114,116,93,46,107,101,121,40,97,102,116,101,114,41,44,32,97,102,116,101,114,91,34,95,105,100,34,93,93,59,10,32,32,32,32,125,10,10,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,104,105,103,104,108,105,103,104,116,41,32,123,10,32,32,32,32,32,32,32,32,113,46,104,105,103,104,108,105,103,104,116,32,61,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,95,116,97,103,115,58,32,91,34,60,109,97,114,107,62,34,93,44,10,32,32,32,32,32,32,32,32,32,32,32,32,112,111,115,116,95,116,97,103,115,58,32,91,34,60,47,109,97,114,107,62,34,93,44,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,58,32,123,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,58,32,123,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,97,109,101,58,32,123,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,34,110,97,109,101,46,110,71,114,97,109,34,58,32,123,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,110,116,95,110,97,109,101,58,32,123,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,59,10,32,32,32,32,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,115,101,97,114,99,104,73,110,80,97,116,104,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,113,46,104,105,103,104,108,105,103,104,116,46,102,105,101,108,100,115,91,34,112,97,116,104,46,116,101,120,116,34,93,32,61,32,123,125,59,10,32,32,32,32,32,32,32,32,32,32,32,32,113,46,104,105,103,104,108,105,103,104,116,46,102,105,101,108,100,115,91,34,112,97,116,104,46,110,71,114,97,109,34,93,32,61,32,123,125,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,36,46,106,115,111,110,80,111,115,116,40,34,101,115,34,44,32,113,41,46,116,104,101,110,40,115,101,97,114,99,104,82,101,115,117,108,116,32,61,62,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,104,105,116,115,32,61,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,104,105,116,115,34,93,91,34,104,105,116,115,34,93,59,10,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,115,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,108,97,115,116,68,111,99,32,61,32,104,105,116,115,91,104,105,116,115,46,108,101,110,103,116,104,32,45,32,49,93,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,104,105,116,115,46,102,111,114,69,97,99,104,40,104,105,116,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,110,97,109,101,34,93,32,61,32,115,116,114,85,110,101,115,99,97,112,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,110,97,109,101,34,93,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,32,61,32,115,116,114,85,110,101,115,99,97,112,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,41,59,10,32,32,32,32,32,32,32,32,125,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,33,97,102,116,101,114,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,108,111,97,100,46,114,101,109,111,118,101,40,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,82,101,115,117,108,116,115,46,97,112,112,101,110,100,67,104,105,108,100,40,109,97,107,101,83,116,97,116,115,67,97,114,100,40,115,101,97,114,99,104,82,101,115,117,108,116,41,41,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,112,97,103,101,73,110,100,105,99,97,116,111,114,32,61,32,109,97,107,101,80,97,103,101,73,110,100,105,99,97,116,111,114,40,115,101,97,114,99,104,82,101,115,117,108,116,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,82,101,115,117,108,116,115,46,97,112,112,101,110,100,67,104,105,108,100,40,112,97,103,101,73,110,100,105,99,97,116,111,114,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,47,47,83,101,116,117,112,32,112,97,103,101,10,32,32,32,32,32,32,32,32,108,101,116,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,32,61,32,109,97,107,101,82,101,115,117,108,116,67,111,110,116,97,105,110,101,114,40,41,59,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,82,101,115,117,108,116,115,46,97,112,112,101,110,100,67,104,105,108,100,40,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,61,61,32,34,103,114,105,100,34,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,46,95,98,114,105,99,107,32,61,32,110,101,119,32,66,114,105,99,107,108,97,121,101,114,40,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,105,102,32,40,33,97,102,116,101,114,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,67,111,117,110,116,32,61,32,48,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,114,101,97,99,104,101,100,69,110,100,32,61,32,104,105,116,115,46,108,101,110,103,116,104,32,33,61,61,32,83,73,90,69,59,10,32,32,32,32,32,32,32,32,105,110,115,101,114,116,72,105,116,115,40,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,44,32,104,105,116,115,41,59,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,66,117,115,121,32,61,32,102,97,108,115,101,59,10,32,32,32,32,125,41,59,10,125,10,10,10,108,101,116,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,32,61,32,95,46,100,101,98,111,117,110,99,101,40,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,99,111,111,108,105,110,103,68,111,119,110,32,61,32,102,97,108,115,101,59,10,32,32,32,32,115,101,97,114,99,104,40,41,10,125,44,32,53,48,48,41,59,10,10,115,101,97,114,99,104,66,97,114,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,107,101,121,117,112,34,44,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,41,59,10,112,97,116,104,66,97,114,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,107,101,121,117,112,34,44,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,41,59,10,10,47,47,83,105,122,101,32,115,108,105,100,101,114,10,36,40,34,35,115,105,122,101,83,108,105,100,101,114,34,41,46,105,111,110,82,97,110,103,101,83,108,105,100,101,114,40,123,10,32,32,32,32,116,121,112,101,58,32,34,100,111,117,98,108,101,34,44,10,32,32,32,32,103,114,105,100,58,32,102,97,108,115,101,44,10,32,32,32,32,102,111,114,99,101,95,101,100,103,101,115,58,32,116,114,117,101,44,10,32,32,32,32,109,105,110,58,32,48,44,10,32,32,32,32,109,97,120,58,32,51,54,56,52,46,48,51,49,52,57,56,54,52,44,10,32,32,32,32,102,114,111,109,58,32,48,44,10,32,32,32,32,116,111,58,32,51,54,56,52,46,48,51,49,52,57,56,54,52,44,10,32,32,32,32,109,105,110,95,105,110,116,101,114,118,97,108,58,32,53,44,10,32,32,32,32,100,114,97,103,95,105,110,116,101,114,118,97,108,58,32,116,114,117,101,44,10,32,32,32,32,112,114,101,116,116,105,102,121,58,32,102,117,110,99,116,105,111,110,32,40,110,117,109,41,32,123,10,10,32,32,32,32,32,32,32,32,105,102,32,40,110,117,109,32,61,61,61,32,48,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,34,48,32,66,34,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,117,109,32,62,61,32,51,54,56,52,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,117,109,97,110,70,105,108,101,83,105,122,101,40,110,117,109,32,42,32,110,117,109,32,42,32,110,117,109,41,32,43,32,34,43,34,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,117,109,97,110,70,105,108,101,83,105,122,101,40,110,117,109,32,42,32,110,117,109,32,42,32,110,117,109,41,10,32,32,32,32,125,44,10,32,32,32,32,111,110,67,104,97,110,103,101,58,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,10,32,32,32,32,32,32,32,32,115,105,122,101,95,109,105,110,32,61,32,40,101,46,102,114,111,109,32,42,32,101,46,102,114,111,109,32,42,32,101,46,102,114,111,109,41,59,10,32,32,32,32,32,32,32,32,115,105,122,101,95,109,97,120,32,61,32,40,101,46,116,111,32,42,32,101,46,116,111,32,42,32,101,46,116,111,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,101,46,116,111,32,62,61,32,51,54,56,52,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,95,109,97,120,32,61,32,49,48,48,48,48,48,48,48,48,48,48,48,48,48,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,125,10,125,41,59,10,10,47,47,68,97,116,101,32,115,108,105,100,101,114,10,36,46,106,115,111,110,80,111,115,116,40,34,101,115,34,44,32,123,10,32,32,32,32,97,103,103,115,58,32,123,10,32,32,32,32,32,32,32,32,100,97,116,101,95,109,105,110,58,32,123,109,105,110,58,32,123,102,105,101,108,100,58,32,34,109,116,105,109,101,34,125,125,44,10,32,32,32,32,32,32,32,32,100,97,116,101,95,109,97,120,58,32,123,109,97,120,58,32,123,102,105,101,108,100,58,32,34,109,116,105,109,101,34,125,125,44,10,32,32,32,32,125,44,10,32,32,32,32,115,105,122,101,58,32,48,10,125,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,10,32,32,32,32,36,40,34,35,100,97,116,101,83,108,105,100,101,114,34,41,46,105,111,110,82,97,110,103,101,83,108,105,100,101,114,40,123,10,32,32,32,32,32,32,32,32,116,121,112,101,58,32,34,100,111,117,98,108,101,34,44,10,32,32,32,32,32,32,32,32,103,114,105,100,58,32,102,97,108,115,101,44,10,32,32,32,32,32,32,32,32,102,111,114,99,101,95,101,100,103,101,115,58,32,116,114,117,101,44,10,32,32,32,32,32,32,32,32,109,105,110,58,32,114,101,115,112,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,100,97,116,101,95,109,105,110,34,93,91,34,118,97,108,117,101,34,93,44,10,32,32,32,32,32,32,32,32,109,97,120,58,32,114,101,115,112,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,100,97,116,101,95,109,97,120,34,93,91,34,118,97,108,117,101,34,93,44,10,32,32,32,32,32,32,32,32,102,114,111,109,58,32,114,101,115,112,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,100,97,116,101,95,109,105,110,34,93,91,34,118,97,108,117,101,34,93,44,10,32,32,32,32,32,32,32,32,116,111,58,32,40,68,97,116,101,46,110,111,119,40,41,32,47,32,49,48,48,48,41,44,10,32,32,32,32,32,32,32,32,109,105,110,95,105,110,116,101,114,118,97,108,58,32,51,54,48,48,32,42,32,50,52,32,42,32,55,44,10,32,32,32,32,32,32,32,32,115,116,101,112,58,32,51,54,48,48,32,42,32,50,52,44,10,32,32,32,32,32,32,32,32,100,114,97,103,95,105,110,116,101,114,118,97,108,58,32,116,114,117,101,44,10,32,32,32,32,32,32,32,32,112,114,101,116,116,105,102,121,58,32,102,117,110,99,116,105,111,110,32,40,110,117,109,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,100,97,116,101,32,61,32,40,110,101,119,32,68,97,116,101,40,110,117,109,32,42,32,49,48,48,48,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,116,101,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,32,43,32,34,45,34,32,43,32,40,34,48,34,32,43,32,40,100,97,116,101,46,103,101,116,85,84,67,77,111,110,116,104,40,41,32,43,32,49,41,41,46,115,108,105,99,101,40,45,50,41,32,43,32,34,45,34,32,43,32,40,34,48,34,32,43,32,100,97,116,101,46,103,101,116,85,84,67,68,97,116,101,40,41,41,46,115,108,105,99,101,40,45,50,41,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,111,110,70,105,110,105,115,104,58,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,100,97,116,101,95,109,105,110,32,61,32,101,46,102,114,111,109,32,61,61,61,32,101,46,109,105,110,32,63,32,110,117,108,108,32,58,32,101,46,102,114,111,109,59,10,32,32,32,32,32,32,32,32,32,32,32,32,100,97,116,101,95,109,97,120,32,61,32,101,46,116,111,32,61,61,61,32,101,46,109,97,120,32,63,32,110,117,108,108,32,58,32,101,46,116,111,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,41,59,10,125,41,10,10,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,73,110,100,105,99,101,115,40,41,32,123,10,32,32,32,32,108,101,116,32,115,101,108,101,99,116,101,100,32,61,32,36,40,39,35,105,110,100,105,99,101,115,39,41,46,102,105,110,100,40,39,111,112,116,105,111,110,58,115,101,108,101,99,116,101,100,39,41,59,10,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,32,61,32,91,93,59,10,32,32,32,32,36,40,115,101,108,101,99,116,101,100,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,112,117,115,104,40,36,40,116,104,105,115,41,46,118,97,108,40,41,41,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,125,10,10,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,105,110,100,105,99,101,115,34,41,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,104,97,110,103,101,34,44,32,117,112,100,97,116,101,73,110,100,105,99,101,115,41,59,10,117,112,100,97,116,101,73,110,100,105,99,101,115,40,41,59,10,10,119,105,110,100,111,119,46,111,110,107,101,121,117,112,32,61,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,10,32,32,32,32,105,102,32,40,101,46,107,101,121,32,61,61,61,32,34,47,34,32,124,124,32,101,46,107,101,121,32,61,61,61,32,34,69,115,99,97,112,101,34,41,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,98,97,114,32,61,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,115,101,97,114,99,104,66,97,114,34,41,59,10,32,32,32,32,32,32,32,32,98,97,114,46,115,99,114,111,108,108,73,110,116,111,86,105,101,119,40,41,59,10,32,32,32,32,32,32,32,32,98,97,114,46,102,111,99,117,115,40,41,59,10,32,32,32,32,125,10,125,59,10,10,102,117,110,99,116,105,111,110,32,103,101,116,78,101,120,116,68,101,112,116,104,40,110,111,100,101,41,32,123,10,32,32,32,32,108,101,116,32,113,32,61,32,123,10,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,98,111,111,108,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,58,32,91,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,116,101,114,109,58,32,123,105,110,100,101,120,58,32,110,111,100,101,46,105,110,100,101,120,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,114,97,110,103,101,58,32,123,95,100,101,112,116,104,58,32,123,103,116,101,58,32,110,111,100,101,46,100,101,112,116,104,32,43,32,49,44,32,108,116,101,58,32,110,111,100,101,46,100,101,112,116,104,32,43,32,51,125,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,97,103,103,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,101,114,109,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,34,112,97,116,104,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,49,48,48,48,48,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,115,105,122,101,58,32,48,10,32,32,32,32,125,59,10,10,32,32,32,32,105,102,32,40,110,111,100,101,46,100,101,112,116,104,32,62,32,48,41,32,123,10,32,32,32,32,32,32,32,32,113,46,113,117,101,114,121,46,98,111,111,108,46,109,117,115,116,32,61,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,102,105,120,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,58,32,110,111,100,101,46,105,100,44,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,59,10,32,32,32,32,125,10,10,32,32,32,32,114,101,116,117,114,110,32,36,46,106,115,111,110,80,111,115,116,40,34,101,115,34,44,32,113,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,98,117,99,107,101,116,115,32,61,32,114,101,115,112,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,112,97,116,104,115,34,93,91,34,98,117,99,107,101,116,115,34,93,59,10,32,32,32,32,32,32,32,32,105,102,32,40,33,98,117,99,107,101,116,115,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,112,97,116,104,115,32,61,32,91,93,59,10,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,117,99,107,101,116,115,10,32,32,32,32,32,32,32,32,32,32,32,32,46,102,105,108,116,101,114,40,98,117,99,107,101,116,32,61,62,32,98,117,99,107,101,116,46,107,101,121,46,108,101,110,103,116,104,32,62,32,110,111,100,101,46,105,100,46,108,101,110,103,116,104,32,124,124,32,110,111,100,101,46,105,100,46,115,116,97,114,116,115,87,105,116,104,40,34,47,34,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,97,46,107,101,121,32,62,32,98,46,107,101,121,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,109,97,112,40,98,117,99,107,101,116,32,61,62,32,123,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,97,116,104,115,46,115,111,109,101,40,110,32,61,62,32,98,117,99,107,101,116,46,107,101,121,46,115,116,97,114,116,115,87,105,116,104,40,110,41,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,110,97,109,101,32,61,32,110,111,100,101,46,105,100,46,115,116,97,114,116,115,87,105,116,104,40,34,47,34,41,32,63,32,98,117,99,107,101,116,46,107,101,121,32,58,32,98,117,99,107,101,116,46,107,101,121,46,115,108,105,99,101,40,110,111,100,101,46,105,100,46,108,101,110,103,116,104,32,43,32,49,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,115,46,112,117,115,104,40,98,117,99,107,101,116,46,107,101,121,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,100,58,32,98,117,99,107,101,116,46,107,101,121,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,96,36,123,110,97,109,101,125,47,32,40,36,123,98,117,99,107,101,116,46,100,111,99,95,99,111,117,110,116,125,41,96,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,101,112,116,104,58,32,110,111,100,101,46,100,101,112,116,104,32,43,32,49,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,58,32,110,111,100,101,46,105,110,100,101,120,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,58,32,116,114,117,101,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,125,41,46,102,105,108,116,101,114,40,120,32,61,62,32,120,32,33,61,61,32,110,117,108,108,41,10,32,32,32,32,125,41,10,125,10,10,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,80,97,116,104,84,114,101,101,67,108,105,99,107,40,116,114,101,101,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,40,101,118,101,110,116,44,32,110,111,100,101,44,32,104,97,110,100,108,101,114,41,32,61,62,32,123,10,10,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,100,101,112,116,104,32,33,61,61,32,48,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,112,97,116,104,66,97,114,34,41,46,118,97,108,40,110,111,100,101,46,105,100,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,112,97,116,104,84,114,101,101,77,111,100,97,108,34,41,46,109,111,100,97,108,40,34,104,105,100,101,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,40,41,59,10,32,32,32,32,125,10,125,10,10,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,80,97,116,104,84,114,101,101,40,116,97,114,103,101,116,41,32,123,10,32,32,32,32,108,101,116,32,112,97,116,104,84,114,101,101,32,61,32,110,101,119,32,73,110,115,112,105,114,101,84,114,101,101,40,123,10,32,32,32,32,32,32,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,40,110,111,100,101,44,32,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,103,101,116,78,101,120,116,68,101,112,116,104,40,110,111,100,101,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,41,59,10,10,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,102,111,114,69,97,99,104,40,105,110,100,101,120,32,61,62,32,123,10,32,32,32,32,32,32,32,32,112,97,116,104,84,114,101,101,46,97,100,100,78,111,100,101,40,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,100,58,32,34,47,34,32,43,32,105,110,100,101,120,44,10,32,32,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,96,47,91,36,123,105,110,100,101,120,77,97,112,91,105,110,100,101,120,93,125,93,96,44,10,32,32,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,58,32,105,110,100,101,120,44,10,32,32,32,32,32,32,32,32,32,32,32,32,100,101,112,116,104,58,32,48,44,10,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,58,32,116,114,117,101,10,32,32,32,32,32,32,32,32,125,41,10,32,32,32,32,125,41,59,10,10,32,32,32,32,110,101,119,32,73,110,115,112,105,114,101,84,114,101,101,68,79,77,40,112,97,116,104,84,114,101,101,44,32,123,10,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,116,97,114,103,101,116,10,32,32,32,32,125,41,59,10,10,32,32,32,32,112,97,116,104,84,114,101,101,46,111,110,40,34,110,111,100,101,46,99,108,105,99,107,34,44,32,104,97,110,100,108,101,80,97,116,104,84,114,101,101,67,108,105,99,107,40,112,97,116,104,84,114,101,101,41,41,59,10,125,10,10}; char sprite_skin_flat_png[669] = {137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,1,4,0,0,0,180,8,6,0,0,0,114,181,82,203,0,0,0,6,98,75,71,68,0,255,0,255,0,255,160,189,167,147,0,0,0,9,112,72,89,115,0,0,11,19,0,0,11,19,1,0,154,156,24,0,0,0,7,116,73,77,69,7,226,4,15,15,9,24,243,73,194,157,0,0,2,42,73,68,65,84,120,218,237,221,33,110,219,96,0,134,225,207,150,193,72,122,129,144,154,180,42,24,154,194,10,2,42,85,161,61,198,110,144,19,236,6,225,61,192,66,75,2,10,202,166,33,3,171,33,105,164,20,4,46,33,3,147,92,18,21,85,37,147,186,104,126,30,26,96,233,3,175,126,89,138,255,98,189,217,118,1,72,82,154,0,16,4,64,16,0,65,0,4,1,16,4,64,16,0,65,0,4,1,16,4,64,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,34,73,158,239,238,207,254,124,190,248,150,228,42,201,137,89,160,55,118,73,22,85,211,78,135,147,241,178,56,196,224,135,16,64,191,195,80,53,237,168,88,111,182,223,147,220,216,3,122,111,94,172,55,219,95,78,7,64,146,93,41,6,192,193,137,123,25,128,87,130,0,8,2,240,118,16,118,102,0,114,120,169,184,176,3,144,100,81,86,77,59,117,74,0,167,131,170,105,167,229,112,50,94,86,77,59,74,50,23,6,232,95,8,146,204,171,166,29,13,39,227,165,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,227,87,212,179,125,103,6,32,113,47,3,32,8,128,32,0,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,73,138,36,121,190,187,63,187,92,125,121,252,200,7,175,190,14,10,243,195,113,41,255,69,12,128,35,13,130,24,0,175,65,48,1,32,8,128,32,0,130,0,8,2,32,8,128,32,0,127,25,132,135,250,231,185,25,128,36,41,135,147,241,82,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,255,64,61,219,119,245,108,223,89,2,250,161,122,239,199,223,79,43,11,65,143,248,12,59,32,8,128,32,0,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,71,226,221,239,33,124,58,173,45,4,0,0,0,0,0,0,0,0,0,0,0,0,124,188,193,245,109,55,184,190,117,251,51,244,132,191,63,3,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,0,0,0,0,0,0,0,0,0,0,0,0,36,121,1,4,9,83,90,112,63,72,221,0,0,0,0,73,69,78,68,174,66,96,130}; char sprite_skin_flat_dark_png[595] = {137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,1,4,0,0,0,180,8,6,0,0,0,114,181,82,203,0,0,0,6,98,75,71,68,0,0,0,0,0,0,249,67,187,127,0,0,0,9,112,72,89,115,0,0,11,19,0,0,11,19,1,0,154,156,24,0,0,0,7,116,73,77,69,7,227,10,31,0,56,13,119,224,92,162,0,0,1,224,73,68,65,84,120,218,237,221,33,110,194,96,0,134,225,239,111,54,137,155,33,120,106,230,177,136,133,6,69,178,147,192,73,182,43,112,1,44,201,130,224,16,24,240,4,179,27,44,89,167,134,156,33,97,108,125,30,91,209,228,19,175,106,255,191,140,154,89,27,128,36,149,9,0,65,0,4,1,16,4,64,16,0,65,0,4,1,16,4,64,16,0,65,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,41,73,114,92,111,135,207,175,47,123,115,64,55,173,230,139,122,48,29,31,138,24,0,223,81,40,163,102,214,154,2,72,156,186,12,8,2,32,8,128,32,0,130,0,8,2,32,8,192,229,65,88,205,23,181,25,128,213,124,81,251,116,25,56,127,186,108,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,246,149,108,118,238,118,4,146,56,117,25,16,4,64,16,0,65,0,4,1,16,4,64,16,0,65,0,4,1,16,4,64,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,36,37,73,142,235,237,112,112,255,176,191,234,155,159,30,139,249,225,182,84,191,18,3,224,54,131,32,6,192,57,8,38,0,4,1,16,4,64,16,0,65,0,4,1,16,4,224,194,32,28,63,222,107,51,0,73,82,13,166,227,131,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,193,102,215,102,179,107,13,1,221,112,247,211,195,254,219,103,146,228,100,39,232,4,199,176,3,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,130,0,8,2,240,23,130,112,154,84,57,77,52,3,0,0,0,0,0,0,0,0,0,0,0,0,184,178,94,179,108,123,205,210,237,207,208,17,126,101,4,4,1,16,4,64,16,0,65,0,4,1,16,4,64,16,0,65,0,4,1,16,4,64,16,0,65,0,4,1,16,4,64,16,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,72,242,5,81,103,62,209,158,129,108,239,0,0,0,0,73,69,78,68,174,66,96,130}; -char search_html[11298] = {60,33,68,79,67,84,89,80,69,32,104,116,109,108,62,10,60,104,116,109,108,32,108,97,110,103,61,34,101,110,34,62,10,60,104,101,97,100,62,10,32,32,32,32,60,109,101,116,97,32,99,104,97,114,115,101,116,61,34,117,116,102,45,56,34,62,10,32,32,32,32,60,116,105,116,108,101,62,115,105,115,116,50,32,45,32,83,101,97,114,99,104,60,47,116,105,116,108,101,62,10,32,32,32,32,60,109,101,116,97,32,110,97,109,101,61,39,118,105,101,119,112,111,114,116,39,32,99,111,110,116,101,110,116,61,39,119,105,100,116,104,61,100,101,118,105,99,101,45,119,105,100,116,104,44,32,105,110,105,116,105,97,108,45,115,99,97,108,101,61,49,46,48,44,32,109,97,120,105,109,117,109,45,115,99,97,108,101,61,49,46,48,44,32,117,115,101,114,45,115,99,97,108,97,98,108,101,61,110,111,39,47,62,10,10,32,32,32,32,60,108,105,110,107,32,104,114,101,102,61,34,99,115,115,34,32,114,101,108,61,34,115,116,121,108,101,115,104,101,101,116,34,32,116,121,112,101,61,34,116,101,120,116,47,99,115,115,34,62,10,60,47,104,101,97,100,62,10,60,98,111,100,121,62,10,10,60,110,97,118,32,99,108,97,115,115,61,34,110,97,118,98,97,114,32,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,34,62,10,32,32,32,32,60,97,32,99,108,97,115,115,61,34,110,97,118,98,97,114,45,98,114,97,110,100,34,32,104,114,101,102,61,34,47,34,62,115,105,115,116,50,60,47,97,62,10,32,32,32,32,60,115,112,97,110,32,99,108,97,115,115,61,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,118,101,114,115,105,111,110,34,62,50,46,51,46,48,60,47,115,112,97,110,62,10,32,32,32,32,60,115,112,97,110,32,99,108,97,115,115,61,34,116,97,103,108,105,110,101,34,62,76,105,103,104,116,110,105,110,103,45,102,97,115,116,32,102,105,108,101,32,115,121,115,116,101,109,32,105,110,100,101,120,101,114,32,97,110,100,32,115,101,97,114,99,104,32,116,111,111,108,32,60,47,115,112,97,110,62,10,32,32,32,32,60,98,117,116,116,111,110,32,115,116,121,108,101,61,34,109,97,114,103,105,110,45,108,101,102,116,58,32,97,117,116,111,34,32,99,108,97,115,115,61,34,98,116,110,34,32,116,121,112,101,61,34,98,117,116,116,111,110,34,32,100,97,116,97,45,116,111,103,103,108,101,61,34,109,111,100,97,108,34,32,100,97,116,97,45,116,97,114,103,101,116,61,34,35,115,101,116,116,105,110,103,115,34,32,111,110,99,108,105,99,107,61,34,108,111,97,100,83,101,116,116,105,110,103,115,40,41,34,62,83,101,116,116,105,110,103,115,60,47,98,117,116,116,111,110,62,10,32,32,32,32,60,97,32,105,100,61,34,116,104,101,109,101,34,32,99,108,97,115,115,61,34,98,116,110,34,32,116,105,116,108,101,61,34,84,111,103,103,108,101,32,116,104,101,109,101,34,32,104,114,101,102,61,34,47,34,62,84,104,101,109,101,60,47,97,62,10,60,47,110,97,118,62,10,10,60,100,105,118,32,99,108,97,115,115,61,34,99,111,110,116,97,105,110,101,114,34,62,10,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,97,114,100,34,62,10,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,97,114,100,45,98,111,100,121,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,105,110,112,117,116,45,103,114,111,117,112,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,112,97,110,32,116,105,116,108,101,61,34,84,111,103,103,108,101,32,102,117,122,122,121,32,115,101,97,114,99,104,105,110,103,34,32,111,110,99,108,105,99,107,61,34,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,39,102,117,122,122,121,84,111,103,103,108,101,39,41,46,99,108,105,99,107,40,41,34,62,70,117,122,122,121,38,110,98,115,112,60,47,115,112,97,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,116,105,116,108,101,61,34,84,111,103,103,108,101,32,102,117,122,122,121,32,115,101,97,114,99,104,105,110,103,34,32,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,32,105,100,61,34,102,117,122,122,121,84,111,103,103,108,101,34,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,99,108,105,99,107,61,34,116,111,103,103,108,101,70,117,122,122,121,40,41,34,32,99,104,101,99,107,101,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,105,100,61,34,115,101,97,114,99,104,66,97,114,34,32,116,121,112,101,61,34,115,101,97,114,99,104,34,32,99,108,97,115,115,61,34,102,111,114,109,45,99,111,110,116,114,111,108,34,32,112,108,97,99,101,104,111,108,100,101,114,61,34,83,101,97,114,99,104,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,117,116,116,111,110,32,99,108,97,115,115,61,34,98,116,110,32,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,32,115,109,97,108,108,45,98,116,110,34,32,116,121,112,101,61,34,98,117,116,116,111,110,34,32,100,97,116,97,45,116,111,103,103,108,101,61,34,109,111,100,97,108,34,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,97,116,97,45,116,97,114,103,101,116,61,34,35,104,101,108,112,34,62,63,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,98,117,116,116,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,117,116,116,111,110,32,99,108,97,115,115,61,34,98,116,110,32,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,32,108,97,114,103,101,45,98,116,110,34,32,116,121,112,101,61,34,98,117,116,116,111,110,34,32,100,97,116,97,45,116,111,103,103,108,101,61,34,109,111,100,97,108,34,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,97,116,97,45,116,97,114,103,101,116,61,34,35,104,101,108,112,34,62,72,101,108,112,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,98,117,116,116,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,114,111,119,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,116,105,116,108,101,61,34,70,105,108,101,32,115,105,122,101,34,32,105,100,61,34,115,105,122,101,83,108,105,100,101,114,34,32,110,97,109,101,61,34,115,105,122,101,34,32,119,105,100,116,104,61,34,49,48,48,37,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,105,110,112,117,116,45,103,114,111,117,112,34,32,115,116,121,108,101,61,34,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,48,46,53,101,109,59,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,117,116,116,111,110,32,105,100,61,34,112,97,116,104,66,97,114,72,101,108,112,101,114,34,32,99,108,97,115,115,61,34,98,116,110,32,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,34,32,100,97,116,97,45,116,111,103,103,108,101,61,34,109,111,100,97,108,34,32,100,97,116,97,45,116,97,114,103,101,116,61,34,35,112,97,116,104,84,114,101,101,77,111,100,97,108,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,118,103,32,120,109,108,110,115,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,32,118,105,101,119,66,111,120,61,34,48,32,48,32,53,55,54,32,53,49,50,34,32,119,105,100,116,104,61,34,50,48,112,120,34,62,60,112,97,116,104,32,100,61,34,77,50,56,56,32,50,50,52,104,50,50,52,97,51,50,32,51,50,32,48,32,48,32,48,32,51,50,45,51,50,86,54,52,97,51,50,32,51,50,32,48,32,48,32,48,45,51,50,45,51,50,72,52,48,48,76,51,54,56,32,48,104,45,56,48,97,51,50,32,51,50,32,48,32,48,32,48,45,51,50,32,51,50,118,54,52,72,54,52,86,56,97,56,32,56,32,48,32,48,32,48,45,56,45,56,72,52,48,97,56,32,56,32,48,32,48,32,48,45,56,32,56,118,51,57,50,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,50,48,56,118,54,52,97,51,50,32,51,50,32,48,32,48,32,48,32,51,50,32,51,50,104,50,50,52,97,51,50,32,51,50,32,48,32,48,32,48,32,51,50,45,51,50,86,51,53,50,97,51,50,32,51,50,32,48,32,48,32,48,45,51,50,45,51,50,72,52,48,48,108,45,51,50,45,51,50,104,45,56,48,97,51,50,32,51,50,32,48,32,48,32,48,45,51,50,32,51,50,118,54,52,72,54,52,86,49,50,56,104,49,57,50,118,54,52,97,51,50,32,51,50,32,48,32,48,32,48,32,51,50,32,51,50,122,109,48,32,57,54,104,54,54,46,55,52,108,51,50,32,51,50,72,53,49,50,118,49,50,56,72,50,56,56,122,109,48,45,50,56,56,104,54,54,46,55,52,108,51,50,32,51,50,72,53,49,50,118,49,50,56,72,50,56,56,122,34,47,62,60,47,115,118,103,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,98,117,116,116,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,105,100,61,34,112,97,116,104,66,97,114,34,32,116,121,112,101,61,34,115,101,97,114,99,104,34,32,99,108,97,115,115,61,34,102,111,114,109,45,99,111,110,116,114,111,108,34,32,112,108,97,99,101,104,111,108,100,101,114,61,34,70,105,108,116,101,114,32,112,97,116,104,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,116,105,116,108,101,61,34,68,97,116,101,32,102,105,108,116,101,114,34,32,105,100,61,34,100,97,116,101,83,108,105,100,101,114,34,32,110,97,109,101,61,34,115,105,122,101,34,32,119,105,100,116,104,61,34,49,48,48,37,34,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,114,111,119,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,102,111,114,61,34,105,110,100,105,99,101,115,34,62,83,101,97,114,99,104,32,105,110,32,105,110,100,105,99,101,115,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,101,108,101,99,116,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,115,101,108,101,99,116,34,32,105,100,61,34,105,110,100,105,99,101,115,34,32,109,117,108,116,105,112,108,101,32,115,105,122,101,61,34,54,34,62,60,47,115,101,108,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,34,32,105,100,61,34,116,114,101,101,84,97,98,115,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,117,108,32,99,108,97,115,115,61,34,110,97,118,32,110,97,118,45,116,97,98,115,34,32,114,111,108,101,61,34,116,97,98,108,105,115,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,105,32,99,108,97,115,115,61,34,110,97,118,45,105,116,101,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,97,32,99,108,97,115,115,61,34,110,97,118,45,108,105,110,107,32,97,99,116,105,118,101,34,32,100,97,116,97,45,116,111,103,103,108,101,61,34,116,97,98,34,32,104,114,101,102,61,34,35,109,105,109,101,34,32,114,111,108,101,61,34,116,97,98,34,32,97,114,105,97,45,99,111,110,116,114,111,108,115,61,34,104,111,109,101,34,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,114,105,97,45,115,101,108,101,99,116,101,100,61,34,116,114,117,101,34,62,77,105,109,101,32,84,121,112,101,115,60,47,97,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,108,105,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,105,32,99,108,97,115,115,61,34,110,97,118,45,105,116,101,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,97,32,99,108,97,115,115,61,34,110,97,118,45,108,105,110,107,34,32,100,97,116,97,45,116,111,103,103,108,101,61,34,116,97,98,34,32,104,114,101,102,61,34,35,116,97,103,34,32,114,111,108,101,61,34,116,97,98,34,32,97,114,105,97,45,99,111,110,116,114,111,108,115,61,34,112,114,111,102,105,108,101,34,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,114,105,97,45,115,101,108,101,99,116,101,100,61,34,102,97,108,115,101,34,32,116,105,116,108,101,61,34,85,115,101,114,45,100,101,102,105,110,101,100,32,116,97,103,115,34,62,84,97,103,115,60,47,97,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,108,105,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,117,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,116,97,98,45,99,111,110,116,101,110,116,34,32,105,100,61,34,109,121,84,97,98,67,111,110,116,101,110,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,116,97,98,45,112,97,110,101,32,102,97,100,101,32,115,104,111,119,32,97,99,116,105,118,101,34,32,105,100,61,34,109,105,109,101,34,32,114,111,108,101,61,34,116,97,98,112,97,110,101,108,34,32,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,104,111,109,101,45,116,97,98,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,105,100,61,34,109,105,109,101,84,114,101,101,34,32,99,108,97,115,115,61,34,116,114,101,101,34,62,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,116,97,98,45,112,97,110,101,32,102,97,100,101,34,32,105,100,61,34,116,97,103,34,32,114,111,108,101,61,34,116,97,98,112,97,110,101,108,34,32,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,112,114,111,102,105,108,101,45,116,97,98,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,105,100,61,34,116,97,103,84,114,101,101,34,32,99,108,97,115,115,61,34,116,114,101,101,34,62,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,34,32,105,100,61,34,109,111,100,97,108,34,32,116,97,98,105,110,100,101,120,61,34,45,49,34,32,114,111,108,101,61,34,100,105,97,108,111,103,34,32,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,109,111,100,97,108,45,116,105,116,108,101,34,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,62,10,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,100,105,97,108,111,103,32,109,111,100,97,108,45,108,103,32,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,34,32,114,111,108,101,61,34,100,111,99,117,109,101,110,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,99,111,110,116,101,110,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,104,101,97,100,101,114,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,104,53,32,99,108,97,115,115,61,34,109,111,100,97,108,45,116,105,116,108,101,34,32,105,100,61,34,109,111,100,97,108,45,116,105,116,108,101,34,62,60,47,104,53,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,117,116,116,111,110,32,116,121,112,101,61,34,98,117,116,116,111,110,34,32,99,108,97,115,115,61,34,99,108,111,115,101,34,32,100,97,116,97,45,100,105,115,109,105,115,115,61,34,109,111,100,97,108,34,32,97,114,105,97,45,108,97,98,101,108,61,34,67,108,111,115,101,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,112,97,110,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,62,38,116,105,109,101,115,59,60,47,115,112,97,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,98,117,116,116,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,98,111,100,121,34,32,105,100,61,34,109,111,100,97,108,45,98,111,100,121,34,62,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,34,32,105,100,61,34,104,101,108,112,34,32,116,97,98,105,110,100,101,120,61,34,45,49,34,32,114,111,108,101,61,34,100,105,97,108,111,103,34,32,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,109,111,100,97,108,45,116,105,116,108,101,34,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,62,10,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,100,105,97,108,111,103,32,109,111,100,97,108,45,108,103,32,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,34,32,114,111,108,101,61,34,100,111,99,117,109,101,110,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,99,111,110,116,101,110,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,104,101,97,100,101,114,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,104,53,32,99,108,97,115,115,61,34,109,111,100,97,108,45,116,105,116,108,101,34,62,83,101,97,114,99,104,32,104,101,108,112,60,47,104,53,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,117,116,116,111,110,32,116,121,112,101,61,34,98,117,116,116,111,110,34,32,99,108,97,115,115,61,34,99,108,111,115,101,34,32,100,97,116,97,45,100,105,115,109,105,115,115,61,34,109,111,100,97,108,34,32,97,114,105,97,45,108,97,98,101,108,61,34,67,108,111,115,101,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,112,97,110,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,62,38,116,105,109,101,115,59,60,47,115,112,97,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,98,117,116,116,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,98,111,100,121,34,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,97,98,108,101,32,99,108,97,115,115,61,34,116,97,98,108,101,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,98,111,100,121,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,60,99,111,100,101,62,43,60,47,99,111,100,101,62,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,115,105,103,110,105,102,105,101,115,32,65,78,68,32,111,112,101,114,97,116,105,111,110,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,60,99,111,100,101,62,124,60,47,99,111,100,101,62,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,115,105,103,110,105,102,105,101,115,32,79,82,32,111,112,101,114,97,116,105,111,110,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,60,99,111,100,101,62,45,60,47,99,111,100,101,62,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,110,101,103,97,116,101,115,32,97,32,115,105,110,103,108,101,32,116,111,107,101,110,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,60,99,111,100,101,62,34,34,60,47,99,111,100,101,62,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,119,114,97,112,115,32,97,32,110,117,109,98,101,114,32,111,102,32,116,111,107,101,110,115,32,116,111,32,115,105,103,110,105,102,121,32,97,32,112,104,114,97,115,101,32,102,111,114,32,115,101,97,114,99,104,105,110,103,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,60,99,111,100,101,62,42,60,47,99,111,100,101,62,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,97,116,32,116,104,101,32,101,110,100,32,111,102,32,97,32,116,101,114,109,32,115,105,103,110,105,102,105,101,115,32,97,32,112,114,101,102,105,120,32,113,117,101,114,121,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,60,99,111,100,101,62,40,60,47,99,111,100,101,62,32,97,110,100,32,60,99,111,100,101,62,41,60,47,99,111,100,101,62,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,115,105,103,110,105,102,121,32,112,114,101,99,101,100,101,110,99,101,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,60,99,111,100,101,62,126,78,60,47,99,111,100,101,62,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,97,102,116,101,114,32,97,32,119,111,114,100,32,115,105,103,110,105,102,105,101,115,32,101,100,105,116,32,100,105,115,116,97,110,99,101,32,40,102,117,122,122,105,110,101,115,115,41,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,60,99,111,100,101,62,126,78,60,47,99,111,100,101,62,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,97,102,116,101,114,32,97,32,112,104,114,97,115,101,32,115,105,103,110,105,102,105,101,115,32,115,108,111,112,32,97,109,111,117,110,116,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,116,98,111,100,121,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,116,97,98,108,101,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,112,62,70,111,114,32,101,120,97,109,112,108,101,58,32,60,99,111,100,101,62,34,102,114,105,101,100,32,101,103,103,115,34,32,43,40,101,103,103,112,108,97,110,116,32,124,32,112,111,116,97,116,111,41,32,45,102,114,105,116,116,97,116,97,60,47,99,111,100,101,62,32,119,105,108,108,32,109,97,116,99,104,32,116,104,101,32,112,104,114,97,115,101,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,62,102,114,105,101,100,32,101,103,103,115,60,47,105,62,32,97,110,100,32,101,105,116,104,101,114,32,60,105,62,101,103,103,112,108,97,110,116,60,47,105,62,32,111,114,32,60,105,62,112,111,116,97,116,111,60,47,105,62,44,32,98,117,116,32,119,105,108,108,32,105,103,110,111,114,101,32,114,101,115,117,108,116,115,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,97,105,110,105,110,103,32,60,105,62,102,114,105,116,116,97,116,97,60,47,105,62,46,60,47,112,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,112,62,87,104,101,110,32,110,101,105,116,104,101,114,32,60,99,111,100,101,62,43,60,47,99,111,100,101,62,32,111,114,32,60,99,111,100,101,62,124,60,47,99,111,100,101,62,32,105,115,32,115,112,101,99,105,102,105,101,100,44,32,116,104,101,32,100,101,102,97,117,108,116,32,111,112,101,114,97,116,111,114,32,105,115,32,60,99,111,100,101,62,43,60,47,99,111,100,101,62,32,40,97,110,100,41,46,60,47,112,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,112,62,87,104,101,110,32,116,104,101,32,60,98,62,70,117,122,122,121,60,47,98,62,32,111,112,116,105,111,110,32,105,115,32,99,104,101,99,107,101,100,44,32,112,97,114,116,105,97,108,32,109,97,116,99,104,101,115,32,97,114,101,32,97,108,115,111,32,114,101,116,117,114,110,101,100,46,60,47,112,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,112,62,70,111,114,32,109,111,114,101,32,105,110,102,111,114,109,97,116,105,111,110,44,32,115,101,101,32,60,97,32,116,97,114,103,101,116,61,34,95,98,108,97,110,107,34,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,114,101,102,61,34,47,47,119,119,119,46,101,108,97,115,116,105,99,46,99,111,47,103,117,105,100,101,47,101,110,47,101,108,97,115,116,105,99,115,101,97,114,99,104,47,114,101,102,101,114,101,110,99,101,47,99,117,114,114,101,110,116,47,113,117,101,114,121,45,100,115,108,45,115,105,109,112,108,101,45,113,117,101,114,121,45,115,116,114,105,110,103,45,113,117,101,114,121,46,104,116,109,108,34,62,69,108,97,115,116,105,99,115,101,97,114,99,104,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,117,109,101,110,116,97,116,105,111,110,60,47,97,62,60,47,112,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,34,32,105,100,61,34,115,101,116,116,105,110,103,115,34,32,116,97,98,105,110,100,101,120,61,34,45,49,34,32,114,111,108,101,61,34,100,105,97,108,111,103,34,32,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,109,111,100,97,108,45,116,105,116,108,101,34,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,62,10,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,100,105,97,108,111,103,32,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,34,32,114,111,108,101,61,34,100,111,99,117,109,101,110,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,99,111,110,116,101,110,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,104,101,97,100,101,114,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,104,53,32,99,108,97,115,115,61,34,109,111,100,97,108,45,116,105,116,108,101,34,62,83,101,116,116,105,110,103,115,60,47,104,53,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,117,116,116,111,110,32,116,121,112,101,61,34,98,117,116,116,111,110,34,32,99,108,97,115,115,61,34,99,108,111,115,101,34,32,100,97,116,97,45,100,105,115,109,105,115,115,61,34,109,111,100,97,108,34,32,97,114,105,97,45,108,97,98,101,108,61,34,67,108,111,115,101,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,112,97,110,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,62,38,116,105,109,101,115,59,60,47,115,112,97,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,98,117,116,116,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,98,111,100,121,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,32,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,34,32,105,100,61,34,115,101,116,116,105,110,103,72,105,103,104,108,105,103,104,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,34,32,102,111,114,61,34,115,101,116,116,105,110,103,72,105,103,104,108,105,103,104,116,34,62,69,110,97,98,108,101,32,104,105,103,104,108,105,103,104,116,105,110,103,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,32,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,34,32,105,100,61,34,115,101,116,116,105,110,103,70,117,122,122,121,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,34,32,102,111,114,61,34,115,101,116,116,105,110,103,70,117,122,122,121,34,62,83,101,116,32,102,117,122,122,121,32,115,101,97,114,99,104,32,98,121,32,100,101,102,97,117,108,116,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,32,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,34,32,105,100,61,34,115,101,116,116,105,110,103,83,101,97,114,99,104,73,110,80,97,116,104,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,34,32,102,111,114,61,34,115,101,116,116,105,110,103,83,101,97,114,99,104,73,110,80,97,116,104,34,62,69,110,97,98,108,101,32,109,97,116,99,104,105,110,103,32,113,117,101,114,121,32,97,103,97,105,110,115,116,32,100,111,99,117,109,101,110,116,32,112,97,116,104,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,102,111,114,61,34,115,101,116,116,105,110,103,68,105,115,112,108,97,121,34,62,68,105,115,112,108,97,121,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,101,108,101,99,116,32,105,100,61,34,115,101,116,116,105,110,103,68,105,115,112,108,97,121,34,32,99,108,97,115,115,61,34,102,111,114,109,45,99,111,110,116,114,111,108,32,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,103,114,105,100,34,62,71,114,105,100,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,108,105,115,116,34,62,76,105,115,116,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,115,101,108,101,99,116,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,117,116,116,111,110,32,115,116,121,108,101,61,34,102,108,111,97,116,58,32,114,105,103,104,116,34,32,99,108,97,115,115,61,34,98,116,110,32,98,116,110,45,112,114,105,109,97,114,121,34,32,111,110,99,108,105,99,107,61,34,117,112,100,97,116,101,83,101,116,116,105,110,103,115,40,41,34,62,85,112,100,97,116,101,32,115,101,116,116,105,110,103,115,60,47,98,117,116,116,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,34,32,105,100,61,34,112,97,116,104,84,114,101,101,77,111,100,97,108,34,32,116,97,98,105,110,100,101,120,61,34,45,49,34,32,114,111,108,101,61,34,100,105,97,108,111,103,34,32,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,109,111,100,97,108,45,116,105,116,108,101,34,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,62,10,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,100,105,97,108,111,103,32,109,111,100,97,108,45,108,103,34,32,114,111,108,101,61,34,100,111,99,117,109,101,110,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,99,111,110,116,101,110,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,104,101,97,100,101,114,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,104,53,32,99,108,97,115,115,61,34,109,111,100,97,108,45,116,105,116,108,101,34,62,83,101,108,101,99,116,32,112,97,116,104,60,47,104,53,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,117,116,116,111,110,32,116,121,112,101,61,34,98,117,116,116,111,110,34,32,99,108,97,115,115,61,34,99,108,111,115,101,34,32,100,97,116,97,45,100,105,115,109,105,115,115,61,34,109,111,100,97,108,34,32,97,114,105,97,45,108,97,98,101,108,61,34,67,108,111,115,101,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,112,97,110,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,62,38,116,105,109,101,115,59,60,47,115,112,97,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,98,117,116,116,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,98,111,100,121,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,105,100,61,34,112,97,116,104,84,114,101,101,34,32,99,108,97,115,115,61,34,116,114,101,101,34,62,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,60,100,105,118,32,105,100,61,34,115,101,97,114,99,104,82,101,115,117,108,116,115,34,62,60,47,100,105,118,62,10,60,47,100,105,118,62,10,10,60,115,99,114,105,112,116,32,115,114,99,61,34,106,115,34,32,116,121,112,101,61,34,116,101,120,116,47,106,97,118,97,115,99,114,105,112,116,34,62,60,47,115,99,114,105,112,116,62,10,60,47,98,111,100,121,62,10,60,47,104,116,109,108,62,10}; +char search_html[14558] = {60,33,68,79,67,84,89,80,69,32,104,116,109,108,62,10,60,104,116,109,108,32,108,97,110,103,61,34,101,110,34,62,10,60,104,101,97,100,62,10,32,32,32,32,60,109,101,116,97,32,99,104,97,114,115,101,116,61,34,117,116,102,45,56,34,62,10,32,32,32,32,60,116,105,116,108,101,62,115,105,115,116,50,32,45,32,83,101,97,114,99,104,60,47,116,105,116,108,101,62,10,32,32,32,32,60,109,101,116,97,32,110,97,109,101,61,39,118,105,101,119,112,111,114,116,39,32,99,111,110,116,101,110,116,61,39,119,105,100,116,104,61,100,101,118,105,99,101,45,119,105,100,116,104,44,32,105,110,105,116,105,97,108,45,115,99,97,108,101,61,49,46,48,44,32,109,97,120,105,109,117,109,45,115,99,97,108,101,61,49,46,48,44,32,117,115,101,114,45,115,99,97,108,97,98,108,101,61,110,111,39,47,62,10,10,32,32,32,32,60,108,105,110,107,32,104,114,101,102,61,34,99,115,115,34,32,114,101,108,61,34,115,116,121,108,101,115,104,101,101,116,34,32,116,121,112,101,61,34,116,101,120,116,47,99,115,115,34,62,10,60,47,104,101,97,100,62,10,60,98,111,100,121,62,10,10,60,110,97,118,32,99,108,97,115,115,61,34,110,97,118,98,97,114,32,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,34,62,10,32,32,32,32,60,97,32,99,108,97,115,115,61,34,110,97,118,98,97,114,45,98,114,97,110,100,34,32,104,114,101,102,61,34,47,34,62,115,105,115,116,50,60,47,97,62,10,32,32,32,32,60,115,112,97,110,32,99,108,97,115,115,61,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,118,101,114,115,105,111,110,34,62,50,46,51,46,48,60,47,115,112,97,110,62,10,32,32,32,32,60,115,112,97,110,32,99,108,97,115,115,61,34,116,97,103,108,105,110,101,34,62,76,105,103,104,116,110,105,110,103,45,102,97,115,116,32,102,105,108,101,32,115,121,115,116,101,109,32,105,110,100,101,120,101,114,32,97,110,100,32,115,101,97,114,99,104,32,116,111,111,108,32,60,47,115,112,97,110,62,10,32,32,32,32,60,97,32,99,108,97,115,115,61,34,98,116,110,32,109,108,45,97,117,116,111,34,32,104,114,101,102,61,34,47,115,116,97,116,115,34,62,83,116,97,116,115,60,47,97,62,10,32,32,32,32,60,98,117,116,116,111,110,32,99,108,97,115,115,61,34,98,116,110,34,32,116,121,112,101,61,34,98,117,116,116,111,110,34,32,100,97,116,97,45,116,111,103,103,108,101,61,34,109,111,100,97,108,34,32,100,97,116,97,45,116,97,114,103,101,116,61,34,35,115,101,116,116,105,110,103,115,34,32,111,110,99,108,105,99,107,61,34,108,111,97,100,83,101,116,116,105,110,103,115,40,41,34,62,83,101,116,116,105,110,103,115,60,47,98,117,116,116,111,110,62,10,32,32,32,32,60,98,117,116,116,111,110,32,99,108,97,115,115,61,34,98,116,110,34,32,116,105,116,108,101,61,34,84,111,103,103,108,101,32,116,104,101,109,101,34,32,111,110,99,108,105,99,107,61,34,116,111,103,103,108,101,84,104,101,109,101,40,41,34,62,84,104,101,109,101,60,47,98,117,116,116,111,110,62,10,60,47,110,97,118,62,10,10,60,100,105,118,32,99,108,97,115,115,61,34,99,111,110,116,97,105,110,101,114,34,62,10,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,97,114,100,34,62,10,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,97,114,100,45,98,111,100,121,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,105,110,112,117,116,45,103,114,111,117,112,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,112,97,110,32,116,105,116,108,101,61,34,84,111,103,103,108,101,32,102,117,122,122,121,32,115,101,97,114,99,104,105,110,103,34,32,111,110,99,108,105,99,107,61,34,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,39,102,117,122,122,121,84,111,103,103,108,101,39,41,46,99,108,105,99,107,40,41,34,62,70,117,122,122,121,38,110,98,115,112,60,47,115,112,97,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,116,105,116,108,101,61,34,84,111,103,103,108,101,32,102,117,122,122,121,32,115,101,97,114,99,104,105,110,103,34,32,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,32,105,100,61,34,102,117,122,122,121,84,111,103,103,108,101,34,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,99,108,105,99,107,61,34,116,111,103,103,108,101,70,117,122,122,121,40,41,34,32,99,104,101,99,107,101,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,105,100,61,34,115,101,97,114,99,104,66,97,114,34,32,116,121,112,101,61,34,115,101,97,114,99,104,34,32,99,108,97,115,115,61,34,102,111,114,109,45,99,111,110,116,114,111,108,34,32,112,108,97,99,101,104,111,108,100,101,114,61,34,83,101,97,114,99,104,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,117,116,116,111,110,32,99,108,97,115,115,61,34,98,116,110,32,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,32,115,109,97,108,108,45,98,116,110,34,32,116,121,112,101,61,34,98,117,116,116,111,110,34,32,100,97,116,97,45,116,111,103,103,108,101,61,34,109,111,100,97,108,34,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,97,116,97,45,116,97,114,103,101,116,61,34,35,104,101,108,112,34,62,63,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,98,117,116,116,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,117,116,116,111,110,32,99,108,97,115,115,61,34,98,116,110,32,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,32,108,97,114,103,101,45,98,116,110,34,32,116,121,112,101,61,34,98,117,116,116,111,110,34,32,100,97,116,97,45,116,111,103,103,108,101,61,34,109,111,100,97,108,34,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,97,116,97,45,116,97,114,103,101,116,61,34,35,104,101,108,112,34,62,72,101,108,112,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,98,117,116,116,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,114,111,119,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,116,105,116,108,101,61,34,70,105,108,101,32,115,105,122,101,34,32,105,100,61,34,115,105,122,101,83,108,105,100,101,114,34,32,110,97,109,101,61,34,115,105,122,101,34,32,119,105,100,116,104,61,34,49,48,48,37,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,105,110,112,117,116,45,103,114,111,117,112,34,32,115,116,121,108,101,61,34,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,48,46,53,101,109,59,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,117,116,116,111,110,32,105,100,61,34,112,97,116,104,66,97,114,72,101,108,112,101,114,34,32,99,108,97,115,115,61,34,98,116,110,32,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,34,32,100,97,116,97,45,116,111,103,103,108,101,61,34,109,111,100,97,108,34,32,100,97,116,97,45,116,97,114,103,101,116,61,34,35,112,97,116,104,84,114,101,101,77,111,100,97,108,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,118,103,32,120,109,108,110,115,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,32,118,105,101,119,66,111,120,61,34,48,32,48,32,53,55,54,32,53,49,50,34,32,119,105,100,116,104,61,34,50,48,112,120,34,62,60,112,97,116,104,32,100,61,34,77,50,56,56,32,50,50,52,104,50,50,52,97,51,50,32,51,50,32,48,32,48,32,48,32,51,50,45,51,50,86,54,52,97,51,50,32,51,50,32,48,32,48,32,48,45,51,50,45,51,50,72,52,48,48,76,51,54,56,32,48,104,45,56,48,97,51,50,32,51,50,32,48,32,48,32,48,45,51,50,32,51,50,118,54,52,72,54,52,86,56,97,56,32,56,32,48,32,48,32,48,45,56,45,56,72,52,48,97,56,32,56,32,48,32,48,32,48,45,56,32,56,118,51,57,50,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,50,48,56,118,54,52,97,51,50,32,51,50,32,48,32,48,32,48,32,51,50,32,51,50,104,50,50,52,97,51,50,32,51,50,32,48,32,48,32,48,32,51,50,45,51,50,86,51,53,50,97,51,50,32,51,50,32,48,32,48,32,48,45,51,50,45,51,50,72,52,48,48,108,45,51,50,45,51,50,104,45,56,48,97,51,50,32,51,50,32,48,32,48,32,48,45,51,50,32,51,50,118,54,52,72,54,52,86,49,50,56,104,49,57,50,118,54,52,97,51,50,32,51,50,32,48,32,48,32,48,32,51,50,32,51,50,122,109,48,32,57,54,104,54,54,46,55,52,108,51,50,32,51,50,72,53,49,50,118,49,50,56,72,50,56,56,122,109,48,45,50,56,56,104,54,54,46,55,52,108,51,50,32,51,50,72,53,49,50,118,49,50,56,72,50,56,56,122,34,47,62,60,47,115,118,103,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,98,117,116,116,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,105,100,61,34,112,97,116,104,66,97,114,34,32,116,121,112,101,61,34,115,101,97,114,99,104,34,32,99,108,97,115,115,61,34,102,111,114,109,45,99,111,110,116,114,111,108,34,32,112,108,97,99,101,104,111,108,100,101,114,61,34,70,105,108,116,101,114,32,112,97,116,104,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,116,105,116,108,101,61,34,68,97,116,101,32,102,105,108,116,101,114,34,32,105,100,61,34,100,97,116,101,83,108,105,100,101,114,34,32,110,97,109,101,61,34,115,105,122,101,34,32,119,105,100,116,104,61,34,49,48,48,37,34,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,114,111,119,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,102,111,114,61,34,105,110,100,105,99,101,115,34,62,83,101,97,114,99,104,32,105,110,32,105,110,100,105,99,101,115,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,101,108,101,99,116,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,115,101,108,101,99,116,34,32,105,100,61,34,105,110,100,105,99,101,115,34,32,109,117,108,116,105,112,108,101,32,115,105,122,101,61,34,54,34,62,60,47,115,101,108,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,34,32,105,100,61,34,116,114,101,101,84,97,98,115,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,117,108,32,99,108,97,115,115,61,34,110,97,118,32,110,97,118,45,116,97,98,115,34,32,114,111,108,101,61,34,116,97,98,108,105,115,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,105,32,99,108,97,115,115,61,34,110,97,118,45,105,116,101,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,97,32,99,108,97,115,115,61,34,110,97,118,45,108,105,110,107,32,97,99,116,105,118,101,34,32,100,97,116,97,45,116,111,103,103,108,101,61,34,116,97,98,34,32,104,114,101,102,61,34,35,109,105,109,101,34,32,114,111,108,101,61,34,116,97,98,34,32,97,114,105,97,45,99,111,110,116,114,111,108,115,61,34,104,111,109,101,34,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,114,105,97,45,115,101,108,101,99,116,101,100,61,34,116,114,117,101,34,62,77,105,109,101,32,84,121,112,101,115,60,47,97,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,108,105,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,105,32,99,108,97,115,115,61,34,110,97,118,45,105,116,101,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,97,32,99,108,97,115,115,61,34,110,97,118,45,108,105,110,107,34,32,100,97,116,97,45,116,111,103,103,108,101,61,34,116,97,98,34,32,104,114,101,102,61,34,35,116,97,103,34,32,114,111,108,101,61,34,116,97,98,34,32,97,114,105,97,45,99,111,110,116,114,111,108,115,61,34,112,114,111,102,105,108,101,34,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,114,105,97,45,115,101,108,101,99,116,101,100,61,34,102,97,108,115,101,34,32,116,105,116,108,101,61,34,85,115,101,114,45,100,101,102,105,110,101,100,32,116,97,103,115,34,62,84,97,103,115,60,47,97,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,108,105,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,117,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,116,97,98,45,99,111,110,116,101,110,116,34,32,105,100,61,34,109,121,84,97,98,67,111,110,116,101,110,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,116,97,98,45,112,97,110,101,32,102,97,100,101,32,115,104,111,119,32,97,99,116,105,118,101,34,32,105,100,61,34,109,105,109,101,34,32,114,111,108,101,61,34,116,97,98,112,97,110,101,108,34,32,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,104,111,109,101,45,116,97,98,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,105,100,61,34,109,105,109,101,84,114,101,101,34,32,99,108,97,115,115,61,34,116,114,101,101,34,62,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,116,97,98,45,112,97,110,101,32,102,97,100,101,34,32,105,100,61,34,116,97,103,34,32,114,111,108,101,61,34,116,97,98,112,97,110,101,108,34,32,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,112,114,111,102,105,108,101,45,116,97,98,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,105,100,61,34,116,97,103,84,114,101,101,34,32,99,108,97,115,115,61,34,116,114,101,101,34,62,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,34,32,105,100,61,34,109,111,100,97,108,34,32,116,97,98,105,110,100,101,120,61,34,45,49,34,32,114,111,108,101,61,34,100,105,97,108,111,103,34,32,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,109,111,100,97,108,45,116,105,116,108,101,34,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,62,10,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,100,105,97,108,111,103,32,109,111,100,97,108,45,108,103,32,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,34,32,114,111,108,101,61,34,100,111,99,117,109,101,110,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,99,111,110,116,101,110,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,104,101,97,100,101,114,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,104,53,32,99,108,97,115,115,61,34,109,111,100,97,108,45,116,105,116,108,101,34,32,105,100,61,34,109,111,100,97,108,45,116,105,116,108,101,34,62,60,47,104,53,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,117,116,116,111,110,32,116,121,112,101,61,34,98,117,116,116,111,110,34,32,99,108,97,115,115,61,34,99,108,111,115,101,34,32,100,97,116,97,45,100,105,115,109,105,115,115,61,34,109,111,100,97,108,34,32,97,114,105,97,45,108,97,98,101,108,61,34,67,108,111,115,101,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,112,97,110,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,62,38,116,105,109,101,115,59,60,47,115,112,97,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,98,117,116,116,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,98,111,100,121,34,32,105,100,61,34,109,111,100,97,108,45,98,111,100,121,34,62,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,34,32,105,100,61,34,104,101,108,112,34,32,116,97,98,105,110,100,101,120,61,34,45,49,34,32,114,111,108,101,61,34,100,105,97,108,111,103,34,32,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,109,111,100,97,108,45,116,105,116,108,101,34,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,62,10,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,100,105,97,108,111,103,32,109,111,100,97,108,45,108,103,32,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,34,32,114,111,108,101,61,34,100,111,99,117,109,101,110,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,99,111,110,116,101,110,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,104,101,97,100,101,114,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,104,53,32,99,108,97,115,115,61,34,109,111,100,97,108,45,116,105,116,108,101,34,62,83,101,97,114,99,104,32,104,101,108,112,60,47,104,53,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,117,116,116,111,110,32,116,121,112,101,61,34,98,117,116,116,111,110,34,32,99,108,97,115,115,61,34,99,108,111,115,101,34,32,100,97,116,97,45,100,105,115,109,105,115,115,61,34,109,111,100,97,108,34,32,97,114,105,97,45,108,97,98,101,108,61,34,67,108,111,115,101,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,112,97,110,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,62,38,116,105,109,101,115,59,60,47,115,112,97,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,98,117,116,116,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,98,111,100,121,34,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,97,98,108,101,32,99,108,97,115,115,61,34,116,97,98,108,101,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,98,111,100,121,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,60,99,111,100,101,62,43,60,47,99,111,100,101,62,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,115,105,103,110,105,102,105,101,115,32,65,78,68,32,111,112,101,114,97,116,105,111,110,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,60,99,111,100,101,62,124,60,47,99,111,100,101,62,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,115,105,103,110,105,102,105,101,115,32,79,82,32,111,112,101,114,97,116,105,111,110,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,60,99,111,100,101,62,45,60,47,99,111,100,101,62,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,110,101,103,97,116,101,115,32,97,32,115,105,110,103,108,101,32,116,111,107,101,110,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,60,99,111,100,101,62,34,34,60,47,99,111,100,101,62,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,119,114,97,112,115,32,97,32,110,117,109,98,101,114,32,111,102,32,116,111,107,101,110,115,32,116,111,32,115,105,103,110,105,102,121,32,97,32,112,104,114,97,115,101,32,102,111,114,32,115,101,97,114,99,104,105,110,103,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,60,99,111,100,101,62,42,60,47,99,111,100,101,62,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,97,116,32,116,104,101,32,101,110,100,32,111,102,32,97,32,116,101,114,109,32,115,105,103,110,105,102,105,101,115,32,97,32,112,114,101,102,105,120,32,113,117,101,114,121,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,60,99,111,100,101,62,40,60,47,99,111,100,101,62,32,97,110,100,32,60,99,111,100,101,62,41,60,47,99,111,100,101,62,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,115,105,103,110,105,102,121,32,112,114,101,99,101,100,101,110,99,101,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,60,99,111,100,101,62,126,78,60,47,99,111,100,101,62,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,97,102,116,101,114,32,97,32,119,111,114,100,32,115,105,103,110,105,102,105,101,115,32,101,100,105,116,32,100,105,115,116,97,110,99,101,32,40,102,117,122,122,105,110,101,115,115,41,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,60,99,111,100,101,62,126,78,60,47,99,111,100,101,62,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,116,100,62,97,102,116,101,114,32,97,32,112,104,114,97,115,101,32,115,105,103,110,105,102,105,101,115,32,115,108,111,112,32,97,109,111,117,110,116,60,47,116,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,116,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,116,98,111,100,121,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,116,97,98,108,101,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,112,62,70,111,114,32,101,120,97,109,112,108,101,58,32,60,99,111,100,101,62,34,102,114,105,101,100,32,101,103,103,115,34,32,43,40,101,103,103,112,108,97,110,116,32,124,32,112,111,116,97,116,111,41,32,45,102,114,105,116,116,97,116,97,60,47,99,111,100,101,62,32,119,105,108,108,32,109,97,116,99,104,32,116,104,101,32,112,104,114,97,115,101,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,62,102,114,105,101,100,32,101,103,103,115,60,47,105,62,32,97,110,100,32,101,105,116,104,101,114,32,60,105,62,101,103,103,112,108,97,110,116,60,47,105,62,32,111,114,32,60,105,62,112,111,116,97,116,111,60,47,105,62,44,32,98,117,116,32,119,105,108,108,32,105,103,110,111,114,101,32,114,101,115,117,108,116,115,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,97,105,110,105,110,103,32,60,105,62,102,114,105,116,116,97,116,97,60,47,105,62,46,60,47,112,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,112,62,87,104,101,110,32,110,101,105,116,104,101,114,32,60,99,111,100,101,62,43,60,47,99,111,100,101,62,32,111,114,32,60,99,111,100,101,62,124,60,47,99,111,100,101,62,32,105,115,32,115,112,101,99,105,102,105,101,100,44,32,116,104,101,32,100,101,102,97,117,108,116,32,111,112,101,114,97,116,111,114,32,105,115,32,60,99,111,100,101,62,43,60,47,99,111,100,101,62,32,40,97,110,100,41,46,60,47,112,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,112,62,87,104,101,110,32,116,104,101,32,60,98,62,70,117,122,122,121,60,47,98,62,32,111,112,116,105,111,110,32,105,115,32,99,104,101,99,107,101,100,44,32,112,97,114,116,105,97,108,32,109,97,116,99,104,101,115,32,97,114,101,32,97,108,115,111,32,114,101,116,117,114,110,101,100,46,60,47,112,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,112,62,70,111,114,32,109,111,114,101,32,105,110,102,111,114,109,97,116,105,111,110,44,32,115,101,101,32,60,97,32,116,97,114,103,101,116,61,34,95,98,108,97,110,107,34,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,114,101,102,61,34,47,47,119,119,119,46,101,108,97,115,116,105,99,46,99,111,47,103,117,105,100,101,47,101,110,47,101,108,97,115,116,105,99,115,101,97,114,99,104,47,114,101,102,101,114,101,110,99,101,47,99,117,114,114,101,110,116,47,113,117,101,114,121,45,100,115,108,45,115,105,109,112,108,101,45,113,117,101,114,121,45,115,116,114,105,110,103,45,113,117,101,114,121,46,104,116,109,108,34,62,69,108,97,115,116,105,99,115,101,97,114,99,104,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,117,109,101,110,116,97,116,105,111,110,60,47,97,62,60,47,112,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,34,32,105,100,61,34,115,101,116,116,105,110,103,115,34,32,116,97,98,105,110,100,101,120,61,34,45,49,34,32,114,111,108,101,61,34,100,105,97,108,111,103,34,32,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,109,111,100,97,108,45,116,105,116,108,101,34,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,62,10,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,100,105,97,108,111,103,32,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,34,32,114,111,108,101,61,34,100,111,99,117,109,101,110,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,99,111,110,116,101,110,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,104,101,97,100,101,114,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,104,53,32,99,108,97,115,115,61,34,109,111,100,97,108,45,116,105,116,108,101,34,62,83,101,116,116,105,110,103,115,60,47,104,53,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,117,116,116,111,110,32,116,121,112,101,61,34,98,117,116,116,111,110,34,32,99,108,97,115,115,61,34,99,108,111,115,101,34,32,100,97,116,97,45,100,105,115,109,105,115,115,61,34,109,111,100,97,108,34,32,97,114,105,97,45,108,97,98,101,108,61,34,67,108,111,115,101,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,112,97,110,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,62,38,116,105,109,101,115,59,60,47,115,112,97,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,98,117,116,116,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,98,111,100,121,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,32,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,34,32,105,100,61,34,115,101,116,116,105,110,103,72,105,103,104,108,105,103,104,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,34,32,102,111,114,61,34,115,101,116,116,105,110,103,72,105,103,104,108,105,103,104,116,34,62,69,110,97,98,108,101,32,104,105,103,104,108,105,103,104,116,105,110,103,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,32,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,34,32,105,100,61,34,115,101,116,116,105,110,103,70,117,122,122,121,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,34,32,102,111,114,61,34,115,101,116,116,105,110,103,70,117,122,122,121,34,62,83,101,116,32,102,117,122,122,121,32,115,101,97,114,99,104,32,98,121,32,100,101,102,97,117,108,116,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,32,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,34,32,105,100,61,34,115,101,116,116,105,110,103,83,101,97,114,99,104,73,110,80,97,116,104,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,34,32,102,111,114,61,34,115,101,116,116,105,110,103,83,101,97,114,99,104,73,110,80,97,116,104,34,62,69,110,97,98,108,101,32,109,97,116,99,104,105,110,103,32,113,117,101,114,121,32,97,103,97,105,110,115,116,32,100,111,99,117,109,101,110,116,32,112,97,116,104,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,102,111,114,61,34,115,101,116,116,105,110,103,68,105,115,112,108,97,121,34,62,68,105,115,112,108,97,121,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,101,108,101,99,116,32,105,100,61,34,115,101,116,116,105,110,103,68,105,115,112,108,97,121,34,32,99,108,97,115,115,61,34,102,111,114,109,45,99,111,110,116,114,111,108,32,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,103,114,105,100,34,62,71,114,105,100,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,108,105,115,116,34,62,76,105,115,116,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,115,101,108,101,99,116,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,104,114,47,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,104,52,62,83,116,97,116,115,60,47,104,52,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,102,111,114,109,45,103,114,111,117,112,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,102,111,114,61,34,115,101,116,116,105,110,103,84,114,101,101,109,97,112,84,121,112,101,34,62,84,114,101,101,109,97,112,32,116,121,112,101,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,101,108,101,99,116,32,105,100,61,34,115,101,116,116,105,110,103,84,114,101,101,109,97,112,84,121,112,101,34,32,99,108,97,115,115,61,34,102,111,114,109,45,99,111,110,116,114,111,108,32,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,99,97,115,99,97,100,101,100,34,62,67,97,115,99,97,100,101,100,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,102,108,97,116,34,62,70,108,97,116,32,40,99,111,109,112,97,99,116,41,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,115,101,108,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,102,111,114,109,45,103,114,111,117,112,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,102,111,114,61,34,115,101,116,116,105,110,103,84,114,101,101,109,97,112,84,105,108,105,110,103,34,62,84,114,101,101,109,97,112,32,116,105,108,105,110,103,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,101,108,101,99,116,32,105,100,61,34,115,101,116,116,105,110,103,84,114,101,101,109,97,112,84,105,108,105,110,103,34,32,99,108,97,115,115,61,34,102,111,114,109,45,99,111,110,116,114,111,108,32,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,98,105,110,97,114,121,34,62,66,105,110,97,114,121,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,115,113,117,97,114,105,102,121,34,62,83,113,117,97,114,105,102,121,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,115,108,105,99,101,34,62,83,108,105,99,101,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,100,105,99,101,34,62,68,105,99,101,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,115,108,105,99,101,68,105,99,101,34,62,83,108,105,100,101,32,38,32,68,105,99,101,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,115,101,108,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,102,111,114,109,45,103,114,111,117,112,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,102,111,114,61,34,115,101,116,116,105,110,103,84,114,101,101,109,97,112,71,114,111,117,112,105,110,103,68,101,112,116,104,34,62,84,114,101,101,109,97,112,32,99,111,108,111,114,32,103,114,111,117,112,105,110,103,32,100,101,112,116,104,32,40,102,108,97,116,41,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,116,121,112,101,61,34,110,117,109,98,101,114,34,32,99,108,97,115,115,61,34,102,111,114,109,45,99,111,110,116,114,111,108,34,32,105,100,61,34,115,101,116,116,105,110,103,84,114,101,101,109,97,112,71,114,111,117,112,105,110,103,68,101,112,116,104,34,32,109,105,110,61,34,49,34,32,109,97,120,61,34,49,48,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,102,111,114,109,45,103,114,111,117,112,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,102,111,114,61,34,115,101,116,116,105,110,103,84,114,101,101,109,97,112,67,111,108,111,114,34,62,84,114,101,101,109,97,112,32,99,111,108,111,114,32,40,99,97,115,99,97,100,101,100,41,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,101,108,101,99,116,32,105,100,61,34,115,101,116,116,105,110,103,84,114,101,101,109,97,112,67,111,108,111,114,34,32,99,108,97,115,115,61,34,102,111,114,109,45,99,111,110,116,114,111,108,32,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,80,117,66,117,71,110,34,62,80,117,114,112,108,101,45,66,108,117,101,45,71,114,101,101,110,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,80,117,82,100,34,62,80,117,114,112,108,101,45,82,101,100,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,80,117,66,117,34,62,80,117,114,112,108,101,45,66,108,117,101,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,89,108,79,114,66,114,34,62,89,101,108,108,111,119,45,79,114,97,110,103,101,45,66,114,111,119,110,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,89,108,79,114,82,100,34,62,89,101,108,108,111,119,45,79,114,97,110,103,101,45,82,101,100,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,89,108,71,110,34,62,89,101,108,108,111,119,45,71,114,101,101,110,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,89,108,71,110,66,117,34,62,89,101,108,108,111,119,45,71,114,101,101,110,45,66,108,117,101,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,80,108,97,115,109,97,34,62,80,108,97,115,109,97,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,77,97,103,109,97,34,62,77,97,103,109,97,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,73,110,102,101,114,110,111,34,62,73,110,102,101,114,110,111,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,86,105,114,105,100,105,115,34,62,86,105,114,105,100,105,115,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,84,117,114,98,111,34,62,84,117,114,98,111,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,115,101,108,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,102,111,114,109,45,103,114,111,117,112,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,102,111,114,61,34,115,101,116,116,105,110,103,84,114,101,101,109,97,112,83,105,122,101,34,62,84,114,101,101,109,97,112,32,115,105,122,101,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,101,108,101,99,116,32,105,100,61,34,115,101,116,116,105,110,103,84,114,101,101,109,97,112,83,105,122,101,34,32,99,108,97,115,115,61,34,102,111,114,109,45,99,111,110,116,114,111,108,32,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,115,109,97,108,108,34,62,83,109,97,108,108,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,109,101,100,105,117,109,34,62,77,101,100,105,117,109,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,108,97,114,103,101,34,62,76,97,114,103,101,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,120,45,108,97,114,103,101,34,62,88,45,76,97,114,103,101,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,120,120,45,108,97,114,103,101,34,62,88,88,45,76,97,114,103,101,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,115,101,108,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,117,116,116,111,110,32,99,108,97,115,115,61,34,98,116,110,32,98,116,110,45,112,114,105,109,97,114,121,32,109,108,45,97,117,116,111,34,32,111,110,99,108,105,99,107,61,34,117,112,100,97,116,101,83,101,116,116,105,110,103,115,40,41,34,62,85,112,100,97,116,101,32,115,101,116,116,105,110,103,115,60,47,98,117,116,116,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,34,32,105,100,61,34,112,97,116,104,84,114,101,101,77,111,100,97,108,34,32,116,97,98,105,110,100,101,120,61,34,45,49,34,32,114,111,108,101,61,34,100,105,97,108,111,103,34,32,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,109,111,100,97,108,45,116,105,116,108,101,34,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,62,10,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,100,105,97,108,111,103,32,109,111,100,97,108,45,108,103,34,32,114,111,108,101,61,34,100,111,99,117,109,101,110,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,99,111,110,116,101,110,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,104,101,97,100,101,114,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,104,53,32,99,108,97,115,115,61,34,109,111,100,97,108,45,116,105,116,108,101,34,62,83,101,108,101,99,116,32,112,97,116,104,60,47,104,53,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,117,116,116,111,110,32,116,121,112,101,61,34,98,117,116,116,111,110,34,32,99,108,97,115,115,61,34,99,108,111,115,101,34,32,100,97,116,97,45,100,105,115,109,105,115,115,61,34,109,111,100,97,108,34,32,97,114,105,97,45,108,97,98,101,108,61,34,67,108,111,115,101,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,112,97,110,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,62,38,116,105,109,101,115,59,60,47,115,112,97,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,98,117,116,116,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,98,111,100,121,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,105,100,61,34,112,97,116,104,84,114,101,101,34,32,99,108,97,115,115,61,34,116,114,101,101,34,62,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,60,100,105,118,32,105,100,61,34,115,101,97,114,99,104,82,101,115,117,108,116,115,34,62,60,47,100,105,118,62,10,60,47,100,105,118,62,10,10,60,115,99,114,105,112,116,32,115,114,99,61,34,106,115,108,105,98,34,32,116,121,112,101,61,34,116,101,120,116,47,106,97,118,97,115,99,114,105,112,116,34,62,60,47,115,99,114,105,112,116,62,10,60,115,99,114,105,112,116,32,115,114,99,61,34,106,115,115,101,97,114,99,104,34,32,116,121,112,101,61,34,116,101,120,116,47,106,97,118,97,115,99,114,105,112,116,34,62,60,47,115,99,114,105,112,116,62,10,60,47,98,111,100,121,62,10,60,47,104,116,109,108,62,10}; +char stats_html[25548] = {60,33,68,79,67,84,89,80,69,32,104,116,109,108,62,10,60,104,116,109,108,32,108,97,110,103,61,34,101,110,34,62,10,60,104,101,97,100,62,10,32,32,32,32,60,109,101,116,97,32,99,104,97,114,115,101,116,61,34,117,116,102,45,56,34,62,10,32,32,32,32,60,116,105,116,108,101,62,115,105,115,116,50,32,45,32,83,116,97,116,115,60,47,116,105,116,108,101,62,10,32,32,32,32,60,109,101,116,97,32,110,97,109,101,61,39,118,105,101,119,112,111,114,116,39,32,99,111,110,116,101,110,116,61,39,119,105,100,116,104,61,100,101,118,105,99,101,45,119,105,100,116,104,44,32,105,110,105,116,105,97,108,45,115,99,97,108,101,61,49,46,48,44,32,109,97,120,105,109,117,109,45,115,99,97,108,101,61,49,46,48,44,32,117,115,101,114,45,115,99,97,108,97,98,108,101,61,110,111,39,47,62,10,32,32,32,32,60,108,105,110,107,32,104,114,101,102,61,34,99,115,115,34,32,114,101,108,61,34,115,116,121,108,101,115,104,101,101,116,34,32,116,121,112,101,61,34,116,101,120,116,47,99,115,115,34,62,10,60,47,104,101,97,100,62,10,60,98,111,100,121,62,10,10,60,110,97,118,32,99,108,97,115,115,61,34,110,97,118,98,97,114,32,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,34,62,10,32,32,32,32,60,97,32,99,108,97,115,115,61,34,110,97,118,98,97,114,45,98,114,97,110,100,34,32,104,114,101,102,61,34,47,34,62,115,105,115,116,50,60,47,97,62,10,32,32,32,32,60,115,112,97,110,32,99,108,97,115,115,61,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,118,101,114,115,105,111,110,34,62,50,46,51,46,48,60,47,115,112,97,110,62,10,32,32,32,32,60,115,112,97,110,32,99,108,97,115,115,61,34,116,97,103,108,105,110,101,34,62,76,105,103,104,116,110,105,110,103,45,102,97,115,116,32,102,105,108,101,32,115,121,115,116,101,109,32,105,110,100,101,120,101,114,32,97,110,100,32,115,101,97,114,99,104,32,116,111,111,108,32,60,47,115,112,97,110,62,10,32,32,32,32,60,97,32,115,116,121,108,101,61,34,109,97,114,103,105,110,45,108,101,102,116,58,32,97,117,116,111,34,32,99,108,97,115,115,61,34,98,116,110,34,32,104,114,101,102,61,34,47,34,62,66,97,99,107,60,47,97,62,10,32,32,32,32,60,98,117,116,116,111,110,32,99,108,97,115,115,61,34,98,116,110,34,32,116,121,112,101,61,34,98,117,116,116,111,110,34,32,100,97,116,97,45,116,111,103,103,108,101,61,34,109,111,100,97,108,34,32,100,97,116,97,45,116,97,114,103,101,116,61,34,35,115,101,116,116,105,110,103,115,34,10,32,32,32,32,32,32,32,32,32,32,32,32,111,110,99,108,105,99,107,61,34,108,111,97,100,83,101,116,116,105,110,103,115,40,41,34,62,83,101,116,116,105,110,103,115,10,32,32,32,32,60,47,98,117,116,116,111,110,62,10,32,32,32,32,60,98,117,116,116,111,110,32,99,108,97,115,115,61,34,98,116,110,34,32,116,105,116,108,101,61,34,84,111,103,103,108,101,32,116,104,101,109,101,34,32,111,110,99,108,105,99,107,61,34,116,111,103,103,108,101,84,104,101,109,101,40,41,34,62,84,104,101,109,101,60,47,98,117,116,116,111,110,62,10,60,47,110,97,118,62,10,10,60,100,105,118,32,99,108,97,115,115,61,34,99,111,110,116,97,105,110,101,114,32,112,98,45,51,34,62,10,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,97,114,100,34,62,10,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,97,114,100,45,98,111,100,121,34,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,102,111,114,61,34,105,110,100,105,99,101,115,34,62,73,110,100,101,120,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,115,101,108,101,99,116,32,105,100,61,34,105,110,100,105,99,101,115,34,32,111,110,99,104,97,110,103,101,61,34,117,112,100,97,116,101,83,116,97,116,115,40,41,34,62,60,47,115,101,108,101,99,116,62,10,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,60,100,105,118,32,105,100,61,34,116,114,101,101,109,97,112,45,99,97,114,100,34,32,99,108,97,115,115,61,34,115,116,97,116,115,45,99,97,114,100,34,62,10,32,32,32,32,32,32,32,32,60,98,117,116,116,111,110,32,99,108,97,115,115,61,34,98,116,110,32,115,116,97,116,115,45,98,116,110,34,32,111,110,99,108,105,99,107,61,34,102,117,108,108,83,99,114,101,101,110,40,39,116,114,101,101,109,97,112,45,99,97,114,100,39,41,34,62,69,110,108,97,114,103,101,60,47,98,117,116,116,111,110,62,10,32,32,32,32,32,32,32,32,60,98,117,116,116,111,110,32,99,108,97,115,115,61,34,98,116,110,32,115,116,97,116,115,45,98,116,110,34,32,111,110,99,108,105,99,107,61,34,101,120,112,111,114,116,84,114,101,101,109,97,112,40,41,34,62,69,120,112,111,114,116,60,47,98,117,116,116,111,110,62,10,32,32,32,32,32,32,32,32,60,115,118,103,32,105,100,61,34,116,114,101,101,109,97,112,34,62,60,47,115,118,103,62,10,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,60,100,105,118,32,105,100,61,34,103,114,97,112,104,115,45,99,97,114,100,34,32,99,108,97,115,115,61,34,115,116,97,116,115,45,99,97,114,100,34,62,10,32,32,32,32,32,32,32,32,60,98,117,116,116,111,110,32,99,108,97,115,115,61,34,98,116,110,32,115,116,97,116,115,45,98,116,110,34,32,111,110,99,108,105,99,107,61,34,102,117,108,108,83,99,114,101,101,110,40,39,103,114,97,112,104,115,45,99,97,114,100,39,41,34,62,69,110,108,97,114,103,101,60,47,98,117,116,116,111,110,62,10,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,103,114,97,112,104,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,115,118,103,32,105,100,61,34,97,103,103,95,109,105,109,101,95,115,105,122,101,34,62,60,47,115,118,103,62,10,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,103,114,97,112,104,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,115,118,103,32,105,100,61,34,97,103,103,95,109,105,109,101,95,99,111,117,110,116,34,62,60,47,115,118,103,62,10,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,103,114,97,112,104,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,115,118,103,32,105,100,61,34,100,97,116,101,95,104,105,115,116,111,103,114,97,109,34,62,60,47,115,118,103,62,10,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,103,114,97,112,104,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,115,118,103,32,105,100,61,34,115,105,122,101,95,104,105,115,116,111,103,114,97,109,34,62,60,47,115,118,103,62,10,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,60,47,100,105,118,62,10,60,47,100,105,118,62,10,10,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,34,32,105,100,61,34,115,101,116,116,105,110,103,115,34,32,116,97,98,105,110,100,101,120,61,34,45,49,34,32,114,111,108,101,61,34,100,105,97,108,111,103,34,32,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,109,111,100,97,108,45,116,105,116,108,101,34,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,62,10,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,100,105,97,108,111,103,32,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,34,32,114,111,108,101,61,34,100,111,99,117,109,101,110,116,34,62,10,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,99,111,110,116,101,110,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,104,101,97,100,101,114,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,104,53,32,99,108,97,115,115,61,34,109,111,100,97,108,45,116,105,116,108,101,34,62,83,101,116,116,105,110,103,115,60,47,104,53,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,117,116,116,111,110,32,116,121,112,101,61,34,98,117,116,116,111,110,34,32,99,108,97,115,115,61,34,99,108,111,115,101,34,32,100,97,116,97,45,100,105,115,109,105,115,115,61,34,109,111,100,97,108,34,32,97,114,105,97,45,108,97,98,101,108,61,34,67,108,111,115,101,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,112,97,110,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,62,38,116,105,109,101,115,59,60,47,115,112,97,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,98,117,116,116,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,109,111,100,97,108,45,98,111,100,121,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,32,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,34,32,105,100,61,34,115,101,116,116,105,110,103,72,105,103,104,108,105,103,104,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,34,32,102,111,114,61,34,115,101,116,116,105,110,103,72,105,103,104,108,105,103,104,116,34,62,69,110,97,98,108,101,32,104,105,103,104,108,105,103,104,116,105,110,103,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,32,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,34,32,105,100,61,34,115,101,116,116,105,110,103,70,117,122,122,121,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,34,32,102,111,114,61,34,115,101,116,116,105,110,103,70,117,122,122,121,34,62,83,101,116,32,102,117,122,122,121,32,115,101,97,114,99,104,32,98,121,32,100,101,102,97,117,108,116,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,32,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,34,32,105,100,61,34,115,101,116,116,105,110,103,83,101,97,114,99,104,73,110,80,97,116,104,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,34,32,102,111,114,61,34,115,101,116,116,105,110,103,83,101,97,114,99,104,73,110,80,97,116,104,34,62,69,110,97,98,108,101,32,109,97,116,99,104,105,110,103,32,113,117,101,114,121,32,97,103,97,105,110,115,116,32,100,111,99,117,109,101,110,116,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,102,111,114,61,34,115,101,116,116,105,110,103,68,105,115,112,108,97,121,34,62,68,105,115,112,108,97,121,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,101,108,101,99,116,32,105,100,61,34,115,101,116,116,105,110,103,68,105,115,112,108,97,121,34,32,99,108,97,115,115,61,34,102,111,114,109,45,99,111,110,116,114,111,108,32,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,103,114,105,100,34,62,71,114,105,100,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,108,105,115,116,34,62,76,105,115,116,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,115,101,108,101,99,116,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,104,114,47,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,104,52,62,83,116,97,116,115,60,47,104,52,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,102,111,114,109,45,103,114,111,117,112,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,102,111,114,61,34,115,101,116,116,105,110,103,84,114,101,101,109,97,112,84,121,112,101,34,62,84,114,101,101,109,97,112,32,116,121,112,101,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,101,108,101,99,116,32,105,100,61,34,115,101,116,116,105,110,103,84,114,101,101,109,97,112,84,121,112,101,34,32,99,108,97,115,115,61,34,102,111,114,109,45,99,111,110,116,114,111,108,32,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,99,97,115,99,97,100,101,100,34,62,67,97,115,99,97,100,101,100,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,102,108,97,116,34,62,70,108,97,116,32,40,99,111,109,112,97,99,116,41,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,115,101,108,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,102,111,114,109,45,103,114,111,117,112,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,102,111,114,61,34,115,101,116,116,105,110,103,84,114,101,101,109,97,112,84,105,108,105,110,103,34,62,84,114,101,101,109,97,112,32,116,105,108,105,110,103,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,101,108,101,99,116,32,105,100,61,34,115,101,116,116,105,110,103,84,114,101,101,109,97,112,84,105,108,105,110,103,34,32,99,108,97,115,115,61,34,102,111,114,109,45,99,111,110,116,114,111,108,32,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,98,105,110,97,114,121,34,62,66,105,110,97,114,121,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,115,113,117,97,114,105,102,121,34,62,83,113,117,97,114,105,102,121,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,115,108,105,99,101,34,62,83,108,105,99,101,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,100,105,99,101,34,62,68,105,99,101,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,115,108,105,99,101,68,105,99,101,34,62,83,108,105,100,101,32,38,32,68,105,99,101,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,115,101,108,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,102,111,114,109,45,103,114,111,117,112,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,102,111,114,61,34,115,101,116,116,105,110,103,84,114,101,101,109,97,112,71,114,111,117,112,105,110,103,68,101,112,116,104,34,62,84,114,101,101,109,97,112,32,99,111,108,111,114,32,103,114,111,117,112,105,110,103,32,100,101,112,116,104,32,40,102,108,97,116,41,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,116,121,112,101,61,34,110,117,109,98,101,114,34,32,99,108,97,115,115,61,34,102,111,114,109,45,99,111,110,116,114,111,108,34,32,105,100,61,34,115,101,116,116,105,110,103,84,114,101,101,109,97,112,71,114,111,117,112,105,110,103,68,101,112,116,104,34,32,109,105,110,61,34,49,34,32,109,97,120,61,34,49,48,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,102,111,114,109,45,103,114,111,117,112,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,102,111,114,61,34,115,101,116,116,105,110,103,84,114,101,101,109,97,112,67,111,108,111,114,34,62,84,114,101,101,109,97,112,32,99,111,108,111,114,32,40,99,97,115,99,97,100,101,100,41,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,101,108,101,99,116,32,105,100,61,34,115,101,116,116,105,110,103,84,114,101,101,109,97,112,67,111,108,111,114,34,32,99,108,97,115,115,61,34,102,111,114,109,45,99,111,110,116,114,111,108,32,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,80,117,66,117,71,110,34,62,80,117,114,112,108,101,45,66,108,117,101,45,71,114,101,101,110,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,80,117,82,100,34,62,80,117,114,112,108,101,45,82,101,100,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,80,117,66,117,34,62,80,117,114,112,108,101,45,66,108,117,101,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,89,108,79,114,66,114,34,62,89,101,108,108,111,119,45,79,114,97,110,103,101,45,66,114,111,119,110,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,89,108,79,114,82,100,34,62,89,101,108,108,111,119,45,79,114,97,110,103,101,45,82,101,100,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,89,108,71,110,34,62,89,101,108,108,111,119,45,71,114,101,101,110,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,89,108,71,110,66,117,34,62,89,101,108,108,111,119,45,71,114,101,101,110,45,66,108,117,101,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,80,108,97,115,109,97,34,62,80,108,97,115,109,97,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,77,97,103,109,97,34,62,77,97,103,109,97,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,73,110,102,101,114,110,111,34,62,73,110,102,101,114,110,111,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,86,105,114,105,100,105,115,34,62,86,105,114,105,100,105,115,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,84,117,114,98,111,34,62,84,117,114,98,111,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,115,101,108,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,102,111,114,109,45,103,114,111,117,112,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,102,111,114,61,34,115,101,116,116,105,110,103,84,114,101,101,109,97,112,83,105,122,101,34,62,84,114,101,101,109,97,112,32,115,105,122,101,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,101,108,101,99,116,32,105,100,61,34,115,101,116,116,105,110,103,84,114,101,101,109,97,112,83,105,122,101,34,32,99,108,97,115,115,61,34,102,111,114,109,45,99,111,110,116,114,111,108,32,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,115,109,97,108,108,34,62,83,109,97,108,108,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,109,101,100,105,117,109,34,62,77,101,100,105,117,109,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,108,97,114,103,101,34,62,76,97,114,103,101,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,120,45,108,97,114,103,101,34,62,88,45,76,97,114,103,101,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,112,116,105,111,110,32,118,97,108,117,101,61,34,120,120,45,108,97,114,103,101,34,62,88,88,45,76,97,114,103,101,60,47,111,112,116,105,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,115,101,108,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,117,116,116,111,110,32,99,108,97,115,115,61,34,98,116,110,32,98,116,110,45,112,114,105,109,97,114,121,32,102,108,111,97,116,45,114,105,103,104,116,34,32,111,110,99,108,105,99,107,61,34,117,112,100,97,116,101,83,101,116,116,105,110,103,115,40,41,34,62,85,112,100,97,116,101,32,115,101,116,116,105,110,103,115,60,47,98,117,116,116,111,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,60,47,100,105,118,62,10,60,47,100,105,118,62,10,10,60,115,99,114,105,112,116,32,115,114,99,61,34,106,115,108,105,98,34,32,116,121,112,101,61,34,116,101,120,116,47,106,97,118,97,115,99,114,105,112,116,34,62,60,47,115,99,114,105,112,116,62,10,60,115,99,114,105,112,116,62,10,108,101,116,32,119,105,100,116,104,59,10,108,101,116,32,104,101,105,103,104,116,59,10,108,101,116,32,105,110,100,101,120,77,97,112,32,61,32,123,125,59,10,10,99,111,110,115,116,32,98,97,114,72,101,105,103,104,116,32,61,32,50,48,59,10,99,111,110,115,116,32,111,114,100,105,110,97,108,67,111,108,111,114,32,61,32,100,51,46,115,99,97,108,101,79,114,100,105,110,97,108,40,100,51,46,115,99,104,101,109,101,67,97,116,101,103,111,114,121,49,48,41,59,10,10,99,111,110,115,116,32,102,111,114,109,97,116,83,73,32,61,32,100,51,46,102,111,114,109,97,116,40,34,126,115,34,41,59,10,10,10,99,111,110,115,116,32,84,73,76,73,78,71,95,77,79,68,69,83,32,61,32,123,10,32,32,32,32,34,115,113,117,97,114,105,102,121,34,58,32,100,51,46,116,114,101,101,109,97,112,83,113,117,97,114,105,102,121,44,10,32,32,32,32,34,98,105,110,97,114,121,34,58,32,100,51,46,116,114,101,101,109,97,112,66,105,110,97,114,121,44,10,32,32,32,32,34,115,108,105,99,101,68,105,99,101,34,58,32,100,51,46,116,114,101,101,109,97,112,83,108,105,99,101,68,105,99,101,44,10,32,32,32,32,34,115,108,105,99,101,34,58,32,100,51,46,116,114,101,101,109,97,112,83,108,105,99,101,44,10,32,32,32,32,34,100,105,99,101,34,58,32,100,51,46,116,114,101,101,109,97,112,68,105,99,101,44,10,125,59,10,10,99,111,110,115,116,32,67,79,76,79,82,83,32,61,32,123,10,32,32,32,32,34,80,117,66,117,71,110,34,58,32,100,51,46,105,110,116,101,114,112,111,108,97,116,101,80,117,66,117,71,110,44,10,32,32,32,32,34,80,117,82,100,34,58,32,100,51,46,105,110,116,101,114,112,111,108,97,116,101,80,117,82,100,44,10,32,32,32,32,34,80,117,66,117,34,58,32,100,51,46,105,110,116,101,114,112,111,108,97,116,101,80,117,66,117,44,10,32,32,32,32,34,89,108,79,114,66,114,34,58,32,100,51,46,105,110,116,101,114,112,111,108,97,116,101,89,108,79,114,66,114,44,10,32,32,32,32,34,89,108,79,114,82,100,34,58,32,100,51,46,105,110,116,101,114,112,111,108,97,116,101,89,108,79,114,82,100,44,10,32,32,32,32,34,89,108,71,110,34,58,32,100,51,46,105,110,116,101,114,112,111,108,97,116,101,89,108,71,110,44,10,32,32,32,32,34,89,108,71,110,66,117,34,58,32,100,51,46,105,110,116,101,114,112,111,108,97,116,101,89,108,71,110,66,117,44,10,32,32,32,32,34,80,108,97,115,109,97,34,58,32,100,51,46,105,110,116,101,114,112,111,108,97,116,101,80,108,97,115,109,97,44,10,32,32,32,32,34,77,97,103,109,97,34,58,32,100,51,46,105,110,116,101,114,112,111,108,97,116,101,77,97,103,109,97,44,10,32,32,32,32,34,73,110,102,101,114,110,111,34,58,32,100,51,46,105,110,116,101,114,112,111,108,97,116,101,73,110,102,101,114,110,111,44,10,32,32,32,32,34,86,105,114,105,100,105,115,34,58,32,100,51,46,105,110,116,101,114,112,111,108,97,116,101,86,105,114,105,100,105,115,44,10,32,32,32,32,34,84,117,114,98,111,34,58,32,100,51,46,105,110,116,101,114,112,111,108,97,116,101,84,117,114,98,111,44,10,125,59,10,10,99,111,110,115,116,32,83,73,90,69,83,32,61,32,123,10,32,32,32,32,34,115,109,97,108,108,34,58,32,91,56,48,48,44,32,54,48,48,93,44,10,32,32,32,32,34,109,101,100,105,117,109,34,58,32,91,49,51,48,48,44,32,55,53,48,93,44,10,32,32,32,32,34,108,97,114,103,101,34,58,32,91,49,57,48,48,44,32,57,48,48,93,44,10,32,32,32,32,34,120,45,108,97,114,103,101,34,58,32,91,50,56,48,48,44,32,49,55,48,48,93,44,10,32,32,32,32,34,120,120,45,108,97,114,103,101,34,58,32,91,51,54,48,48,44,32,50,48,48,48,93,44,10,125,59,10,10,99,111,110,115,116,32,102,105,108,108,79,112,97,99,105,116,121,32,61,32,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,46,105,110,99,108,117,100,101,115,40,34,115,105,115,116,34,41,32,63,32,48,46,57,32,58,32,48,46,54,59,10,10,99,111,110,115,116,32,117,105,100,115,32,61,32,123,125,59,10,10,102,117,110,99,116,105,111,110,32,117,105,100,40,110,97,109,101,41,32,123,10,32,32,32,32,108,101,116,32,105,100,32,61,32,117,105,100,115,91,110,97,109,101,93,32,124,124,32,48,59,10,32,32,32,32,117,105,100,115,91,110,97,109,101,93,32,61,32,105,100,32,43,32,49,59,10,32,32,32,32,114,101,116,117,114,110,32,110,97,109,101,32,43,32,105,100,59,10,125,10,10,99,111,110,115,116,32,98,117,114,114,111,119,32,61,32,102,117,110,99,116,105,111,110,32,40,116,97,98,108,101,44,32,97,100,100,83,101,108,102,68,105,114,41,32,123,10,32,32,32,32,99,111,110,115,116,32,114,111,111,116,32,61,32,123,125,59,10,32,32,32,32,116,97,98,108,101,46,102,111,114,69,97,99,104,40,114,111,119,32,61,62,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,108,97,121,101,114,32,61,32,114,111,111,116,59,10,10,32,32,32,32,32,32,32,32,114,111,119,46,116,97,120,111,110,111,109,121,46,102,111,114,69,97,99,104,40,107,101,121,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,108,97,121,101,114,91,107,101,121,93,32,61,32,107,101,121,32,105,110,32,108,97,121,101,114,32,63,32,108,97,121,101,114,91,107,101,121,93,32,58,32,123,125,59,10,32,32,32,32,32,32,32,32,32,32,32,32,108,97,121,101,114,32,61,32,108,97,121,101,114,91,107,101,121,93,59,10,32,32,32,32,32,32,32,32,125,41,59,10,32,32,32,32,32,32,32,32,105,102,32,40,79,98,106,101,99,116,46,107,101,121,115,40,108,97,121,101,114,41,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,108,97,121,101,114,91,34,36,115,105,122,101,36,34,93,32,61,32,114,111,119,46,115,105,122,101,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,97,100,100,83,101,108,102,68,105,114,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,108,97,121,101,114,91,34,46,34,93,32,61,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,34,36,115,105,122,101,36,34,58,32,114,111,119,46,115,105,122,101,44,10,32,32,32,32,32,32,32,32,32,32,32,32,125,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,41,59,10,10,32,32,32,32,99,111,110,115,116,32,100,101,115,99,101,110,100,32,61,32,102,117,110,99,116,105,111,110,32,40,111,98,106,44,32,100,101,112,116,104,41,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,41,46,102,105,108,116,101,114,40,107,32,61,62,32,107,32,33,61,61,32,34,36,115,105,122,101,36,34,41,46,109,97,112,40,107,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,99,104,105,108,100,32,61,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,97,109,101,58,32,107,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,101,112,116,104,58,32,100,101,112,116,104,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,48,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,58,32,100,101,115,99,101,110,100,40,111,98,106,91,107,93,44,32,100,101,112,116,104,32,43,32,49,41,10,32,32,32,32,32,32,32,32,32,32,32,32,125,59,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,34,36,115,105,122,101,36,34,32,105,110,32,111,98,106,91,107,93,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,46,118,97,108,117,101,32,61,32,111,98,106,91,107,93,91,34,36,115,105,122,101,36,34,93,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,104,105,108,100,59,10,32,32,32,32,32,32,32,32,125,41,59,10,32,32,32,32,125,59,10,10,32,32,32,32,114,101,116,117,114,110,32,123,10,32,32,32,32,32,32,32,32,110,97,109,101,58,32,96,91,36,123,105,110,100,101,120,77,97,112,91,36,40,34,35,105,110,100,105,99,101,115,34,41,46,118,97,108,40,41,93,125,93,96,44,10,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,58,32,100,101,115,99,101,110,100,40,114,111,111,116,44,32,49,41,44,10,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,48,44,10,32,32,32,32,32,32,32,32,100,101,112,116,104,58,32,48,44,10,32,32,32,32,125,10,125,59,10,10,102,117,110,99,116,105,111,110,32,102,108,97,116,84,114,101,101,109,97,112,40,100,97,116,97,44,32,115,118,103,41,32,123,10,32,32,32,32,99,111,110,115,116,32,114,111,111,116,32,61,32,100,51,46,116,114,101,101,109,97,112,40,41,10,32,32,32,32,32,32,32,32,46,116,105,108,101,40,84,73,76,73,78,71,95,77,79,68,69,83,91,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,84,105,108,105,110,103,93,41,10,32,32,32,32,32,32,32,32,46,115,105,122,101,40,91,119,105,100,116,104,44,32,104,101,105,103,104,116,93,41,10,32,32,32,32,32,32,32,32,46,112,97,100,100,105,110,103,40,49,41,10,32,32,32,32,32,32,32,32,46,114,111,117,110,100,40,116,114,117,101,41,40,10,32,32,32,32,32,32,32,32,32,32,32,32,100,51,46,104,105,101,114,97,114,99,104,121,40,100,97,116,97,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,115,117,109,40,100,32,61,62,32,100,46,118,97,108,117,101,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,98,46,118,97,108,117,101,32,45,32,97,46,118,97,108,117,101,41,10,32,32,32,32,32,32,32,32,41,59,10,10,32,32,32,32,99,111,110,115,116,32,108,101,97,102,32,61,32,115,118,103,46,115,101,108,101,99,116,65,108,108,40,34,103,34,41,10,32,32,32,32,32,32,32,32,46,100,97,116,97,40,114,111,111,116,46,108,101,97,118,101,115,40,41,41,10,32,32,32,32,32,32,32,32,46,106,111,105,110,40,34,103,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,32,100,32,61,62,32,96,116,114,97,110,115,108,97,116,101,40,36,123,100,46,120,48,125,44,36,123,100,46,121,48,125,41,96,41,59,10,10,32,32,32,32,108,101,97,102,46,97,112,112,101,110,100,40,34,116,105,116,108,101,34,41,10,32,32,32,32,32,32,32,32,46,116,101,120,116,40,100,32,61,62,32,96,36,123,100,46,97,110,99,101,115,116,111,114,115,40,41,46,114,101,118,101,114,115,101,40,41,46,109,97,112,40,100,32,61,62,32,100,46,100,97,116,97,46,110,97,109,101,41,46,106,111,105,110,40,34,47,34,41,125,92,110,36,123,104,117,109,97,110,70,105,108,101,83,105,122,101,40,100,46,118,97,108,117,101,41,125,96,41,59,10,10,32,32,32,32,108,101,97,102,46,97,112,112,101,110,100,40,34,114,101,99,116,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,105,100,34,44,32,100,32,61,62,32,40,100,46,108,101,97,102,85,105,100,32,61,32,117,105,100,40,34,108,101,97,102,34,41,41,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,102,105,108,108,34,44,32,100,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,100,46,100,101,112,116,104,32,62,32,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,71,114,111,117,112,105,110,103,68,101,112,116,104,41,32,100,32,61,32,100,46,112,97,114,101,110,116,59,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,114,100,105,110,97,108,67,111,108,111,114,40,100,46,100,97,116,97,46,110,97,109,101,41,59,10,32,32,32,32,32,32,32,32,125,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,102,105,108,108,45,111,112,97,99,105,116,121,34,44,32,102,105,108,108,79,112,97,99,105,116,121,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,119,105,100,116,104,34,44,32,100,32,61,62,32,100,46,120,49,32,45,32,100,46,120,48,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,32,100,32,61,62,32,100,46,121,49,32,45,32,100,46,121,48,41,59,10,10,32,32,32,32,108,101,97,102,46,97,112,112,101,110,100,40,34,99,108,105,112,80,97,116,104,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,105,100,34,44,32,100,32,61,62,32,40,100,46,99,108,105,112,85,105,100,32,61,32,117,105,100,40,34,99,108,105,112,34,41,41,41,10,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,34,117,115,101,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,104,114,101,102,34,44,32,100,32,61,62,32,96,35,36,123,100,46,108,101,97,102,85,105,100,125,96,41,59,10,10,32,32,32,32,108,101,97,102,46,97,112,112,101,110,100,40,34,116,101,120,116,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,99,108,105,112,45,112,97,116,104,34,44,32,100,32,61,62,32,96,117,114,108,40,35,36,123,100,46,99,108,105,112,85,105,100,125,41,96,41,10,32,32,32,32,32,32,32,32,46,115,101,108,101,99,116,65,108,108,40,34,116,115,112,97,110,34,41,10,32,32,32,32,32,32,32,32,46,100,97,116,97,40,100,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,46,100,97,116,97,46,110,97,109,101,32,61,61,61,32,34,46,34,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,32,61,32,100,46,112,97,114,101,110,116,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,100,46,100,97,116,97,46,110,97,109,101,44,32,104,117,109,97,110,70,105,108,101,83,105,122,101,40,100,46,118,97,108,117,101,41,93,10,32,32,32,32,32,32,32,32,125,41,10,32,32,32,32,32,32,32,32,46,106,111,105,110,40,34,116,115,112,97,110,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,120,34,44,32,50,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,121,34,44,32,40,100,44,32,105,44,32,110,111,100,101,115,41,32,61,62,32,96,36,123,105,32,61,61,61,32,48,32,63,32,49,46,49,32,58,32,50,46,51,125,101,109,96,41,10,32,32,32,32,32,32,32,32,46,116,101,120,116,40,100,32,61,62,32,100,41,59,10,125,10,10,102,117,110,99,116,105,111,110,32,99,97,115,99,97,100,101,40,114,111,111,116,44,32,111,102,102,115,101,116,41,32,123,10,32,32,32,32,99,111,110,115,116,32,120,32,61,32,110,101,119,32,77,97,112,59,10,32,32,32,32,99,111,110,115,116,32,121,32,61,32,110,101,119,32,77,97,112,59,10,32,32,32,32,114,101,116,117,114,110,32,114,111,111,116,46,101,97,99,104,65,102,116,101,114,40,100,32,61,62,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,100,46,99,104,105,108,100,114,101,110,32,38,38,32,100,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,32,33,61,61,32,48,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,120,46,115,101,116,40,100,44,32,49,32,43,32,100,51,46,109,97,120,40,100,46,99,104,105,108,100,114,101,110,44,32,99,32,61,62,32,99,46,120,49,32,61,61,61,32,100,46,120,49,32,45,32,111,102,102,115,101,116,32,63,32,120,46,103,101,116,40,99,41,32,58,32,78,97,78,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,121,46,115,101,116,40,100,44,32,49,32,43,32,100,51,46,109,97,120,40,100,46,99,104,105,108,100,114,101,110,44,32,99,32,61,62,32,99,46,121,49,32,61,61,61,32,100,46,121,49,32,45,32,111,102,102,115,101,116,32,63,32,121,46,103,101,116,40,99,41,32,58,32,78,97,78,41,41,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,120,46,115,101,116,40,100,44,32,48,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,121,46,115,101,116,40,100,44,32,48,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,41,46,101,97,99,104,66,101,102,111,114,101,40,100,32,61,62,32,123,10,32,32,32,32,32,32,32,32,100,46,120,49,32,45,61,32,50,32,42,32,111,102,102,115,101,116,32,42,32,120,46,103,101,116,40,100,41,59,10,32,32,32,32,32,32,32,32,100,46,121,49,32,45,61,32,50,32,42,32,111,102,102,115,101,116,32,42,32,121,46,103,101,116,40,100,41,59,10,32,32,32,32,125,41,59,10,125,10,10,102,117,110,99,116,105,111,110,32,99,97,115,99,97,100,101,84,114,101,101,109,97,112,40,100,97,116,97,44,32,115,118,103,41,32,123,10,10,32,32,32,32,99,111,110,115,116,32,114,111,111,116,32,61,32,99,97,115,99,97,100,101,40,10,32,32,32,32,32,32,32,32,100,51,46,116,114,101,101,109,97,112,40,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,115,105,122,101,40,91,119,105,100,116,104,44,32,104,101,105,103,104,116,93,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,116,105,108,101,40,84,73,76,73,78,71,95,77,79,68,69,83,91,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,84,105,108,105,110,103,93,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,112,97,100,100,105,110,103,79,117,116,101,114,40,51,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,112,97,100,100,105,110,103,84,111,112,40,49,54,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,112,97,100,100,105,110,103,73,110,110,101,114,40,49,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,114,111,117,110,100,40,116,114,117,101,41,40,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,51,46,104,105,101,114,97,114,99,104,121,40,100,97,116,97,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,115,117,109,40,100,32,61,62,32,100,46,118,97,108,117,101,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,98,46,118,97,108,117,101,32,45,32,97,46,118,97,108,117,101,41,10,32,32,32,32,32,32,32,32,32,32,32,32,41,44,10,32,32,32,32,32,32,32,32,51,32,47,47,32,116,114,101,101,109,97,112,46,112,97,100,100,105,110,103,79,117,116,101,114,10,32,32,32,32,41,59,10,10,32,32,32,32,99,111,110,115,116,32,109,97,120,68,101,112,116,104,32,61,32,77,97,116,104,46,109,97,120,40,46,46,46,114,111,111,116,46,100,101,115,99,101,110,100,97,110,116,115,40,41,46,109,97,112,40,100,32,61,62,32,100,46,100,101,112,116,104,41,41,59,10,32,32,32,32,99,111,110,115,116,32,99,111,108,111,114,32,61,32,100,51,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,40,91,109,97,120,68,101,112,116,104,44,32,45,49,93,44,32,67,79,76,79,82,83,91,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,67,111,108,111,114,93,41,59,10,10,32,32,32,32,115,118,103,46,97,112,112,101,110,100,40,34,102,105,108,116,101,114,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,105,100,34,44,32,34,115,104,97,100,111,119,34,41,10,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,34,102,101,68,114,111,112,83,104,97,100,111,119,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,102,108,111,111,100,45,111,112,97,99,105,116,121,34,44,32,48,46,51,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,100,120,34,44,32,48,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,115,116,100,68,101,118,105,97,116,105,111,110,34,44,32,51,41,59,10,10,32,32,32,32,99,111,110,115,116,32,110,111,100,101,32,61,32,115,118,103,46,115,101,108,101,99,116,65,108,108,40,34,103,34,41,10,32,32,32,32,32,32,32,32,46,100,97,116,97,40,10,32,32,32,32,32,32,32,32,32,32,32,32,100,51,46,110,101,115,116,40,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,107,101,121,40,100,32,61,62,32,100,46,100,101,112,116,104,41,46,115,111,114,116,75,101,121,115,40,100,51,46,97,115,99,101,110,100,105,110,103,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,101,110,116,114,105,101,115,40,114,111,111,116,46,100,101,115,99,101,110,100,97,110,116,115,40,41,41,10,32,32,32,32,32,32,32,32,41,10,32,32,32,32,32,32,32,32,46,106,111,105,110,40,34,103,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,102,105,108,116,101,114,34,44,32,34,117,114,108,40,35,115,104,97,100,111,119,41,34,41,10,32,32,32,32,32,32,32,32,46,115,101,108,101,99,116,65,108,108,40,34,103,34,41,10,32,32,32,32,32,32,32,32,46,100,97,116,97,40,100,32,61,62,32,100,46,118,97,108,117,101,115,41,10,32,32,32,32,32,32,32,32,46,106,111,105,110,40,34,103,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,32,100,32,61,62,32,96,116,114,97,110,115,108,97,116,101,40,36,123,100,46,120,48,125,44,36,123,100,46,121,48,125,41,96,41,59,10,10,32,32,32,32,110,111,100,101,46,97,112,112,101,110,100,40,34,116,105,116,108,101,34,41,10,32,32,32,32,32,32,32,32,46,116,101,120,116,40,100,32,61,62,32,96,36,123,100,46,97,110,99,101,115,116,111,114,115,40,41,46,114,101,118,101,114,115,101,40,41,46,115,112,108,105,99,101,40,49,41,46,109,97,112,40,100,32,61,62,32,100,46,100,97,116,97,46,110,97,109,101,41,46,106,111,105,110,40,34,47,34,41,125,92,110,36,123,104,117,109,97,110,70,105,108,101,83,105,122,101,40,100,46,118,97,108,117,101,41,125,96,41,59,10,10,32,32,32,32,110,111,100,101,46,97,112,112,101,110,100,40,34,114,101,99,116,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,105,100,34,44,32,100,32,61,62,32,40,100,46,110,111,100,101,85,105,100,32,61,32,117,105,100,40,34,110,111,100,101,34,41,41,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,102,105,108,108,34,44,32,100,32,61,62,32,99,111,108,111,114,40,100,46,100,101,112,116,104,41,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,119,105,100,116,104,34,44,32,100,32,61,62,32,100,46,120,49,32,45,32,100,46,120,48,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,32,100,32,61,62,32,100,46,121,49,32,45,32,100,46,121,48,41,59,10,10,32,32,32,32,110,111,100,101,46,97,112,112,101,110,100,40,34,99,108,105,112,80,97,116,104,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,105,100,34,44,32,100,32,61,62,32,40,100,46,99,108,105,112,85,105,100,32,61,32,117,105,100,40,34,99,108,105,112,34,41,41,41,10,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,34,117,115,101,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,104,114,101,102,34,44,32,100,32,61,62,32,96,35,36,123,100,46,110,111,100,101,85,105,100,125,96,41,59,10,10,32,32,32,32,110,111,100,101,46,97,112,112,101,110,100,40,34,116,101,120,116,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,102,105,108,108,34,44,32,100,32,61,62,32,100,51,46,104,115,108,40,99,111,108,111,114,40,100,46,100,101,112,116,104,41,41,46,108,32,62,32,46,53,32,63,32,34,35,51,51,51,34,32,58,32,34,35,101,101,101,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,99,108,105,112,45,112,97,116,104,34,44,32,100,32,61,62,32,96,117,114,108,40,35,36,123,100,46,99,108,105,112,85,105,100,125,41,96,41,10,32,32,32,32,32,32,32,32,46,115,101,108,101,99,116,65,108,108,40,34,116,115,112,97,110,34,41,10,32,32,32,32,32,32,32,32,46,100,97,116,97,40,100,32,61,62,32,91,100,46,100,97,116,97,46,110,97,109,101,44,32,104,117,109,97,110,70,105,108,101,83,105,122,101,40,100,46,118,97,108,117,101,41,93,41,10,32,32,32,32,32,32,32,32,46,106,111,105,110,40,34,116,115,112,97,110,34,41,10,32,32,32,32,32,32,32,32,46,116,101,120,116,40,100,32,61,62,32,100,41,59,10,10,32,32,32,32,110,111,100,101,46,102,105,108,116,101,114,40,100,32,61,62,32,100,46,99,104,105,108,100,114,101,110,41,46,115,101,108,101,99,116,65,108,108,40,34,116,115,112,97,110,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,100,120,34,44,32,51,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,121,34,44,32,49,51,41,59,10,10,32,32,32,32,110,111,100,101,46,102,105,108,116,101,114,40,100,32,61,62,32,33,100,46,99,104,105,108,100,114,101,110,41,46,115,101,108,101,99,116,65,108,108,40,34,116,115,112,97,110,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,120,34,44,32,51,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,121,34,44,32,40,100,44,32,105,44,32,110,111,100,101,115,41,32,61,62,32,96,36,123,105,32,61,61,61,32,48,32,63,32,49,46,49,32,58,32,50,46,51,125,101,109,96,41,59,10,125,10,10,10,102,117,110,99,116,105,111,110,32,109,105,109,101,66,97,114,83,105,122,101,40,100,97,116,97,44,32,115,118,103,41,32,123,10,10,32,32,32,32,99,111,110,115,116,32,109,97,114,103,105,110,32,61,32,123,10,32,32,32,32,32,32,32,32,116,111,112,58,32,53,48,44,10,32,32,32,32,32,32,32,32,114,105,103,104,116,58,32,48,44,10,32,32,32,32,32,32,32,32,98,111,116,116,111,109,58,32,49,48,44,10,32,32,32,32,32,32,32,32,108,101,102,116,58,32,77,97,116,104,46,109,97,120,40,10,32,32,32,32,32,32,32,32,32,32,32,32,100,51,46,109,97,120,40,100,97,116,97,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,98,46,99,111,117,110,116,32,45,32,97,46,99,111,117,110,116,41,46,115,108,105,99,101,40,48,44,32,49,53,41,44,32,100,32,61,62,32,100,46,109,105,109,101,46,108,101,110,103,116,104,41,32,42,32,54,44,10,32,32,32,32,32,32,32,32,32,32,32,32,100,51,46,109,97,120,40,100,97,116,97,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,98,46,115,105,122,101,32,45,32,97,46,115,105,122,101,41,46,115,108,105,99,101,40,48,44,32,49,53,41,44,32,100,32,61,62,32,100,46,109,105,109,101,46,108,101,110,103,116,104,41,32,42,32,54,44,10,32,32,32,32,32,32,32,32,41,10,32,32,32,32,125,59,10,10,32,32,32,32,100,97,116,97,46,102,111,114,69,97,99,104,40,100,32,61,62,32,123,10,32,32,32,32,32,32,32,32,100,46,110,97,109,101,32,61,32,100,46,109,105,109,101,59,10,32,32,32,32,32,32,32,32,100,46,118,97,108,117,101,32,61,32,78,117,109,98,101,114,40,100,46,115,105,122,101,41,59,10,32,32,32,32,125,41,59,10,32,32,32,32,100,97,116,97,32,61,32,100,97,116,97,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,98,46,118,97,108,117,101,32,45,32,97,46,118,97,108,117,101,41,46,115,108,105,99,101,40,48,44,32,49,53,41,59,10,10,32,32,32,32,99,111,110,115,116,32,119,105,100,116,104,32,61,32,53,53,48,59,10,32,32,32,32,99,111,110,115,116,32,104,101,105,103,104,116,32,61,32,77,97,116,104,46,99,101,105,108,40,40,100,97,116,97,46,108,101,110,103,116,104,32,43,32,48,46,49,41,32,42,32,98,97,114,72,101,105,103,104,116,41,32,43,32,109,97,114,103,105,110,46,116,111,112,32,43,32,109,97,114,103,105,110,46,98,111,116,116,111,109,59,10,10,32,32,32,32,115,118,103,46,115,101,108,101,99,116,65,108,108,40,34,42,34,41,46,114,101,109,111,118,101,40,41,59,10,32,32,32,32,115,118,103,46,97,116,116,114,40,34,118,105,101,119,66,111,120,34,44,32,91,48,44,32,48,44,32,119,105,100,116,104,44,32,104,101,105,103,104,116,93,41,59,10,10,32,32,32,32,99,111,110,115,116,32,121,32,61,32,100,51,46,115,99,97,108,101,66,97,110,100,40,41,10,32,32,32,32,32,32,32,32,46,100,111,109,97,105,110,40,100,51,46,114,97,110,103,101,40,100,97,116,97,46,108,101,110,103,116,104,41,41,10,32,32,32,32,32,32,32,32,46,114,97,110,103,101,82,111,117,110,100,40,91,109,97,114,103,105,110,46,116,111,112,44,32,104,101,105,103,104,116,32,45,32,109,97,114,103,105,110,46,98,111,116,116,111,109,93,41,59,10,10,32,32,32,32,99,111,110,115,116,32,120,32,61,32,100,51,46,115,99,97,108,101,76,105,110,101,97,114,40,41,10,32,32,32,32,32,32,32,32,46,100,111,109,97,105,110,40,91,48,44,32,100,51,46,109,97,120,40,100,97,116,97,44,32,100,32,61,62,32,100,46,118,97,108,117,101,41,93,41,10,32,32,32,32,32,32,32,32,46,114,97,110,103,101,40,91,109,97,114,103,105,110,46,108,101,102,116,44,32,119,105,100,116,104,32,45,32,109,97,114,103,105,110,46,114,105,103,104,116,93,41,59,10,10,32,32,32,32,115,118,103,46,97,112,112,101,110,100,40,34,103,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,102,105,108,108,45,111,112,97,99,105,116,121,34,44,32,102,105,108,108,79,112,97,99,105,116,121,41,10,32,32,32,32,32,32,32,32,46,115,101,108,101,99,116,65,108,108,40,34,114,101,99,116,34,41,10,32,32,32,32,32,32,32,32,46,100,97,116,97,40,100,97,116,97,41,10,32,32,32,32,32,32,32,32,46,106,111,105,110,40,34,114,101,99,116,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,102,105,108,108,34,44,32,100,32,61,62,32,111,114,100,105,110,97,108,67,111,108,111,114,40,100,46,110,97,109,101,41,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,120,34,44,32,120,40,48,41,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,121,34,44,32,40,100,44,32,105,41,32,61,62,32,121,40,105,41,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,119,105,100,116,104,34,44,32,100,32,61,62,32,120,40,100,46,118,97,108,117,101,41,32,45,32,120,40,48,41,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,32,121,46,98,97,110,100,119,105,100,116,104,40,41,41,10,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,34,116,105,116,108,101,34,41,10,32,32,32,32,32,32,32,32,46,116,101,120,116,40,100,32,61,62,32,102,111,114,109,97,116,83,73,40,100,46,118,97,108,117,101,41,41,59,10,10,32,32,32,32,115,118,103,46,97,112,112,101,110,100,40,34,103,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,32,96,116,114,97,110,115,108,97,116,101,40,48,44,36,123,109,97,114,103,105,110,46,116,111,112,125,41,96,41,10,32,32,32,32,32,32,32,32,46,99,97,108,108,40,100,51,46,97,120,105,115,84,111,112,40,120,41,46,116,105,99,107,115,40,119,105,100,116,104,32,47,32,56,48,44,32,100,97,116,97,46,102,111,114,109,97,116,41,46,116,105,99,107,70,111,114,109,97,116,40,102,111,114,109,97,116,83,73,41,41,10,32,32,32,32,32,32,32,32,46,99,97,108,108,40,103,32,61,62,32,103,46,115,101,108,101,99,116,40,34,46,100,111,109,97,105,110,34,41,46,114,101,109,111,118,101,40,41,41,59,10,10,32,32,32,32,115,118,103,46,97,112,112,101,110,100,40,34,103,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,32,96,116,114,97,110,115,108,97,116,101,40,36,123,109,97,114,103,105,110,46,108,101,102,116,125,44,48,41,96,41,10,32,32,32,32,32,32,32,32,46,99,97,108,108,40,100,51,46,97,120,105,115,76,101,102,116,40,121,41,46,116,105,99,107,70,111,114,109,97,116,40,105,32,61,62,32,100,97,116,97,91,105,93,46,110,97,109,101,41,46,116,105,99,107,83,105,122,101,79,117,116,101,114,40,48,41,41,59,10,10,32,32,32,32,115,118,103,46,97,112,112,101,110,100,40,34,116,101,120,116,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,120,34,44,32,40,119,105,100,116,104,32,47,32,50,41,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,121,34,44,32,40,109,97,114,103,105,110,46,116,111,112,32,47,32,50,41,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,32,34,109,105,100,100,108,101,34,41,10,32,32,32,32,32,32,32,32,46,115,116,121,108,101,40,34,102,111,110,116,45,115,105,122,101,34,44,32,34,49,54,112,120,34,41,10,32,32,32,32,32,32,32,32,46,116,101,120,116,40,34,83,105,122,101,32,100,105,115,116,114,105,98,117,116,105,111,110,32,98,121,32,77,73,77,69,32,116,121,112,101,34,41,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,105,109,101,66,97,114,67,111,117,110,116,40,100,97,116,97,44,32,115,118,103,41,32,123,10,10,32,32,32,32,99,111,110,115,116,32,109,97,114,103,105,110,32,61,32,123,10,32,32,32,32,32,32,32,32,116,111,112,58,32,53,48,44,10,32,32,32,32,32,32,32,32,114,105,103,104,116,58,32,48,44,10,32,32,32,32,32,32,32,32,98,111,116,116,111,109,58,32,49,48,44,10,32,32,32,32,32,32,32,32,108,101,102,116,58,32,77,97,116,104,46,109,97,120,40,10,32,32,32,32,32,32,32,32,32,32,32,32,100,51,46,109,97,120,40,100,97,116,97,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,98,46,99,111,117,110,116,32,45,32,97,46,99,111,117,110,116,41,46,115,108,105,99,101,40,48,44,32,49,53,41,44,32,100,32,61,62,32,100,46,109,105,109,101,46,108,101,110,103,116,104,41,32,42,32,54,44,10,32,32,32,32,32,32,32,32,32,32,32,32,100,51,46,109,97,120,40,100,97,116,97,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,98,46,115,105,122,101,32,45,32,97,46,115,105,122,101,41,46,115,108,105,99,101,40,48,44,32,49,53,41,44,32,100,32,61,62,32,100,46,109,105,109,101,46,108,101,110,103,116,104,41,32,42,32,54,44,10,32,32,32,32,32,32,32,32,41,10,32,32,32,32,125,59,10,10,32,32,32,32,100,97,116,97,46,102,111,114,69,97,99,104,40,100,32,61,62,32,123,10,32,32,32,32,32,32,32,32,100,46,110,97,109,101,32,61,32,100,46,109,105,109,101,59,10,32,32,32,32,32,32,32,32,100,46,118,97,108,117,101,32,61,32,78,117,109,98,101,114,40,100,46,99,111,117,110,116,41,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,100,97,116,97,32,61,32,100,97,116,97,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,98,46,118,97,108,117,101,32,45,32,97,46,118,97,108,117,101,41,46,115,108,105,99,101,40,48,44,32,49,53,41,59,10,10,32,32,32,32,99,111,110,115,116,32,119,105,100,116,104,32,61,32,53,53,48,59,10,32,32,32,32,99,111,110,115,116,32,104,101,105,103,104,116,32,61,32,77,97,116,104,46,99,101,105,108,40,40,100,97,116,97,46,108,101,110,103,116,104,32,43,32,48,46,49,41,32,42,32,98,97,114,72,101,105,103,104,116,41,32,43,32,109,97,114,103,105,110,46,116,111,112,32,43,32,109,97,114,103,105,110,46,98,111,116,116,111,109,59,10,10,32,32,32,32,115,118,103,46,115,101,108,101,99,116,65,108,108,40,34,42,34,41,46,114,101,109,111,118,101,40,41,59,10,32,32,32,32,115,118,103,46,97,116,116,114,40,34,118,105,101,119,66,111,120,34,44,32,91,48,44,32,48,44,32,119,105,100,116,104,44,32,104,101,105,103,104,116,93,41,59,10,10,32,32,32,32,99,111,110,115,116,32,121,32,61,32,100,51,46,115,99,97,108,101,66,97,110,100,40,41,10,32,32,32,32,32,32,32,32,46,100,111,109,97,105,110,40,100,51,46,114,97,110,103,101,40,100,97,116,97,46,108,101,110,103,116,104,41,41,10,32,32,32,32,32,32,32,32,46,114,97,110,103,101,82,111,117,110,100,40,91,109,97,114,103,105,110,46,116,111,112,44,32,104,101,105,103,104,116,32,45,32,109,97,114,103,105,110,46,98,111,116,116,111,109,93,41,59,10,10,32,32,32,32,99,111,110,115,116,32,120,32,61,32,100,51,46,115,99,97,108,101,76,105,110,101,97,114,40,41,10,32,32,32,32,32,32,32,32,46,100,111,109,97,105,110,40,91,48,44,32,100,51,46,109,97,120,40,100,97,116,97,44,32,100,32,61,62,32,100,46,118,97,108,117,101,41,93,41,10,32,32,32,32,32,32,32,32,46,114,97,110,103,101,40,91,109,97,114,103,105,110,46,108,101,102,116,44,32,119,105,100,116,104,32,45,32,109,97,114,103,105,110,46,114,105,103,104,116,93,41,59,10,10,32,32,32,32,115,118,103,46,97,112,112,101,110,100,40,34,103,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,102,105,108,108,45,111,112,97,99,105,116,121,34,44,32,102,105,108,108,79,112,97,99,105,116,121,41,10,32,32,32,32,32,32,32,32,46,115,101,108,101,99,116,65,108,108,40,34,114,101,99,116,34,41,10,32,32,32,32,32,32,32,32,46,100,97,116,97,40,100,97,116,97,41,10,32,32,32,32,32,32,32,32,46,106,111,105,110,40,34,114,101,99,116,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,102,105,108,108,34,44,32,100,32,61,62,32,111,114,100,105,110,97,108,67,111,108,111,114,40,100,46,110,97,109,101,41,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,120,34,44,32,120,40,48,41,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,121,34,44,32,40,100,44,32,105,41,32,61,62,32,121,40,105,41,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,119,105,100,116,104,34,44,32,100,32,61,62,32,120,40,100,46,118,97,108,117,101,41,32,45,32,120,40,48,41,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,32,121,46,98,97,110,100,119,105,100,116,104,40,41,41,10,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,34,116,105,116,108,101,34,41,10,32,32,32,32,32,32,32,32,46,116,101,120,116,40,100,32,61,62,32,100,51,46,102,111,114,109,97,116,40,34,44,34,41,40,100,46,118,97,108,117,101,41,41,59,10,10,32,32,32,32,115,118,103,46,97,112,112,101,110,100,40,34,103,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,32,96,116,114,97,110,115,108,97,116,101,40,48,44,36,123,109,97,114,103,105,110,46,116,111,112,125,41,96,41,10,32,32,32,32,32,32,32,32,46,99,97,108,108,40,100,51,46,97,120,105,115,84,111,112,40,120,41,46,116,105,99,107,115,40,119,105,100,116,104,32,47,32,56,48,44,32,100,97,116,97,46,102,111,114,109,97,116,41,46,116,105,99,107,70,111,114,109,97,116,40,102,111,114,109,97,116,83,73,41,41,10,32,32,32,32,32,32,32,32,46,99,97,108,108,40,103,32,61,62,32,103,46,115,101,108,101,99,116,40,34,46,100,111,109,97,105,110,34,41,46,114,101,109,111,118,101,40,41,41,59,10,10,32,32,32,32,115,118,103,46,97,112,112,101,110,100,40,34,103,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,32,96,116,114,97,110,115,108,97,116,101,40,36,123,109,97,114,103,105,110,46,108,101,102,116,125,44,48,41,96,41,10,32,32,32,32,32,32,32,32,46,99,97,108,108,40,100,51,46,97,120,105,115,76,101,102,116,40,121,41,46,116,105,99,107,70,111,114,109,97,116,40,105,32,61,62,32,100,97,116,97,91,105,93,46,110,97,109,101,41,46,116,105,99,107,83,105,122,101,79,117,116,101,114,40,48,41,41,59,10,10,32,32,32,32,115,118,103,46,97,112,112,101,110,100,40,34,116,101,120,116,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,120,34,44,32,40,119,105,100,116,104,32,47,32,50,41,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,121,34,44,32,40,109,97,114,103,105,110,46,116,111,112,32,47,32,50,41,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,32,34,109,105,100,100,108,101,34,41,10,32,32,32,32,32,32,32,32,46,115,116,121,108,101,40,34,102,111,110,116,45,115,105,122,101,34,44,32,34,49,54,112,120,34,41,10,32,32,32,32,32,32,32,32,46,116,101,120,116,40,34,70,105,108,101,32,99,111,117,110,116,32,100,105,115,116,114,105,98,117,116,105,111,110,32,98,121,32,77,73,77,69,32,116,121,112,101,34,41,59,10,125,10,10,102,117,110,99,116,105,111,110,32,100,97,116,101,72,105,115,116,111,103,114,97,109,40,100,97,116,97,44,32,115,118,103,41,32,123,10,10,32,32,32,32,108,101,116,32,98,105,110,115,32,61,32,100,97,116,97,46,109,97,112,40,100,32,61,62,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,58,32,78,117,109,98,101,114,40,100,46,99,111,117,110,116,41,44,10,32,32,32,32,32,32,32,32,32,32,32,32,120,48,58,32,78,117,109,98,101,114,40,100,46,98,117,99,107,101,116,41,44,10,32,32,32,32,32,32,32,32,32,32,32,32,120,49,58,32,78,117,109,98,101,114,40,100,46,98,117,99,107,101,116,41,32,43,32,50,54,50,57,56,48,48,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,41,59,10,32,32,32,32,98,105,110,115,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,97,46,108,101,110,103,116,104,32,45,32,98,46,108,101,110,103,116,104,41,59,10,10,32,32,32,32,99,111,110,115,116,32,109,97,114,103,105,110,32,61,32,123,10,32,32,32,32,32,32,32,32,116,111,112,58,32,53,48,44,10,32,32,32,32,32,32,32,32,114,105,103,104,116,58,32,50,48,44,10,32,32,32,32,32,32,32,32,98,111,116,116,111,109,58,32,55,48,44,10,32,32,32,32,32,32,32,32,108,101,102,116,58,32,52,48,10,32,32,32,32,125,59,10,10,32,32,32,32,99,111,110,115,116,32,116,104,114,101,115,104,32,61,32,100,51,46,113,117,97,110,116,105,108,101,40,98,105,110,115,44,32,48,46,57,44,32,100,32,61,62,32,100,46,108,101,110,103,116,104,41,59,10,32,32,32,32,98,105,110,115,32,61,32,98,105,110,115,46,102,105,108,116,101,114,40,100,32,61,62,32,100,46,108,101,110,103,116,104,32,62,32,116,104,114,101,115,104,41,59,10,10,32,32,32,32,99,111,110,115,116,32,119,105,100,116,104,32,61,32,53,53,48,59,10,32,32,32,32,99,111,110,115,116,32,104,101,105,103,104,116,32,61,32,52,53,48,59,10,10,32,32,32,32,115,118,103,46,115,101,108,101,99,116,65,108,108,40,34,42,34,41,46,114,101,109,111,118,101,40,41,59,10,32,32,32,32,115,118,103,46,97,116,116,114,40,34,118,105,101,119,66,111,120,34,44,32,91,48,44,32,48,44,32,119,105,100,116,104,44,32,104,101,105,103,104,116,93,41,59,10,10,32,32,32,32,99,111,110,115,116,32,121,32,61,32,100,51,46,115,99,97,108,101,76,105,110,101,97,114,40,41,10,32,32,32,32,32,32,32,32,46,100,111,109,97,105,110,40,91,48,44,32,100,51,46,109,97,120,40,98,105,110,115,44,32,100,32,61,62,32,100,46,108,101,110,103,116,104,41,93,41,46,110,105,99,101,40,41,10,32,32,32,32,32,32,32,32,46,114,97,110,103,101,40,91,104,101,105,103,104,116,32,45,32,109,97,114,103,105,110,46,98,111,116,116,111,109,44,32,109,97,114,103,105,110,46,116,111,112,93,41,59,10,10,32,32,32,32,99,111,110,115,116,32,120,32,61,32,100,51,46,115,99,97,108,101,76,105,110,101,97,114,40,41,10,32,32,32,32,32,32,32,32,46,100,111,109,97,105,110,40,100,51,46,101,120,116,101,110,116,40,98,105,110,115,44,32,100,32,61,62,32,100,46,120,48,41,41,46,110,105,99,101,40,41,10,32,32,32,32,32,32,32,32,46,114,97,110,103,101,40,91,109,97,114,103,105,110,46,108,101,102,116,44,32,119,105,100,116,104,32,45,32,109,97,114,103,105,110,46,114,105,103,104,116,93,41,59,10,10,32,32,32,32,115,118,103,46,97,112,112,101,110,100,40,34,103,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,102,105,108,108,34,44,32,34,115,116,101,101,108,98,108,117,101,34,41,10,32,32,32,32,32,32,32,32,46,115,101,108,101,99,116,65,108,108,40,34,114,101,99,116,34,41,10,32,32,32,32,32,32,32,32,46,100,97,116,97,40,98,105,110,115,41,10,32,32,32,32,32,32,32,32,46,106,111,105,110,40,34,114,101,99,116,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,120,34,44,32,100,32,61,62,32,120,40,100,46,120,48,41,32,43,32,49,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,119,105,100,116,104,34,44,32,100,32,61,62,32,77,97,116,104,46,109,97,120,40,49,44,32,120,40,100,46,120,49,41,32,45,32,120,40,100,46,120,48,41,32,45,32,49,41,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,121,34,44,32,100,32,61,62,32,121,40,100,46,108,101,110,103,116,104,41,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,32,100,32,61,62,32,121,40,48,41,32,45,32,121,40,100,46,108,101,110,103,116,104,41,41,10,32,32,32,32,32,32,32,32,46,99,97,108,108,40,103,32,61,62,32,103,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,34,116,105,116,108,101,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,116,101,120,116,40,100,32,61,62,32,100,46,108,101,110,103,116,104,41,10,32,32,32,32,32,32,32,32,41,59,10,10,32,32,32,32,115,118,103,46,97,112,112,101,110,100,40,34,103,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,32,96,116,114,97,110,115,108,97,116,101,40,48,44,36,123,104,101,105,103,104,116,32,45,32,109,97,114,103,105,110,46,98,111,116,116,111,109,125,41,96,41,10,32,32,32,32,32,32,32,32,46,99,97,108,108,40,10,32,32,32,32,32,32,32,32,32,32,32,32,100,51,46,97,120,105,115,66,111,116,116,111,109,40,120,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,105,99,107,115,40,119,105,100,116,104,32,47,32,51,48,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,105,99,107,83,105,122,101,79,117,116,101,114,40,48,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,105,99,107,70,111,114,109,97,116,40,116,32,61,62,32,100,51,46,116,105,109,101,70,111,114,109,97,116,40,34,37,89,45,37,109,45,37,100,34,41,40,100,51,46,117,116,99,80,97,114,115,101,40,34,37,115,34,41,40,116,41,41,41,10,32,32,32,32,32,32,32,32,41,10,32,32,32,32,32,32,32,32,46,99,97,108,108,40,103,32,61,62,32,103,10,32,32,32,32,32,32,32,32,32,32,32,32,46,115,101,108,101,99,116,65,108,108,40,34,116,101,120,116,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,115,116,121,108,101,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,32,34,101,110,100,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,100,120,34,44,32,34,45,46,56,101,109,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,100,121,34,44,32,34,46,49,53,101,109,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,32,34,114,111,116,97,116,101,40,45,54,53,41,34,41,10,32,32,32,32,32,32,32,32,41,10,32,32,32,32,32,32,32,32,46,99,97,108,108,40,103,32,61,62,32,103,46,97,112,112,101,110,100,40,34,116,101,120,116,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,120,34,44,32,119,105,100,116,104,32,45,32,109,97,114,103,105,110,46,114,105,103,104,116,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,121,34,44,32,45,52,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,102,105,108,108,34,44,32,34,99,117,114,114,101,110,116,67,111,108,111,114,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,102,111,110,116,45,119,101,105,103,104,116,34,44,32,34,98,111,108,100,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,32,34,101,110,100,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,116,101,120,116,40,34,109,116,105,109,101,34,41,10,32,32,32,32,32,32,32,32,41,59,10,10,32,32,32,32,115,118,103,46,97,112,112,101,110,100,40,34,103,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,32,96,116,114,97,110,115,108,97,116,101,40,36,123,109,97,114,103,105,110,46,108,101,102,116,125,44,48,41,96,41,10,32,32,32,32,32,32,32,32,46,99,97,108,108,40,10,32,32,32,32,32,32,32,32,32,32,32,32,100,51,46,97,120,105,115,76,101,102,116,40,121,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,105,99,107,115,40,104,101,105,103,104,116,32,47,32,52,48,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,105,99,107,70,111,114,109,97,116,40,116,32,61,62,32,102,111,114,109,97,116,83,73,40,116,41,41,10,32,32,32,32,32,32,32,32,41,10,32,32,32,32,32,32,32,32,46,99,97,108,108,40,103,32,61,62,32,103,46,115,101,108,101,99,116,40,34,46,100,111,109,97,105,110,34,41,46,114,101,109,111,118,101,40,41,41,10,32,32,32,32,32,32,32,32,46,99,97,108,108,40,103,32,61,62,32,103,46,115,101,108,101,99,116,40,34,46,116,105,99,107,58,108,97,115,116,45,111,102,45,116,121,112,101,32,116,101,120,116,34,41,46,99,108,111,110,101,40,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,120,34,44,32,52,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,32,34,115,116,97,114,116,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,102,111,110,116,45,119,101,105,103,104,116,34,44,32,34,98,111,108,100,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,116,101,120,116,40,34,70,105,108,101,32,99,111,117,110,116,34,41,41,59,10,10,32,32,32,32,115,118,103,46,97,112,112,101,110,100,40,34,116,101,120,116,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,120,34,44,32,40,119,105,100,116,104,32,47,32,50,41,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,121,34,44,32,40,109,97,114,103,105,110,46,116,111,112,32,47,32,50,41,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,32,34,109,105,100,100,108,101,34,41,10,32,32,32,32,32,32,32,32,46,115,116,121,108,101,40,34,102,111,110,116,45,115,105,122,101,34,44,32,34,49,54,112,120,34,41,10,32,32,32,32,32,32,32,32,46,116,101,120,116,40,34,70,105,108,101,32,109,111,100,105,102,105,99,97,116,105,111,110,32,116,105,109,101,32,100,105,115,116,114,105,98,117,116,105,111,110,34,41,59,10,125,10,10,102,117,110,99,116,105,111,110,32,115,105,122,101,72,105,115,116,111,103,114,97,109,40,100,97,116,97,44,32,115,118,103,41,32,123,10,10,32,32,32,32,108,101,116,32,98,105,110,115,32,61,32,100,97,116,97,46,109,97,112,40,100,32,61,62,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,58,32,78,117,109,98,101,114,40,100,46,99,111,117,110,116,41,44,10,32,32,32,32,32,32,32,32,32,32,32,32,120,48,58,32,78,117,109,98,101,114,40,100,46,98,117,99,107,101,116,41,44,10,32,32,32,32,32,32,32,32,32,32,32,32,120,49,58,32,78,117,109,98,101,114,40,100,46,98,117,99,107,101,116,41,32,43,32,40,53,32,42,32,49,48,50,52,32,42,32,49,48,50,52,41,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,41,59,10,32,32,32,32,98,105,110,115,32,61,32,98,105,110,115,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,98,46,108,101,110,103,116,104,32,45,32,97,46,108,101,110,103,116,104,41,46,115,108,105,99,101,40,48,44,32,50,53,41,59,10,10,32,32,32,32,99,111,110,115,116,32,109,97,114,103,105,110,32,61,32,123,10,32,32,32,32,32,32,32,32,116,111,112,58,32,53,48,44,10,32,32,32,32,32,32,32,32,114,105,103,104,116,58,32,50,48,44,10,32,32,32,32,32,32,32,32,98,111,116,116,111,109,58,32,55,48,44,10,32,32,32,32,32,32,32,32,108,101,102,116,58,32,52,48,10,32,32,32,32,125,59,10,10,32,32,32,32,99,111,110,115,116,32,119,105,100,116,104,32,61,32,53,53,48,59,10,32,32,32,32,99,111,110,115,116,32,104,101,105,103,104,116,32,61,32,52,53,48,59,10,10,32,32,32,32,115,118,103,46,115,101,108,101,99,116,65,108,108,40,34,42,34,41,46,114,101,109,111,118,101,40,41,59,10,32,32,32,32,115,118,103,46,97,116,116,114,40,34,118,105,101,119,66,111,120,34,44,32,91,48,44,32,48,44,32,119,105,100,116,104,44,32,104,101,105,103,104,116,93,41,59,10,10,32,32,32,32,99,111,110,115,116,32,121,32,61,32,100,51,46,115,99,97,108,101,76,105,110,101,97,114,40,41,10,32,32,32,32,32,32,32,32,46,100,111,109,97,105,110,40,91,48,44,32,100,51,46,109,97,120,40,98,105,110,115,44,32,100,32,61,62,32,100,46,108,101,110,103,116,104,41,93,41,10,32,32,32,32,32,32,32,32,46,114,97,110,103,101,40,91,104,101,105,103,104,116,32,45,32,109,97,114,103,105,110,46,98,111,116,116,111,109,44,32,109,97,114,103,105,110,46,116,111,112,93,41,59,10,10,32,32,32,32,99,111,110,115,116,32,120,32,61,32,100,51,46,115,99,97,108,101,76,105,110,101,97,114,40,41,10,32,32,32,32,32,32,32,32,46,100,111,109,97,105,110,40,100,51,46,101,120,116,101,110,116,40,98,105,110,115,44,32,100,32,61,62,32,100,46,120,48,41,41,46,110,105,99,101,40,41,10,32,32,32,32,32,32,32,32,46,114,97,110,103,101,40,91,109,97,114,103,105,110,46,108,101,102,116,44,32,119,105,100,116,104,32,45,32,109,97,114,103,105,110,46,114,105,103,104,116,93,41,59,10,10,32,32,32,32,115,118,103,46,97,112,112,101,110,100,40,34,103,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,102,105,108,108,34,44,32,34,115,116,101,101,108,98,108,117,101,34,41,10,32,32,32,32,32,32,32,32,46,115,101,108,101,99,116,65,108,108,40,34,114,101,99,116,34,41,10,32,32,32,32,32,32,32,32,46,100,97,116,97,40,98,105,110,115,41,10,32,32,32,32,32,32,32,32,46,106,111,105,110,40,34,114,101,99,116,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,120,34,44,32,100,32,61,62,32,120,40,100,46,120,48,41,32,43,32,49,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,119,105,100,116,104,34,44,32,100,32,61,62,32,77,97,116,104,46,109,97,120,40,49,44,32,120,40,100,46,120,49,41,32,45,32,120,40,100,46,120,48,41,32,45,32,49,41,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,121,34,44,32,100,32,61,62,32,121,40,100,46,108,101,110,103,116,104,41,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,32,100,32,61,62,32,121,40,48,41,32,45,32,121,40,100,46,108,101,110,103,116,104,41,41,10,32,32,32,32,32,32,32,32,46,99,97,108,108,40,103,32,61,62,32,103,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,34,116,105,116,108,101,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,116,101,120,116,40,100,32,61,62,32,100,46,108,101,110,103,116,104,41,10,32,32,32,32,32,32,32,32,41,59,10,10,32,32,32,32,115,118,103,46,97,112,112,101,110,100,40,34,103,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,32,96,116,114,97,110,115,108,97,116,101,40,48,44,36,123,104,101,105,103,104,116,32,45,32,109,97,114,103,105,110,46,98,111,116,116,111,109,125,41,96,41,10,32,32,32,32,32,32,32,32,46,99,97,108,108,40,10,32,32,32,32,32,32,32,32,32,32,32,32,100,51,46,97,120,105,115,66,111,116,116,111,109,40,120,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,105,99,107,115,40,119,105,100,116,104,32,47,32,51,48,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,105,99,107,83,105,122,101,79,117,116,101,114,40,48,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,105,99,107,70,111,114,109,97,116,40,102,111,114,109,97,116,83,73,41,10,32,32,32,32,32,32,32,32,41,10,32,32,32,32,32,32,32,32,46,99,97,108,108,40,103,32,61,62,32,103,10,32,32,32,32,32,32,32,32,32,32,32,32,46,115,101,108,101,99,116,65,108,108,40,34,116,101,120,116,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,115,116,121,108,101,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,32,34,101,110,100,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,100,120,34,44,32,34,45,46,56,101,109,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,100,121,34,44,32,34,46,49,53,101,109,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,32,34,114,111,116,97,116,101,40,45,54,53,41,34,41,10,32,32,32,32,32,32,32,32,41,10,32,32,32,32,32,32,32,32,46,99,97,108,108,40,103,32,61,62,32,103,46,97,112,112,101,110,100,40,34,116,101,120,116,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,120,34,44,32,119,105,100,116,104,32,45,32,109,97,114,103,105,110,46,114,105,103,104,116,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,121,34,44,32,45,52,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,102,105,108,108,34,44,32,34,99,117,114,114,101,110,116,67,111,108,111,114,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,102,111,110,116,45,119,101,105,103,104,116,34,44,32,34,98,111,108,100,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,32,34,101,110,100,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,116,101,120,116,40,34,115,105,122,101,32,40,98,121,116,101,115,41,34,41,10,32,32,32,32,32,32,32,32,41,59,10,10,32,32,32,32,115,118,103,46,97,112,112,101,110,100,40,34,103,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,32,96,116,114,97,110,115,108,97,116,101,40,36,123,109,97,114,103,105,110,46,108,101,102,116,125,44,48,41,96,41,10,32,32,32,32,32,32,32,32,46,99,97,108,108,40,10,32,32,32,32,32,32,32,32,32,32,32,32,100,51,46,97,120,105,115,76,101,102,116,40,121,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,105,99,107,115,40,104,101,105,103,104,116,32,47,32,52,48,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,105,99,107,70,111,114,109,97,116,40,116,32,61,62,32,102,111,114,109,97,116,83,73,40,116,41,41,10,32,32,32,32,32,32,32,32,41,10,32,32,32,32,32,32,32,32,46,99,97,108,108,40,103,32,61,62,32,103,46,115,101,108,101,99,116,40,34,46,100,111,109,97,105,110,34,41,46,114,101,109,111,118,101,40,41,41,10,32,32,32,32,32,32,32,32,46,99,97,108,108,40,103,32,61,62,32,103,46,115,101,108,101,99,116,40,34,46,116,105,99,107,58,108,97,115,116,45,111,102,45,116,121,112,101,32,116,101,120,116,34,41,46,99,108,111,110,101,40,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,120,34,44,32,52,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,32,34,115,116,97,114,116,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,102,111,110,116,45,119,101,105,103,104,116,34,44,32,34,98,111,108,100,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,116,101,120,116,40,34,70,105,108,101,32,99,111,117,110,116,34,41,41,59,10,10,32,32,32,32,115,118,103,46,97,112,112,101,110,100,40,34,116,101,120,116,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,120,34,44,32,40,119,105,100,116,104,32,47,32,50,41,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,121,34,44,32,40,109,97,114,103,105,110,46,116,111,112,32,47,32,50,41,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,32,34,109,105,100,100,108,101,34,41,10,32,32,32,32,32,32,32,32,46,115,116,121,108,101,40,34,102,111,110,116,45,115,105,122,101,34,44,32,34,49,54,112,120,34,41,10,32,32,32,32,32,32,32,32,46,116,101,120,116,40,34,70,105,108,101,32,115,105,122,101,32,100,105,115,116,114,105,98,117,116,105,111,110,34,41,59,10,125,10,10,10,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,83,116,97,116,115,40,41,32,123,10,32,32,32,32,119,105,100,116,104,32,61,32,83,73,90,69,83,91,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,83,105,122,101,93,91,48,93,59,10,32,32,32,32,104,101,105,103,104,116,32,61,32,83,73,90,69,83,91,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,83,105,122,101,93,91,49,93,59,10,10,32,32,32,32,99,111,110,115,116,32,116,114,101,101,109,97,112,83,118,103,32,61,32,100,51,46,115,101,108,101,99,116,40,34,35,116,114,101,101,109,97,112,34,41,59,10,32,32,32,32,99,111,110,115,116,32,109,105,109,101,83,118,103,83,105,122,101,32,61,32,100,51,46,115,101,108,101,99,116,40,34,35,97,103,103,95,109,105,109,101,95,115,105,122,101,34,41,59,10,32,32,32,32,99,111,110,115,116,32,109,105,109,101,83,118,103,67,111,117,110,116,32,61,32,100,51,46,115,101,108,101,99,116,40,34,35,97,103,103,95,109,105,109,101,95,99,111,117,110,116,34,41,59,10,32,32,32,32,99,111,110,115,116,32,100,97,116,101,72,105,115,116,111,103,114,97,109,83,118,103,32,61,32,100,51,46,115,101,108,101,99,116,40,34,35,100,97,116,101,95,104,105,115,116,111,103,114,97,109,34,41,59,10,32,32,32,32,99,111,110,115,116,32,115,105,122,101,72,105,115,116,111,103,114,97,109,83,118,103,32,61,32,100,51,46,115,101,108,101,99,116,40,34,35,115,105,122,101,95,104,105,115,116,111,103,114,97,109,34,41,59,10,10,32,32,32,32,99,111,110,115,116,32,105,110,100,101,120,73,100,32,61,32,36,40,34,35,105,110,100,105,99,101,115,34,41,46,118,97,108,40,41,59,10,10,32,32,32,32,100,51,46,99,115,118,40,96,47,115,47,36,123,105,110,100,101,120,73,100,125,47,49,96,41,46,116,104,101,110,40,116,97,98,117,108,97,114,68,97,116,97,32,61,62,32,123,10,32,32,32,32,32,32,32,32,116,97,98,117,108,97,114,68,97,116,97,46,102,111,114,69,97,99,104,40,114,111,119,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,111,119,46,116,97,120,111,110,111,109,121,32,61,32,114,111,119,46,112,97,116,104,46,115,112,108,105,116,40,34,47,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,114,111,119,46,115,105,122,101,32,61,32,78,117,109,98,101,114,40,114,111,119,46,115,105,122,101,41,59,10,32,32,32,32,32,32,32,32,125,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,84,121,112,101,32,61,61,61,32,34,99,97,115,99,97,100,101,100,34,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,100,97,116,97,32,61,32,98,117,114,114,111,119,40,116,97,98,117,108,97,114,68,97,116,97,44,32,102,97,108,115,101,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,99,97,100,101,84,114,101,101,109,97,112,40,100,97,116,97,44,32,116,114,101,101,109,97,112,83,118,103,41,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,100,97,116,97,32,61,32,98,117,114,114,111,119,40,116,97,98,117,108,97,114,68,97,116,97,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,98,46,116,97,120,111,110,111,109,121,46,108,101,110,103,116,104,32,45,32,97,46,116,97,120,111,110,111,109,121,46,108,101,110,103,116,104,41,44,32,116,114,117,101,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,102,108,97,116,84,114,101,101,109,97,112,40,100,97,116,97,44,32,116,114,101,101,109,97,112,83,118,103,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,41,59,10,10,32,32,32,32,100,51,46,99,115,118,40,96,47,115,47,36,123,105,110,100,101,120,73,100,125,47,50,96,41,46,116,104,101,110,40,116,97,98,117,108,97,114,68,97,116,97,32,61,62,32,123,10,32,32,32,32,32,32,32,32,109,105,109,101,66,97,114,83,105,122,101,40,116,97,98,117,108,97,114,68,97,116,97,46,115,108,105,99,101,40,41,44,32,109,105,109,101,83,118,103,83,105,122,101,41,59,10,32,32,32,32,32,32,32,32,109,105,109,101,66,97,114,67,111,117,110,116,40,116,97,98,117,108,97,114,68,97,116,97,46,115,108,105,99,101,40,41,44,32,109,105,109,101,83,118,103,67,111,117,110,116,41,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,100,51,46,99,115,118,40,96,47,115,47,36,123,105,110,100,101,120,73,100,125,47,51,96,41,46,116,104,101,110,40,116,97,98,117,108,97,114,68,97,116,97,32,61,62,32,123,10,32,32,32,32,32,32,32,32,115,105,122,101,72,105,115,116,111,103,114,97,109,40,116,97,98,117,108,97,114,68,97,116,97,44,32,115,105,122,101,72,105,115,116,111,103,114,97,109,83,118,103,41,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,100,51,46,99,115,118,40,96,47,115,47,36,123,105,110,100,101,120,73,100,125,47,52,96,41,46,116,104,101,110,40,116,97,98,117,108,97,114,68,97,116,97,32,61,62,32,123,10,32,32,32,32,32,32,32,32,100,97,116,101,72,105,115,116,111,103,114,97,109,40,116,97,98,117,108,97,114,68,97,116,97,44,32,100,97,116,101,72,105,115,116,111,103,114,97,109,83,118,103,41,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,116,114,101,101,109,97,112,83,118,103,46,115,101,108,101,99,116,65,108,108,40,34,42,34,41,46,114,101,109,111,118,101,40,41,59,10,32,32,32,32,116,114,101,101,109,97,112,83,118,103,46,97,116,116,114,40,34,118,105,101,119,66,111,120,34,44,32,91,48,44,32,48,44,32,119,105,100,116,104,44,32,104,101,105,103,104,116,93,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,120,109,108,110,115,34,44,32,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,120,109,108,110,115,58,120,108,105,110,107,34,44,32,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,49,57,57,57,47,120,108,105,110,107,34,41,10,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,118,101,114,115,105,111,110,34,44,32,34,49,46,49,34,41,10,32,32,32,32,32,32,32,32,46,115,116,121,108,101,40,34,111,118,101,114,102,108,111,119,34,44,32,34,118,105,115,105,98,108,101,34,41,10,32,32,32,32,32,32,32,32,46,115,116,121,108,101,40,34,102,111,110,116,34,44,32,34,49,48,112,120,32,115,97,110,115,45,115,101,114,105,102,34,41,59,10,10,125,10,10,119,105,110,100,111,119,46,111,110,108,111,97,100,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,67,79,78,70,46,108,111,97,100,40,41,59,10,10,32,32,32,32,36,46,106,115,111,110,80,111,115,116,40,34,105,34,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,115,101,108,101,99,116,32,61,32,36,40,34,35,105,110,100,105,99,101,115,34,41,59,10,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,117,114,108,73,110,100,105,99,101,115,32,61,32,40,110,101,119,32,85,82,76,83,101,97,114,99,104,80,97,114,97,109,115,40,108,111,99,97,116,105,111,110,46,115,101,97,114,99,104,41,41,46,103,101,116,40,34,105,34,41,59,10,32,32,32,32,32,32,32,32,114,101,115,112,91,34,105,110,100,105,99,101,115,34,93,46,102,111,114,69,97,99,104,40,105,100,120,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,77,97,112,91,105,100,120,46,105,100,93,32,61,32,105,100,120,46,110,97,109,101,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,46,97,112,112,101,110,100,40,36,40,34,60,111,112,116,105,111,110,62,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,118,97,108,117,101,34,44,32,105,100,120,46,105,100,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,105,100,120,46,110,97,109,101,41,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,117,114,108,73,110,100,105,99,101,115,32,38,38,32,117,114,108,73,110,100,105,99,101,115,46,115,112,108,105,116,40,34,44,34,41,46,105,110,100,101,120,79,102,40,105,100,120,46,110,97,109,101,41,32,33,61,61,32,45,49,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,46,115,101,108,101,99,116,40,105,100,120,46,110,97,109,101,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,41,59,10,10,32,32,32,32,32,32,32,32,117,112,100,97,116,101,83,116,97,116,115,40,41,59,10,32,32,32,32,125,41,59,10,125,59,10,10,102,117,110,99,116,105,111,110,32,102,117,108,108,83,99,114,101,101,110,40,115,101,108,101,99,116,111,114,41,32,123,10,32,32,32,32,99,111,110,115,116,32,99,97,114,100,32,61,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,115,101,108,101,99,116,111,114,41,59,10,32,32,32,32,99,97,114,100,46,99,108,97,115,115,76,105,115,116,46,116,111,103,103,108,101,40,34,102,117,108,108,45,115,99,114,101,101,110,34,41,59,10,125,10,10,102,117,110,99,116,105,111,110,32,101,120,112,111,114,116,84,114,101,101,109,97,112,40,41,32,123,10,32,32,32,32,100,111,109,116,111,105,109,97,103,101,46,116,111,66,108,111,98,40,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,116,114,101,101,109,97,112,34,41,44,32,123,119,105,100,116,104,58,32,119,105,100,116,104,44,32,104,101,105,103,104,116,58,32,104,101,105,103,104,116,125,41,10,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,98,108,111,98,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,97,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,117,114,108,32,61,32,85,82,76,46,99,114,101,97,116,101,79,98,106,101,99,116,85,82,76,40,98,108,111,98,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,97,46,104,114,101,102,32,61,32,117,114,108,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,46,100,111,119,110,108,111,97,100,32,61,32,96,36,123,105,110,100,101,120,77,97,112,91,36,40,34,35,105,110,100,105,99,101,115,34,41,46,118,97,108,40,41,93,125,95,116,114,101,101,109,97,112,46,112,110,103,96,59,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,117,109,101,110,116,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,97,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,46,99,108,105,99,107,40,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,117,109,101,110,116,46,98,111,100,121,46,114,101,109,111,118,101,67,104,105,108,100,40,97,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,105,110,100,111,119,46,85,82,76,46,114,101,118,111,107,101,79,98,106,101,99,116,85,82,76,40,117,114,108,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,44,32,48,41,59,10,32,32,32,32,32,32,32,32,125,41,59,10,125,10,60,47,115,99,114,105,112,116,62,10,60,47,98,111,100,121,62,10,60,47,104,116,109,108,62,10}; diff --git a/third-party/mongoose b/third-party/mongoose deleted file mode 160000 index 359060a..0000000 --- a/third-party/mongoose +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 359060a151998c5ab08e54af1420b7406005dc6b